/* ============================================================================
   The Time Compass Show — brand system
   Palette is taken from the logo: neon cyan at the top of the compass falling
   through electric blue to magenta at the bottom, all on near-black.
   Yellow is the highlight (prices, key numbers, emphasis). Orange is reserved
   for callouts. Nothing else gets to be a colour.
   Self-hosted fonts, no CDNs, no build step.
   ========================================================================== */

@font-face {
  font-family: "Sora";
  src: url("fonts/Sora-var.woff2") format("woff2-variations"),
       url("fonts/Sora-var.woff2") format("woff2");
  font-weight: 400 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-var.woff2") format("woff2-variations"),
       url("fonts/IBMPlexSans-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}

:root {
  /* surfaces */
  --bg: #06060B;
  --bg-raise: #0C0C15;
  --bg-card: #101019;
  --line: #1E1E2E;
  --line-hi: #2C2C42;

  /* type */
  --text: #EDF1F7;
  --text-dim: #969CB0;
  --text-mute: #676D80;

  /* logo neons */
  --cyan: #2FE4FF;
  --blue: #2B8CFF;
  --violet: #A855F7;
  --magenta: #FF3DE8;

  /* highlight + callout */
  --yellow: #FFD23F;
  --yellow-hi: #FFE27A;
  --orange: #FF8A3D;

  --grad: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 45%, var(--magenta) 100%);
  --grad-soft: linear-gradient(135deg, rgba(47,228,255,.16), rgba(255,61,232,.16));

  --radius: 14px;
  --head: "Sora", "Trebuchet MS", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .h { font-family: var(--head); line-height: 1.15; letter-spacing: -.02em; }
a { color: var(--cyan); }
img, svg { max-width: 100%; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: -9999px; background: var(--yellow); color: #14100A; padding: .6rem 1rem; }
.skip:focus { left: 0; top: 0; z-index: 99; }

/* gradient text, used sparingly */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hl { color: var(--yellow); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .75rem 5vw;
  background: rgba(6, 6, 11, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex; align-items: center; gap: .65rem;
  color: var(--text); text-decoration: none;
  font-family: var(--head); font-weight: 700; font-size: .95rem; letter-spacing: .13em;
}
.nav-brand img { width: 34px; height: 34px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: .92rem; }
.nav-links a:hover { color: var(--cyan); }
@media (max-width: 780px) { .nav-links a.hide-sm { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  padding: .8rem 1.7rem; border-radius: 999px;
  font-family: var(--body); font-size: 1rem; font-weight: 600;
  text-decoration: none; text-align: center;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-2px); }
/* primary = the neon gradient, straight off the logo */
.btn-neon {
  background: var(--grad); color: #05050A; font-weight: 700;
  box-shadow: 0 0 0 rgba(47,228,255,0);
}
.btn-neon:hover { box-shadow: 0 6px 26px rgba(168,85,247,.4); }
/* the single loudest action on the page */
.btn-yellow { background: var(--yellow); color: #171200; font-weight: 700; }
.btn-yellow:hover { background: var(--yellow-hi); box-shadow: 0 6px 26px rgba(255,210,63,.3); }
.btn-ghost { border: 1.5px solid var(--line-hi); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 1rem 2.3rem; font-size: 1.06rem; }
.btn-sm { padding: .5rem 1.15rem; font-size: .9rem; }
.btn-block { display: block; width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 4.5rem 5vw 3.2rem; text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero::before {           /* compass rose glow */
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 150%;
  background:
    radial-gradient(circle at 50% 30%, rgba(47,228,255,.15), transparent 42%),
    radial-gradient(circle at 50% 30%, rgba(255,61,232,.12), transparent 62%),
    repeating-conic-gradient(from 0deg at 50% 30%,
      rgba(120,190,255,.05) 0deg 1deg, transparent 1deg 15deg);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero-mark { width: 96px; height: 96px; margin: 0 auto 1.6rem; display: block; }
.eyebrow {
  display: inline-block; margin-bottom: 1.2rem;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--cyan);
  border: 1px solid rgba(47,228,255,.32); border-radius: 999px; padding: .32rem 1rem;
}
.hero h1 { font-size: clamp(2.2rem, 5.6vw, 3.7rem); font-weight: 700; }
.hero-tag {
  margin-top: .9rem; font-family: var(--head); font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.25rem); letter-spacing: .02em;
}
.hero-sub { margin: 1.3rem auto 2.1rem; max-width: 640px; color: var(--text-dim); font-size: 1.1rem; }
.hero-ctas { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 1.5rem; font-size: .9rem; color: var(--text-mute); }
.hero-note strong { color: var(--text); font-weight: 600; }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line); border-bottom: 1px solid var(--line);
}
.stat { background: var(--bg); padding: 1.7rem 1rem; text-align: center; }
.stat-num {
  display: block; font-family: var(--head); font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem); color: var(--yellow); line-height: 1;
}
.stat-lab {
  display: block; margin-top: .45rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute);
}

/* ---------- sections ---------- */
.section { padding: 4.2rem 5vw; max-width: var(--wrap); margin: 0 auto; }
.section-alt { background: var(--bg-raise); border-block: 1px solid var(--line); }
.section-alt > .inner { max-width: var(--wrap); margin: 0 auto; }
.section h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); margin-bottom: .55rem; }
.section-sub { color: var(--text-dim); margin-bottom: 2.5rem; max-width: 660px; }
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--line-hi); transform: translateY(-2px); }
.card h3 { font-size: 1.08rem; margin-bottom: .5rem; font-weight: 600; }
.card p { color: var(--text-dim); font-size: .95rem; }
.card-n {
  display: block; font-family: var(--head); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; margin-bottom: .8rem;
}

.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.chip {
  border: 1px solid var(--line-hi); border-radius: 999px;
  padding: .42rem 1rem; font-size: .88rem; color: var(--text-dim);
}
.chip-on { border-color: rgba(47,228,255,.4); color: var(--cyan); }

/* ---------- formats ---------- */
.tiers { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }
.tier {
  position: relative; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.7rem;
}
.tier-feat { border-color: rgba(255,210,63,.42); box-shadow: 0 0 40px rgba(255,210,63,.07); }
.tier-tag {
  position: absolute; top: -.8rem; left: 1.7rem;
  background: var(--yellow); color: #171200;
  font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .28rem .85rem; border-radius: 999px;
}
.tier h3 { font-size: 1.35rem; font-weight: 700; }
.tier-len { color: var(--text-mute); font-size: .9rem; margin-top: .2rem; }
.tier-price {
  font-family: var(--head); font-size: 2.4rem; font-weight: 700;
  color: var(--yellow); margin: 1.1rem 0 .2rem; line-height: 1;
}
.tier-price small { display: block; font-family: var(--body); font-size: .84rem; font-weight: 400; color: var(--text-mute); margin-top: .5rem; }
.tier ul { list-style: none; margin: 1.4rem 0 1.7rem; }
.tier li { position: relative; padding-left: 1.65rem; margin-bottom: .6rem; font-size: .95rem; color: var(--text-dim); }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.tier li.no { color: var(--text-mute); opacity: .6; }
.tier li.no::before { content: "—"; color: var(--text-mute); }
.tier li strong { color: var(--text); font-weight: 600; }

/* orange = callout */
.callout {
  border: 1px solid rgba(255,138,61,.4); background: rgba(255,138,61,.07);
  border-radius: var(--radius); padding: 1.15rem 1.35rem;
  font-size: .93rem; color: var(--text-dim);
}
.callout strong { color: var(--orange); font-weight: 600; }
.fineprint { margin-top: 1.8rem; font-size: .88rem; color: var(--text-mute); max-width: 720px; }
.fineprint strong { color: var(--text); }

/* ---------- steps ---------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: s; }
.step { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.step::before {
  counter-increment: s; content: counter(s);
  display: grid; place-items: center; width: 2.1rem; height: 2.1rem; margin-bottom: .9rem;
  border-radius: 50%; background: var(--grad-soft); color: var(--cyan);
  font-family: var(--head); font-weight: 700; font-size: .95rem;
}
.step h3 { font-size: 1rem; margin-bottom: .35rem; font-weight: 600; }
.step p { color: var(--text-dim); font-size: .92rem; }

/* ---------- faq ---------- */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--yellow); font-size: 1.35rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-dim); margin-top: .8rem; font-size: .95rem; }

/* ---------- cta band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--bg-raise); border-block: 1px solid var(--line);
  padding: 4.2rem 5vw; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,61,232,.16), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); max-width: 680px; margin: 0 auto .8rem; }
.cta-band p { color: var(--text-dim); max-width: 560px; margin: 0 auto 2rem; }

/* ============================================================================
   MULTI-STEP APPLICATION FORM
   ========================================================================== */
.apply-wrap { max-width: 660px; margin: 0 auto; padding: 3rem 5vw 5rem; }

/* progress bar — deliberately NO step count, so nobody bails at "1 of 5" */
.prog { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 2.6rem; }
.prog span {
  display: block; height: 100%; width: 12%;
  background: var(--grad); border-radius: 999px;
  transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

.stepv { display: none; animation: rise .35s ease both; }
.stepv.on { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.stepv h2 { font-size: clamp(1.5rem, 3.6vw, 2rem); margin-bottom: .6rem; }
.stepv .lede { color: var(--text-dim); margin-bottom: 2rem; }
.stepv .lede strong { color: var(--text); font-weight: 600; }

.field { margin-bottom: 1.4rem; }
.field label, .field .lab { display: block; margin-bottom: .45rem; font-size: .93rem; font-weight: 600; }
.field .hint { display: block; font-weight: 400; color: var(--text-mute); font-size: .85rem; margin-top: .25rem; }
.opt-tag { color: var(--text-mute); font-weight: 400; }

input[type=text], input[type=email], select, textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--bg-card); color: var(--text);
  border: 1px solid var(--line-hi); border-radius: 10px;
  font-family: inherit; font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
select { cursor: pointer; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan); outline: none;
  box-shadow: 0 0 0 3px rgba(47,228,255,.13);
}
::placeholder { color: #4E5468; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #FF6B6B; }
.err { display: none; color: #FF8B8B; font-size: .85rem; margin-top: .4rem; }
.err.on { display: block; }

/* chip-style choices */
.opts { display: flex; flex-wrap: wrap; gap: .55rem; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt span {
  display: block; cursor: pointer;
  border: 1px solid var(--line-hi); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .92rem; color: var(--text-dim);
  transition: all .14s ease;
}
.opt input:checked + span { border-color: var(--cyan); color: var(--cyan); background: rgba(47,228,255,.09); }
.opt input:focus-visible + span { outline: 2px solid var(--yellow); outline-offset: 2px; }

/* big pick cards for the format choice */
.pick { display: grid; gap: .8rem; }
.pick .opt span { border-radius: var(--radius); padding: 1.15rem 1.3rem; color: var(--text); }
.pick .opt span b { display: block; font-family: var(--head); font-size: 1.02rem; font-weight: 700; }
.pick .opt span b .amt { color: var(--yellow); }
.pick .opt span em { display: block; font-style: normal; color: var(--text-dim); font-size: .88rem; margin-top: .3rem; }
.pick .opt input:checked + span { border-color: var(--yellow); background: rgba(255,210,63,.07); }

.nav-btns { display: flex; gap: .8rem; align-items: center; margin-top: 2.2rem; }
.nav-btns .btn-neon, .nav-btns .btn-yellow { flex: 1; }
.back {
  background: none; border: 0; cursor: pointer;
  color: var(--text-mute); font-family: inherit; font-size: .93rem; padding: .8rem .4rem;
}
.back:hover { color: var(--text); }
.saved {
  margin-top: 1.2rem; font-size: .84rem; color: var(--text-mute);
  display: flex; align-items: center; gap: .45rem;
}
.saved::before { content: "✓"; color: var(--cyan); }

.trust { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.trust ul { list-style: none; display: grid; gap: .6rem; }
.trust li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: var(--text-dim); }
.trust li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .91rem; color: var(--text-dim); }
.check input { margin-top: .3rem; flex: none; width: 1.05rem; height: 1.05rem; accent-color: var(--cyan); }
.hp { position: absolute; left: -9999px; }

.review { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-bottom: 1.6rem; }
.review dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.2rem; font-size: .92rem; }
.review dt { color: var(--text-mute); }
.review dd { color: var(--text); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.6rem 5vw; color: var(--text-mute); font-size: .89rem; }
.footer-in { max-width: var(--wrap); margin: 0 auto; display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer a { color: var(--text-mute); text-decoration: none; }
.footer a:hover { color: var(--cyan); }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-brand img { width: 30px; height: 30px; }

.mt { margin-top: 2rem; }
.small { font-size: .86rem; color: var(--text-mute); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
