:root {
  --bg: #050613;
  --bg-2: #090d3f;
  --surface: rgba(12, 17, 49, 0.78);
  --surface-strong: #11173f;
  --text: #f8f8f3;
  --muted: #aeb7d3;
  --soft: #6f7899;
  --gold: #ffd000;
  --gold-2: #f7a900;
  --green: #18f041;
  --cyan: #39d9ff;
  --red: #ff3e39;
  --line: rgba(255, 208, 0, 0.28);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Aptos", "Segoe UI", Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 208, 0, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(57, 217, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #03040c 0%, var(--bg) 46%, #03040c 100%);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

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

.site-header,
.footer,
.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.3rem;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(255, 208, 0, 0.25), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a,
.footer a,
.button {
  color: var(--text);
  text-decoration: none;
}

.nav a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--gold);
  border-color: var(--line);
}

.section-shell {
  position: relative;
  padding: 72px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 9vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: #dfe3f5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 850;
}

.button.primary {
  color: #050613;
  background: linear-gradient(135deg, var(--gold), #ffef75);
  box-shadow: 0 18px 46px rgba(255, 208, 0, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #f8f8f3;
}

.hero-points {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(24, 240, 65, 0.75);
}

.beta-interest,
.feedback-card {
  border: 1px solid var(--white-line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 23, 63, 0.84), rgba(5, 6, 19, 0.74));
  box-shadow: var(--shadow);
}

.beta-interest {
  max-width: 620px;
  margin-top: 28px;
  padding: 26px;
}

.beta-interest h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.beta-interest-copy {
  margin-bottom: 18px;
  color: #dfe3f5;
}

.beta-interest-actions,
.feedback-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.interest-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.interest-button:hover,
.interest-button:focus-visible {
  border-color: rgba(255, 208, 0, 0.58);
  background: rgba(255, 208, 0, 0.15);
  transform: translateY(-1px);
}

.interest-button.is-active {
  color: #050613;
  background: linear-gradient(135deg, var(--gold), #ffef75);
}

.interest-button:disabled {
  cursor: default;
}

.interest-icon {
  font-size: 1.35rem;
}

.interest-count,
.interest-status,
.feedback-note,
.feedback-status {
  margin: 0;
}

.interest-count {
  color: #f5f2d8;
  font-weight: 800;
}

.interest-status,
.feedback-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.phone-orbit {
  position: absolute;
  width: min(520px, 80vw);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 208, 0, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.12), transparent 62%);
  box-shadow: inset 0 0 80px rgba(255, 208, 0, 0.08);
}

.hero-phone {
  position: relative;
  width: min(430px, 76vw);
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.62));
  transform: rotate(1.5deg);
}

.problem,
.monetization {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.problem p,
.monetization p {
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.steps,
.feature-grid,
.screenshot-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.mode-card,
.feature-grid article,
.faq details {
  border: 1px solid var(--white-line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 23, 63, 0.84), rgba(5, 6, 19, 0.74));
  box-shadow: var(--shadow);
}

.step-card {
  padding: 26px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--gold);
  color: #050613;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mode-card {
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
}

.mode-card.abs {
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 217, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(17, 23, 63, 0.92), rgba(5, 6, 19, 0.82));
}

.mode-card.rel {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 208, 0, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(17, 23, 63, 0.92), rgba(5, 6, 19, 0.82));
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid article h3 {
  color: var(--gold);
}

.screenshot-grid {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}

.shot {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--white-line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.shot img {
  display: block;
  width: 100%;
  border-radius: 22px;
  background: #000;
}

.shot figcaption {
  padding: 12px 4px 2px;
  color: var(--text);
  font-weight: 800;
}

.shot.tall {
  grid-column: span 4;
}

.shot.wide {
  grid-column: span 7;
}

.shot.square {
  grid-column: span 5;
}

.feedback-section {
  padding-top: 24px;
}

.feedback-card {
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 240, 65, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(9, 43, 24, 0.92), rgba(4, 22, 14, 0.88));
  border-color: rgba(24, 240, 65, 0.22);
}

.feedback-form {
  display: grid;
  gap: 18px;
}

.feedback-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid var(--white-line);
  border-radius: 24px;
  background: #ffffff;
  color: #0d1328;
  font: inherit;
  resize: vertical;
}

.feedback-form textarea::placeholder {
  color: #687087;
}

.feedback-form textarea:focus-visible,
.interest-button:focus-visible,
.button:focus-visible,
.nav a:focus-visible,
.footer a:focus-visible {
  outline: 2px solid rgba(255, 208, 0, 0.72);
  outline-offset: 3px;
}

.feedback-note {
  color: var(--soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.use-cases {
  border: 1px solid var(--line);
  border-radius: 36px;
  padding-inline: clamp(22px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 208, 0, 0.13), transparent),
    rgba(255, 255, 255, 0.035);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f5f2d8;
  background: rgba(255, 208, 0, 0.06);
}

.pricing-copy {
  display: grid;
  gap: 12px;
}

.faq {
  max-width: 900px;
}

.faq details {
  margin-bottom: 12px;
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  font-size: 1.1rem;
}

.faq details p {
  margin: 14px 0 0;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 0 54px;
  border-top: 1px solid var(--white-line);
}

.footer strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer a {
  color: var(--muted);
}

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

.reveal {
  animation: rise 700ms ease both;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 200ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .problem,
  .monetization,
  .split,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .shot.tall,
  .shot.wide,
  .shot.square {
    grid-column: span 12;
  }

  .footer {
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .beta-interest-actions,
  .feedback-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .interest-button,
  .feedback-form .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header,
  .footer,
  .section-shell {
    width: min(100% - 22px, 1180px);
  }

  .nav {
    display: none;
  }

  .section-shell {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
.social-proof {
  border-top: 1px solid var(--white-line);
}

.quote-grid,
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-grid blockquote,
.price-card {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-left: 3px solid var(--gold);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 23, 63, 0.84), rgba(5, 6, 19, 0.74));
  box-shadow: var(--shadow);
}

.quote-grid blockquote p {
  color: #e7ebff;
  font-size: 1.04rem;
}

.quote-grid cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 850;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.price-card.premium {
  border-left-color: var(--green);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    animation: none;
  }
}
/* NLtimer mobile nav override: keep navigation available on small screens. */
@media (max-width: 940px) {
  .quote-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    display: flex;
    gap: 6px;
    font-size: 0.9rem;
  }

  .nav a {
    padding: 7px 9px;
  }
}
/* NLtimer visual balance pass */
h1 {
  font-size: clamp(3rem, 7.2vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.lead {
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
}

.eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.mode-card .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.09);
  color: var(--gold);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  letter-spacing: 0.08em;
}

.mode-card h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

.step-card p,
.feature-grid article p,
.mode-card p,
.price-card p,
.price-card li,
.quote-grid blockquote p,
.faq details p {
  font-size: 1rem;
}

.shot.square {
  grid-column: span 4;
  align-self: start;
}

.shot.square img {
  width: min(100%, 260px);
  margin-inline: auto;
}

@media (max-width: 940px) {
  h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .shot.square {
    grid-column: span 12;
  }
}
/* Hide decorative hero orbit: the app screenshot is strong enough on its own. */
.phone-orbit {
  display: none;
}
