:root {
  --page-bg: #03100c;
  --page-bg-soft: #071813;
  --panel: rgba(10, 27, 21, 0.72);
  --panel-strong: #0a1c16;
  --text: #f3fbf6;
  --muted: #a7bbb0;
  --green: #79efa7;
  --green-strong: #43cf7f;
  --gold: #e1bd5f;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

p + p {
  margin-top: 0.8rem;
}

.hero-copy > * + *,
.section-heading > * + *,
.final-cta > * + * {
  margin-top: 1rem;
}

.hero-copy .hero-intro,
.section-heading > p:last-child {
  margin-top: 1.25rem;
}

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(68, 207, 127, 0.11), transparent 30rem),
    linear-gradient(180deg, #04110d 0%, #071611 48%, #030a08 100%);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: #04110d;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 14, 11, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  text-decoration: none;
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand img,
.footer-brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #bfd0c7;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(121, 239, 167, 0.34);
  border-radius: 12px;
  color: #05120d;
  background: linear-gradient(180deg, #8af5b3, #51d889);
  box-shadow: 0 10px 32px rgba(67, 207, 127, 0.14);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero-glow-one {
  width: 540px;
  height: 540px;
  top: -280px;
  right: 4%;
  background: rgba(67, 207, 127, 0.13);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  bottom: -250px;
  left: 3%;
  background: rgba(225, 189, 95, 0.09);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.16em;
  color: transparent;
  background: linear-gradient(90deg, #8af5b3 0%, #e1bd5f 70%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: #b8cbc1;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.button-primary {
  color: #04110d;
  background: linear-gradient(180deg, #8af5b3, #4dd485);
  box-shadow: 0 16px 42px rgba(67, 207, 127, 0.17);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #eef9f2;
  background: rgba(255, 255, 255, 0.045);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #bdcec5;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(121, 239, 167, 0.7);
}

.timer-preview {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 18%, rgba(67, 207, 127, 0.19), transparent 33%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    #07140f;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.timer-preview::after {
  content: "";
  position: absolute;
  inset: auto 12% -25% 12%;
  height: 45%;
  border-radius: 50%;
  background: rgba(67, 207, 127, 0.14);
  filter: blur(55px);
}

.preview-topbar,
.preview-brand,
.preview-blinds,
.preview-stats {
  display: flex;
  align-items: center;
}

.preview-topbar {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 15px;
}

.preview-brand {
  gap: 8px;
  letter-spacing: 0.08em;
}

.live-badge {
  padding: 6px 10px;
  border: 1px solid rgba(121, 239, 167, 0.24);
  border-radius: 999px;
  color: #a8f5c5;
  background: rgba(67, 207, 127, 0.08);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.preview-level {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  color: var(--gold);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.preview-time {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  text-align: center;
  font-size: clamp(5rem, 9vw, 7.6rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
  text-shadow: 0 0 32px rgba(121, 239, 167, 0.13);
}

.preview-blinds {
  position: relative;
  z-index: 1;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.preview-blinds div {
  min-width: 130px;
  text-align: center;
}

.preview-blinds span,
.preview-stats span {
  display: block;
  color: #91a69b;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-blinds strong {
  display: block;
  margin-top: 2px;
  font-size: 2.2rem;
  line-height: 1.2;
}

.preview-blinds b {
  color: rgba(255, 255, 255, 0.28);
  font-size: 2rem;
}

.preview-ante {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 8px 13px;
  border-radius: 10px;
  color: #a8bdb2;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.preview-ante strong {
  margin-left: 7px;
  color: #fff;
}

.preview-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 36px;
}

.preview-stats div {
  min-width: 0;
  padding: 13px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
}

.preview-stats strong {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launch-instructions {
  padding: 0 0 28px;
}

.launch-card {
  display: grid;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.launch-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.launch-steps > div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.launch-steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.launch-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.12);
}

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

.proof-grid div {
  padding: 28px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 1.05rem;
}

.proof-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.content-section {
  padding: 112px 0;
}

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

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 23px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), transparent 48%),
    rgba(6, 21, 16, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.feature-number {
  display: block;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.feature-card h3 {
  margin: 55px 0 10px;
  font-size: 1.27rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.steps-section {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 12% 30%, rgba(225, 189, 95, 0.06), transparent 25rem),
    rgba(0, 0, 0, 0.14);
}

.steps-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: 90px;
  align-items: start;
}

.steps-heading,
.faq-heading {
  position: sticky;
  top: 115px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 239, 167, 0.22);
  border-radius: 15px;
  color: var(--green);
  background: rgba(67, 207, 127, 0.07);
  font-weight: 950;
}

.steps-list h3 {
  margin: 0;
  font-size: 1.3rem;
}

.steps-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 850;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 690px;
  margin: -5px 0 25px;
  color: var(--muted);
}

.final-cta-section {
  padding: 0 0 112px;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(121, 239, 167, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(121, 239, 167, 0.13), transparent 35%),
    linear-gradient(135deg, rgba(225, 189, 95, 0.08), transparent 40%),
    #081914;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  margin-bottom: 8px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.site-footer {
  padding: 32px 0 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.17);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand {
  flex-wrap: wrap;
}

.footer-brand strong {
  letter-spacing: 0.08em;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.site-footer nav a {
  color: #b9cbc1;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #fff;
}

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

  .timer-preview {
    width: min(620px, 100%);
    margin: 0 auto;
    transform: none;
  }

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

  .steps-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .steps-heading,
  .faq-heading {
    position: static;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 66px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-section {
    padding: 64px 0 58px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .timer-preview {
    min-height: 500px;
    padding: 18px;
    border-radius: 24px;
  }

  .preview-time {
    font-size: clamp(4.5rem, 23vw, 6.2rem);
  }

  .preview-blinds {
    gap: 10px;
  }

  .preview-blinds div {
    min-width: 110px;
  }

  .preview-blinds strong {
    font-size: 1.8rem;
  }

  .preview-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .launch-steps,
  .proof-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    padding: 20px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .content-section {
    padding: 80px 0;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  .final-cta img {
    margin: 0 auto;
  }

  .footer-inner,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }
}

/* Downloads page */
.downloads-hero {
  padding: 92px 0 48px;
  text-align: center;
}

.downloads-heading {
  max-width: 860px;
}

.downloads-heading h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.downloads-heading > p:last-child {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.downloads-section {
  padding: 26px 0 100px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.download-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(9, 27, 20, 0.76);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.download-card-active {
  border-color: rgba(121, 239, 167, 0.28);
  background:
    radial-gradient(circle at 85% 0%, rgba(67, 207, 127, 0.16), transparent 45%),
    rgba(9, 27, 20, 0.88);
}

.download-card-coming {
  opacity: 0.78;
}

.download-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.platform-mark {
  min-width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 15px;
  color: var(--green);
  background: rgba(255,255,255,0.045);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.download-status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.download-status.available {
  color: #07120f;
  background: var(--green);
}

.download-status.coming {
  color: #d4dfd9;
  background: rgba(255,255,255,0.08);
}

.download-card h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.download-card p {
  margin: 14px 0 28px;
  color: var(--muted);
}

.download-card .button {
  width: 100%;
  margin-top: auto;
}

.download-card small {
  display: block;
  margin-top: 13px;
  color: #82978c;
  text-align: center;
}

.button-disabled {
  cursor: default;
  color: #8fa399;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.button-disabled:hover {
  transform: none;
  filter: none;
}

.browser-download-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.035);
}

.browser-download-note .eyebrow {
  margin-bottom: 8px;
}

.browser-download-note h2 {
  margin: 0;
}

.browser-download-note p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

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

  .download-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .downloads-hero {
    padding-top: 64px;
  }

  .browser-download-note {
    align-items: stretch;
    flex-direction: column;
  }
}
