:root {
  --bg: #0f1115;
  --bg-2: #171a21;
  --bg-3: #1d212b;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4efe3;
  --muted: rgba(244, 239, 227, 0.72);
  --accent: #e1bb6d;
  --accent-soft: rgba(225, 187, 109, 0.18);
  --accent-2: #93bbff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 187, 109, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(147, 187, 255, 0.10), transparent 24%),
    radial-gradient(circle at bottom right, rgba(225, 187, 109, 0.08), transparent 20%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.12));
  opacity: 0.45;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 17, 21, 0.72);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #11151b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(225, 187, 109, 0.22), 0 18px 38px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 76px 0 28px;
}

.hero-glow {
  position: absolute;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.24;
  pointer-events: none;
}

.hero-glow-left {
  left: -100px;
  top: 10px;
  background: radial-gradient(circle, rgba(225, 187, 109, 0.46), transparent 65%);
}

.hero-glow-right {
  right: -120px;
  top: 120px;
  background: radial-gradient(circle, rgba(147, 187, 255, 0.34), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(225, 187, 109, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.04em;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #e1bb6d, #f1d594);
  color: #17120a;
  box-shadow: 0 18px 30px rgba(225, 187, 109, 0.18);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow);
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-frame {
  width: min(440px, 100%);
  padding: 16px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #10141a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.52);
}

.device-frame-hero {
  max-width: 470px;
  transform: rotate(4deg);
}

.device-screen {
  border-radius: 28px;
  min-height: 680px;
  padding: 24px 22px 20px;
  background:
    radial-gradient(circle at top, rgba(225, 187, 109, 0.16), transparent 32%),
    linear-gradient(180deg, #151922 0%, #0d1015 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.device-screen-image {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.hero-shot {
  width: 100%;
  display: block;
  border-radius: 28px;
  filter: saturate(1.08) contrast(1.05) brightness(0.99);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.device-top,
.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 239, 227, 0.78);
  font-size: 0.92rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.chip-gold {
  border-color: rgba(225, 187, 109, 0.35);
  color: #f0d699;
}

.timer-ring {
  width: 224px;
  height: 224px;
  margin: 28px auto 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #12161d 57%, transparent 58%),
    conic-gradient(#e1bb6d 0 74%, rgba(255, 255, 255, 0.08) 74% 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.02);
}

.timer-ring-inner {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 30%, rgba(225, 187, 109, 0.08), transparent 56%),
    #11151b;
  display: grid;
  place-items: center;
  text-align: center;
}

.timer-time {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.timer-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.device-card {
  margin-top: 10px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.device-card .card-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.device-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

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

.session-button {
  margin-top: 14px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #e1bb6d, #f2d694);
  color: #17120a;
  font-weight: 800;
  box-shadow: 0 20px 36px rgba(225, 187, 109, 0.22);
}

.sound-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sound-pill {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 239, 227, 0.76);
  font-size: 0.88rem;
}

.sound-active {
  border-color: rgba(225, 187, 109, 0.38);
  color: #f0d699;
}

.sound-locked {
  opacity: 0.7;
}

.device-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  color: rgba(244, 239, 227, 0.54);
  font-size: 0.88rem;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.0));
}

.screenshot-feature {
  margin-bottom: 18px;
}

.screenshot-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.screenshot-hero-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.screenshot-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.screenshot-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(225, 187, 109, 0.18);
  background: rgba(225, 187, 109, 0.08);
  color: #f1d693;
  font-size: 0.86rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  letter-spacing: -0.03em;
}

.section-head p:last-child {
  margin: 12px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
}

.feature-grid,
.screen-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.screen-card,
.trust-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
  min-height: 192px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(225, 187, 109, 0.12);
  border: 1px solid rgba(225, 187, 109, 0.18);
  color: #f0d699;
  font-size: 0.85rem;
  font-weight: 800;
}

.feature-card h3,
.screen-card h3,
.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p,
.screen-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
}

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

.screen-grid-actual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-grid-actual .screen-card:nth-child(2) {
  display: none;
}

.screen-card {
  padding: 14px;
}

.protection-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(225, 187, 109, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.protection-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.protection-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.protection-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.protection-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(225, 187, 109, 0.18);
  background: rgba(225, 187, 109, 0.08);
  color: #f1d693;
  font-size: 0.86rem;
}

.protection-visual {
  display: flex;
  justify-content: center;
}

.screenshot-frame-protection {
  max-width: 560px;
}

.screenshot-frame {
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0f1217;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.screenshot-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
  filter: saturate(1.08) contrast(1.04) brightness(0.99);
}

.screenshot-frame-large {
  padding: 14px;
}

.screenshot-frame-large img {
  border-radius: 24px;
}

.screenshot-frame-logo {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at center, rgba(225, 187, 109, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    #0f1217;
}

.screenshot-frame-split {
  padding: 10px;
}

.theme-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.theme-chip {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.theme-chip.active {
  color: #17120a;
  border-color: transparent;
  background: linear-gradient(135deg, #e1bb6d, #f2d694);
}

.theme-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #151922, #0d1015);
  box-shadow: var(--shadow);
  transition: background 0.22s ease;
}

.theme-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.theme-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.theme-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.theme-sample {
  min-height: 160px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(225, 187, 109, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 30%),
    rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
}

.sample-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #11151b 54%, transparent 55%),
    conic-gradient(#e1bb6d 0 76%, rgba(255, 255, 255, 0.08) 76% 100%);
}

.sample-pill {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(244, 239, 227, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

.trust-card {
  padding: 22px;
  min-height: 168px;
}

.footer {
  padding: 34px 0 52px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.footer-inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer-brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(225, 187, 109, 0.18);
}

.footer-brand-block p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .theme-panel {
    grid-template-columns: 1fr;
  }

  .protection-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 780px) {
  .nav-inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-stats,
  .feature-grid,
  .screen-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .protection-panel {
    padding: 20px;
  }

  .screen-grid-actual {
    grid-template-columns: 1fr;
  }

  .device-screen {
    min-height: 640px;
  }

  .theme-panel {
    padding: 20px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

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

  .btn {
    width: 100%;
  }

  .device-frame {
    padding: 12px;
  }

  .device-screen {
    padding: 20px 16px 16px;
  }

  .timer-ring {
    width: 192px;
    height: 192px;
  }

  .timer-ring-inner {
    width: 132px;
    height: 132px;
  }

  .timer-time {
    font-size: 2.1rem;
  }
}
