:root {
    --wj-bg: #faf7f0;
    --wj-surface: #ffffff;
    --wj-soft: #eaf6f4;
    --wj-text: #252321;
    --wj-muted: #6f6a63;
    --wj-teal: #007a78;
    --wj-teal-dark: #005e5d;
    --wj-amber: #f29c11;
    --wj-pink: #ed1558;
    --wj-blue: #00b5cc;
    --wj-line: #ded9cf;
    --wj-radius: 12px;
    --wj-shadow: 0 20px 60px rgba(37, 35, 33, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 92px; }
body {
    margin: 0;
    color: var(--wj-text);
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 122, 120, .08), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(242, 156, 17, .10), transparent 27%),
        var(--wj-bg);
    font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(0, 122, 120, .34); outline-offset: 3px; }
.wj-page { overflow: hidden; }
.wj-container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.wj-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(222, 217, 207, .82);
    background: rgba(250, 247, 240, .87);
    backdrop-filter: blur(16px);
}
.wj-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wj-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--wj-text); text-decoration: none; font-weight: 850; letter-spacing: -.03em; }
.wj-brand img { flex: 0 0 auto; }
.wj-brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.wj-brand-text small { margin-top: 4px; color: var(--wj-muted); font-size: 12px; font-weight: 650; letter-spacing: 0; }
.wj-nav-right, .wj-menu { display: flex; align-items: center; }
.wj-nav-right { gap: 14px; }
.wj-menu { gap: 23px; color: var(--wj-muted); font-size: 14px; font-weight: 760; }
.wj-menu a { text-decoration: none; }
.wj-menu a:hover { color: var(--wj-teal-dark); }
.wj-nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 16px; border-radius: 10px; color: #fff !important; background: var(--wj-teal); box-shadow: 0 12px 28px rgba(0, 94, 93, .14); }
.wj-language { min-width: 38px; min-height: 38px; display: grid; place-items: center; border: 1px solid var(--wj-line); border-radius: 9px; background: rgba(255, 255, 255, .76); color: var(--wj-teal-dark); font-size: 13px; font-weight: 900; text-decoration: none; }
.wj-hamburger { display: none; width: 38px; height: 38px; padding: 0; border: 1px solid var(--wj-line); border-radius: 9px; background: rgba(255, 255, 255, .78); cursor: pointer; }
.wj-hamburger span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--wj-text); transition: transform .2s, opacity .2s; }
.wj-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.wj-hamburger.open span:nth-child(2) { opacity: 0; }
.wj-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wj-hero { padding: 104px 0 96px; }
.wj-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: start; gap: 58px; }
.wj-hero-copy { min-width: 0; padding-top: 20px; }
.wj-kicker { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid var(--wj-line); border-radius: 10px; background: rgba(255, 255, 255, .76); color: var(--wj-teal-dark); font-size: 13px; font-weight: 850; letter-spacing: .035em; }
.wj-kicker-dot { width: 8px; height: 8px; border-radius: 3px; background: var(--wj-amber); }
.wj-hero h1 { max-width: 780px; margin: 22px 0; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.062em; }
.wj-hero h1 span { color: var(--wj-teal); }
.wj-hero-lead { max-width: 660px; margin: 0; color: var(--wj-muted); font-size: 19px; line-height: 1.75; }
.wj-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.wj-btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.wj-btn:hover { transform: translateY(-2px); }
.wj-btn-primary { color: #fff; background: var(--wj-teal); box-shadow: 0 16px 36px rgba(0, 94, 93, .16); }
.wj-btn-secondary { border-color: var(--wj-line); color: var(--wj-teal-dark); background: rgba(255, 255, 255, .8); }
.wj-hero-note { margin: 18px 0 0; color: var(--wj-muted); font-size: 14px; }
.wj-hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.wj-meta-chip { min-height: 34px; display: inline-flex; align-items: center; padding: 0 11px; border: 1px solid var(--wj-line); border-radius: 9px; background: rgba(255, 255, 255, .74); color: var(--wj-muted); font-size: 13px; font-weight: 750; }

.wj-visual { position: relative; min-width: 0; min-height: 720px; margin-top: 34px; }
.wj-cover-stack { position: absolute; top: 86px; left: -8px; width: 250px; height: 430px; z-index: 1; }
.wj-cover { position: absolute; width: 184px; height: 258px; object-fit: cover; border-radius: 10px; box-shadow: var(--wj-shadow); }
.wj-cover-color { left: 0; top: 40px; transform: rotate(-7deg); }
.wj-cover-original { left: 74px; top: 0; transform: rotate(5deg); }
.wj-device { position: absolute; top: 0; right: 0; bottom: auto; width: min(385px, 82%); padding: 15px; border-radius: 31px; background: #262321; box-shadow: 0 28px 80px rgba(37, 35, 33, .24); z-index: 2; }
.wj-screen { min-height: 635px; padding: 22px; overflow: hidden; border-radius: 22px; background: linear-gradient(180deg, #fff, var(--wj-soft)); }
.wj-screen-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 20px; }
.wj-screen-top small { display: block; margin-bottom: 4px; color: var(--wj-muted); font-size: 12px; }
.wj-screen-top strong { display: block; font-size: 22px; letter-spacing: -.04em; }
.wj-mini-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--wj-teal); color: #fff; font-weight: 900; }
.wj-app-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 13px; }
.wj-app-tabs span { min-height: 34px; display: grid; place-items: center; border: 1px solid var(--wj-line); border-radius: 9px; background: rgba(255, 255, 255, .78); color: var(--wj-muted); font-size: 12px; font-weight: 850; }
.wj-app-tabs .active { border-color: var(--wj-teal); color: #fff; background: var(--wj-teal); }
.wj-app-card { margin-bottom: 12px; padding: 15px; border: 1px solid var(--wj-line); border-radius: 14px; background: rgba(255, 255, 255, .91); }
.wj-app-card-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 11px; font-size: 13px; font-weight: 850; }
.wj-app-card-title b { padding: 5px 8px; border-radius: 8px; color: var(--wj-teal-dark); background: var(--wj-bg); font-size: 11px; }
.wj-progress { height: 9px; overflow: hidden; border-radius: 6px; background: #e8e0d4; }
.wj-progress span { display: block; width: 40%; height: 100%; background: var(--wj-amber); }
.wj-routine-list { display: grid; gap: 7px; }
.wj-routine { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 10px; border-radius: 10px; background: var(--wj-bg); font-size: 12px; font-weight: 740; }
.wj-check { width: 18px; height: 18px; flex: 0 0 auto; border: 2px solid var(--wj-teal); border-radius: 6px; background: rgba(0, 122, 120, .06); }
.wj-check.done { background: var(--wj-teal); box-shadow: inset 0 0 0 3px var(--wj-bg); }
.wj-intention { min-height: 74px; margin: 0; padding: 10px; border-radius: 10px; color: var(--wj-muted); background: linear-gradient(to bottom, transparent 27px, rgba(111, 106, 99, .17) 28px), var(--wj-bg); background-size: 100% 28px; font-size: 12px; line-height: 2.15; }

.wj-section { padding: 80px 0; }
.wj-section-soft { border-block: 1px solid rgba(222, 217, 207, .6); background: rgba(234, 246, 244, .75); }
.wj-section-head { max-width: 800px; margin-bottom: 35px; }
.wj-section-head.center { margin-inline: auto; text-align: center; }
.wj-section-label { display: inline-flex; margin-bottom: 12px; color: var(--wj-teal-dark); font-size: 13px; font-weight: 850; letter-spacing: .04em; }
.wj-section h2, .wj-journey-grid h2, .wj-waitlist-grid h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.06; letter-spacing: -.052em; }
.wj-section-head > p, .wj-section-copy, .wj-waitlist-copy > p { margin: 18px 0 0; color: var(--wj-muted); font-size: 18px; line-height: 1.75; }
.wj-three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wj-info-card { padding: 25px; border: 1px solid var(--wj-line); border-radius: var(--wj-radius); background: var(--wj-surface); box-shadow: 0 16px 40px rgba(37, 35, 33, .045); }
.wj-info-number { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 12px; color: var(--wj-teal-dark); background: var(--wj-soft); font-weight: 900; }
.wj-info-card:nth-child(2) .wj-info-number { color: #9a6207; background: rgba(242, 156, 17, .14); }
.wj-info-card:nth-child(3) .wj-info-number { color: var(--wj-pink); background: rgba(237, 21, 88, .10); }
.wj-info-card h3, .wj-feature-row h3, .wj-audience-card h3 { margin: 0 0 9px; font-size: 21px; letter-spacing: -.03em; }
.wj-info-card p, .wj-feature-row p, .wj-audience-card p { margin: 0; color: var(--wj-muted); line-height: 1.7; }

.wj-experience-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; align-items: center; }
.wj-paper-visual { position: relative; padding: 18px; border: 1px solid var(--wj-line); border-radius: 18px; background: #fff; box-shadow: var(--wj-shadow); }
.wj-paper-visual img { width: 100%; display: block; border-radius: 11px; }
.wj-paper-caption { position: absolute; right: -14px; bottom: 28px; max-width: 260px; padding: 14px 16px; border: 1px solid var(--wj-line); border-radius: 12px; color: var(--wj-teal-dark); background: rgba(255, 255, 255, .94); box-shadow: 0 16px 38px rgba(37, 35, 33, .12); font-size: 13px; font-weight: 850; }
.wj-feature-list { display: grid; gap: 13px; }
.wj-feature-row { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: flex-start; padding: 18px; border: 1px solid var(--wj-line); border-radius: 12px; background: rgba(255, 255, 255, .76); }
.wj-feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; color: var(--wj-teal-dark); background: var(--wj-soft); font-weight: 900; }
.wj-feature-row:nth-child(2) .wj-feature-icon { color: #9a6207; background: rgba(242, 156, 17, .14); }
.wj-feature-row:nth-child(3) .wj-feature-icon { color: var(--wj-pink); background: rgba(237, 21, 88, .10); }

.wj-journey-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.wj-month-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wj-month-card { min-height: 132px; padding: 16px; border: 1px solid var(--wj-line); border-radius: 12px; background: var(--wj-surface); box-shadow: 0 12px 28px rgba(37, 35, 33, .04); }
.wj-month-card.active { border-color: rgba(0, 122, 120, .46); box-shadow: 0 18px 44px rgba(0, 94, 93, .12); }
.wj-month-card strong { display: block; margin-bottom: 9px; color: var(--wj-teal-dark); }
.wj-month-card span { display: block; color: var(--wj-muted); font-size: 13px; line-height: 1.55; }

.wj-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wj-audience-card { min-height: 175px; padding: 21px; border: 1px solid var(--wj-line); border-radius: 12px; background: var(--wj-surface); }

.wj-waitlist-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 42px; align-items: stretch; }
.wj-waitlist-copy { position: relative; padding: 8px 0 0; }
.wj-waitlist-copy img { width: 178px; margin-top: 34px; border-radius: 10px; box-shadow: var(--wj-shadow); transform: rotate(-3deg); }
.wj-form-card { display: grid; gap: 14px; padding: 29px; border: 1px solid var(--wj-line); border-radius: var(--wj-radius); background: var(--wj-surface); box-shadow: 0 22px 60px rgba(0, 94, 93, .11); }
.wj-field label:not(.wj-checkbox) { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 800; }
.wj-field input:not([type="checkbox"]), .wj-field select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--wj-line); border-radius: 10px; outline: none; background: #fff; color: var(--wj-text); }
.wj-field input:focus, .wj-field select:focus { border-color: rgba(0, 122, 120, .58); box-shadow: 0 0 0 4px rgba(0, 122, 120, .09); }
.wj-checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--wj-muted); font-size: 13px; line-height: 1.58; cursor: pointer; }
.wj-checkbox input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--wj-teal); }
.wj-checkbox a { color: var(--wj-teal-dark); font-weight: 850; }
.wj-field-error { display: none; margin-top: 6px; color: var(--wj-pink); font-size: 12px; font-weight: 760; }
.wj-field.invalid .wj-field-error { display: block; }
.wj-field.invalid input, .wj-field.invalid select { border-color: var(--wj-pink); box-shadow: 0 0 0 4px rgba(237, 21, 88, .08); }
.wj-submit { min-height: 52px; border: 0; border-radius: 10px; color: #fff; background: var(--wj-teal); box-shadow: 0 16px 34px rgba(0, 94, 93, .16); font-weight: 900; cursor: pointer; }
.wj-submit:disabled { opacity: .65; cursor: wait; }
.wj-form-status { min-height: 22px; margin: 0; font-size: 13px; font-weight: 850; line-height: 1.6; }
.wj-form-status.success { color: var(--wj-pink); }
.wj-form-status.success::before { content: "✓"; margin-right: 8px; font-weight: 900; }
.wj-form-status.error { color: #b42318; }
.wj-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wj-founder-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; }
.wj-founder-visual { position: relative; min-height: 500px; padding: 30px 30px 84px; overflow: hidden; border-radius: 18px; background: radial-gradient(circle at 88% 12%, rgba(242, 156, 17, .28), transparent 29%), linear-gradient(145deg, var(--wj-teal-dark), var(--wj-teal)); box-shadow: 0 26px 68px rgba(0, 94, 93, .2); }
.wj-founder-visual::before, .wj-founder-visual::after { content: ""; position: absolute; width: 220px; height: 220px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; }
.wj-founder-visual::before { top: -94px; right: -76px; }
.wj-founder-visual::after { bottom: -118px; left: -90px; }
.wj-founder-image-frame { position: relative; z-index: 2; padding: 9px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 14px; background: rgba(255, 255, 255, .12); box-shadow: 0 22px 54px rgba(0, 0, 0, .19); }
.wj-founder-image-frame img { width: 100%; display: block; border-radius: 9px; background: #fff; }
.wj-founder-identity { position: absolute; z-index: 4; left: 44px; bottom: 32px; max-width: calc(100% - 190px); padding: 13px 15px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 11px; color: #fff; background: rgba(0, 94, 93, .86); backdrop-filter: blur(8px); }
.wj-founder-identity strong, .wj-founder-identity span { display: block; }
.wj-founder-identity strong { margin-bottom: 3px; font-size: 17px; letter-spacing: -.02em; }
.wj-founder-identity span { color: rgba(255, 255, 255, .82); font-size: 11px; line-height: 1.45; }
.wj-founder-covers { position: absolute; z-index: 3; right: 24px; bottom: 20px; display: flex; align-items: flex-end; gap: 8px; }
.wj-founder-covers img { width: 62px; border-radius: 6px; box-shadow: 0 14px 24px rgba(0, 0, 0, .2); }
.wj-founder-covers img:first-child { transform: rotate(-5deg); }
.wj-founder-covers img:last-child { transform: rotate(4deg); }
.wj-founder-copy > p { margin: 0 0 18px; color: var(--wj-muted); font-size: 17px; line-height: 1.8; }
.wj-founder-statement { margin: 26px 0; padding: 18px 20px; border-left: 3px solid var(--wj-amber); border-radius: 0 10px 10px 0; background: rgba(255, 255, 255, .72); font-size: 21px; line-height: 1.5; font-weight: 760; letter-spacing: -.025em; }
.wj-founder-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.wj-founder-links .wj-btn { gap: 8px; }

.wj-footer {
    position: relative;
    padding: 72px 0 28px;
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    background:
        radial-gradient(circle at 85% 15%, rgba(242, 156, 17, .15), transparent 30%),
        linear-gradient(145deg, var(--wj-teal-dark), #004847);
}
.wj-footer::before { content: ""; position: absolute; top: -130px; right: -100px; width: 330px; height: 330px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; }
.wj-footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(160px, .7fr) minmax(240px, .95fr); gap: 72px; padding-bottom: 52px; }
.wj-footer-brand { max-width: 480px; }
.wj-footer-logo { display: inline-flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; }
    .wj-footer-logo img {
        width: 52px;
        height: 52px;
        display: block;
        flex: 0 0 auto;
        object-fit: contain;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .12));
    }
.wj-footer-logo strong, .wj-footer-logo small { display: block; }
.wj-footer-logo strong { font-size: 18px; line-height: 1.2; letter-spacing: -.02em; }
.wj-footer-logo small { margin-top: 4px; color: rgba(255, 255, 255, .62); font-size: 12px; font-weight: 600; }
.wj-footer-brand p { max-width: 440px; margin: 24px 0 0; color: rgba(255, 255, 255, .68); font-size: 15px; line-height: 1.8; }
.wj-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.wj-footer-heading { margin-bottom: 7px; color: #fff; font-size: 13px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.wj-footer-column > a { color: rgba(255, 255, 255, .72); text-decoration: none; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.wj-footer-column > a:hover { color: #fff; }
.wj-footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 13px; }
.wj-footer-social a { min-height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 9px; color: rgba(255, 255, 255, .84); background: rgba(255, 255, 255, .06); text-decoration: none; font-size: 13px; font-weight: 750; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.wj-footer-social a:hover { border-color: rgba(255, 255, 255, .32); color: #fff; background: rgba(255, 255, 255, .11); }
.wj-footer-social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wj-footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .13); color: rgba(255, 255, 255, .52); font-size: 12.5px; line-height: 1.6; }
.wj-footer-credit a { color: rgba(255, 255, 255, .75); font-weight: 750; text-decoration: none; }
.wj-footer-credit a:hover { color: #fff; }

.wj-legal-header { padding: 18px 0; border-bottom: 1px solid var(--wj-line); background: rgba(250, 247, 240, .92); }
.wj-legal-main { padding: 70px 0; }
.wj-legal-container { max-width: 860px; }
.wj-legal-container h1 { margin: 0 0 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.055em; }
.wj-legal-updated { margin: 0 0 12px; color: var(--wj-teal-dark); font-size: 13px; font-weight: 800; }
.wj-legal-intro { margin: 0 0 28px; color: var(--wj-muted); font-size: 18px; line-height: 1.75; }
.wj-legal-card { margin-bottom: 16px; padding: 24px; border: 1px solid var(--wj-line); border-radius: 12px; background: #fff; }
.wj-legal-card h2 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.03em; }
.wj-legal-card p { margin: 0 0 10px; color: var(--wj-muted); line-height: 1.75; }
.wj-legal-card p:last-child { margin-bottom: 0; }
.wj-legal-container > .wj-btn { margin-top: 10px; }
.wj-error-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 0; text-align: center; }
.wj-error-page h1 { margin: 22px 0 12px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.05em; }
.wj-error-page p { margin: 0 0 26px; color: var(--wj-muted); }

@media (max-width: 1080px) {
    .wj-hero-grid, .wj-experience-grid, .wj-journey-grid, .wj-founder-grid, .wj-waitlist-grid { grid-template-columns: 1fr; }
    .wj-visual { width: min(620px, 100%); margin: 0 auto; }
    .wj-hero-copy { padding-top: 0; }
    .wj-three-grid, .wj-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .wj-experience-grid { gap: 36px; }
    .wj-paper-visual { max-width: 680px; margin-inline: auto; }
    .wj-founder-visual { width: min(760px, 100%); margin-inline: auto; }
}

@media (max-width: 760px) {
    .wj-container { width: min(100% - 28px, 1160px); }
    .wj-nav { min-height: 68px; }
    .wj-brand-text small { display: none; }
    .wj-hamburger { display: block; }
    .wj-menu { display: none; }
    .wj-menu.open { position: absolute; top: 68px; left: 0; right: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 14px 16px; border-bottom: 1px solid var(--wj-line); background: #fff; box-shadow: 0 24px 44px rgba(37, 35, 33, .14); }
    .wj-menu.open a { width: 100%; padding: 14px 12px; border-bottom: 1px solid var(--wj-line); }
    .wj-menu.open .wj-nav-cta { width: auto; margin-top: 10px; border-bottom: 0; }
    .wj-hero { padding: 48px 0 62px; }
    .wj-hero h1 { font-size: clamp(42px, 13vw, 60px); }
    .wj-section { padding: 58px 0; }
    .wj-visual { min-height: 760px; margin-top: 0; }
    .wj-device { top: auto; bottom: 0; }
    .wj-cover-stack { top: 28px; left: 50%; transform: translateX(-50%); }
    .wj-device { width: min(390px, 96%); right: 50%; transform: translateX(50%); }
    .wj-three-grid, .wj-audience-grid, .wj-month-board { grid-template-columns: 1fr; }
    .wj-paper-caption { position: static; max-width: none; margin-top: 12px; }
    .wj-form-card { padding: 22px; }
    .wj-founder-visual { min-height: 430px; padding: 20px 20px 84px; }
    .wj-founder-identity { left: 32px; max-width: calc(100% - 155px); }
    .wj-founder-covers { right: 18px; }
    .wj-founder-links { display: grid; }
    .wj-founder-links .wj-btn { width: 100%; }
    .wj-footer { padding-top: 58px; }
    .wj-footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 36px; }
    .wj-footer-brand { grid-column: 1 / -1; }
    .wj-footer-bottom { display: grid; }
}

@media (max-width: 430px) {
    .wj-visual { min-height: 720px; }
    .wj-cover-stack { width: 220px; }
    .wj-cover { width: 158px; height: 226px; }
    .wj-cover-original { left: 62px; }
    .wj-device { width: 100%; }
    .wj-screen { min-height: 600px; padding: 16px; }
}

@media (max-width: 600px) {
    .wj-footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .wj-footer-brand { grid-column: auto; }
    .wj-footer-bottom { gap: 8px; }
}

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

.wj-brand-logo {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
}
