:root {
    --ink: #17121d;
    --ink-soft: #211927;
    --paper: #efebef;
    --paper-soft: #e7e1e8;
    --text-muted: #766b79;
    --dark-muted: #a99daf;
    --line-light: #d0c7d2;
    --line-dark: #3a2d42;
    --pink: #ef7fba;
    --mint: #7bd8c8;
    --max: 1180px;
    --mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    --sans: Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--mint); color: var(--ink); }

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 2000;
    padding: 9px 12px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
    min-height: 70px;
    padding: max(14px, env(safe-area-inset-top)) clamp(18px, 4vw, 42px) 13px;
    background: rgba(23, 18, 29, .97);
    color: var(--paper);
    border-bottom: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    width: max-content;
    text-decoration: none;
}
.brand-main {
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.045em;
}
.brand-sub {
    color: #93869c;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .05em;
}
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }
.nav-link {
    position: relative;
    color: #b9aebf;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 11px;
    transition: color .18s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--paper); }
.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--mint);
}
.download-link { color: var(--mint); }
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--paper);
    padding: 8px 0 8px 12px;
    font-family: var(--mono);
    font-size: 11px;
    gap: 8px;
}

.quiet-label {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.quiet-label.accent { color: var(--mint); }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.button {
    min-height: 46px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid currentColor;
    font-family: var(--mono);
    font-size: 11px;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.button.primary:hover { background: #92e2d5; border-color: #92e2d5; }
.button.text-button { border-color: transparent; padding-left: 8px; padding-right: 8px; }

/* HOME */
.home-page { background: var(--paper); }
.home-intro {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line-light);
    background: var(--paper);
}

/*
 * The house is deliberately a background layer rather than an image box.
 * It always terminates at the viewport edge, so there is no rectangular
 * image edge for a browser/window size to reveal.
 */
.home-intro::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(660px, 61vw, 1120px);
    background-image: url("/assets/images/home-house.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 52% 48%;
    transform: scale(1.025);
    transform-origin: right center;
}

/* The only fade is on the inside of the image; its outside edge is off-screen. */
.home-intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -2px 0 -2px auto;
    width: min(76vw, 1320px);
    pointer-events: none;
    background:
        linear-gradient(90deg,
            var(--paper) 0%,
            rgba(239, 235, 239, .995) 18%,
            rgba(239, 235, 239, .96) 31%,
            rgba(239, 235, 239, .78) 43%,
            rgba(239, 235, 239, .42) 55%,
            rgba(239, 235, 239, .13) 66%,
            rgba(239, 235, 239, 0) 77%),
        linear-gradient(180deg,
            rgba(239, 235, 239, .12) 0%,
            rgba(239, 235, 239, 0) 15%,
            rgba(239, 235, 239, 0) 76%,
            rgba(239, 235, 239, .34) 90%,
            var(--paper) 100%);
}

.home-intro-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    min-height: clamp(520px, 55vw, 720px);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 58px) clamp(72px, 9vw, 110px);
    display: flex;
    align-items: center;
}
.home-intro-copy {
    width: min(690px, 61%);
    transform: translateY(-10px);
}
.home-intro h1 {
    margin: 0;
    font-size: clamp(76px, 14vw, 172px);
    line-height: .78;
    letter-spacing: -.075em;
    font-weight: 800;
}
.home-lede {
    max-width: 680px;
    margin: 38px 0 0;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.25;
    letter-spacing: -.025em;
}
.home-product {
    background: var(--ink);
    color: var(--paper);
}
.home-product-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}
.home-product-image {
    display: block;
    padding: 10px;
    background: #100c14;
    border: 1px solid var(--line-dark);
    overflow: hidden;
    text-decoration: none;
}
.home-product-image img {
    width: 100%;
    transition: transform .35s ease;
}
.home-product-image:hover img { transform: scale(1.008); }
.home-product-copy .quiet-label { color: var(--mint); }
.home-product-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(46px, 6vw, 82px);
    line-height: .9;
    letter-spacing: -.06em;
}
.product-one-line {
    margin: 0 0 18px;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.28;
    letter-spacing: -.02em;
}
.product-detail { margin: 0; color: var(--dark-muted); max-width: 46ch; font-size: 14px; }
.format-line {
    margin: 28px 0 24px;
    color: #887c91;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .05em;
}
.home-about { border-bottom: 1px solid var(--line-light); }
.home-about-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(62px, 8vw, 100px) clamp(20px, 5vw, 58px);
    display: grid;
    grid-template-columns: 180px minmax(0, 640px);
    gap: 40px;
}
.home-about h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.04em; }
.home-about p:last-child { margin: 0; color: #625968; max-width: 58ch; }

/* PRODUCT */
.product-page { background: var(--ink); color: var(--paper); }
.product-hero { background: var(--ink); }
.product-hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(62px, 9vw, 112px) clamp(20px, 5vw, 58px) clamp(64px, 8vw, 96px);
    display: grid;
    grid-template-columns: minmax(300px, .66fr) minmax(0, 1.34fr);
    gap: clamp(64px, 8vw, 112px);
    align-items: center;
}
.product-hero-copy h1 {
    margin: 0;
    max-width: 640px;
    font-size: clamp(54px, 7vw, 94px);
    line-height: .94;
    letter-spacing: -.06em;
}
.product-deck {
    margin: 30px 0 22px;
    max-width: 520px;
    color: #d7cedb;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.28;
    letter-spacing: -.025em;
}
.product-facts {
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    color: #8f8298;
    font-family: var(--mono);
    font-size: 10px;
}
.product-hero-image {
    margin: 0;
    padding: 10px;
    background: #100c14;
    border: 1px solid var(--line-dark);
    overflow: hidden;
}
.product-hero-image img,
.product-hero-image video {
    display: block;
    width: 100%;
    height: auto;
}
.product-hero-video {
    transform: translateX(clamp(14px, 2vw, 30px));
}
.product-hero-video video {
    aspect-ratio: 1280 / 932;
    object-fit: cover;
    background: #100c14;
}

.product-section { border-top: 1px solid; }
.product-section.light { background: var(--paper); color: var(--ink); border-color: var(--line-light); }
.product-section.dark { background: var(--ink); color: var(--paper); border-color: var(--line-dark); }
.section-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 58px);
}
.section-wrap.narrow { max-width: 1000px; }
.section-wrap h2 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.05em;
}
.section-lede {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 17px;
}
.simple-steps {
    list-style: none;
    margin: 54px 0 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
}
.simple-steps li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-light);
}
.simple-steps li > span { color: #918595; font-family: var(--mono); font-size: 10px; padding-top: 4px; }
.simple-steps strong { display: block; margin-bottom: 3px; font-size: 18px; }
.simple-steps p { margin: 0; color: var(--text-muted); font-size: 14px; }

.section-intro-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 50px;
    align-items: end;
    margin-bottom: 48px;
}
.section-side-copy { margin: 0; color: var(--dark-muted); font-size: 14px; }
.plain-feature-list {
    border-top: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.plain-feature-list > div {
    min-height: 98px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
}
.plain-feature-list > div:nth-child(odd) { padding-right: 36px; }
.plain-feature-list > div:nth-child(even) { padding-left: 36px; border-left: 1px solid var(--line-dark); }
.plain-feature-list strong { color: var(--pink); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .05em; }
.plain-feature-list span { color: #c1b6c7; font-size: 14px; }

.screenshots .section-wrap { padding-top: 24px; }
.screenshot-story { border-top: 1px solid var(--line-dark); }
.shot {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
    gap: clamp(34px, 6vw, 74px);
    align-items: center;
    padding: clamp(42px, 6vw, 72px) 0;
    border-bottom: 1px solid var(--line-dark);
}
.shot:last-child { border-bottom: 0; }
.shot figure { margin: 0; background: #100c14; border: 1px solid var(--line-dark); padding: 8px; }
.shot figure img { width: 100%; }
.shot-tall figure { max-width: 640px; justify-self: start; }
.shot h3 { margin: 0 0 10px; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.035em; }
.shot p { margin: 0; color: var(--dark-muted); font-size: 14px; }

.details-layout {
    display: grid;
    grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
    gap: clamp(50px, 9vw, 110px);
}
.simple-faq { border-top: 1px solid var(--line-light); }
.simple-faq details { border-bottom: 1px solid var(--line-light); }
.simple-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
}
.simple-faq summary::-webkit-details-marker { display: none; }
.simple-faq summary::after { content: "+"; color: #8c7f90; font-family: var(--mono); font-size: 14px; }
.simple-faq details[open] summary::after { content: "−"; }
.faq-answer { max-width: 680px; padding: 0 34px 22px 0; color: var(--text-muted); font-size: 14px; }

.download-zone { background: var(--ink-soft); color: var(--paper); border-top: 1px solid var(--line-dark); }
.download-layout {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: clamp(48px, 9vw, 108px);
    align-items: start;
}
.download-intro h2 { margin: 0 0 18px; font-size: clamp(46px, 6vw, 76px); line-height: .95; letter-spacing: -.055em; }
.download-intro > p:not(.quiet-label):not(.download-format) { margin: 0; max-width: 43ch; color: #bdb2c3; }
.download-format { margin: 24px 0 0; color: #84788c; font-family: var(--mono); font-size: 10px; }
.download-form-wrap { border-top: 1px solid var(--line-dark); }
.download-form { padding-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { color: #aca1b2; font-family: var(--mono); font-size: 10px; }
.field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #4a3b53;
    border-radius: 0;
    padding: 0 13px;
    background: #17121d;
    color: var(--paper);
    outline: none;
    appearance: none;
    transition: border-color .18s ease, background .18s ease;
}
.field input:focus { border-color: var(--mint); background: #1b1522; }
.field input::placeholder { color: #62556b; }
.form-submit {
    margin-top: 18px;
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--mint);
    border-radius: 0;
    background: var(--mint);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    transition: background .18s ease, border-color .18s ease;
}
.form-submit:hover:not(:disabled) { background: #92e2d5; border-color: #92e2d5; }
.form-submit:disabled { cursor: not-allowed; background: #493e4d; border-color: #493e4d; color: #8f8393; }
.form-note { margin: 13px 0 0; color: #776b7f; font-size: 10px; line-height: 1.55; }
.form-note a { text-underline-offset: 2px; }
.form-status { min-height: 18px; margin-top: 11px; font-family: var(--mono); font-size: 10px; }
.form-status.is-error { color: #ff98c7; }
.form-status.is-success { color: var(--mint); }
.download-fallback {
  color: currentColor;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.download-fallback:hover { opacity: .72; }

.bot-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

/* Privacy */
.privacy-page { background: var(--paper); }
.privacy-hero {
    background: var(--ink);
    color: var(--paper);
    border-bottom: 1px solid var(--line-dark);
}
.privacy-hero-inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 58px) clamp(68px, 8vw, 106px);
}
.privacy-hero .quiet-label { color: var(--mint); }
.privacy-hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(52px, 7.5vw, 104px);
    line-height: .9;
    letter-spacing: -.065em;
}
.privacy-deck {
    max-width: 670px;
    margin: 30px 0 0;
    color: #c9bfce;
    font-size: clamp(19px, 2vw, 27px);
    line-height: 1.3;
    letter-spacing: -.022em;
}
.privacy-updated {
    margin: 38px 0 0;
    color: #766c7e;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .035em;
}
.privacy-content { background: var(--paper); }
.privacy-content-inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 58px) clamp(84px, 11vw, 140px);
    display: grid;
    grid-template-columns: minmax(190px, .45fr) minmax(0, 1.25fr);
    gap: clamp(48px, 9vw, 126px);
    align-items: start;
}
.privacy-summary {
    position: sticky;
    top: 112px;
    max-width: 260px;
}
.privacy-summary-mark {
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
    background: var(--ink);
    -webkit-mask: url('/assets/brand/home-mark-rounded.svg?v=2') center / contain no-repeat;
    mask: url('/assets/brand/home-mark-rounded.svg?v=2') center / contain no-repeat;
}
.privacy-summary p {
    margin: 0;
    color: #756b79;
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.75;
}
.privacy-policy {
    max-width: 760px;
    border-top: 1px solid var(--line-light);
}
.privacy-block {
    padding: clamp(28px, 4vw, 42px) 0;
    border-bottom: 1px solid var(--line-light);
}
.privacy-block h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(23px, 2.6vw, 32px);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.privacy-block p {
    max-width: 68ch;
    margin: 0;
    color: #675e6b;
    font-size: 15px;
    line-height: 1.72;
}
.privacy-block p + p { margin-top: 14px; }
.privacy-block a {
    color: var(--ink);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
.privacy-block a:hover { color: #4d4451; }
.privacy-contact { border-bottom: 0; }


.site-footer {
    background: #0f0c12;
    color: var(--paper);
    padding: 38px clamp(20px, 5vw, 58px) calc(22px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px 40px;
    align-items: start;
    border-top: 1px solid #2e2434;
}
.footer-main { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.footer-home { font-size: 20px; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.footer-main span { color: #746a7b; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: #9d92a3; font-family: var(--mono); font-size: 10px; text-decoration: none; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid #261e2b; color: #5e5564; font-family: var(--mono); font-size: 9px; }

@media (max-width: 920px) {
    .home-product-inner, .product-hero-inner { grid-template-columns: 1fr; }
    .home-intro::before {
        width: 66vw;
        min-width: 570px;
        background-position: 54% 47%;
    }
    .home-intro::after { width: 86vw; }
    .home-intro-copy { width: min(650px, 68%); }
    .home-product-image, .product-hero-image { max-width: 820px; }
    .product-hero-video { transform: none; }
    .home-product-copy { max-width: 660px; }
    .product-hero-copy { max-width: 760px; }
    .section-intro-row { grid-template-columns: 1fr; align-items: start; }
    .plain-feature-list { grid-template-columns: 1fr; }
    .plain-feature-list > div:nth-child(odd), .plain-feature-list > div:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
    .shot { grid-template-columns: 1fr; }
    .shot > div { max-width: 620px; }
    .details-layout, .download-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .site-header { min-height: 64px; padding-left: 17px; padding-right: 17px; }
    .brand-sub { display: none; }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: rgba(23, 18, 29, .99);
        border-bottom: 1px solid var(--line-dark);
        padding: 6px 17px 16px;
    }
    .site-nav.is-open { display: grid; gap: 0; }
    .nav-link { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid #2d2333; }
    .nav-link.is-active::after { display: none; }

    .home-intro {
        min-height: 650px;
    }
    .home-intro::before {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 54%;
        min-width: 0;
        transform: scale(1.03);
        transform-origin: center bottom;
        background-size: cover;
        background-position: 50% 47%;
    }
    .home-intro::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 62%;
        background:
            linear-gradient(180deg,
                var(--paper) 0%,
                rgba(239, 235, 239, .97) 13%,
                rgba(239, 235, 239, .76) 27%,
                rgba(239, 235, 239, .34) 41%,
                rgba(239, 235, 239, .06) 53%,
                rgba(239, 235, 239, 0) 64%),
            linear-gradient(90deg,
                rgba(239, 235, 239, .04) 0%,
                rgba(239, 235, 239, 0) 8%,
                rgba(239, 235, 239, 0) 92%,
                rgba(239, 235, 239, .04) 100%);
    }
    .home-intro-inner {
        min-height: 650px;
        padding: 58px 19px 300px;
        align-items: flex-start;
    }
    .home-intro-copy {
        width: 100%;
        max-width: none;
        transform: none;
    }
    .home-intro h1 { font-size: clamp(76px, 28vw, 126px); }
    .home-lede {
        margin-top: 28px;
        max-width: 22ch;
        font-size: 20px;
    }
    .home-product-inner { padding: 56px 19px 64px; gap: 34px; }
    .home-product-image { padding: 7px; }
    .home-product-copy h2 { font-size: 48px; }
    .home-about-inner { padding: 56px 19px 64px; grid-template-columns: 1fr; gap: 8px; }

    .product-hero-inner { padding: 58px 17px 64px; gap: 38px; }
    .product-hero-copy h1 { font-size: clamp(52px, 15vw, 76px); }
    .product-deck { font-size: 20px; }
    .product-hero-image { padding: 7px; }
    .section-wrap { padding: 62px 17px; }
    .section-wrap h2 { font-size: 40px; }
    .section-lede { font-size: 16px; }
    .simple-steps { margin-top: 40px; }
    .simple-steps li { grid-template-columns: 42px 1fr; padding: 19px 0; }
    .plain-feature-list > div { grid-template-columns: 98px 1fr; gap: 14px; min-height: 88px; }
    .screenshots .section-wrap { padding-top: 20px; }
    .shot { padding: 38px 0; gap: 22px; }
    .shot figure { padding: 6px; }
    .details-layout { gap: 32px; }
    .simple-faq summary { font-size: 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; padding-left: 17px; padding-right: 17px; }
    .footer-bottom { grid-column: auto; }

    .privacy-hero-inner { padding: 64px 19px 62px; }
    .privacy-hero h1 { font-size: clamp(50px, 15vw, 74px); }
    .privacy-deck { margin-top: 24px; font-size: 19px; }
    .privacy-updated { margin-top: 30px; }
    .privacy-content-inner {
        padding: 54px 19px 82px;
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .privacy-summary {
        position: static;
        max-width: none;
        padding-bottom: 34px;
        border-bottom: 1px solid var(--line-light);
    }
    .privacy-summary-mark { width: 27px; height: 27px; margin-bottom: 18px; }
    .privacy-summary p { line-height: 1.7; }
    .privacy-block { padding: 28px 0; }
    .privacy-block h2 { font-size: 25px; }
    .privacy-block p { font-size: 15px; line-height: 1.68; }
}


/* HOME secondary mark */
.brand { align-items: center; gap: 9px; }
.brand-mark,
.home-mark-large,
.footer-mark {
    display: inline-block;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("/assets/brand/home-mark-rounded.svg?v=2") center / contain no-repeat;
    mask: url("/assets/brand/home-mark-rounded.svg?v=2") center / contain no-repeat;
}
.brand-mark { width: 23px; height: 23px; }
.home-mark-large {
    width: 42px;
    height: 42px;
    margin: 0 0 30px;
    color: var(--ink);
    opacity: .9;
}
.footer-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-mark { width: 19px; height: 19px; }

@media (max-width: 720px) {
    .brand { gap: 8px; }
    .brand-mark { width: 21px; height: 21px; }
    .home-mark-large { width: 36px; height: 36px; margin-bottom: 25px; }
}

/* HOME 001 platform selector */
.platform-picker {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    min-width: 0;
}
.platform-picker legend {
    margin: 0 0 9px;
    color: #aca1b2;
    font-family: var(--mono);
    font-size: 10px;
}
.platform-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.platform-picker legend { grid-column: 1 / -1; }
.platform-option {
    position: relative;
    min-height: 62px;
    padding: 12px 13px;
    border: 1px solid #4a3b53;
    background: #17121d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
}
.platform-option:hover { border-color: #75647f; }
.platform-option:has(input:checked) {
    border-color: var(--mint);
    background: #1b1522;
}
.platform-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.platform-copy { display: grid; gap: 3px; }
.platform-copy strong { font-size: 14px; font-weight: 650; }
.platform-copy small { color: #776b7f; font-family: var(--mono); font-size: 9px; }
.platform-check { color: #4f4357; font-size: 10px; transition: color .18s ease; }
.platform-option:has(input:checked) .platform-check { color: var(--mint); }
.platform-option.is-unavailable { opacity: .38; cursor: not-allowed; }

@media (max-width: 520px) {
    .platform-picker { grid-template-columns: 1fr; }
    .platform-picker legend { grid-column: auto; }
}


/* Download handoff */
.download-ready-page main { min-height: 70vh; }
.ready-zone { min-height:min(720px,72vh); display:grid; place-items:center; padding:clamp(72px,10vw,140px) 22px; background:#17121d; }
.ready-card { width:min(560px,100%); text-align:center; }
.ready-mark { width:48px; height:48px; margin:0 auto 28px; background:currentColor; color:#f4eee6; -webkit-mask:url('/assets/brand/home-mark-rounded.svg') center/contain no-repeat; mask:url('/assets/brand/home-mark-rounded.svg') center/contain no-repeat; opacity:.92; }
.ready-card h1 { margin:8px 0 14px; color:#f4eee6; font-size:clamp(36px,6vw,62px); line-height:.98; letter-spacing:-.045em; font-weight:500; }
.ready-copy { margin:0 0 32px; color:#bdb3c1; font-size:15px; }
.ready-download { width:100%; min-height:58px; display:flex; align-items:center; justify-content:space-between; gap:18px; padding:0 20px; border-radius:14px; background:#f4eee6; color:#17121d; text-decoration:none; font-size:16px; font-weight:650; transition:transform 160ms ease,opacity 160ms ease; }
.ready-download:hover { transform:translateY(-1px); }
.ready-download:active { transform:translateY(0); opacity:.88; }
.ready-note,.ready-help { margin:18px auto 0; max-width:470px; color:#aaa0ad; font-size:13px; line-height:1.55; }
.ready-help { color:#817787; }
.ready-back { display:inline-block; margin-top:30px; color:#bdb3c1; font-size:13px; text-decoration:none; border-bottom:1px solid rgba(189,179,193,.35); }
@media (max-width:640px) { .ready-zone{padding:64px 18px 84px;min-height:68vh}.ready-download{min-height:60px} }

/* HOME 001 condensed product flow */
.product-brief .section-wrap {
    padding-top: clamp(56px, 7vw, 82px);
    padding-bottom: clamp(56px, 7vw, 82px);
}
.product-brief-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: clamp(44px, 8vw, 92px);
    align-items: end;
}
.product-brief .section-lede {
    max-width: 650px;
    margin-top: 20px;
}
.brief-facts {
    border-top: 1px solid var(--line-light);
}
.brief-facts > div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
}
.brief-facts strong {
    color: #6e6173;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .045em;
}
.brief-facts span {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}
.product-brief + .screenshots {
    border-top-color: var(--line-dark);
}
.product-brief + .screenshots .section-wrap {
    padding-top: clamp(42px, 5vw, 58px);
}
.compact-details .section-wrap {
    padding-top: clamp(50px, 6vw, 68px);
    padding-bottom: clamp(50px, 6vw, 68px);
}
.detail-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}
.detail-strip > div {
    padding: 19px 24px 20px 0;
    display: grid;
    gap: 4px;
}
.detail-strip > div + div {
    border-left: 1px solid var(--line-light);
    padding-left: 24px;
}
.detail-strip strong {
    font-size: 14px;
    letter-spacing: -.01em;
}
.detail-strip span {
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.5;
}
.download-card-head { display: none; }

@media (max-width: 920px) {
    .product-brief-grid { grid-template-columns: 1fr; gap: 34px; }
    .brief-facts { max-width: 700px; }
}

@media (max-width: 720px) {
    .product-hero-inner {
        padding-top: 46px;
        padding-bottom: 52px;
        gap: 30px;
    }
    .product-deck { margin-top: 24px; }
    .product-brief .section-wrap {
        padding-top: 48px;
        padding-bottom: 46px;
    }
    .product-brief-grid { gap: 30px; }
    .brief-facts > div {
        grid-template-columns: 96px 1fr;
        gap: 14px;
        padding: 14px 0;
    }
    .product-brief + .screenshots .section-wrap {
        padding-top: 34px;
        padding-bottom: 48px;
    }
    .screenshots .quiet-label { margin-bottom: 4px; }
    .shot {
        padding: 30px 0;
        gap: 18px;
    }
    .shot h3 { font-size: 25px; }
    .compact-details .section-wrap {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .detail-strip {
        grid-template-columns: 1fr;
    }
    .detail-strip > div,
    .detail-strip > div + div {
        padding: 15px 0;
        border-left: 0;
    }
    .detail-strip > div + div { border-top: 1px solid var(--line-light); }

    /* Mobile download card */
    .download-zone .section-wrap {
        padding-top: 52px;
        padding-bottom: 68px;
    }
    .download-layout { gap: 24px; }
    .download-intro h2 {
        margin-bottom: 12px;
        font-size: 50px;
    }
    .download-intro > p:not(.quiet-label):not(.download-format) {
        max-width: 32ch;
        font-size: 14px;
        line-height: 1.5;
    }
    .download-format { margin-top: 16px; }
    .download-form-wrap {
        border-top: 0;
        border-radius: 16px;
        padding: 17px;
        background: var(--paper);
        color: var(--ink);
        box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
    }
    .download-card-head {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 1px 1px 14px;
        color: #756a79;
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: .04em;
        text-transform: uppercase;
    }
    .download-form {
        padding-top: 0;
    }
    .platform-picker {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    .platform-picker legend {
        grid-column: 1 / -1;
        color: #726777;
        margin-bottom: 7px;
    }
    .platform-option {
        min-height: 68px;
        padding: 11px 12px;
        background: #faf7fa;
        border-color: #d2c9d4;
        color: var(--ink);
        border-radius: 10px;
    }
    .platform-option:hover { border-color: #9f93a4; }
    .platform-option:has(input:checked) {
        background: var(--ink);
        border-color: var(--ink);
        color: var(--paper);
    }
    .platform-copy small { color: #84798a; }
    .platform-option:has(input:checked) .platform-copy small { color: #a99daf; }
    .platform-check { color: #b9afbce0; }
    .field { gap: 6px; }
    .field label { color: #726777; }
    .field input {
        min-height: 54px;
        border-color: #d2c9d4;
        border-radius: 10px;
        background: #faf7fa;
        color: var(--ink);
    }
    .field input:focus {
        border-color: #8a7d90;
        background: #fff;
    }
    .field input::placeholder { color: #a59aa9; }
    .form-submit {
        min-height: 58px;
        margin-top: 14px;
        border-radius: 10px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 11px;
        font-weight: 650;
    }
    .form-note {
        color: #8a7e8e;
        padding: 0 2px;
    }
    .form-status.is-error { color: #a82b63; }
    .form-status.is-success { color: #207969; }
}

@media (max-width: 420px) {
    .product-brief h2 {
        font-size: clamp(38px, 12vw, 48px);
        line-height: .94;
        max-width: 8ch;
    }
    .brief-facts > div {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
    }

    .download-form-wrap { margin-left: -2px; margin-right: -2px; padding: 15px; }
    .platform-option { min-height: 64px; padding: 10px; }
    .platform-copy strong { font-size: 13px; }
    .platform-copy small { font-size: 8px; }
}

/* v15 brand / layout refinement */
:root { --max: 1240px; }

body { letter-spacing: -.006em; }
.site-header {
    min-height: 72px;
    padding-left: clamp(18px, 3.5vw, 48px);
    padding-right: clamp(18px, 3.5vw, 48px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.brand-main { font-size: 26px; }
.nav-link { letter-spacing: .01em; }

.home-intro-inner {
    padding-top: clamp(76px, 9vw, 118px);
    padding-bottom: clamp(88px, 9vw, 126px);
}
.home-intro-copy {
    animation: home-copy-in .62s cubic-bezier(.2,.72,.25,1) both;
}
.home-intro h1 { font-size: clamp(82px, 13.5vw, 168px); }
.home-lede {
    max-width: 16ch;
    margin-top: clamp(34px, 4vw, 48px);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 500;
}
.home-product-inner { padding-top: clamp(72px, 8vw, 104px); padding-bottom: clamp(72px, 8vw, 104px); }
.home-product-image { border-color: #34293b; }
.home-product-copy h2 { margin-bottom: 18px; }
.home-about-inner { padding-top: clamp(58px, 7vw, 82px); padding-bottom: clamp(58px, 7vw, 82px); }
.home-about h2 { line-height: 1.02; }

.product-hero-inner {
    padding-top: clamp(68px, 7vw, 94px);
    padding-bottom: clamp(68px, 7vw, 94px);
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
    gap: clamp(76px, 9vw, 126px);
}
.product-hero-copy { animation: product-copy-in .56s .05s cubic-bezier(.2,.72,.25,1) both; }
.product-hero-copy h1 {
    font-size: clamp(50px, 6.1vw, 82px);
    line-height: .96;
    letter-spacing: -.055em;
}
.product-deck {
    margin-top: 26px;
    margin-bottom: 21px;
    font-size: clamp(19px, 1.9vw, 25px);
}
.product-facts { gap: 8px 18px; line-height: 1.5; }
.product-hero-image {
    padding: 8px;
    border-color: #3b2e43;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0,0,0,.22);
}
.product-hero-video {
    transform: translateX(clamp(24px, 3vw, 46px));
    opacity: 0;
    animation: product-media-in .7s .12s cubic-bezier(.2,.72,.25,1) forwards;
}
.product-hero-video.is-ready { opacity: 1; }
.product-hero-video video { border-radius: 3px; }

.product-brief .section-wrap { padding-top: clamp(52px, 5.5vw, 70px); padding-bottom: clamp(46px, 5vw, 64px); }
.product-brief-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
    gap: clamp(44px, 7vw, 84px);
    align-items: start;
}
.product-brief .section-lede {
    max-width: 610px;
    font-size: 16px;
    line-height: 1.58;
}
.brief-facts > div { grid-template-columns: 104px 1fr; padding: 14px 0; }

.lineage-note {
    margin-top: clamp(38px, 5vw, 58px);
    padding-top: clamp(26px, 3vw, 34px);
    border-top: 1px solid var(--line-light);
    display: grid;
    grid-template-columns: 150px minmax(0, 720px);
    gap: clamp(28px, 5vw, 58px);
}
.lineage-note .quiet-label { margin: 3px 0 0; }
.lineage-note h3 {
    margin: 0 0 11px;
    font-size: clamp(23px, 2.5vw, 31px);
    line-height: 1.06;
    letter-spacing: -.035em;
}
.lineage-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.58;
}
.lineage-note p + p { margin-top: 9px; }

.product-brief + .screenshots .section-wrap { padding-top: clamp(34px, 4vw, 48px); }
.screenshot-story { border-top-color: #34293b; }
.shot {
    gap: clamp(38px, 6vw, 78px);
    padding: clamp(38px, 5vw, 62px) 0;
}
.shot figure {
    padding: 7px;
    border-color: #34293b;
    border-radius: 7px;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.72,.25,1), border-color .3s ease;
}
.shot:hover figure { transform: translateY(-2px); border-color: #594562; }
.shot h3 { margin-bottom: 8px; }
.shot p { max-width: 39ch; line-height: 1.55; }

.compact-details .section-wrap { padding-top: 44px; padding-bottom: 48px; }
.detail-strip > div { padding-top: 17px; padding-bottom: 18px; }

.download-zone { background: #1d1623; }
.download-layout { gap: clamp(54px, 8vw, 100px); }
.download-intro h2 { font-size: clamp(48px, 5.5vw, 70px); }
.download-form-wrap {
    border: 1px solid #403248;
    padding: 28px;
    background: #19131f;
}
.download-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    color: #8e8295;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.download-form { padding-top: 0; }
.form-submit { transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.form-submit:hover:not(:disabled) { transform: translateY(-1px); }
.form-submit:active:not(:disabled) { transform: translateY(0); }

@keyframes home-copy-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes product-copy-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes product-media-in {
    from { opacity: 0; transform: translateX(clamp(34px, 4vw, 58px)) scale(.992); }
    to { opacity: 1; transform: translateX(clamp(24px, 3vw, 46px)) scale(1); }
}

@media (max-width: 920px) {
    .product-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }
    .product-hero-copy {
        width: 100%;
        max-width: 760px;
    }
    .product-hero-image,
    .product-hero-video {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        transform: none;
    }
    .product-hero-video video {
        width: 100%;
        height: auto;
        aspect-ratio: 1280 / 932;
        object-fit: cover;
    }
    .product-brief-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        align-items: start;
    }
    .brief-facts {
        width: 100%;
        max-width: 700px;
    }
    @keyframes product-media-in {
        from { opacity: 0; transform: translateY(10px) scale(.994); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .lineage-note { grid-template-columns: 120px minmax(0, 1fr); }
    .download-form-wrap { max-width: 760px; }
}

@media (max-width: 720px) {
    .site-header { min-height: 66px; }
    .site-nav {
        display: grid;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s cubic-bezier(.2,.72,.25,1), visibility .2s;
    }
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .home-intro-inner { padding-top: 50px; }
    .home-lede {
        max-width: 13ch;
        margin-top: 25px;
        font-size: clamp(28px, 8vw, 35px);
        line-height: 1.08;
    }
    .product-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 44px;
        padding-bottom: 48px;
        gap: 32px;
    }
    .product-hero-copy { width: 100%; max-width: none; }
    .product-hero-copy h1 { font-size: clamp(48px, 14vw, 70px); }
    .product-hero-image,
    .product-hero-video {
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none !important;
        justify-self: stretch;
    }
    .product-hero-video {
        opacity: 1;
        animation: none;
    }
    .product-hero-video video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1280 / 932;
        object-fit: cover;
    }
    .product-deck { font-size: 19px; max-width: 24ch; }
    .product-hero-image { padding: 5px; border-radius: 6px; box-shadow: 0 18px 50px rgba(0,0,0,.2); }
    .product-brief .section-wrap { padding-top: 42px; padding-bottom: 38px; }
    .product-brief-grid {
        display: block;
    }
    .product-brief-grid > div:first-child {
        width: 100%;
        max-width: none;
    }
    .product-brief .section-lede {
        max-width: 32ch;
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.55;
    }
    .brief-facts {
        width: 100%;
        max-width: none;
        margin-top: 28px;
    }
    .brief-facts > div {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        padding: 14px 0;
    }
    .brief-facts span {
        min-width: 0;
        font-size: 13px;
        line-height: 1.45;
    }
    .lineage-note {
        margin-top: 31px;
        padding-top: 25px;
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .lineage-note h3 { font-size: 24px; }
    .lineage-note p { font-size: 12.5px; }
    .product-brief + .screenshots .section-wrap { padding-top: 29px; }
    .shot { padding: 27px 0; gap: 15px; }
    .shot figure { border-radius: 5px; }
    .shot h3 { font-size: 24px; }
    .shot p { font-size: 13px; }
    .compact-details .section-wrap { padding-top: 38px; padding-bottom: 40px; }

    .download-zone .section-wrap { padding-top: 46px; padding-bottom: 62px; }
    .download-layout { gap: 20px; }
    .download-intro h2 { font-size: 48px; }
    .download-form-wrap {
        padding: 18px;
        border: 1px solid #d7cfd9;
        border-radius: 18px;
        background: #f3eff3;
        color: var(--ink);
        box-shadow: 0 20px 58px rgba(0,0,0,.18);
    }
    .download-card-head {
        margin-bottom: 16px;
        padding: 0 1px;
        color: #766b79;
    }
    .platform-option { min-height: 70px; }
    .form-grid { gap: 11px; }
    .field input { min-height: 56px; }
    .form-submit {
        min-height: 60px;
        margin-top: 15px;
        font-size: 12px;
        box-shadow: 0 8px 22px rgba(123,216,200,.18);
    }
    .form-note { margin-top: 14px; line-height: 1.5; }
}

@media (max-width: 420px) {
    .download-form-wrap { margin-left: 0; margin-right: 0; padding: 16px; }
    .home-lede { font-size: 29px; }
}
