:root {
    --ivory:  #F5F2EC;
    --paper:  #FAFAF7;
    --greige: #D9D2C6;
    --stone:  #B7A996;
    --walnut: #8C7864;
    --mocha:  #4E4034;
    --espresso: #2C241F;

    --bg:        var(--ivory);
    --surface:   var(--paper);
    --surface-2: #ECE6DC;
    --line:      rgba(78, 64, 52, 0.10);
    --line-soft: rgba(78, 64, 52, 0.05);

    --text:        var(--mocha);
    --text-strong: var(--espresso);
    --text-muted:  var(--walnut);
    --text-soft:   color-mix(in srgb, var(--walnut) 70%, var(--ivory) 30%);

    --brand:       var(--walnut);
    --brand-deep:  var(--mocha);

    --font-display: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --font-ui:      'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --font-mono:    'Geist Mono', 'SF Mono', ui-monospace, Menlo, monospace;

    --gutter: clamp(20px, 4vw, 56px);
    --max:    1180px;
    --max-narrow: 720px;

    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-emphasis: cubic-bezier(0.32, 0.72, 0, 1);

    --shadow-sm: 0 1px 2px rgba(78, 64, 52, 0.04), 0 2px 8px rgba(78, 64, 52, 0.04);
    --shadow-md: 0 4px 12px rgba(78, 64, 52, 0.06), 0 12px 36px rgba(78, 64, 52, 0.08);
    --shadow-lg: 0 12px 32px rgba(78, 64, 52, 0.10), 0 28px 80px rgba(78, 64, 52, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

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

a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.18s var(--ease-out);
}
a:hover { color: var(--brand-deep); }

::selection {
    background: var(--walnut);
    color: var(--ivory);
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container-narrow { max-width: var(--max-narrow); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--walnut);
    padding: 6px 12px;
    background: var(--surface-2);
    border-radius: 999px;
    border: 1px solid var(--line);
}
.eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.display {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 8.5vw, 108px);
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--text-strong);
    margin: 24px 0 28px;
}
.display-line { display: block; }
.display-line.italic {
    /* Bold weight contrast replaces italic - same family, more punch */
    font-weight: 800;
    font-style: normal;
    color: var(--text-strong);
    letter-spacing: -0.045em;
}

.heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-strong);
    margin: 16px 0 18px;
}
.heading em {
    font-style: normal;
    font-weight: 500;
    color: var(--walnut);
}

.lede {
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 0 36px;
}

.section-sub {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--ivory) 88%, transparent);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}
.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-strong);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
}
.nav-icon { width: 28px; height: 28px; border-radius: 7px; }
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav-links a {
    color: var(--text-muted);
}
.nav-links a:hover { color: var(--text-strong); }
.nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--ivory);
    background: var(--mocha);
    padding: 9px 16px;
    border-radius: 999px;
    transition: background 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.nav-cta:hover { background: var(--espresso); color: var(--ivory); transform: translateY(-1px); }

@media (max-width: 720px) {
    .nav-links { display: none; }
}

.hero {
    padding: clamp(60px, 9vw, 120px) 0 0;
    position: relative;
    overflow: hidden;
}
.hero-text {
    max-width: 780px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s var(--ease-out),
                background 0.2s var(--ease-out),
                box-shadow 0.2s var(--ease-out),
                color 0.2s var(--ease-out);
    will-change: transform;
}
.btn-primary {
    background: var(--mocha);
    color: var(--ivory);
    box-shadow: 0 6px 22px rgba(78, 64, 52, 0.25);
}
.btn-primary:hover {
    background: var(--espresso);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(78, 64, 52, 0.35);
}
.btn-primary .btn-price {
    font-size: 13px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(245, 242, 236, 0.18);
    color: rgba(245, 242, 236, 0.9);
}
.btn-ghost {
    background: var(--paper);
    color: var(--text-strong);
    border: 1px solid var(--line);
}
.btn-ghost:hover {
    background: var(--surface-2);
    color: var(--text-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }

.btn-arrow { transition: transform 0.18s var(--ease-out); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-photo {
    position: relative;
    isolation: isolate;
    margin: clamp(56px, 8vw, 96px) auto 0;
    padding: 0 var(--gutter);
    max-width: 1320px;
    text-align: center;
}

.hero-photo-lamp {
    position: absolute;
    top: -3%;
    bottom: -3%;
    left: calc(var(--gutter) - 2%);
    right: calc(var(--gutter) - 2%);
    pointer-events: none;
    opacity: 0;
    background: rgba(255, 248, 228, 0.85);
    border-radius: 40px;
    filter: blur(55px);
    will-change: opacity;
    z-index: 1;
}

.hero-photo-glazes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.glaze {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background: rgba(255, 246, 220, 0.85);
    filter: blur(36px);
    transform: scale(0.4);
    will-change: opacity, transform;
}
.glaze.g1 { top: -6%;  left:   4%; width: 260px; height: 260px; }
.glaze.g2 { top: -8%;  right:  4%; width: 220px; height: 220px; }
.glaze.g3 { top: 38%;  right: -2%; width: 200px; height: 200px; }
.glaze.g4 { bottom: 6%; left:  -2%; width: 240px; height: 240px; }
.glaze.g5 { bottom: -4%; left: 44%; width: 200px; height: 200px;
            background: rgba(245, 232, 215, 0.80); }

.hero-photo img,
.hero-photo-caption {
    position: relative;
    z-index: 2;
}
.hero-photo img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow:
        0 24px 60px -10px rgba(78, 64, 52, 0.18),
        0 50px 140px -20px rgba(78, 64, 52, 0.22);
}

/* Transparent-cutout variant for PNGs with rounded subjects on
   a transparent canvas. Uses alpha-aware drop-shadow instead of
   border-radius + box-shadow. */
.hero-photo-cutout img {
    border-radius: 0;
    box-shadow: none;
    filter:
        drop-shadow(0 6px 14px rgba(78, 64, 52, 0.18))
        drop-shadow(0 22px 50px rgba(78, 64, 52, 0.20));
    transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, filter;
}
.hero-photo-cutout .hero-photo-roll {
    display: block;
    transform-style: preserve-3d;
    width: 100%;
    will-change: transform, opacity;
}
.hero-photo-cutout:hover img {
    filter:
        drop-shadow(0 12px 26px rgba(78, 64, 52, 0.22))
        drop-shadow(0 34px 80px rgba(78, 64, 52, 0.26));
}

.hero-photo-caption {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
}
.section-tinted {
    background: var(--surface-2);
}
.section-tinted + .section-tinted {
    /* Avoid two tinted sections back-to-back blending into one slab */
    border-top: 1px solid var(--line-soft);
}
.section-head {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-head .eyebrow { margin-bottom: 18px; }

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: 36px 30px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.step h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    margin: 0 0 8px;
}
.step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 820px) {
    .steps { grid-template-columns: 1fr; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--mocha);
    margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    margin: 0 0 10px;
}
.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}
.showcase-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.showcase-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--surface-2), var(--greige));
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
}
.showcase-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    margin: 24px 28px 8px;
}
.showcase-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 28px 28px;
}

@media (max-width: 820px) {
    .showcase-grid { grid-template-columns: 1fr; }
}

.demo-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(44, 36, 31, 0.78);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(78, 64, 52, 0.18);
    width: 200px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-art {
    width: 22px; height: 22px;
    border-radius: 5px;
    background: linear-gradient(135deg, #d97a4d, #8c7864);
    flex: 0 0 22px;
}
.demo-title-scroll {
    flex: 1;
    overflow: hidden;
    color: rgba(245, 242, 236, 0.9);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.demo-title-inner {
    display: inline-block;
    animation: marquee 12s linear infinite;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.demo-controls {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 22px;
    background: rgba(44, 36, 31, 0.78);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-ctrl {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 242, 236, 0.85);
    font-size: 11px;
    border-radius: 50%;
    transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.demo-ctrl-play {
    background: rgba(245, 242, 236, 0.16);
    width: 32px; height: 32px;
    font-size: 12px;
}
.showcase-card:hover .demo-ctrl {
    animation: pulse-ctrl 1.6s var(--ease-out) infinite;
}
.showcase-card:hover .demo-ctrl:nth-child(2) { animation-delay: 0.2s; }
.showcase-card:hover .demo-ctrl:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse-ctrl {
    0%, 100% { background: transparent; transform: scale(1); }
    50% { background: rgba(245, 242, 236, 0.18); transform: scale(1.06); }
}

.demo-progress {
    width: 220px;
    height: 4px;
    background: rgba(44, 36, 31, 0.18);
    border-radius: 999px;
    position: relative;
    transition: height 0.25s var(--ease-out);
}
.showcase-card:hover .demo-progress { height: 6px; }
.demo-progress-fill {
    width: 60%;
    height: 100%;
    background: var(--mocha);
    border-radius: 999px;
    transition: width 0.3s var(--ease-out);
}
.showcase-card:hover .demo-progress-fill { width: 72%; }
.demo-progress-thumb {
    position: absolute;
    left: 60%;
    top: 50%;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--mocha);
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 2px 6px rgba(78, 64, 52, 0.4);
    transition: transform 0.25s var(--ease-out), left 0.3s var(--ease-out);
}
.showcase-card:hover .demo-progress-thumb {
    transform: translate(-50%, -50%) scale(1);
    left: 72%;
}

.demo-viz {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    padding: 14px 22px;
    background: rgba(44, 36, 31, 0.78);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-viz span {
    width: 4px;
    background: linear-gradient(180deg, rgba(245, 242, 236, 0.9), rgba(245, 242, 236, 0.55));
    border-radius: 2px;
    animation: viz 0.9s ease-in-out infinite alternate;
}
.demo-viz span:nth-child(1) { height: 14px; animation-delay: 0s; }
.demo-viz span:nth-child(2) { height: 22px; animation-delay: 0.18s; }
.demo-viz span:nth-child(3) { height: 18px; animation-delay: 0.36s; }
.demo-viz span:nth-child(4) { height: 12px; animation-delay: 0.54s; }
@keyframes viz {
    from { height: 6px; }
    to   { height: 28px; }
}

.utils-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
}
.util-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.util-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.util-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.util-icon {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--mocha);
    flex-shrink: 0;
}
.util-icon svg { width: 18px; height: 18px; }
.util-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    margin: 0;
}
.util-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}
.shortcut-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.shortcut-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}
.shortcut-row kbd {
    font-family: var(--font-mono);
    font-size: 12px;
    background: var(--surface-2);
    color: var(--text-strong);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--line);
    box-shadow: inset 0 -1px 0 rgba(78, 64, 52, 0.06);
}

@media (max-width: 820px) {
    .utils-grid { grid-template-columns: 1fr; }
}

.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
}
.power-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    position: relative;
}
.power-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.power-card-active {
    background: var(--mocha);
    border-color: var(--mocha);
    color: var(--ivory);
}
.power-card-active h3 { color: var(--ivory); }
.power-card-active p { color: rgba(245, 242, 236, 0.7); }
.power-card-active .power-tag {
    background: rgba(245, 242, 236, 0.16);
    color: var(--ivory);
}
.power-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--walnut);
    background: var(--surface-2);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.power-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    margin: 0 0 10px;
}
.power-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

@media (max-width: 820px) {
    .power-grid { grid-template-columns: 1fr; }
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.8vw, 20px);
}
.req-pill {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.req-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.req-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
}
.req-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-strong);
}

@media (max-width: 820px) {
    .req-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .req-grid { grid-template-columns: 1fr; }
}

.newsletter-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 56px);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.newsletter-card .eyebrow { margin-bottom: 16px; }
.newsletter-card .heading {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 14px;
}
.newsletter-sub {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 28px;
}
.newsletter-sub a {
    color: var(--brand);
    border-bottom: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
}
.newsletter-sub a:hover {
    color: var(--brand-deep);
    border-color: var(--brand-deep);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.waitlist-form .honey {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
}
.waitlist-input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--text-strong);
    font-family: var(--font-ui);
    font-size: 15px;
    transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.waitlist-input::placeholder { color: var(--text-soft); }
.waitlist-input:focus {
    outline: none;
    border-color: var(--mocha);
    box-shadow: 0 0 0 4px rgba(78, 64, 52, 0.08);
}
.btn-submit {
    width: 100%;
    max-width: 240px;
}
.waitlist-msg {
    margin: 14px 0 0;
    font-size: 13px;
    min-height: 18px;
    color: var(--text-muted);
}
.waitlist-msg.success { color: #2f7d4a; }
.waitlist-msg.error   { color: #b15445; }
.waitlist-consent {
    margin: 16px auto 0;
    font-size: 12px;
    color: var(--text-soft);
    max-width: 420px;
    line-height: 1.55;
}
.waitlist-consent a { color: var(--text-muted); border-bottom: 1px solid var(--line); }
.waitlist-consent a:hover { color: var(--text-strong); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s var(--ease-out);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.015em;
    color: var(--text-strong);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '';
    width: 12px; height: 12px;
    border-right: 1.5px solid var(--walnut);
    border-bottom: 1.5px solid var(--walnut);
    transform: rotate(45deg);
    transition: transform 0.25s var(--ease-out);
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(-135deg);
}
.faq-body {
    padding: 0 26px 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.cta-strip {
    background: var(--mocha);
    color: var(--ivory);
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
    position: relative;
}
.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.0;
    letter-spacing: -0.045em;
    color: var(--ivory);
    margin: 0 0 36px;
}
.cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.cta-strip .btn-primary {
    background: var(--ivory);
    color: var(--mocha);
}
.cta-strip .btn-primary:hover {
    background: var(--paper);
    color: var(--mocha);
}
.cta-strip .btn-primary .btn-price {
    background: rgba(78, 64, 52, 0.12);
    color: var(--mocha);
}
.cta-strip .btn-ghost {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(245, 242, 236, 0.25);
}
.cta-strip .btn-ghost:hover {
    background: rgba(245, 242, 236, 0.08);
    color: var(--ivory);
    border-color: rgba(245, 242, 236, 0.4);
}

.footer {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
    padding: 60px 0 40px;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-logo {
    width: 38px; height: 38px;
    border-radius: 9px;
}
.footer-title {
    font-weight: 600;
    color: var(--text-strong);
    font-size: 15px;
}
.footer-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}
.footer-sub a { color: var(--brand); }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    font-size: 14px;
    max-width: 480px;
}
.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover { color: var(--text-strong); }
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    font-size: 12.5px;
    color: var(--text-muted);
    align-items: center;
}
.footer-swift {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.swift-logo {
    width: 14px; height: 14px;
    border-radius: 3px;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

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

@media (max-width: 600px) {
    .hero-photo { padding: 0 16px; }
    .hero-photo img { border-radius: 14px; }
    .nav-cta { padding: 8px 14px; font-size: 12.5px; }
    .btn { height: 46px; padding: 0 20px; font-size: 14.5px; }
    .btn-lg { height: 52px; padding: 0 24px; }
    .display { font-size: clamp(40px, 11vw, 64px); }
}
