:root {
  --navy: #0B1E4A;
  --navy-deep: #071430;
  --navy-mid: #152962;
  --gold: #C8A84B;
  --gold-light: #E2C97A;
  --cream: #F5F0E8;
  --cream-dark: #EDE5D4;
  --off-white: #FAFAF7;
  --text-dark: #111827;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --border: rgba(0, 0, 0, 0.08);
  --gold-rgb: 200, 168, 75;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}

/* ─── NAV ─────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--gold);
}

.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.4px;
}

.nav-logo-sub {
  font-size: 9.5px;
  color: var(--text-light);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.2s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--navy-mid) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11, 30, 74, 0.2) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ─── HERO ────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 6% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  animation: riseUp 0.8s var(--ease) forwards;
}

.hero-right {
  position: relative;
  z-index: 1;
  animation: riseUp 0.8s 0.2s var(--ease) forwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-eyebrow .line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--navy);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 30, 74, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(11, 30, 74, 0.2);
  transition: all 0.25s var(--ease);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(11, 30, 74, 0.04);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.25);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 168, 75, 0.35);
}

/* HERO VISUAL */
.hero-card-stack {
  position: relative;
}

.hc-main {
  background: var(--navy);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(11, 30, 74, 0.18), 0 8px 24px rgba(11, 30, 74, 0.1);
}

.hc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hc-dots {
  display: flex;
  gap: 6px;
}

.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hc-dot:nth-child(1) {
  background: #ff5f57;
}

.hc-dot:nth-child(2) {
  background: #febc2e;
}

.hc-dot:nth-child(3) {
  background: #28c840;
}

.hc-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  font-family: monospace;
}

.hc-body {
  padding: 20px;
}

.hc-greeting {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
  font-weight: 400;
}

.hc-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hc-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hc-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
}

.pill-blue {
  background: rgba(99, 179, 237, 0.15);
  color: #90cdf4;
}

.pill-green {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.pill-gold {
  background: rgba(200, 168, 75, 0.15);
  color: var(--gold-light);
}

.hc-row-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 11px 14px;
  gap: 12px;
  animation: slideInRow 0.5s var(--ease) both;
}

.hc-row:nth-child(1) {
  animation-delay: 0.3s;
}

.hc-row:nth-child(2) {
  animation-delay: 0.5s;
}

.hc-row:nth-child(3) {
  animation-delay: 0.7s;
}

.hc-row:nth-child(4) {
  animation-delay: 0.9s;
}

.hc-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hc-row-info {
  flex: 1;
}

.hc-row-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hc-row-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}

.hc-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
}

.b-present {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.b-absent {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}

.b-late {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.hc-footer {
  display: flex;
  gap: 10px;
  padding: 16px 20px 20px;
}

.hc-mini-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.hc-mini-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hc-mini-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hc-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}

.hf-1 {
  bottom: -18px;
  left: -28px;
  animation: floatY 3s ease-in-out infinite;
}

.hf-2 {
  top: 30px;
  right: -28px;
  animation: floatY 3s 1.5s ease-in-out infinite;
}

.hf-icon {
  font-size: 18px;
  margin-bottom: 4px;
}

.hf-label {
  font-size: 10px;
  color: var(--text-light);
}

.hf-val {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

/* ─── MARQUEE STRIP ────────────────────── */
.marquee-strip {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.marquee-label-head {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ─── INTRO / MISSION ──────────────────── */
.mission-section {
  padding: 120px 6%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.mission-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.mission-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 24px;
}

.mission-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.mission-body {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 48px;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.pillar {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.07);
}

.pillar:first-child {
  border-radius: 16px 0 0 16px;
}

.pillar:last-child {
  border-radius: 0 16px 16px 0;
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: rgba(200, 168, 75, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ─── PORTALS ──────────────────────────── */
.portals-section {
  padding: 120px 6%;
  background: var(--off-white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--navy);
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header-right {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  flex-shrink: 0;
}

.portals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.portal-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.portal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(11, 30, 74, 0.1);
  border-color: transparent;
}

.portal-card.navy-card {
  background: var(--navy);
  border-color: var(--navy);
}

.portal-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.portal-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.portal-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.navy-card .portal-name {
  color: #fff;
}

.portal-blurb {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.navy-card .portal-blurb {
  color: rgba(255, 255, 255, 0.5);
}

.portal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal-list li {
  font-size: 12.5px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.4;
}

.navy-card .portal-list li {
  color: rgba(255, 255, 255, 0.55);
}

.portal-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  padding-top: 1px;
}

/* ─── FEATURES GRID ────────────────────── */
.features-section {
  padding: 120px 6%;
  background: var(--cream);
}

.features-grid-alt {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 64px;
}

.feat-card {
  background: var(--off-white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 30, 74, 0.08);
  border-color: rgba(11, 30, 74, 0.15);
}

.feat-card.dark {
  background: var(--navy);
  border-color: var(--navy);
}

.feat-card.dark .feat-title {
  color: #fff;
}

.feat-card.dark .feat-body {
  color: rgba(255, 255, 255, 0.5);
}

.feat-card.span-col {
  grid-column: span 1;
}

.feat-card.wide {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.feat-emoji {
  font-size: 34px;
  margin-bottom: 20px;
  display: block;
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feat-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.feat-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--text-mid);
  border: 1px solid var(--cream-dark);
}

.dark .feat-tag {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ─── HOW IT WORKS ─────────────────────── */
.how-section {
  padding: 120px 6%;
  background: var(--off-white);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.how-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.how-step:first-child {
  border-top: 1px solid var(--border);
}

.how-step:hover .step-circle {
  background: var(--navy);
  color: #fff;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.3s;
}

.how-step-content {
  padding-top: 12px;
}

.how-step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.how-step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

.how-visual {
  position: sticky;
  top: 100px;
}

.how-vis-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 32px 64px rgba(11, 30, 74, 0.15);
}

.how-vis-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.how-vis-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.how-vis-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 28px;
}

.vis-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vis-check {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 16px;
}

.vis-check-icon {
  font-size: 16px;
}

.vis-check-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── PILOT / EARLY ACCESS ─────────────── */
.pilot-section {
  padding: 120px 6%;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.pilot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pilot-form-wrap {
  background: var(--off-white);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 20px 60px rgba(11, 30, 74, 0.07);
}

.pilot-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pilot-form-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}

.form-field input,
.form-field select {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-field input::placeholder {
  color: var(--text-light);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--navy);
  background: #fff;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  margin-top: 6px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(11, 30, 74, 0.22);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-submit.success {
  background: #166534;
}

.form-submit.error {
  background: #991b1b;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pilot-promise {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.promise-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.promise-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── FAQ ──────────────────────────────── */
.faq-section {
  padding: 120px 6%;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--navy);
  transition: all 0.3s;
  border: 1px solid var(--cream-dark);
}

.faq-item.open .faq-chevron {
  background: var(--navy);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

.faq-item.open .faq-a {
  display: block;
}

/* ─── CTA BAND ─────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.1), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 22px;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}

/* ─── FOOTER ───────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 64px 6% 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social:hover {
  background: rgba(200, 168, 75, 0.15);
  border-color: rgba(200, 168, 75, 0.3);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.footer-contact-row span:first-child {
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ─── ANIMATIONS ───────────────────────── */
@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── RESPONSIVE ───────────────────────── */
@media (max-width: 1080px) {
  .portals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid-alt {
    grid-template-columns: 1fr 1fr;
  }

  .feat-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero-right {
    display: none;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
  }

  .pillar:first-child {
    border-radius: 16px 16px 0 0;
  }

  .pillar:last-child {
    border-radius: 0 0 16px 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .how-inner {
    grid-template-columns: 1fr;
  }

  .how-visual {
    display: none;
  }

  .pilot-inner {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .portals-grid {
    grid-template-columns: 1fr;
  }

  .features-grid-alt {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}