:root {
  color-scheme: dark;
  --bg: #030604;
  --panel: rgba(10, 18, 17, .86);
  --panel-strong: #0e1b19;
  --text: #f3fff9;
  --muted: #a4b9b1;
  --line: rgba(150, 229, 199, .18);
  --cyan: #74f2d5;
  --blue: #7db7ff;
  --violet: #b9ff7a;
  --pink: #dff8ff;
  --gold: #b9ffdf;
  --ember: #62a8ff;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 14% 8%, rgba(116, 242, 213, .18), transparent 31rem),
    radial-gradient(circle at 88% 10%, rgba(98, 168, 255, .14), transparent 30rem),
    radial-gradient(circle at 52% 42%, rgba(125, 183, 255, .10), transparent 34rem),
    linear-gradient(180deg, #06100e 0%, #030604 46%, #050705 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(3, 6, 4, .78);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  inset: 0 0 auto;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
.footer div {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand img,
.footer img {
  height: 34px;
  width: 34px;
}

.nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav a,
.header-download,
.secondary-action,
.copy-button {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.nav a:hover,
.secondary-action:hover,
.copy-button:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line);
  color: var(--text);
}

.header-download,
.primary-action {
  background: linear-gradient(135deg, #0f8f78, #1768d6 58%, #183a78);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(23, 104, 214, .24);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
}

.primary-action:hover,
.header-download:hover {
  filter: brightness(1.14);
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px clamp(18px, 4vw, 40px);
}

.hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  min-height: calc(100vh - 72px);
}

.eyebrow,
.section-kicker,
.section-heading p {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

.eyebrow span {
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 22px var(--cyan);
  height: 9px;
  width: 9px;
}

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

h1 {
  font-size: clamp(58px, 10vw, 132px);
  letter-spacing: 0;
  line-height: .88;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.lead {
  color: #c7d4e8;
  font-size: clamp(18px, 2vw, 23px);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 20px;
}

.secondary-action {
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
  color: var(--text);
  padding: 12px 18px;
}

.release-strip {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.release-strip span {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
}

.browser-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03)),
    var(--panel);
  border: 1px solid rgba(150, 229, 199, .24);
  border-radius: 28px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, .42);
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: rgba(2, 8, 7, .82);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 14px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  background: #314158;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.window-dots span:nth-child(1) { background: #ff6477; }
.window-dots span:nth-child(2) { background: #ffd166; }
.window-dots span:nth-child(3) { background: #38efac; }

.address-pill {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  flex: 1;
  font-size: 13px;
  padding: 9px 14px;
}

.preview-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(116, 242, 213, .17), transparent 22rem),
    radial-gradient(circle at 86% 18%, rgba(98, 168, 255, .12), transparent 16rem),
    linear-gradient(145deg, rgba(3, 17, 15, .98), rgba(12, 15, 8, .96));
  min-height: 500px;
  padding: 46px;
}

.preview-logo {
  display: block;
  filter: drop-shadow(0 16px 34px rgba(116, 242, 213, .18));
  height: 110px;
  margin: 0 auto 22px;
  max-width: 100%;
  object-fit: contain;
}

.time-card {
  text-align: center;
}

.time-card span {
  display: block;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 900;
  line-height: .95;
}

.time-card small {
  color: var(--muted);
  font-size: 15px;
}

.search-box {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(142, 197, 255, .24);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  margin: 28px auto 22px;
  max-width: 520px;
  padding: 14px 14px 14px 20px;
}

.search-box span {
  color: var(--muted);
}

.search-box strong {
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 999px;
  color: #031018;
  padding: 8px 13px;
}

.shortcut-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.shortcut-grid div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #dbe8fa;
  font-size: 13px;
  font-weight: 800;
  padding: 18px 10px;
  text-align: center;
}

.trust-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
}

.trust-row article,
.feature-grid article,
.download-card,
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-row article {
  padding: 20px;
}

.trust-row strong {
  display: block;
  margin-bottom: 6px;
}

.trust-row span,
.feature-grid p,
.experience-panel p,
.download-card p,
.faq p {
  color: var(--muted);
}

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

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

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

.feature-icon {
  color: var(--cyan);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 32px;
}

.experience-panel,
.download-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(116, 242, 213, .08), rgba(98, 168, 255, .08)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 330px;
  padding: clamp(24px, 5vw, 48px);
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-stack div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.metric-stack strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-stack span {
  color: var(--muted);
  font-size: 13px;
}

.download-box {
  background: rgba(5, 7, 13, .62);
  border: 1px solid rgba(142, 197, 255, .22);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}

.screenshots {
  padding-top: 26px;
}

.screenshot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.screenshot-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.screenshot-grid img {
  background: #030806;
  border-bottom: 1px solid var(--line);
  display: block;
  height: auto;
  width: 100%;
}

.screenshot-grid div {
  padding: 20px;
}

.screenshot-grid span {
  color: var(--cyan);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.screenshot-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.download-box img {
  height: 76px;
  width: 76px;
}

.full,
.copy-button {
  width: 100%;
}

.copy-button {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  cursor: pointer;
  margin-top: 10px;
}

.faq {
  padding-top: 30px;
}

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

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(116, 242, 213, .14), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(98, 168, 255, .13), transparent 24rem),
    rgba(3, 6, 4, .88);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  padding: 48px clamp(18px, 4vw, 56px) 24px;
}

.footer-main {
  max-width: 560px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 48px;
  width: 48px;
}

.footer-brand strong {
  color: var(--text);
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.footer-brand span {
  color: var(--cyan);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-top: 5px;
  text-transform: uppercase;
}

.footer-main p {
  color: #aebbd0;
  font-size: 15px;
  margin: 0;
  max-width: 520px;
}

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

.footer-links div {
  align-content: start;
  align-items: start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.footer-links h3 {
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  padding: 0;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(142, 197, 255, .14);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px 18px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 22px;
}

@media (max-width: 980px) {
  .hero,
  .experience-panel,
  .download-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .browser-preview {
    max-width: 680px;
  }

  .feature-grid,
  .trust-row,
  .screenshot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    max-width: none;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .header-download {
    margin-left: auto;
    padding: 10px 13px;
  }

  .brand span {
    font-size: 14px;
    white-space: nowrap;
  }

  .section-shell {
    padding: 54px 18px;
  }

  .hero {
    min-height: auto;
  }

  .preview-page {
    padding: 28px 18px;
  }

  .preview-logo {
    height: 82px;
  }

  .shortcut-grid,
  .feature-grid,
  .trust-row,
  .screenshot-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 38px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
