/* ─────────────────────────────────────────────────────────────────────────────
   Airwynn Landing v2 — New component styles
   Design system: Linear / Stripe / Ramp aesthetic
   All tokens from variables.css apply here.
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Nav CTA update (wider text) ──────────────────────────────────────────── */
.nav-cta {
  white-space: nowrap;
  font-size: .8125rem;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── Platform Preview (replaces fake product-window) ─────────────────────── */
.platform-preview {
  width: 100%;
  max-width: 880px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 36px 80px rgba(0,0,0,.75),
    0 0 120px rgba(59,130,246,.06);
  background: #070710;
  position: relative;
  margin-top: 52px;
}

/* Subtle border glow */
.platform-preview::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(59,130,246,.16),
    transparent 35%,
    rgba(99,102,241,.10)
  );
  pointer-events: none;
  z-index: 0;
}

.pv-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 38px;
  background: rgba(5,5,10,.96);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.pv-dots { display: flex; gap: 6px; flex-shrink: 0; }
.pv-dot  { width: 10px; height: 10px; border-radius: 50%; opacity: .85; }
.pv-title {
  flex: 1;
  text-align: center;
  font-size: .6875rem;
  color: rgba(255,255,255,.22);
  letter-spacing: .02em;
}
.pv-badge {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 4px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.pv-body {
  display: flex;
  height: 300px;
  position: relative;
  z-index: 1;
}

/* Left sidebar */
.pv-sidebar {
  width: 148px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.06);
  background: rgba(7,7,16,.85);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.pv-sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .6875rem;
  color: rgba(255,255,255,.25);
  padding: 7px 8px;
  border-radius: 6px;
  transition: none;
}
.pv-sb-active {
  color: rgba(255,255,255,.7);
  background: rgba(59,130,246,.1);
}
.pv-sb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.pv-sb-sep {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 6px 0;
}

/* Main map area */
.pv-main {
  flex: 1;
  position: relative;
  background: linear-gradient(160deg, #07071A, #0A0B1F 50%, #060C1A);
  overflow: hidden;
}
.pv-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.045) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Radial fade on map grid */
.pv-map-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 60% 45%,
    transparent 40%,
    rgba(6,7,18,.8) 100%
  );
}

/* Floating mission info card */
.pv-mission-card {
  position: absolute;
  top: 18px;
  right: 16px;
  background: rgba(10,10,24,.9);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 160px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pv-mc-label {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.pv-mc-name {
  font-size: .6875rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  line-height: 1.4;
}
.pv-mc-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .5625rem;
  color: #34d399;
}
.pv-mc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
  animation: pDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pDot { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.pv-overlay-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.12);
  white-space: nowrap;
}

/* Mobile: hide sidebar, reduce height */
@media(max-width:640px) {
  .pv-sidebar { display: none; }
  .pv-body    { height: 220px; }
}
@media(max-width:400px) {
  .pv-body { height: 180px; }
}

/* ── Proof strip (refreshed) ─────────────────────────────────────────────── */
.proof-strip {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  color: var(--text3);
  white-space: nowrap;
}
.proof-item svg { color: var(--text3); flex-shrink: 0; }
.proof-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}
@media(max-width:600px) {
  .proof-sep { display: none; }
  .proof-inner { gap: 12px 20px; }
}

/* ── Capability cards (3-column, replaces 6-card feature grid) ───────────── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width:900px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-card {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: border-color .2s, background .2s;
}
.cap-card:hover {
  border-color: var(--border2);
  background: var(--bg2);
}
.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.cap-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text1);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.cap-card p {
  font-size: .9375rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ── Workflow section ─────────────────────────────────────────────────────── */
.workflow-steps {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
/* connecting line */
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
}
.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.workflow-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.workflow-text strong {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text1);
  margin-bottom: 2px;
}
.workflow-text span {
  display: block;
  font-size: .75rem;
  color: var(--text3);
}

/* ── Industry grid ────────────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media(max-width:900px) { .industry-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-card {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: border-color .18s;
}
.industry-card:hover { border-color: var(--border2); }
.industry-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.industry-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text1);
  margin-bottom: 6px;
}
.industry-card p {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── CTA / Design Partner section ────────────────────────────────────────── */
.cta-section { background: var(--bg1); }
.cta-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}




@media(max-width:560px) {
  
}








.access-contact {
  text-align: center;
  font-size: .9375rem;
  color: var(--text3);
  margin-top: 32px;
}

/* Success state */




.hidden { display: none !important; }

/* ── Desktop-only sections (hidden on mobile) ────────────────────────────── */
@media(max-width:768px) {
  .desktop-section { display: none; }
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
  background: var(--bg);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media(max-width:480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand-img  { display: block; margin-bottom: 10px; }
.footer-brand-name {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text1);
  margin-bottom: 8px;
}
.footer-brand-desc {
  font-size: .875rem;
  color: var(--text3);
  line-height: 1.65;
  max-width: 240px;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text3);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: .875rem;
  color: var(--text2);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .14s;
}
.footer-link:hover { color: var(--text1); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-legal { font-size: .8125rem; color: var(--text3); }

/* ── Section spacing ─────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.cta-section { padding: 100px 0; }
@media(max-width:768px) {
  .section     { padding: 60px 0; }
  .cta-section { padding: 72px 0; }
}
@media(max-width:480px) {
  .section     { padding: 48px 0; }
  .cta-section { padding: 56px 0; }
}

/* .nav-login now shares .nav-cta styles via dual class nav-cta nav-login */
.nav-login:hover {
  color: var(--text1);
  background: var(--surface);
  border-color: rgba(255,255,255,.2);
}

/* ── Sticky nav: compact nav-cta text on medium screens ─────────────────── */
@media (max-width: 960px) and (min-width: 641px) {
  /* Shrink button text slightly to prevent nav overflow */
  .nav-cta    { font-size: .8125rem; padding: 7px 14px; }
  .nav-login  { font-size: .8125rem; padding: 7px 12px; }
  .nav-link   { padding: 6px 8px; font-size: .8125rem; }
}

/* ── Proof strip: ensure items don't overflow ─────────────────────────────── */
@media (max-width: 480px) {
  .proof-inner { gap: 10px 16px; }
  .proof-item  { font-size: .75rem; }
  .proof-sep   { display: none; }
}

/* ── Showcase section responsive tweaks ──────────────────────────────────── */
@media (max-width: 640px) {
  .showcase-tab { font-size: .8125rem; padding: 6px 12px; }
}

/* ── Mobile: both nav buttons visible at medium widths ────────────────────── */
@media (max-width: 820px) and (min-width: 641px) {
  .nav-cta { font-size: .75rem; padding: 7px 11px; white-space: nowrap; }
  .nav-link { padding: 5px 7px; font-size: .8rem; }
}

/* ── Footer: 5-column → 2-col on tablet ──────────────────────────────────── */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 28px 40px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr !important; gap: 24px; }
}

/* ── partner-form cleanup: ensure no stale styles affect forms.css layout ─── */
.partner-form, .partner-form-wrap, .partner-btn, .partner-field,
.partner-input, .partner-label, .partner-success, .partner-note { display: none !important; }

/* ── Roadmap placeholder links ─────────────────────────────────────────────── */
.footer-link[href="mailto:hello@airwynn.com"][disabled] { opacity: .5; cursor: default; }

/* ── Workflow steps: restore correct grid from sections.css ─────────────────── */
.workflow-steps { list-style: none !important; }
