@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ink: #0a1c2b;
  --ink-2: #102b41;
  --paper: #f3efe7;
  --paper-2: #e9e2d6;
  --gold: #c5954e;
  --gold-light: #e1c282;
  --red: #ef4556;
  --muted: #6e716e;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
}

.site-header nav a {
  position: relative;
  transition: color 0.2s ease;
  padding: 4px 0;
}

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

.site-header nav a:hover {
  color: var(--gold-light);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.nav-cta svg {
  transition: transform 0.2s ease;
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 25%, rgba(197, 149, 78, 0.16), transparent 29%),
    linear-gradient(123deg, #081a28 0%, #0a2235 58%, #071520 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent, black);
  -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 150px 4vw 85px 8.5vw;
}

.eyebrow, .section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

.eyebrow span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 27px 0 25px;
  max-width: 700px;
  font-family: var(--font-display), serif;
  font-size: clamp(64px, 6.6vw, 106px);
  line-height: 0.87;
  letter-spacing: -0.045em;
  font-weight: 500;
}

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

.hero-copy > p {
  max-width: 585px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 184px;
  padding: 11px 17px;
  color: #ffffff;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.play-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.play-mark {
  font-size: 23px;
  color: #ffffff;
}

.play-badge span:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.play-badge small {
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.play-badge strong {
  margin-top: 2px;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 62px;
}

.hero-stats div {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
}

.hero-stats div:last-child {
  border: 0;
  padding-right: 0;
  margin-right: 0;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Hero Visual & Phone */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding-top: 105px;
}

.symbol-watermark {
  position: absolute;
  top: 22%;
  right: 2%;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display), serif;
  font-size: 300px;
  user-select: none;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(197, 149, 78, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 690px;
  height: 690px;
  right: -100px;
  top: 68px;
}

.orbit-two {
  width: 470px;
  height: 470px;
  right: 15px;
  top: 178px;
  border-style: dashed;
  animation: orbit 45s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 285px;
  height: 600px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 42px;
  background: #0c1115;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(2.6deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-shell:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 55px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.phone-top {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 22px;
  border-radius: 20px;
  background: #050709;
  transform: translateX(-50%);
}

.phone-top i {
  position: absolute;
  top: 7px;
  right: 12px;
  width: 7px;
  height: 7px;
  background: #172b37;
  border-radius: 50%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: #eee;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(249, 247, 241, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  backdrop-filter: blur(12px);
  animation: floatBounce 4s ease-in-out infinite alternate;
}

@keyframes floatBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.floating-note strong {
  font-size: 11px;
}

.note-top {
  top: 29%;
  left: 2%;
  animation-delay: 0s;
}

.note-bottom {
  right: 8%;
  bottom: 17%;
  animation-delay: 1.5s;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4bb87a;
  box-shadow: 0 0 0 5px rgba(75, 184, 122, 0.14);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(75, 184, 122, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(75, 184, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(75, 184, 122, 0); }
}

/* Manifesto Section */
.manifesto {
  padding: 125px 8vw;
  text-align: center;
  background: var(--paper);
}

.section-kicker {
  margin: 0 0 24px;
  color: #9b743e;
}

.manifesto h2 {
  margin: 0 auto;
  max-width: 980px;
  font-family: var(--font-display), serif;
  font-size: clamp(42px, 5.1vw, 75px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.manifesto h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.manifesto-copy {
  max-width: 600px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Features Section */
.features {
  padding: 110px 7vw 130px;
  background: #e9e3d8;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading h2, .first-cta h2 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(10, 28, 43, 0.14);
  border: 1px solid rgba(10, 28, 43, 0.14);
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  background: #f4f0e8;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  z-index: 2;
  background: #fffdf8;
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10, 28, 43, 0.08);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  color: #936f3c;
  border: 1px solid rgba(147, 111, 60, 0.3);
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
}

.feature-card:hover .icon-box {
  background: #936f3c;
  color: #ffffff;
}

.feature-top small {
  color: #a6a49f;
  font-family: var(--font-display), serif;
  font-size: 18px;
}

.feature-card h3 {
  margin: 76px 0 15px;
  font-family: var(--font-display), serif;
  font-size: 30px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.card-line {
  position: absolute;
  left: 32px;
  bottom: 31px;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.feature-card:hover .card-line {
  width: calc(100% - 64px);
}

/* Degree Journey Section */
.degree-journey {
  position: relative;
  overflow: hidden;
  padding: 120px 7vw 100px;
  color: #ffffff;
  background: #0a1c2b;
}

.degree-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 70px 70px;
}

.journey-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
}

.journey-intro h2, .ai-copy h2, .coming h2, .faq h2 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.journey-intro > p {
  max-width: 445px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.9;
}

.degree-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 67px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.degree-tabs article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.25s ease;
  user-select: none;
}

.degree-tabs article:hover, .degree-tabs article.active {
  background: rgba(255, 255, 255, 0.05);
}

.degree-tabs article.active {
  border-bottom: 2px solid var(--gold-light);
}

.degree-tabs article:last-child {
  border-right: 0;
}

.degree-tabs article > span {
  color: var(--gold-light);
  font-family: var(--font-display), serif;
  font-size: 23px;
}

.degree-tabs div {
  display: flex;
  flex-direction: column;
}

.degree-tabs small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.degree-tabs strong {
  margin-top: 3px;
  font-family: var(--font-display), serif;
  font-size: 23px;
  font-weight: 500;
}

.screens-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 680px;
  margin-top: 65px;
}

.screen-phone {
  position: absolute;
  width: 280px;
  height: 590px;
  padding: 11px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 38px;
  background: #0b0c0e;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.46);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, z-index 0.5s ease;
  cursor: pointer;
}

.screen-phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 18px;
  width: 78px;
  height: 20px;
  border-radius: 20px;
  background: #030405;
  transform: translateX(-50%);
}

.screen-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.screen-label {
  position: absolute;
  top: 50%;
  left: -92px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  letter-spacing: 0.2em;
  transform: rotate(-90deg);
  transition: color 0.3s ease;
}

.screen-phone.active .screen-label {
  color: var(--gold-light);
}

.screen-center {
  z-index: 3;
  transform: translateY(-20px) scale(1);
  opacity: 1;
}

.screen-left {
  z-index: 2;
  transform: translateX(-255px) rotate(-7deg) scale(0.9);
  opacity: 0.78;
}

.screen-right {
  z-index: 2;
  transform: translateX(255px) rotate(7deg) scale(0.9);
  opacity: 0.78;
}

.journey-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  max-width: 720px;
  margin: 15px auto 0;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.journey-note svg {
  flex: 0 0 auto;
  color: var(--gold-light);
}

.journey-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.journey-note strong {
  color: #ffffff;
}

/* AI Section */
.ai-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 750px;
  background: #ece6dc;
}

.ai-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #dcd3c5;
}

.ai-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(197, 149, 78, 0.22), transparent 45%);
}

.alchemy-ring {
  position: absolute;
  border: 1px solid rgba(10, 28, 43, 0.25);
  border-radius: 50%;
}

.ring-a {
  width: 470px;
  height: 470px;
  animation: orbit 35s linear infinite reverse;
}

.ring-a::before, .ring-a::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px dashed rgba(10, 28, 43, 0.2);
  border-radius: 50%;
}

.ring-a::after {
  inset: 105px;
  border-style: solid;
}

.ring-a span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #7b5a2f;
  border: 1px solid rgba(10, 28, 43, 0.25);
  border-radius: 50%;
  background: #e6ded2;
  font-family: var(--font-display), serif;
  font-weight: 600;
}

.ring-a span:nth-child(1) { left: 50%; top: -17px; transform: translateX(-50%); }
.ring-a span:nth-child(2) { right: -17px; top: 50%; transform: translateY(-50%); }
.ring-a span:nth-child(3) { left: 50%; bottom: -17px; transform: translateX(-50%); }
.ring-a span:nth-child(4) { left: -17px; top: 50%; transform: translateY(-50%); }

.ring-b {
  width: 620px;
  height: 620px;
  border-style: dashed;
  opacity: 0.5;
  animation: orbit 60s linear infinite;
}

.ai-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  color: #ffffff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(10, 28, 43, 0.25);
  transition: transform 0.3s ease;
}

.ai-core:hover {
  transform: scale(1.05);
}

.ai-core svg {
  color: var(--gold-light);
}

.ai-core strong {
  margin-top: 8px;
  font-family: var(--font-display), serif;
  font-size: 52px;
  line-height: 0.8;
}

.ai-core small {
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 0.3em;
}

.ai-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 9vw 90px 8vw;
}

.ai-copy h2 em, .coming h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.ai-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.ai-copy ul {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.ai-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 500;
}

.ai-copy li svg {
  color: #9b743e;
  flex-shrink: 0;
}

/* Coming Soon Section */
.coming {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 125px 8vw;
  color: #ffffff;
  background: linear-gradient(120deg, #102b41, #081823);
}

.coming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(197, 149, 78, 0.18), transparent 30%);
}

.coming-number {
  position: absolute;
  left: 4vw;
  bottom: -10vw;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display), serif;
  font-size: 42vw;
  line-height: 0.7;
  user-select: none;
  pointer-events: none;
}

.coming-content {
  position: relative;
  z-index: 3;
  max-width: 710px;
}

.update-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 33px;
  padding: 9px 14px;
  color: var(--gold-light);
  border: 1px solid rgba(225, 194, 130, 0.35);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.update-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(239, 69, 86, 0.12);
  animation: pulseGlowRed 2s infinite;
}

@keyframes pulseGlowRed {
  0% { box-shadow: 0 0 0 0 rgba(239, 69, 86, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(239, 69, 86, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 69, 86, 0); }
}

.coming p {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.85;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.outline-button:hover {
  color: var(--ink);
  background: #ffffff;
  transform: translateY(-2px);
}

.outline-button svg {
  transition: transform 0.2s ease;
}

.outline-button:hover svg {
  transform: translateX(3px);
}

.coming-symbol {
  position: absolute;
  z-index: 2;
  right: 10vw;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  color: var(--gold-light);
  border: 1px solid rgba(225, 194, 130, 0.25);
  border-radius: 50%;
  transform: translateY(-50%);
}

.coming-symbol::before, .coming-symbol::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(225, 194, 130, 0.22);
  border-radius: 50%;
}

.coming-symbol::after {
  inset: -60px;
}

.coming-logo {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(225, 194, 130, 0.3);
}

/* FAQ Section */
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  padding: 120px 8vw;
  background: var(--paper);
}

.faq-heading {
  position: sticky;
  top: 60px;
  align-self: start;
}

.faq-heading > p:last-child {
  max-width: 330px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid rgba(10, 28, 43, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(10, 28, 43, 0.2);
  transition: background 0.2s ease;
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.4);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display), serif;
  font-size: 24px;
  font-weight: 600;
  user-select: none;
}

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

.faq-list summary span {
  color: #a2783f;
  font-family: var(--font-sans), sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.faq-list summary b {
  font-family: var(--font-sans), sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-list details p {
  margin: -4px 48px 26px 57px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* First CTA Section */
.first-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding: 90px 8vw;
  color: #ffffff;
  background: var(--ink);
}

.section-kicker.light {
  color: var(--gold-light);
}

/* Footer */
footer {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1fr;
  gap: 40px;
  padding: 80px 8vw 30px;
  color: rgba(255, 255, 255, 0.7);
  background: #071620;
}

.footer-brand {
  color: #ffffff;
  align-self: start;
}

footer > p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display), serif;
  font-size: 25px;
  line-height: 1.25;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  align-content: start;
  font-size: 11px;
}

.footer-links a, .footer-bottom a {
  transition: color 0.2s ease;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Responsive Media Queries */
@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }
  .hero-copy {
    padding: 150px 8vw 30px;
  }
  .hero-visual {
    min-height: 670px;
    padding-top: 20px;
  }
  .orbit-one {
    right: 50%;
    transform: translateX(50%);
    top: auto;
    bottom: 30px;
  }
  .orbit-two {
    display: none;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .journey-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .screen-left {
    transform: translateX(-190px) rotate(-7deg) scale(0.82);
  }
  .screen-right {
    transform: translateX(190px) rotate(7deg) scale(0.82);
  }
  .ai-section {
    grid-template-columns: 1fr;
  }
  .ai-visual {
    min-height: 650px;
  }
  .coming-symbol {
    right: -90px;
    opacity: 0.35;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .nav-cta {
    font-size: 0;
    padding: 10px 12px;
  }
  .nav-cta svg {
    margin: 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding: 128px 22px 35px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-stats {
    margin-top: 45px;
  }
  .hero-stats div {
    min-width: 0;
    flex: 1;
    margin-right: 15px;
    padding-right: 15px;
  }
  .hero-stats strong {
    font-size: 27px;
  }
  .hero-stats span {
    font-size: 8px;
  }
  .hero-visual {
    min-height: 610px;
    overflow: hidden;
  }
  .phone-shell {
    width: 252px;
    height: 530px;
  }
  .note-top {
    left: 13px;
    top: 31%;
  }
  .note-bottom {
    right: 10px;
    bottom: 11%;
  }
  .manifesto, .features {
    padding: 85px 22px;
  }
  .manifesto h2 {
    font-size: 43px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 290px;
  }
  .feature-card h3 {
    margin-top: 50px;
  }
  .degree-journey {
    padding: 85px 22px 75px;
  }
  .degree-tabs {
    grid-template-columns: 1fr;
  }
  .degree-tabs article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .degree-tabs article:last-child {
    border-bottom: 0;
  }
  .screens-stage {
    min-height: 560px;
    margin-top: 45px;
  }
  .screen-phone {
    width: 230px;
    height: 485px;
  }
  .screen-left {
    transform: translateX(-120px) rotate(-7deg) scale(0.74);
  }
  .screen-right {
    transform: translateX(120px) rotate(7deg) scale(0.74);
  }
  .journey-note {
    align-items: flex-start;
  }
  .ai-visual {
    min-height: 530px;
  }
  .ring-a {
    width: 360px;
    height: 360px;
  }
  .ring-b {
    width: 470px;
    height: 470px;
  }
  .ai-core {
    width: 170px;
    height: 170px;
  }
  .ai-copy {
    padding: 80px 22px;
  }
  .coming {
    min-height: 620px;
    padding: 90px 22px;
  }
  .coming-symbol {
    right: -130px;
    width: 220px;
    height: 220px;
  }
  .faq {
    padding: 85px 22px;
  }
  .faq-list summary {
    grid-template-columns: 28px 1fr auto;
    font-size: 20px;
  }
  .faq-list details p {
    margin-left: 43px;
    margin-right: 20px;
  }
  .first-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 72px 22px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 65px 22px 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orbit-two, .ring-a, .ring-b, .pulse, .update-pill span, .floating-note {
    animation: none !important;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
