:root {
  --bg: #0d0e11;
  --surface: #15171b;
  --surface-2: #1b1e23;
  --text: #f3f1eb;
  --muted: #a4a5aa;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #b8d8d0;
  --accent-dark: #163a35;
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  color: #0d0e11;
  background: #fff;
  transform: translateY(-150%);
}

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

.site-header,
.hero,
.stats,
.section,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .93rem;
  font-weight: 680;
  letter-spacing: -.01em;
}

.brand img { border-radius: 9px; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: .86rem;
}

.nav > a:not(.button):hover,
.site-footer a:hover { color: var(--text); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  color: #0b1513;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 720;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #d1e6e1;
  border-color: #d1e6e1;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: .82rem;
}

.hero {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  min-height: 690px;
  padding: 74px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow { display: flex; align-items: center; gap: 9px; }
.hero .eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(184, 216, 208, .1); }

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
}

.hero-text {
  max-width: 520px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.hero-actions { display: flex; align-items: center; gap: 24px; }
.text-link { color: var(--muted); font-size: .9rem; }
.text-link:hover { color: var(--text); }
.microcopy { margin: 14px 0 0; color: #73757b; font-size: .73rem; }

.product-stage {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
}

.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #555960; }
.browser-bar > div { margin-left: 10px; color: #6f7278; font-size: .63rem; }
.product-frame { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.product-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity .16s ease; }
.product-frame img.is-changing { opacity: .25; }

.preview-switcher {
  position: absolute;
  right: 15px;
  bottom: 14px;
  display: flex;
  gap: 7px;
  padding: 8px;
  background: rgba(13,14,17,.82);
  border: 1px solid var(--line);
  border-radius: 99px;
  backdrop-filter: blur(14px);
}

.preview-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #62666c;
  cursor: pointer;
}

.preview-dot.is-active { background: var(--accent); box-shadow: 0 0 0 4px rgba(184,216,208,.12); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div { padding: 25px 24px; border-right: 1px solid var(--line); }
.stats div:first-child { padding-left: 0; }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; margin-bottom: 2px; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.stats span { color: var(--muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.section { padding: 130px 0; }
.section-heading { max-width: 640px; margin-bottom: 55px; }
.section-heading h2,
.closing h2 { margin-bottom: 20px; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.section-heading > p:last-child { max-width: 500px; margin-bottom: 0; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.gallery-card-wide { grid-column: 1 / -1; }
.gallery-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.gallery-card:hover img { transform: scale(1.018); }
.gallery-card figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 11px; color: #fff; background: rgba(13,14,17,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 7px; font-size: .75rem; backdrop-filter: blur(12px); }
.gallery-card figcaption span { margin-right: 8px; color: var(--accent); }

.features { border-top: 1px solid var(--line); }
.compact-heading { margin-bottom: 45px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid article { min-height: 230px; padding: 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-index { color: var(--accent); font-size: .68rem; letter-spacing: .12em; }
.feature-grid h3 { margin: 47px 0 8px; font-size: 1.08rem; letter-spacing: -.015em; }
.feature-grid p { max-width: 390px; margin-bottom: 0; color: var(--muted); font-size: .88rem; }

.closing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 45px;
  background: var(--accent-dark);
  border-radius: 14px;
}

.closing h2 { margin-bottom: 0; }
.button-light { color: #0b1513; background: #f1eee6; border-color: #f1eee6; white-space: nowrap; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px 0;
  margin-top: 90px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .76rem;
}

.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 20px; }
.footer-brand { color: var(--text); }
.copyright { text-align: right; }

.legal-page { min-height: 100vh; }
.legal-main { width: min(calc(100% - 40px), 760px); margin: 90px auto 140px; }
.legal-main h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3rem, 7vw, 5.8rem); }
.legal-meta { margin-bottom: 55px; color: var(--muted); font-size: .82rem; }
.legal-content { padding-top: 42px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 46px 0 14px; font-family: inherit; font-size: 1.08rem; font-weight: 680; letter-spacing: -.015em; line-height: 1.4; }
.legal-content p,
.legal-content li { color: var(--muted); font-size: .94rem; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.not-found { min-height: 100vh; display: grid; place-items: center; padding: 30px; text-align: center; }
.not-found h1 { margin-bottom: 14px; font-size: clamp(5rem, 18vw, 12rem); }
.not-found p { margin-bottom: 30px; color: var(--muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; }
  .hero-copy { max-width: 690px; }
  .product-stage { max-width: 760px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stats div:nth-child(3) { padding-left: 0; }
  .closing { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 640px) {
  .site-header, .hero, .stats, .section, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 68px; }
  .nav > a:not(.button) { display: none; }
  .brand span { font-size: .84rem; }
  .button-small { min-height: 36px; padding-inline: 12px; }
  .hero { gap: 50px; padding: 68px 0 72px; }
  h1 { font-size: clamp(3.25rem, 16vw, 4.9rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .microcopy { margin-top: 18px; }
  .browser-bar { height: 34px; }
  .stats div { padding: 19px 12px; }
  .stats div:first-child, .stats div:nth-child(3) { padding-left: 0; }
  .stats strong { font-size: 1.35rem; }
  .stats span { font-size: .58rem; }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .closing h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .gallery { grid-template-columns: 1fr; }
  .gallery-card-wide { grid-column: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 205px; padding: 25px; }
  .feature-grid h3 { margin-top: 37px; }
  .closing { width: calc(100% - 28px); padding: 58px 24px; }
  .site-footer { grid-template-columns: 1fr; margin-top: 65px; }
  .site-footer nav { order: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
