@font-face {
    font-family: "Hanken Grotesk";
    src: url("../fonts/HankenGrotesk-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url("../fonts/Newsreader-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #f3f0e6;
    --color-surface: #fffdf7;
    --color-text: #173128;
    --color-text-muted: #66716a;
    --color-primary: #1e5a45;
    --color-primary-2: #2f7a5b;
    --color-accent: #d8734a;
    --color-accent-soft: #f2cdb7;
    --color-ink: #102720;
    --color-line: rgba(23, 49, 40, .16);
    --shadow: 0 24px 70px rgba(31, 52, 43, .13);
    --shadow-soft: 0 12px 34px rgba(31, 52, 43, .08);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 42px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;
    --space-8: 112px;
    --text-display: clamp(3.1rem, 7vw, 6.6rem);
    --text-h1: clamp(2.6rem, 5vw, 4.7rem);
    --text-h2: clamp(2.1rem, 4vw, 3.5rem);
    --text-h3: 1.45rem;
    --text-body: 1rem;
    --text-small: .875rem;
    --font-display: "Newsreader", Georgia, serif;
    --font-body: "Hanken Grotesk", Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: clip
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font: 400 var(--text-body)/1.65 var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

::selection {
    background: var(--color-accent-soft);
    color: var(--color-ink)
}

.shell {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto
}

.ad-strip {
    background: var(--color-ink);
    color: #f6f1df;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    padding: 7px 16px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 240, 230, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-line)
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.03em
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: cover
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: .93rem;
    font-weight: 600
}

.site-nav>a:not(.nav-cta) {
    position: relative
}

.site-nav>a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--color-accent);
    transition: .25s
}

.site-nav>a:hover::after {
    right: 0
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    padding: 13px 20px;
    font-weight: 700;
    transition: .25s;
    min-height: 46px
}

.nav-cta {
    padding: 11px 17px
}

.nav-cta:hover,
.btn:hover {
    background: var(--color-primary-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft)
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-line)
}

.btn--ghost:hover {
    background: var(--color-surface);
    color: var(--color-text)
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-text)
}

.hero {
    padding: var(--space-6) 0 var(--space-8);
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: var(--space-6);
    align-items: center
}

.hero-grid > * {
    min-width: 0;
    max-width: 100%
}

.eyebrow,
.section-number {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--color-primary-2)
}

.wheel-dot {
    width: 14px;
    height: 14px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(216, 115, 74, .12)
}

.hero h1,
.product-hero h1 {
    font: 600 var(--text-display)/.91 var(--font-display);
    letter-spacing: -.055em;
    margin: 20px 0 26px
}

.hero h1 em {
    font-style: italic;
    color: var(--color-primary-2);
    font-weight: 500
}

.hero-lede {
    font-size: 1.12rem;
    max-width: 720px;
    color: var(--color-text-muted);
    margin: 0
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    border-bottom: 1px solid var(--color-line);
    padding: 11px 0
}

.spec-ribbon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 253, 247, .55)
}

.spec-ribbon span {
    padding: 18px 16px;
    color: var(--color-text-muted);
    font-size: .85rem
}

.spec-ribbon span+span {
    border-left: 1px solid var(--color-line)
}

.spec-ribbon b {
    display: block;
    color: var(--color-text);
    font-size: 1.05rem
}

.hero-visual,
.product-hero-image {
    position: relative;
    min-width: 0
}

.orbit-frame {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #d9dfd2;
    box-shadow: var(--shadow)
}

.orbit-frame::before {
    content: "";
    position: absolute;
    inset: 5%;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none
}

.orbit-frame img {
    width: 100%;
    height: 100%
}

.orbit-badge {
    z-index: 999;
    position: absolute;
    right: -20px;
    bottom: 9%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--color-accent);
    color: #fff;
    box-shadow: var(--shadow);
    transform: rotate(7deg)
}

.orbit-badge span {
    font: 600 2rem/1 var(--font-display)
}

.orbit-badge strong {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    max-width: 95px;
    margin-top: 6px
}

.motion-mark {
    position: absolute;
    top: -28px;
    right: 12%;
    width: 94px;
    height: 94px;
    border: 1px dashed var(--color-primary-2);
    border-radius: 50%;
    animation: spin 18s linear infinite
}

.motion-mark i {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary-2)
}

.motion-mark i:nth-child(1) {
    top: -4px;
    left: 43px
}

.motion-mark i:nth-child(2) {
    right: -4px;
    top: 43px
}

.motion-mark i:nth-child(3) {
    bottom: -4px;
    left: 43px
}

.motion-mark i:nth-child(4) {
    left: -4px;
    top: 43px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.ticker {
    overflow: hidden;
    background: var(--color-accent);
    color: #fff;
    border-block: 1px solid rgba(0, 0, 0, .08)
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    padding: 14px 0;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .15em;
    will-change: transform;
    animation: ticker 42s linear infinite
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 0 0 auto;
    padding-right: 22px
}

.ticker-track i {
    font-style: normal;
    opacity: .55
}

@keyframes ticker {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}

.section {
    padding: var(--space-8) 0
}

.section-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--space-6);
    align-items: end;
    margin-bottom: var(--space-5)
}

.section-head h2,
.movement-copy h2,
.fit-copy h2,
.use-content h2,
.order-copy h2,
.spec-intro h2,
.split-note h2,
.other-products h2,
.thanks-copy h1,
.legal-hero h1 {
    font: 600 var(--text-h2)/.98 var(--font-display);
    letter-spacing: -.04em;
    margin: 14px 0 0
}

.section-head p,
.movement-copy>p,
.fit-copy>p,
.use-content>p,
.order-copy>p,
.spec-intro>p,
.split-note p {
    color: var(--color-text-muted);
    margin: 0
}

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

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: .3s
}

.product-card:nth-child(1) {
    grid-column: span 4
}

.product-card:nth-child(2) {
    grid-column: span 4;
    transform: translateY(28px)
}

.product-card:nth-child(3) {
    grid-column: span 4
}

.product-card:hover {
    transform: translateY(-6px)
}

.product-card:nth-child(2):hover {
    transform: translateY(20px)
}

.product-image {
    aspect-ratio: 1.15/1;
    overflow: hidden;
    background: #d7dece
}

.product-image img {
    width: 100%;
    height: 100%;
    transition: .45s
}

.product-card:hover .product-image img {
    transform: scale(1.035)
}

.product-copy {
    padding: 25px
}

.product-kicker {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.product-kicker span {
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 7px 10px
}

.product-copy h3 {
    font: 600 1.75rem/1 var(--font-display);
    letter-spacing: -.03em;
    margin: 18px 0 10px
}

.product-copy p {
    color: var(--color-text-muted);
    font-size: .93rem;
    margin: 0
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--color-line)
}

.product-bottom strong {
    font-size: 1.4rem
}

.product-bottom a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-primary-2)
}

.section--ink {
    background: var(--color-ink);
    color: #f4f0e2
}

.section--ink .section-number {
    color: #89c8a8
}

.section--ink p {
    color: #b8c8be
}

.movement-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: var(--space-7);
    align-items: center
}

.movement-grid > *,
.fit-grid > *,
.use-grid > *,
.order-grid > *,
.product-hero-grid > *,
.thanks-grid > * {
    min-width: 0;
    max-width: 100%
}

.movement-visual {
    position: relative
}

.movement-visual img {
    width: 100%;
    aspect-ratio: 4/6;
    border-radius: var(--radius-lg)
}

.visual-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 17px 19px;
    border-radius: 18px;
    background: rgba(16, 39, 32, .86);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    gap: 16px
}

.visual-caption span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #a9c5b3
}

.movement-copy h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    max-width: 780px;
    margin-bottom: 24px
}

.movement-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px
}

.movement-bento>div {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(255, 255, 255, .04)
}

.movement-bento .wide {
    grid-column: 1/-1
}

.movement-bento svg {
    color: #d98562
}

.movement-bento strong {
    display: block;
    margin: 15px 0 7px;
    font-size: 1.05rem
}

.movement-bento p {
    font-size: .9rem;
    margin: 0
}

.fit-section {
    background: linear-gradient(135deg, #e8e2d4 0%, #f3f0e6 58%, #dfe8dc 100%)
}

.fit-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: var(--space-7);
    align-items: center
}

.fit-copy h2 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    margin-bottom: 22px
}

.fit-note {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    padding: 22px;
    border-left: 3px solid var(--color-accent);
    background: rgba(255, 253, 247, .62);
    border-radius: 0 var(--radius) var(--radius) 0
}

.fit-note p {
    margin: 0;
    color: var(--color-text-muted)
}

.fit-widget {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow)
}

.fit-widget-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px
}

.fit-widget-head span {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-text-muted)
}

.fit-widget-head strong {
    font: 600 1.45rem/1.15 var(--font-display);
    max-width: 260px;
    text-align: right
}

.selector-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 28px 0
}

.selector {
    border: 1px solid var(--color-line);
    background: #eef1e8;
    color: var(--color-text);
    min-height: 48px;
    border-radius: 999px;
    font-weight: 700
}

.selector.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

.fit-result {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 24px
}

.fit-result span {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-text-muted)
}

.fit-result strong {
    display: block;
    font: 600 2rem/1.05 var(--font-display);
    margin: 8px 0
}

.fit-result p {
    color: var(--color-text-muted)
}

.fit-result a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    color: var(--color-primary-2)
}

.widget-fineprint {
    font-size: .78rem;
    color: var(--color-text-muted);
    margin: 18px 4px 0
}

.use-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: var(--space-6);
    align-items: center
}

.use-image {
    position: relative
}

.use-image img {
    width: 100%;
    aspect-ratio: 1/1.25;
    border-radius: var(--radius-lg)
}

.corner-label {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--color-surface);
    padding: 11px 14px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft)
}

.use-content h2 {
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    margin-bottom: 28px
}

.use-cases {
    border-top: 1px solid var(--color-line)
}

.use-cases article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-line)
}

.use-cases article>span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-accent-soft);
    font-weight: 700;
    font-size: .78rem
}

.use-cases h3 {
    margin: 0 0 5px;
    font-size: 1.05rem
}

.use-cases p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: .92rem
}

.order-section {
    background: #dfe8dc
}

.order-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: var(--space-7);
    align-items: start
}

.order-copy {
    position: sticky;
    top: 120px
}

.order-copy h2 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    margin-bottom: 20px
}

.business-chip {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 18px;
    background: rgba(255, 253, 247, .65);
    border: 1px solid rgba(23, 49, 40, .12);
    border-radius: var(--radius)
}

.business-chip svg {
    color: var(--color-primary-2)
}

.business-chip span,
.business-chip small {
    display: block;
    color: var(--color-text-muted)
}

.business-chip strong {
    display: block
}

.order-panel {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow)
}

.order-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.field--wide {
    grid-column: 1/-1
}

.field label {
    font-weight: 700;
    font-size: .85rem
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    background: #f7f5ee;
    color: var(--color-text);
    padding: 13px 14px;
    outline: none;
    min-height: 48px
}

.field textarea {
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--color-primary-2);
    box-shadow: 0 0 0 3px rgba(47, 122, 91, .12)
}

.consent {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: .82rem
}

.consent input {
    margin-top: 4px
}

.consent a {
    text-decoration: underline
}

.site-footer {
    background: #0d211b;
    color: #dfe6df;
    padding: var(--space-6) 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr .55fr;
    gap: var(--space-6)
}

.brand--footer {
    color: #fff
}

.footer-disclaimer,
.footer-data p {
    font-size: .86rem;
    line-height: 1.7;
    color: #aebdb4
}

.footer-disclaimer {
    max-width: 590px
}

.footer-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    color: #88aa97;
    margin-bottom: 14px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: .76rem;
    color: #7f9589
}

.cookie-banner {
    position: fixed;
    z-index: 80;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(900px, calc(100% - 32px));
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.cookie-banner[hidden] {
    display: none
}

.cookie-banner strong {
    display: block
}

.cookie-banner p {
    margin: 3px 0 0;
    color: var(--color-text-muted);
    font-size: .84rem
}

.cookie-banner a {
    text-decoration: underline
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.product-hero {
    padding: var(--space-6) 0 var(--space-8)
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 30px
}

.product-hero h1 {
    font-size: var(--text-h1);
    margin-top: 20px
}

.product-hero-copy>p {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    max-width: 640px
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 28px
}

.price-line strong {
    font-size: 2rem
}

.price-line span {
    color: var(--color-text-muted);
    font-size: .82rem
}

.compact-section {
    padding-top: var(--space-6)
}

.spec-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: var(--space-7);
    align-items: center
}

.spec-intro h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    margin-bottom: 18px
}

.spec-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.spec-cards>div {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 24px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.spec-cards span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-text-muted)
}

.spec-cards strong {
    font: 600 1.75rem/1 var(--font-display)
}

.split-note {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: var(--space-7);
    align-items: start
}

.split-note h2 {
    font-size: clamp(2.4rem, 4vw, 3.8rem)
}

.split-note p+p {
    margin-top: 18px
}

.other-products {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: var(--space-7);
    align-items: center
}

.mini-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.mini-product {
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 22px;
    transition: .25s
}

.mini-product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft)
}

.mini-product span,
.mini-product small {
    display: block;
    color: var(--color-text-muted)
}

.mini-product strong {
    display: block;
    font: 600 1.35rem/1.1 var(--font-display);
    margin: 7px 0
}

.legal-main {
    padding-bottom: var(--space-8)
}

.legal-hero {
    padding: var(--space-6) 0 var(--space-7);
    background: linear-gradient(135deg, #e6eadf, #f4f0e6)
}

.legal-hero-inner {
    max-width: 920px
}

.legal-hero h1 {
    font-size: var(--text-h1);
    margin: 14px 0
}

.legal-hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 720px
}

.legal-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: var(--space-7);
    align-items: start;
    padding-top: var(--space-7)
}

.legal-aside {
    position: sticky;
    top: 115px
}

.legal-card {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 22px
}

.legal-card>span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-text-muted)
}

.legal-card p {
    font-size: .84rem;
    line-height: 1.75;
    margin-bottom: 0
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px
}

.legal-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 700
}

.legal-nav a:hover {
    background: var(--color-surface)
}

.legal-content {
    max-width: 800px;
    word-break: break-word
}

.last-updated {
    color: var(--color-text-muted);
    font-size: .95rem;
    margin: 0 0 14px
}

.legal-section {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--color-line)
}

.legal-section:last-child {
    border-bottom: 0
}

.legal-section h2 {
    font: 600 2rem/1.1 var(--font-display);
    letter-spacing: -.025em;
    margin: 0 0 18px
}

.legal-section p {
    color: #4f5d56;
    margin: 0
}

.legal-section p+p {
    margin-top: 16px
}

.thanks-hero {
    padding: var(--space-7) 0;
    background: linear-gradient(135deg, #e6eadf, #f5eadf)
}

.thanks-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--space-7);
    align-items: center
}

.thanks-copy h1 {
    font-size: var(--text-h1);
    margin: 14px 0 20px
}

.thanks-copy p {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    max-width: 700px
}

.thanks-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    transform: rotate(2deg)
}

.thanks-card span {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-primary-2)
}

.thanks-card strong {
    display: block;
    font: 600 2rem/1.05 var(--font-display);
    margin: 12px 0
}

.thanks-card p {
    color: var(--color-text-muted)
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.next-steps article {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 24px
}

.next-steps article>span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    font-weight: 700
}

.next-steps h3 {
    margin: 18px 0 8px
}

.next-steps p {
    color: var(--color-text-muted);
    margin: 0
}

.contact-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 32px
}

.contact-band span {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-text-muted)
}

.contact-band strong {
    display: block;
    font: 600 2rem/1 var(--font-display);
    margin: 8px 0
}

.contact-band p {
    margin: 0;
    color: var(--color-text-muted)
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

:focus-visible {
    outline: 3px solid rgba(216, 115, 74, .55);
    outline-offset: 3px
}

@media(max-width:1024px) {
    .site-nav {
        gap: 18px
    }

    .hero-grid,
    .movement-grid,
    .fit-grid,
    .use-grid,
    .order-grid,
    .product-hero-grid,
    .spec-layout,
    .thanks-grid {
        gap: 44px
    }

    .section {
        padding: 84px 0
    }

    .product-card:nth-child(1),
    .product-card:nth-child(2) {
        grid-column: span 6
    }

    .product-card:nth-child(2) {
        transform: none
    }

    .product-card:nth-child(3) {
        grid-column: 3/span 8
    }

    .movement-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .footer-links {
        grid-column: 1/-1;
        flex-direction: row;
        flex-wrap: wrap
    }

    .legal-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px
    }
}

@media(max-width:768px) {
    .shell {
        width: min(100% - 28px, 1240px)
    }

    .nav-toggle {
        display: grid;
        place-items: center
    }

    .site-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 84px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--color-surface);
        border: 1px solid var(--color-line);
        border-radius: var(--radius);
        padding: 14px;
        box-shadow: var(--shadow)
    }

    .site-nav.open {
        display: flex
    }

    .site-nav a {
        padding: 8px 10px
    }

    .hero {
        padding: 48px 0 72px
    }

    .hero-grid,
    .section-head,
    .movement-grid,
    .fit-grid,
    .use-grid,
    .order-grid,
    .product-hero-grid,
    .spec-layout,
    .split-note,
    .other-products,
    .thanks-grid,
    .legal-layout {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: clamp(3.25rem, 15vw, 5.8rem)
    }

    .hero-visual,
    .product-hero-image {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 560px
    }

    .orbit-badge {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 0;
        border-radius: var(--radius);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 14px 18px;
        max-width: 100%;
        box-sizing: border-box
    }

    .orbit-badge span {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
        line-height: 1.1
    }

    .orbit-badge strong {
        max-width: 100%;
        margin-top: 0;
        text-align: left;
        font-size: .72rem;
        line-height: 1.35;
        word-break: break-word;
        letter-spacing: .06em
    }

    .motion-mark {
        position: static;
        margin: 0 auto;
        animation: none
    }

    .corner-label {
        position: static;
        display: inline-block;
        margin-bottom: 10px
    }

    .spec-ribbon {
        grid-template-columns: 1fr
    }

    .spec-ribbon span+span {
        border-left: 0;
        border-top: 1px solid var(--color-line)
    }

    .section {
        padding: 72px 0
    }

    .section-head {
        gap: 22px
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-card:nth-child(n) {
        grid-column: auto;
        transform: none
    }

    .movement-grid,
    .fit-grid,
    .use-grid,
    .order-grid,
    .product-hero-grid {
        gap: 36px
    }

    .movement-visual {
        max-width: 560px
    }

    .movement-bento {
        grid-template-columns: 1fr
    }

    .movement-bento .wide {
        grid-column: auto
    }

    .fit-widget {
        padding: 24px
    }

    .fit-widget-head {
        display: block
    }

    .fit-widget-head strong {
        display: block;
        text-align: left;
        margin-top: 8px
    }

    .use-image {
        order: 2
    }

    .order-copy {
        position: static
    }

    .order-form {
        grid-template-columns: 1fr
    }

    .field--wide {
        grid-column: auto
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .footer-links {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column
    }

    .cookie-actions {
        flex-wrap: wrap
    }

    .cookie-actions .btn {
        flex: 1
    }

    .product-hero {
        padding: 48px 0 72px
    }

    .product-hero-image {
        max-width: 560px
    }

    .spec-cards,
    .mini-products {
        grid-template-columns: 1fr
    }

    .legal-layout {
        padding-top: 48px
    }

    .legal-aside {
        position: static
    }

    .legal-nav {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .next-steps {
        grid-template-columns: 1fr
    }

    .contact-band {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width:640px) {
    .header-inner {
        flex-wrap: wrap
    }

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

    .brand span {
        word-break: break-all;
        min-width: 0;
        flex: 1
    }

    .ad-strip,
    .footer-col,
    .footer-data,
    .footer-disclaimer {
        word-break: break-all
    }
}

@media(max-width:480px) {
    .header-inner {
        min-height: 68px
    }

    .brand {
        font-size: 1.1rem
    }

    .brand img {
        width: 38px;
        height: 38px
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.6rem)
    }

    .hero-lede {
        font-size: 1rem
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .hero-actions .btn,
    .hero-actions .text-link {
        width: 100%;
        justify-content: center
    }

    .section {
        padding: 58px 0
    }

    .section-head h2,
    .movement-copy h2,
    .fit-copy h2,
    .use-content h2,
    .order-copy h2 {
        font-size: clamp(2.2rem, 12vw, 3rem)
    }

    .movement-bento {
        gap: 10px
    }

    .selector-row {
        grid-template-columns: 1fr
    }

    .order-panel {
        padding: 20px
    }

    .legal-nav {
        grid-template-columns: 1fr
    }

    .legal-section h2 {
        font-size: 1.65rem
    }

    .contact-band {
        padding: 24px
    }

    .cookie-actions {
        flex-direction: column
    }

    .cookie-actions .btn {
        width: 100%
    }
}