@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/font-01.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/font-02.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/font-03.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/font-04.ttf) format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/font-05.ttf) format('truetype');
}

:root {
  --paper: #f6f4ef;
  --paper-strong: #ece8df;
  --ink: #151515;
  --muted: #65635e;
  --line: #d8d3c8;
  --orange: #f68013;
  --orange-dark: #d85f00;
  --blue: #2f6ff5;
  --dark: #10151c;
  --white: #fff;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 14px;
  --shadow: 0 28px 70px rgba(32, 29, 23, .15), 0 2px 9px rgba(32, 29, 23, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--ink); color: white; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.site-header.scrolled { background: rgba(246, 244, 239, .91); backdrop-filter: blur(16px); border-color: rgba(21, 21, 21, .1); }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; letter-spacing: -.03em; }
.brand img { border-radius: 8px; box-shadow: 0 5px 16px rgba(246, 128, 19, .24); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { font-size: 14px; text-decoration: none; color: #373632; }
.site-nav a:hover { color: var(--orange-dark); }
.site-nav .nav-cta { border: 1px solid var(--ink); padding: 9px 15px; border-radius: 7px; color: var(--ink); }
.site-nav .nav-cta:hover { color: white; background: var(--ink); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; width: 23px; height: 1px; background: var(--ink); margin: 6px auto; transition: transform .2s ease; }

.hero { padding: 154px 0 108px; overflow: hidden; background: radial-gradient(circle at 75% 20%, rgba(246,128,19,.09), transparent 30%), var(--paper); }
.hero-grid { display: grid; grid-template-columns: .85fr 1.45fr; align-items: center; gap: 72px; }
.eyebrow, .section-number { margin: 0 0 26px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #28a95b; box-shadow: 0 0 0 4px rgba(40,169,91,.12); }
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0; font-size: clamp(52px, 6.3vw, 92px); line-height: .94; letter-spacing: -.065em; font-weight: 600; }
h1 em { font-family: "Newsreader", Georgia, serif; font-weight: 400; color: var(--orange-dark); }
.hero-lede { max-width: 610px; margin: 31px 0 0; color: #4d4b46; font-size: clamp(18px, 1.55vw, 22px); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 23px; }
.button { min-height: 48px; padding: 13px 20px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 700; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(21,21,21,.17); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 32px rgba(216,95,0,.22); }
.button-light { background: white; color: var(--ink); }
.button-large { min-height: 58px; padding-inline: 25px; }
.windows-mark { width: 17px; height: 17px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.windows-mark i { display: block; background: currentColor; }
.text-link { font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.proof-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 27px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.proof-list li::before { content: "✓"; color: var(--orange-dark); margin-right: 7px; font-weight: 700; }
.hero-visual { min-width: 0; }
.window-frame { background: white; border: 1px solid rgba(21,21,21,.13); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transform: rotate(.7deg); }
.window-bar { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; color: #5d5a54; font-size: 11px; border-bottom: 1px solid #dedbd4; }
.window-title { display: flex; align-items: center; gap: 7px; }
.window-title img { width: 18px; height: 18px; border-radius: 4px; }
.window-controls { letter-spacing: .11em; }
.image-button, .screenshot-card, .gallery-item, .moment-image { border: 0; padding: 0; cursor: zoom-in; color: inherit; background: none; text-align: left; }
.image-button img { display: block; width: 100%; height: auto; aspect-ratio: 2039 / 914; object-fit: contain; }
.visual-caption { display: flex; gap: 12px; margin: 18px 0 0 9px; color: var(--muted); font-size: 12px; }
.visual-caption span { color: var(--orange-dark); font-weight: 700; }

.ticker-statement { overflow: hidden; background: var(--ink); color: white; border-block: 1px solid #292929; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 18px; padding: 14px 0; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-track span { margin-left: 34px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.ticker-track strong { font-size: 13px; font-weight: 500; color: #d9d9d9; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 124px 0; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 120px; align-items: start; }
.section-number { color: var(--orange-dark); }
h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: 1.02; letter-spacing: -.055em; font-weight: 600; }
.intro-copy { padding-top: 43px; color: #4f4d48; font-size: 19px; }
.intro-copy p { margin: 0 0 24px; }

.feature-section { padding-bottom: 55px; }
.section-heading { max-width: 760px; margin-bottom: 100px; }
.feature-row { display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; align-items: center; padding: 68px 0; border-top: 1px solid var(--line); }
.feature-row-reverse { grid-template-columns: 1.28fr .72fr; }
.feature-row-reverse .feature-copy-block { order: 2; }
.feature-index { margin: 0 0 50px; font-family: "Newsreader", Georgia, serif; font-size: 32px; font-style: italic; color: var(--orange-dark); }
.feature-copy-block h3 { margin: 0; max-width: 440px; font-size: clamp(31px, 3vw, 47px); line-height: 1.08; letter-spacing: -.045em; }
.feature-copy-block > p:not(.feature-index) { margin: 25px 0 0; color: var(--muted); font-size: 17px; }
.plain-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.plain-list li::before { content: "—"; margin-right: 10px; color: var(--orange-dark); }
.screenshot-card { overflow: hidden; border-radius: 11px; box-shadow: var(--shadow); background: white; }
.screenshot-card img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; transition: transform .45s cubic-bezier(.2,.65,.25,1); }
.screenshot-card:hover img { transform: scale(1.015); }
.screenshot-card > span { display: block; padding: 13px 16px; color: #68655e; background: white; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.moment-section { overflow: hidden; background: var(--dark); color: white; }
.moment-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: center; }
.section-number-light { color: var(--orange); }
.moment-copy p:not(.section-number) { max-width: 510px; margin: 28px 0; color: #b7bdc5; font-size: 18px; }
.moment-image { border-radius: 14px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.43); transform: perspective(1200px) rotateY(-3deg); }
.moment-image img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }

.gallery-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 60px; }
.gallery-heading > div { max-width: 760px; }
.gallery-heading > p { max-width: 220px; color: var(--muted); font-size: 13px; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-item { min-width: 0; align-self: start; background: white; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.gallery-wide { grid-column: 1 / -1; }
.gallery-item img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 8; object-fit: contain; border-bottom: 1px solid var(--line); transition: filter .2s ease; }
.gallery-wide img { aspect-ratio: 1340 / 472; }
.gallery-item:hover img { filter: brightness(.94); }
.gallery-item > span { display: flex; justify-content: space-between; gap: 16px; padding: 17px 20px; }
.gallery-item b { font-size: 14px; }
.gallery-item small { color: var(--muted); }

.trust-section { background: var(--paper-strong); }
.trust-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.trust-points { border-top: 1px solid #c9c3b8; }
.trust-points article { display: grid; grid-template-columns: 50px .65fr 1fr; gap: 20px; align-items: baseline; padding: 27px 0; border-bottom: 1px solid #c9c3b8; }
.trust-points span { color: var(--orange-dark); font-size: 12px; }
.trust-points h3, .trust-points p { margin: 0; }
.trust-points h3 { font-size: 17px; }
.trust-points p { color: var(--muted); font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-heading > p:last-child { margin-top: 28px; color: var(--muted); font-size: 14px; }
.faq-heading a { text-underline-offset: 4px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; list-style: none; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 22px; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -7px 48px 25px 0; color: var(--muted); font-size: 15px; }

.final-cta { padding: 130px 0; text-align: center; background: radial-gradient(circle at 50% 30%, rgba(246,128,19,.17), transparent 27%), var(--paper); }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta img { margin-bottom: 27px; border-radius: 16px; box-shadow: 0 18px 40px rgba(246,128,19,.25); }
.final-cta h2 { margin-bottom: 35px; font-size: clamp(52px, 7.5vw, 96px); }
.cta-note { color: var(--muted); font-size: 11px; margin-top: 16px; }

.site-footer { padding: 58px 0 38px; color: #c5c7ca; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: .7fr .8fr 1.5fr; gap: 32px; align-items: start; }
.footer-brand { color: white; }
.site-footer p { margin: 5px 0; font-size: 13px; }
.site-footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 24px; }
.site-footer nav a { font-size: 13px; text-decoration: none; }
.site-footer nav a:hover { color: white; }
.copyright { grid-column: 1 / -1; padding-top: 42px; border-top: 1px solid #2b3138; color: #828890; }

.lightbox { width: min(1400px, calc(100vw - 32px)); max-width: none; max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 12px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(5,8,12,.88); backdrop-filter: blur(8px); }
.lightbox img { max-height: calc(100vh - 48px); width: auto; margin: auto; border-radius: 9px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox-close { position: fixed; right: 20px; top: 15px; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(0,0,0,.35); color: white; font-size: 28px; cursor: pointer; }

.legal-main { min-height: calc(100vh - 250px); padding: 150px 0 110px; }
.legal-shell { width: min(760px, calc(100vw - 48px)); margin: 0 auto; }
.legal-shell h1 { font-size: clamp(48px, 7vw, 74px); }
.legal-intro { margin: 28px 0 64px; color: var(--muted); font-size: 19px; }
.legal-content { border-top: 1px solid var(--line); }
.legal-content section { padding: 31px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 23px; letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: #56534d; }
.legal-content a { text-underline-offset: 4px; }
.support-card { padding: 28px; margin-top: 30px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.support-card h2 { margin-bottom: 10px; }

@media (max-width: 980px) {
  .hero-grid, .intro-grid, .moment-grid, .trust-grid, .faq-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-grid { gap: 64px; }
  .hero-copy { max-width: 720px; }
  .intro-copy { padding-top: 0; max-width: 680px; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 45px; }
  .feature-row-reverse .feature-copy-block { order: initial; }
  .feature-copy-block { max-width: 680px; }
  .trust-points { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 30px, 1180px); }
  .site-header { background: rgba(246,244,239,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .nav-shell { min-height: 66px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 15px; right: 15px; top: 74px; display: none; padding: 15px; flex-direction: column; align-items: stretch; gap: 4px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 44px; padding: 10px 12px; }
  .site-nav .nav-cta { margin-top: 5px; text-align: center; }
  .hero { padding: 120px 0 76px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; padding: 9px; }
  .proof-list { display: grid; gap: 7px; }
  .window-frame { transform: none; border-radius: 9px; }
  .window-bar { height: 34px; }
  .section { padding: 84px 0; }
  .section-heading { margin-bottom: 62px; }
  h2 { font-size: clamp(38px, 11.5vw, 55px); }
  .feature-row { padding: 52px 0; }
  .feature-index { margin-bottom: 25px; }
  .gallery-heading { display: block; }
  .gallery-heading > p { margin-top: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-item img, .gallery-wide img { aspect-ratio: 16 / 9; }
  .gallery-item > span { display: block; }
  .gallery-item small { display: block; margin-top: 3px; }
  .trust-points article { grid-template-columns: 35px 1fr; }
  .trust-points p { grid-column: 2; }
  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: clamp(46px, 14vw, 66px); }
  .button-large { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav, .copyright { grid-column: auto; }
}

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

:focus-visible { outline: 3px solid rgba(47,111,245,.75); outline-offset: 4px; }

/* Standalone legal/support pages */
.subpage-main { min-height: calc(100vh - 260px); padding: 150px 0 90px; }
.subpage-shell { width: min(820px, calc(100vw - 48px)); margin-inline: auto; }
.subpage-shell h1 { font-size: clamp(48px, 7vw, 78px); margin-bottom: 28px; }
.subpage-intro { color: var(--muted); font-size: 19px; margin-bottom: 54px; }
.legal-stack { display: grid; gap: 34px; }
.legal-stack section { padding-top: 28px; border-top: 1px solid var(--line); }
.legal-stack h2 { font-size: 27px; letter-spacing: -.035em; margin-bottom: 12px; }
.legal-stack p, .legal-stack li { color: #56534d; }
.subpage-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
@media (max-width: 680px) { .subpage-main { padding-top: 120px; } }
