:root {
  color-scheme: only light;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --gold: #c7a56f;
  --gold-soft: #d4b98a;
  --cream: #faf7f2;
  --cream2: #f0ece4;
  --text: #1a1a1a;
  --muted: rgba(0, 0, 0, 0.54);
  --text-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(199, 165, 111, 0.16);
  --surface: #ffffff;
  --ff: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fd: "Playfair Display", Georgia, "Times New Roman", serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--dark);
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: var(--ff);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 56px;
  padding: 6px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(199, 165, 111, 0.12);
  background: rgba(15, 15, 15, 0.96);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  filter: drop-shadow(0 0 6px rgba(199, 165, 111, 0.26));
}

.topbar-countdown {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.countdown span {
  min-width: 36px;
  text-align: center;
}

.countdown strong {
  display: block;
  color: #fff;
  font-family: var(--fd);
  font-size: 1.12rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown em {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.64rem;
  font-style: normal;
  line-height: 1.15;
}

.countdown b {
  color: rgba(199, 165, 111, 0.45);
  font-family: var(--fd);
  font-size: 0.9rem;
  transform: translateY(-6px);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #b8944d 0%, var(--gold) 44%, #e4cd94 100%);
  color: #1a1200;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(199, 165, 111, 0.28);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 56px);
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(100deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.84) 44%, rgba(8, 7, 5, 0.62) 68%, rgba(8, 7, 5, 0.74) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.18), rgba(15, 15, 15, 0.44)),
    url("/img/hero-v1-bright.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.92));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 630px) minmax(260px, 360px);
  grid-template-areas:
    "copy mentor";
  align-items: center;
  gap: 78px;
  width: min(1080px, calc(100% - 72px));
  min-height: calc(100svh - 56px);
  margin: 0 auto;
  padding: 118px 0 92px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.hero-badge,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(199, 165, 111, 0.34);
  border-radius: 999px;
  background: rgba(199, 165, 111, 0.1);
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--fd);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  color: #fff;
  font-size: 3.1rem;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.48);
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--gold-soft);
}

h2 {
  color: inherit;
  font-size: 2.75rem;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.28;
}

.hero-languages {
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #b8944d 0%, var(--gold) 36%, #e6cf98 72%, var(--gold) 100%);
  color: #1a1200;
  box-shadow: 0 6px 24px rgba(199, 165, 111, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.primary:hover {
  box-shadow: 0 10px 32px rgba(199, 165, 111, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button.secondary {
  background: rgba(199, 165, 111, 0.1);
  border-color: rgba(199, 165, 111, 0.36);
  color: var(--gold-soft);
}

.button.wide {
  min-width: 270px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.hero-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.hero-proof div {
  min-width: 112px;
  padding: 12px 16px;
  border-left: 2px solid rgba(199, 165, 111, 0.7);
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  color: #fff;
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.mentor-card {
  grid-area: mentor;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  max-width: 340px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
}

.mentor-card img {
  width: 220px;
  height: 220px;
  flex: 0 0 auto;
  border: 3px solid rgba(199, 165, 111, 0.64);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 8px rgba(199, 165, 111, 0.08), var(--shadow-lg);
}

.mentor-card figcaption {
  display: grid;
  gap: 7px;
}

.mentor-card strong {
  font-family: var(--fd);
  font-size: 1.42rem;
  line-height: 1.1;
}

.mentor-card span {
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.mentor-card em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: normal;
}

.quick-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 430px);
  gap: 70px;
  align-items: center;
  padding: 88px max(22px, calc((100vw - 1080px) / 2));
  border-top: 1px solid rgba(199, 165, 111, 0.14);
  background: linear-gradient(180deg, #10100f 0%, #151311 100%);
  color: #fff;
}

.quick-form-copy {
  max-width: 640px;
}

.quick-form-copy h2 {
  color: #fff;
}

.quick-form-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.signup-panel {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(199, 165, 111, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(30, 30, 30, 0.94));
  box-shadow: var(--shadow-lg);
  color: #fff;
  backdrop-filter: blur(18px);
}

.panel-heading h2 {
  font-size: 2.25rem;
}

.panel-heading p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.signup-form,
.survey-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
}

label span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.68);
  color: #fff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(199, 165, 111, 0.18);
  border-color: var(--gold);
}

.consent {
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
}

.signup-form .button,
.survey-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status a {
  color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.form-status.is-error {
  color: #ffb0a8;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(199, 165, 111, 0.12);
  border-bottom: 1px solid rgba(199, 165, 111, 0.12);
  background: linear-gradient(180deg, #12100d, #0f0f0f);
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip div {
  min-height: 92px;
  padding: 20px 24px;
  border-left: 1px solid rgba(199, 165, 111, 0.11);
}

.trust-strip div:first-child {
  border-left: 0;
}

.trust-strip strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--fd);
  font-size: 1.18rem;
  line-height: 1.15;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.band,
.split,
.testimonials,
.final-cta,
.page-hero,
.survey-shell,
.thankyou section {
  padding: 88px max(22px, calc((100vw - 1180px) / 2));
}

.band,
.testimonials {
  background: var(--cream);
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head h2,
.split h2 {
  color: var(--text);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.compact-grid article,
.compact-grid figure,
.module-list article {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compact-grid p,
.module-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 70px;
  align-items: center;
  background: var(--cream2);
}

.split p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.metrics {
  display: grid;
  gap: 12px;
  margin: 0;
}

.metrics div {
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(199, 165, 111, 0.1);
}

.metrics dt {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.timeline,
.steps,
.module-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0 0 26px;
}

.timeline article,
.steps li {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1200;
  font-weight: 900;
}

.timeline p,
.steps span,
blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mentor {
  background:
    linear-gradient(100deg, rgba(15, 15, 15, 0.98), rgba(24, 20, 16, 0.95)),
    var(--dark);
  color: #fff;
}

.mentor h2 {
  color: #fff;
}

.mentor p {
  color: var(--text-soft);
}

.mentor img {
  justify-self: center;
  width: min(100%, 320px);
  border: 2px solid rgba(199, 165, 111, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.steps {
  list-style: none;
}

.testimonials figure {
  display: grid;
  gap: 12px;
}

.testimonials img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials figcaption {
  color: var(--text);
  font-weight: 800;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.98), rgba(15, 15, 15, 1)),
    var(--dark);
  color: #fff;
}

.final-cta h2,
.final-cta p {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  margin-top: 28px;
}

.subpage .page-hero {
  max-width: none;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.96), rgba(8, 7, 5, 0.76)),
    url("/img/hero-v2-library.webp");
  background-position: center;
  background-size: cover;
}

.subpage .page-hero h1 {
  max-width: 860px;
  font-size: 3.65rem;
}

.subpage .page-hero .lead {
  color: var(--text-soft);
}

.module-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.survey-page,
.thankyou {
  min-height: calc(100svh - 56px);
  display: grid;
  place-items: start center;
  padding: 34px 16px 70px;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.96), rgba(8, 7, 5, 0.78)),
    url("/img/hero-v1-bright.webp");
  background-position: center;
  background-size: cover;
}

.survey-shell,
.thankyou section {
  width: min(100%, 760px);
  border: 1px solid rgba(199, 165, 111, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(30, 30, 30, 0.94));
  box-shadow: var(--shadow-lg);
  color: #fff;
  backdrop-filter: blur(18px);
}

.survey-shell h1,
.thankyou h1 {
  max-width: 720px;
  font-size: 3rem;
}

.survey-shell .lead,
.thankyou .lead {
  color: var(--text-soft);
}

.thankyou .button {
  margin: 18px 12px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #b8944d 0%, var(--gold) 42%, #e0c88f 100%);
  color: #1a1200;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.sticky-cta.is-visible {
  display: inline-flex;
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto minmax(210px, 1fr) auto;
  }

  .nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
    gap: 46px;
    width: min(100% - 44px, 1060px);
  }

  h1 {
    font-size: 2.85rem;
  }

  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 8px 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .topbar-countdown {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 8px;
  }

  .topbar-cta {
    min-height: 38px;
    padding: 0 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(8, 7, 5, 0.94) 0%, rgba(8, 7, 5, 0.82) 48%, rgba(8, 7, 5, 0.94) 100%),
      url("/img/hero-v1-bright-mobile.webp");
    background-position: center top;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "mentor";
    width: min(100% - 28px, 620px);
    min-height: auto;
    padding: 54px 0 58px;
    gap: 24px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2,
  .panel-heading h2 {
    font-size: 2.2rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .mentor-card {
    display: none;
  }

  .quick-form {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 62px 18px;
  }

  .signup-panel {
    align-self: stretch;
    padding: 22px;
  }

  .trust-strip,
  .compact-grid,
  .timeline,
  .steps,
  .split,
  .module-list {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(199, 165, 111, 0.11);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }

  .band,
  .split,
  .testimonials,
  .final-cta,
  .page-hero,
  .survey-shell,
  .thankyou section {
    padding: 62px 18px;
  }

  .subpage .page-hero h1,
  .survey-shell h1,
  .thankyou h1 {
    font-size: 2.65rem;
  }
}

@media (max-width: 560px) {
  .topbar-countdown {
    font-size: 0.68rem;
  }

  .countdown strong {
    font-size: 1rem;
  }

  .countdown span {
    min-width: 31px;
  }

  .topbar-cta {
    display: none;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .hero-inner {
    width: min(100% - 24px, 480px);
    padding-top: 34px;
  }

  h1 {
    font-size: 2.38rem;
  }

  h2,
  .panel-heading h2 {
    font-size: 2rem;
  }

  .hero-languages {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .mentor-card {
    align-items: flex-start;
  }

  .signup-panel,
  .survey-shell,
  .thankyou section {
    padding: 20px;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
