:root {
  --ink: #f5f3ef;
  --muted: #a7a8ad;
  --soft: #777a83;
  --night: #080b10;
  --panel: #11151d;
  --line: rgba(255,255,255,.12);
  --orange: #ff7a30;
  --blue: #49a9ff;
  --green: #42c99c;
  --purple: #9b7bff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--night); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.section-wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; padding: 12px max(24px, calc((100vw - 1160px) / 2)); background: rgba(8,11,16,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 750; text-decoration: none; letter-spacing: .01em; }
.brand img { width: 38px; height: 38px; border-radius: 11px; }
nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; }
nav a, .text-link { text-decoration: none; transition: color .2s ease, border-color .2s ease; }
nav a:hover, .text-link:hover, .site-footer a:hover { color: var(--ink); }
.nav-button { padding: 10px 15px; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 480px); gap: clamp(32px, 8vw, 110px); align-items: center; min-height: 760px; padding-top: 74px; padding-bottom: 90px; }
.hero-mark { grid-column: 1 / -1; display: flex; justify-content: center; margin-bottom: -46px; }
.hero-mark img { width: 112px; height: 112px; border-radius: 28px; box-shadow: 0 18px 42px rgba(0,0,0,.38); }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 650px; margin-bottom: 28px; font-size: clamp(46px, 6vw, 82px); line-height: .98; letter-spacing: -.045em; }
h1 em { color: var(--orange); font-style: normal; }
.lede { max-width: 520px; margin-bottom: 34px; color: var(--muted); font-size: 20px; line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 999px; font-weight: 750; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #16110e; }
.button-primary:hover { background: #ff9a5b; }
.text-link { color: var(--muted); font-weight: 650; }
.text-link span, .feature-card a span { color: var(--orange); }
.proof-row { display: flex; gap: 20px; margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--line); }
.proof-row span { display: grid; gap: 2px; min-width: 0; }
.proof-row strong { font-size: 13px; }
.proof-row small { color: var(--soft); font-size: 11px; }
.hero-visual { position: relative; justify-self: center; width: min(100%, 440px); }
.hero-visual::before { position: absolute; inset: 2% -14% -3%; z-index: -1; content: ""; border: 2px solid rgba(255,122,48,.62); border-radius: 50% 50% 46% 46%; box-shadow: 0 0 92px rgba(255,122,48,.2); }
.hero-visual img { width: 100%; max-height: 700px; object-fit: contain; border-radius: 30px; }
.visual-label { position: absolute; top: -26px; right: 12px; z-index: 1; color: var(--soft); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.intro-band, .privacy-band { background: #10151c; border-block: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 40px; align-items: start; padding-block: 100px; }
.intro-grid h2, .privacy-grid h2 { margin: 0; font-size: clamp(32px, 4vw, 55px); line-height: 1.02; letter-spacing: -.04em; }
.intro-grid > p:last-child { max-width: 300px; margin: 8px 0 0; color: var(--muted); }
.feature-section { padding-block: 130px; }
.section-heading { margin-bottom: 50px; }
.section-heading h2 { max-width: 670px; margin: 0; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.045em; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { min-height: 340px; padding: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; }
.feature-card::before { display: block; width: 34px; height: 4px; margin-bottom: 40px; content: ""; background: var(--accent); }
.feature-blue { --accent: var(--blue); } .feature-green { --accent: var(--green); } .feature-purple { --accent: var(--purple); } .feature-orange { --accent: var(--orange); }
.feature-number { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.feature-card h3 { margin: 40px 0 14px; font-size: 25px; line-height: 1.05; letter-spacing: -.03em; }
.feature-card p { min-height: 102px; color: var(--muted); font-size: 14px; }
.feature-card a { color: var(--ink); font-size: 13px; font-weight: 750; text-decoration: none; }
.quote-band { padding-block: 110px; background: var(--orange); color: #17100d; }
.quote-layout { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 40px; align-items: start; }
.quote-band .section-kicker { color: #55301f; }
blockquote { margin: 0; font-size: clamp(32px, 4.5vw, 60px); font-weight: 780; line-height: 1; letter-spacing: -.045em; }
.quote-layout > p:last-child { margin: 8px 0 0; color: #55301f; }
.gallery-section { padding-block: 130px; }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.split-heading > p { max-width: 330px; margin: 0 0 5px; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.shot { margin: 0; overflow: hidden; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; }
.shot img { width: 100%; aspect-ratio: 9 / 19.5; object-fit: cover; object-position: top; mix-blend-mode: screen; }
.shot-large { grid-column: span 1; }
.shot figcaption { display: grid; gap: 2px; padding: 15px 16px 17px; }
.shot figcaption strong { font-size: 15px; }
.shot figcaption span { color: var(--soft); font-size: 12px; }
.more-screenshots { margin-top: 34px; border-top: 1px solid var(--line); }
.more-screenshots summary { padding: 20px 0; color: var(--muted); cursor: pointer; font-weight: 700; }
.gallery-more { padding-top: 12px; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-block: 100px; }
.privacy-grid > div:last-child { max-width: 440px; color: var(--muted); }
.privacy-grid .text-link { display: inline-block; margin-top: 22px; color: var(--ink); }
.download { padding-block: 130px; text-align: center; }
.download h2 { margin: 0 auto 34px; font-size: clamp(45px, 7vw, 90px); line-height: .94; letter-spacing: -.06em; }
.download .section-kicker { color: var(--orange); }
.site-footer { border-top: 1px solid var(--line); color: var(--soft); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; padding-block: 24px; }
.footer-inner div { display: flex; gap: 18px; }
.site-footer a { text-decoration: none; }
@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
  nav a:not(.nav-button) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 70px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(84vw, 420px); }
  .intro-grid, .quote-layout, .privacy-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid .section-kicker, .quote-layout .section-kicker { grid-column: 1 / -1; margin-bottom: -14px; }
  .intro-grid > p:last-child, .quote-layout > p:last-child { grid-column: 2; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .section-wrap { width: min(100% - 34px, 520px); }
  .site-header { padding-inline: 17px; }
  .brand { font-size: 16px; }
  .nav-button { padding: 8px 11px; font-size: 12px; }
  .hero { padding-top: 52px; padding-bottom: 70px; }
  .hero-mark { margin-bottom: -6px; }
  .hero-mark img { width: 88px; height: 88px; border-radius: 22px; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .lede { font-size: 17px; }
  .proof-row { display: grid; grid-template-columns: 1fr 1fr; margin-top: 52px; }
  .proof-row span:last-child { grid-column: 1 / -1; }
  .intro-grid, .quote-layout, .privacy-grid, .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .intro-grid .section-kicker, .quote-layout .section-kicker, .intro-grid > p:last-child, .quote-layout > p:last-child { grid-column: auto; }
  .intro-grid, .privacy-grid { padding-block: 70px; }
  .feature-section, .gallery-section, .download { padding-block: 82px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 24px; }
  .feature-card h3 { margin-top: 32px; }
  .feature-card p { min-height: 0; }
  .quote-band { padding-block: 74px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery .shot-large { grid-column: span 2; }
  .shot figcaption { padding: 11px 12px 13px; }
  .shot figcaption strong { font-size: 13px; }
  .shot figcaption span { font-size: 10px; }
  .footer-inner { display: grid; }
}
