:root {
  --bg: #0b0f1a;
  --bg-elevated: #121829;
  --bg-card: rgba(18, 24, 41, 0.72);
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.72);
  --muted-soft: rgba(248, 250, 252, 0.45);
  --accent1: #4b9dff;
  --accent2: #34d9be;
  --border: rgba(248, 250, 252, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --font: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --phone-shot-width: min(320px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(75, 157, 255, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(52, 217, 190, 0.1), transparent);
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent1);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 40px, var(--max));
  max-width: 100%;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 26, 0.82);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(105deg, var(--accent1), var(--accent2));
  color: var(--bg) !important;
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
}

.hero {
  padding: 48px 0 0;
  overflow-x: clip;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr minmax(0, 280px);
  gap: 40px 36px;
  align-items: center;
  text-align: left;
  padding-bottom: 48px;
  min-width: 0;
  max-width: 100%;
}

.hero-copy {
  max-width: 520px;
}

.hero-eyebrow {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--text) 30%, rgba(248, 250, 252, 0.88) 70%, var(--accent1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: none;
  margin: 0 0 12px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: none;
  margin: 0 0 32px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-platform-note {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: var(--muted-soft);
  letter-spacing: 0.02em;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-showcase {
  position: relative;
  max-width: 280px;
  width: 100%;
  justify-self: end;
}

.compare-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  margin-inline: auto;
}

.compare-card-glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(75, 157, 255, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.compare-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, rgba(22, 32, 56, 0.95), rgba(11, 15, 26, 0.98));
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(75, 157, 255, 0.08) inset;
  backdrop-filter: blur(16px);
  min-width: 0;
  overflow: hidden;
}

.compare-route {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.compare-route-label,
.compare-product-label,
.compare-verdict-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.compare-route-codes {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.compare-product {
  margin-bottom: 14px;
}

.compare-product-name {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.compare-prices {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compare-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.03);
  border: 1px solid var(--border);
  min-width: 0;
}

.compare-price-best {
  background: linear-gradient(105deg, rgba(75, 157, 255, 0.12), rgba(52, 217, 190, 0.08));
  border-color: rgba(52, 217, 190, 0.28);
}

.compare-price-best .compare-badge {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 2px;
}

.compare-airport {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.compare-airport-code {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.compare-airport-name {
  font-size: 0.78rem;
  color: var(--muted-soft);
}

.compare-amount {
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.compare-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(52, 217, 190, 0.18);
  color: var(--accent2);
}

.compare-verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.compare-verdict-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compare-verdict-value {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.compare-verdict-savings .compare-verdict-value {
  color: var(--accent2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0 56px;
  border-top: 1px solid var(--border);
}

.trust-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.trust-value {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.hero-logo {
  width: min(120px, 28vw);
  border-radius: 22px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--text) 20%, var(--accent1) 55%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 500;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted-soft);
  max-width: 560px;
  margin: 0 auto 32px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.badge-soon {
  color: var(--bg);
  border: none;
  background: linear-gradient(105deg, var(--accent1), var(--accent2));
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(105deg, var(--accent1), var(--accent2));
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn:disabled,
.btn[aria-disabled='true'] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.section {
  padding: 64px 0;
  max-width: 100%;
  overflow-x: clip;
}

.section-alt {
  background: rgba(18, 24, 41, 0.35);
  border-block: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.steps-four {
  grid-template-columns: repeat(4, 1fr);
}

.section-showcase {
  padding: 80px 0 96px;
  overflow-x: clip;
}

.shots-scroll-outer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.shots-scroll-lg {
  gap: 28px;
  padding: 8px 0 20px;
}

.shot-lg {
  flex: 0 0 var(--phone-shot-width);
  max-width: var(--phone-shot-width);
  width: var(--phone-shot-width);
}

.shot-lg .shot-frame {
  padding: 12px;
  border-radius: 36px;
  box-shadow: var(--shadow), 0 0 80px rgba(75, 157, 255, 0.06);
  width: 100%;
  max-width: var(--phone-shot-width);
  margin-inline: auto;
}

.shot-lg .shot-caption {
  font-size: 1rem;
  margin-top: 4px;
}

.shot-lg .shot-hint {
  font-size: 0.85rem;
  max-width: 280px;
  margin-inline: auto;
}

.nyro-prompts {
  margin: 24px 0 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.03);
  border: 1px solid var(--border);
}

.nyro-prompts-label {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent1);
}

.nyro-prompt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nyro-prompt-list li {
  position: relative;
  padding: 12px 16px 12px 36px;
  border-radius: 12px;
  background: rgba(11, 15, 26, 0.5);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}

.nyro-prompt-list li::before {
  content: '✦';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-style: normal;
  color: var(--accent2);
  opacity: 0.85;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(75, 157, 255, 0.2), rgba(52, 217, 190, 0.15));
  color: var(--accent2);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: contain;
}

.shots-scroll::-webkit-scrollbar {
  height: 6px;
}

.shots-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}

.shot {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: center;
  text-align: center;
}

.shot-frame {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.shot-frame-text {
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: linear-gradient(165deg, rgba(56, 120, 200, 0.12), rgba(12, 22, 42, 0.95));
}

.nyro-placeholder-copy {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.nyro-placeholder-copy strong {
  display: block;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 10px;
}

.shot-caption {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.shot-hint {
  font-size: 0.8rem;
  color: var(--muted-soft);
  margin: 4px 0 0;
}

.nyro-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 100%;
}

.nyro-panel .shot-lg,
.moment-grid .shot-lg {
  justify-self: center;
  margin-inline: auto;
}

.nyro-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
}

.nyro-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}

.nyro-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nyro-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nyro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 18px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent1);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted-soft);
  margin: 0;
}

/* Problem statement */
.section-problem {
  padding: 56px 0 48px;
}

.problem-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.problem-inner h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.2;
}

.problem-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Moment — featured product proof */
.section-moment {
  padding-top: 48px;
}

.moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 100%;
}

.moment-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.moment-copy p {
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.moment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.moment-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.moment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent1);
}

.shot-featured {
  margin: 0;
  justify-self: center;
}

.shot-nyro {
  margin: 0;
}

/* Why Navayro pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.pillar-icon {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--accent2);
}

.pillar-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Investor section */
.investor-panel {
  max-width: 960px;
  margin-inline: auto;
}

.investor-copy h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.25;
}

.investor-copy p {
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.investor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.investor-card h3 {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
}

.investor-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.investor-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-aside {
  font-size: 0.88rem;
  color: var(--muted-soft);
  margin: 0;
  line-height: 1.5;
  max-width: 36ch;
}

.form-success {
  display: none;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(52, 217, 190, 0.12);
  border: 1px solid rgba(52, 217, 190, 0.35);
  color: var(--accent2);
  font-weight: 600;
}

.form-success.visible {
  display: block;
}

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted-soft);
  margin: 16px 0 0;
}

/* About */
.page-hero {
  padding: 48px 0 32px;
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 40px 0 12px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.founder-profile {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.founder-head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
}

.founder-profile h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.founder-role {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent2);
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
}

.team-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent1);
}

.team-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.team-role {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--accent2);
  font-weight: 600;
}

.team-bio {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.team-note {
  font-size: 0.85rem;
  color: var(--muted-soft);
  margin-top: 16px;
}

/* Legal */
.legal {
  padding: 48px 0 80px;
}

.legal .container {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 8px;
}

.legal .effective {
  color: var(--muted-soft);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.15rem;
  margin: 32px 0 10px;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 1.25rem;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
    order: 1;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-showcase {
    order: 2;
    max-width: min(260px, calc(100vw - 48px));
    justify-self: center;
    margin-inline: auto;
    width: 100%;
  }

  .compare-card {
    max-width: 100%;
  }

  .steps-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 20px 0 0;
  }

  .hero-grid {
    gap: 24px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .hero-platform-note {
    font-size: 0.74rem;
    margin-top: 14px;
  }

  .hero-showcase {
    max-width: min(220px, calc(100vw - 40px));
  }

  .compare-card-glow {
    display: none;
  }

  .compare-card-inner {
    padding: 14px 12px 12px;
    border-radius: 16px;
  }

  .compare-card {
    border-radius: 16px;
  }

  .compare-route {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .compare-route-codes {
    font-size: 0.92rem;
  }

  .compare-product {
    margin-bottom: 10px;
  }

  .compare-product-name {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .compare-prices {
    margin-bottom: 12px;
    gap: 6px;
  }

  .compare-price-row {
    padding: 8px 10px;
    border-radius: 10px;
    gap: 4px 8px;
  }

  .compare-airport-code {
    font-size: 0.82rem;
  }

  .compare-airport-name {
    font-size: 0.68rem;
  }

  .compare-amount {
    font-size: 0.92rem;
  }

  .compare-badge {
    font-size: 0.58rem;
    padding: 3px 6px;
  }

  .compare-verdict {
    gap: 8px;
    padding-top: 10px;
  }

  .compare-verdict-value {
    font-size: 0.88rem;
  }

  .compare-verdict-label {
    font-size: 0.6rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 0 32px;
  }

  .trust-value {
    font-size: 1.05rem;
  }

  .trust-label {
    font-size: 0.68rem;
  }

  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: rgba(11, 15, 26, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-panel.open {
    display: flex;
  }

  .site-header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .steps-four {
    grid-template-columns: 1fr;
  }

  .compare-verdict {
    grid-template-columns: 1fr;
  }

  .section-showcase {
    padding: 64px 0 72px;
  }

  .nyro-panel,
  .contact-grid,
  .moment-grid,
  .pillars,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .moment-grid .shot-featured {
    order: 2;
    max-width: var(--phone-shot-width);
    margin-inline: auto;
  }

  .moment-copy {
    order: 1;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }
}
