.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}

.site-nav-dark {
    color: var(--lime);
    background: rgba(10, 10, 11, 0);
    border-bottom: 1px solid transparent;
    margin-bottom: calc(var(--nav-height) * -1);
}

.stage-hero {
    padding-top: var(--nav-height);
}

.site-nav-dark.is-stuck {
    background: rgba(10, 10, 11, 0.72);
    border-bottom-color: var(--ink-line);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.site-nav-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    width: 100%;
    max-width: var(--shell-wide);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 40px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: none;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.brand-mark {
    width: 21px;
    height: 21px;
    flex: none;
}

.brand-mark path {
    stroke-width: 10;
    stroke-linecap: round;
    fill: none;
}

.brand-word {
    line-height: 1;
    padding-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 30px);
    font-size: 14px;
    letter-spacing: -0.012em;
    margin-inline-end: auto;
}

.nav-links a {
    color: inherit;
    opacity: 0.72;
    position: relative;
    padding-block: 6px;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.is-active {
    opacity: 1;
}

.nav-links a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    border-radius: 2px;
    background: var(--saffron);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
    font-size: 14px;
}

.nav-actions .btn {
    height: 36px;
    padding-inline: 17px;
    font-size: 14px;
}

.nav-link-quiet {
    opacity: 0.82;
    letter-spacing: -0.012em;
}

.nav-link-quiet:hover {
    opacity: 1;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 2px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lang-switch > * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 21px;
    padding-inline: 6px;
    border-radius: var(--radius-pill);
    line-height: 1;
    transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.site-nav-dark .lang-switch {
    background: rgba(255, 255, 255, 0.06);
}

.site-nav-dark .lang-switch a {
    color: rgba(255, 255, 255, 0.5);
}

.site-nav-dark .lang-switch a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav-dark .lang-switch .is-current {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.site-nav-light .lang-switch,
.dash-topbar .lang-switch {
    background: var(--lime);
}

.site-nav-light .lang-switch a,
.dash-topbar .lang-switch a {
    color: var(--grey);
}

.site-nav-light .lang-switch a:hover,
.dash-topbar .lang-switch a:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.04);
}

.site-nav-light .lang-switch .is-current,
.dash-topbar .lang-switch .is-current {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.nowrap {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    margin-inline-start: -8px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex: none;
}

.nav-toggle span {
    position: relative;
    display: block;
    width: 17px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 17px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s var(--ease);
}

.nav-toggle span::before {
    top: -5.5px;
}

.nav-toggle span::after {
    top: 5.5px;
}

.nav-toggle[aria-expanded='true'] span {
    background: transparent;
}

.nav-toggle[aria-expanded='true'] span::before {
    transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span::after {
    transform: translateY(-5.5px) rotate(-45deg);
}

.nav-drawer {
    position: fixed;
    inset: var(--nav-height) 0 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 24px clamp(20px, 5vw, 40px) 40px;
    overflow-y: auto;
    animation: drawer-in 0.35s var(--ease) both;
}

.nav-drawer.is-open {
    display: flex;
}

.site-nav-dark + .nav-drawer {
    background: rgba(10, 10, 11, 0.97);
    color: var(--lime);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.site-nav-light + .nav-drawer {
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.nav-drawer a:not(.btn) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 2px;
    font-size: var(--step-1);
    letter-spacing: -0.02em;
    border-bottom: 1px solid var(--ink-line);
}

.site-nav-light + .nav-drawer a:not(.btn) {
    border-bottom-color: var(--border);
}

.nav-drawer a:not(.btn)::after {
    content: '›';
    opacity: 0.35;
    font-size: 1.2em;
}

.nav-drawer .drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.nav-drawer .drawer-actions .btn {
    height: 50px;
    width: 100%;
}

@keyframes drawer-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .brand {
        margin-inline-end: auto;
    }
    .nav-actions .nav-link-quiet {
        display: none;
    }
}

@media (max-width: 560px) {
    .nav-actions .lang-switch {
        display: none;
    }
    .nav-actions .btn {
        padding-inline: 14px;
        font-size: 13.5px;
    }
    .brand {
        font-size: 16px;
    }
}

.drawer-lang {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.stage-dark {
    position: relative;
    background: var(--ink-deep);
    color: var(--lime);
    isolation: isolate;
    overflow: hidden;
}

.stage-dark::before {
    content: '';
    position: absolute;
    top: -18%;
    left: 50%;
    width: min(1500px, 150vw);
    aspect-ratio: 1.6 / 1;
    transform: translateX(-42%);
    background: radial-gradient(ellipse at 62% 22%, rgba(201, 150, 63, 0.24) 0%, rgba(201, 150, 63, 0.08) 34%, transparent 66%);
    pointer-events: none;
    z-index: -1;
}

.stage-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero {
    position: relative;
    padding-block: clamp(56px, 8vw, 104px) clamp(72px, 10vw, 132px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(18px, 2.2vw, 26px);
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2.5rem, 1.35rem + 3.3vw, 5.4rem);
    line-height: 1.0;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.hero-title > span {
    display: block;
}

.hero-title .line-1 {
    color: var(--white);
}

.hero-title .line-2 {
    color: #8E8E93;
}

.hero-title .line-3 {
    color: var(--saffron);
}

.hero-title .dot {
    color: rgba(201, 150, 63, 0.42);
}

.hero-sub {
    font-size: var(--step-1);
    line-height: 1.45;
    letter-spacing: -0.018em;
    color: #A1A1A6;
    max-width: 34ch;
    margin-top: 4px;
}

.hero-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 560px;
    flex-wrap: wrap;
}

.phone-field {
    display: flex;
    align-items: center;
    flex: 1 1 260px;
    min-width: 0;
    height: 54px;
    border: 1px solid var(--ink-line-strong);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.phone-field:focus-within {
    border-color: var(--saffron);
    background: rgba(255, 255, 255, 0.07);
}

.phone-prefix {
    padding: 0 12px 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    flex: none;
}

.phone-divider {
    width: 1px;
    height: 22px;
    background: var(--ink-line-strong);
    flex: none;
}

.phone-field input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: var(--step-0);
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
}

.phone-field input:focus {
    outline: none;
}

.phone-field input::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.hero-form .btn {
    height: 54px;
    padding-inline: 30px;
    flex: 0 0 auto;
}

.hero-note {
    font-size: var(--step--1);
    color: rgba(255, 255, 255, 0.42);
    margin-top: -12px;
}

.hero-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 40px);
    width: 100%;
    max-width: 640px;
    padding-top: clamp(24px, 3vw, 36px);
    margin-top: clamp(8px, 1.5vw, 16px);
    border-top: 1px solid var(--ink-line);
}

.hero-step-num {
    display: block;
    font-size: var(--step--1);
    font-variant-numeric: tabular-nums;
    color: var(--saffron);
    margin-bottom: 12px;
}

.hero-step-title {
    display: block;
    font-size: var(--step-0);
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.018em;
    margin-bottom: 6px;
}

.hero-step-text {
    font-size: var(--step--1);
    line-height: 1.45;
    color: #86868B;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.hero-visual .device {
    transform: rotate(-3.2deg) translateY(6px);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(36px, 6vw, 56px);
    }
    .hero-visual {
        min-height: 0;
    }
    .hero-visual .device {
        transform: none;
        --device-width: clamp(230px, 42vw, 280px);
    }
    .hero-copy {
        max-width: none;
    }
    .hero-sub {
        max-width: 44ch;
    }
}

@media (max-width: 620px) {
    .hero-steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }
    .hero-form .btn {
        width: 100%;
    }
    .hero-title {
        max-width: none;
    }
}

.device {
    --device-width: clamp(232px, 20vw, 304px);
    --device-radius: 54px;
    --preview-width: 390px;
    --preview-scale: 0.79;
    --device-status: calc(54px * var(--preview-scale));
    position: relative;
    width: var(--device-width);
    aspect-ratio: 1206 / 2622;
    flex: none;
    border-radius: var(--device-radius);
    padding: 3px;
    background: linear-gradient(150deg, #9A9AA0 0%, #56565C 18%, #313135 38%, #6E6E75 58%, #3A3A3F 78%, #85858C 100%);
    box-shadow: var(--shadow-dark), 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--device-radius) - 3px);
    padding: 8px;
    background: #08080A;
}

.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--device-radius) - 11px);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.device-island {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 31%;
    height: 3.6%;
    min-height: 22px;
    border-radius: var(--radius-pill);
    background: #08080A;
    z-index: 12;
    pointer-events: none;
}

.device-indicator {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 4px;
    border-radius: var(--radius-pill);
    background: rgba(0, 0, 0, 0.28);
    z-index: 12;
    pointer-events: none;
}

.device-screen.is-dark .device-indicator {
    background: rgba(255, 255, 255, 0.4);
}

.device-button {
    position: absolute;
    width: 2.5px;
    border-radius: 3px;
    background: linear-gradient(180deg, #6B6B72, #3C3C41);
    right: -2.5px;
    z-index: 2;
}

.device-button.power {
    top: 22%;
    height: 11%;
}

.device-volume {
    position: absolute;
    left: -2.5px;
    width: 2.5px;
    border-radius: 3px;
    background: linear-gradient(180deg, #6B6B72, #3C3C41);
    z-index: 2;
}

.device-volume.up {
    top: 19%;
    height: 7%;
}

.device-volume.down {
    top: 28.5%;
    height: 7%;
}

.device-volume.action {
    top: 13%;
    height: 4.5%;
}

.device-viewport {
    position: absolute;
    inset: 43px 0 0 0;
    inset: var(--device-status) 0 0 0;
    overflow: hidden;
    background: var(--white);
}

.device-viewport.is-dark {
    background: #0F0F11;
}

.device-iframe {
    flex: none;
    width: 390px;
    width: var(--preview-width);
    border: 0;
    display: block;
    background: transparent;
    transform-origin: 0 0;
    transform: scale(0.79);
    transform: scale(var(--preview-scale));
    height: 126%;
    height: calc(100% / var(--preview-scale));
}

.device-statusbar {
    position: absolute;
    inset: 0 0 auto 0;
    height: 43px;
    height: var(--device-status);
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(8px * var(--preview-scale)) calc(22px * var(--preview-scale)) 0;
    font-size: calc(13px * var(--preview-scale));
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    background: var(--white);
    pointer-events: none;
}

.device-statusbar.is-dark {
    color: var(--lime);
    background: #0F0F11;
}

.device-statusbar-icons {
    display: flex;
    align-items: flex-end;
    gap: calc(2px * var(--preview-scale));
}

.device-statusbar-icons i {
    display: block;
    width: calc(3px * var(--preview-scale));
    border-radius: 1px;
    background: currentColor;
}

.device-statusbar-icons i:nth-child(1) { height: calc(4px * var(--preview-scale)); }
.device-statusbar-icons i:nth-child(2) { height: calc(6px * var(--preview-scale)); }
.device-statusbar-icons i:nth-child(3) { height: calc(8px * var(--preview-scale)); }
.device-statusbar-icons i:nth-child(4) { height: calc(10px * var(--preview-scale)); }

.device-statusbar-battery {
    width: calc(16px * var(--preview-scale));
    height: calc(8px * var(--preview-scale));
    border: 1px solid currentColor;
    border-radius: calc(2.5px * var(--preview-scale));
    padding: 1px;
    margin-left: calc(3px * var(--preview-scale));
}

.device-statusbar-battery::before {
    content: '';
    display: block;
    height: 100%;
    width: 72%;
    background: currentColor;
    border-radius: 1px;
}

.device-caption {
    margin-top: 16px;
    text-align: center;
    font-size: var(--step--1);
    color: var(--grey);
}

.device-screen {
    container-type: size;
    container-name: screen;
}

.mock {
    --u: min(1cqw, 4px);
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    color: var(--ink);
    font-size: calc(3.9 * var(--u));
    line-height: 1.35;
    letter-spacing: -0.012em;
    overflow: hidden;
}

.mock-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(4.6 * var(--u)) calc(7.8 * var(--u)) 0;
    font-size: calc(3.4 * var(--u));
    font-weight: 500;
    color: var(--ink);
    flex: none;
    height: calc(12 * var(--u));
}

.mock-status-icons {
    display: flex;
    align-items: flex-end;
    gap: calc(0.7 * var(--u));
}

.mock-status-icons i {
    display: block;
    width: calc(1.1 * var(--u));
    border-radius: 1px;
    background: currentColor;
}

.mock-status-icons i:nth-child(1) { height: calc(1.4 * var(--u)); }
.mock-status-icons i:nth-child(2) { height: calc(2.1 * var(--u)); }
.mock-status-icons i:nth-child(3) { height: calc(2.8 * var(--u)); }
.mock-status-icons i:nth-child(4) { height: calc(3.5 * var(--u)); }

.mock-battery {
    width: calc(5.7 * var(--u));
    height: calc(2.9 * var(--u));
    border: 1px solid currentColor;
    border-radius: calc(0.9 * var(--u));
    padding: 1px;
    margin-left: calc(1.1 * var(--u));
    position: relative;
}

.mock-battery::before {
    content: '';
    display: block;
    height: 100%;
    width: 72%;
    background: currentColor;
    border-radius: 1px;
}

.mock-brand {
    display: flex;
    align-items: center;
    gap: calc(1.8 * var(--u));
    padding: calc(2.1 * var(--u)) calc(6.4 * var(--u)) calc(2.8 * var(--u));
    flex: none;
}

.mock-brand svg {
    width: calc(4.6 * var(--u));
    height: calc(4.6 * var(--u));
}

.mock-brand span {
    font-size: calc(2.9 * var(--u));
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--grey);
}

.mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(2.8 * var(--u));
    padding: 0 calc(6.4 * var(--u)) calc(3.5 * var(--u));
    flex: none;
}

.mock-title {
    font-size: calc(5.3 * var(--u));
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.15;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mock-table {
    flex: none;
    padding: calc(1.2 * var(--u)) calc(3.2 * var(--u));
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: calc(3 * var(--u));
    color: var(--grey);
    white-space: nowrap;
}

.mock-tabs {
    display: flex;
    gap: calc(1.8 * var(--u));
    padding: 0 calc(6.4 * var(--u)) calc(3.9 * var(--u));
    overflow: hidden;
    flex: none;
    mask-image: linear-gradient(90deg, #000 84%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 84%, transparent 100%);
}

.mock-tab {
    flex: none;
    padding: calc(1.6 * var(--u)) calc(3.5 * var(--u));
    border-radius: var(--radius-pill);
    background: var(--lime);
    color: var(--grey);
    font-size: calc(3 * var(--u));
    font-weight: 500;
    white-space: nowrap;
}

.mock-tab.is-active {
    background: var(--ink);
    color: var(--white);
}

.mock-list {
    flex: 1;
    overflow: hidden;
    padding: 0 calc(6.4 * var(--u));
    border-top: 1px solid var(--border);
    mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
}

.mock-item {
    display: flex;
    align-items: center;
    gap: calc(3.2 * var(--u));
    padding: calc(3.2 * var(--u)) 0;
    border-bottom: 1px solid var(--border);
}

.mock-thumb {
    width: calc(12 * var(--u));
    height: calc(12 * var(--u));
    flex: none;
    border-radius: calc(3.2 * var(--u));
    background: linear-gradient(140deg, #E8C48A, #B98436);
    background-size: cover;
    background-position: center;
}

.mock-thumb.t2 { background: linear-gradient(140deg, #6B4A2C, #2E1D10); }
.mock-thumb.t3 { background: linear-gradient(140deg, #F0DCAF, #C9A45F); }
.mock-thumb.t4 { background: linear-gradient(140deg, #4A4A4E, #1D1D1F); }
.mock-thumb.t5 { background: linear-gradient(140deg, #E9C583, #C08A3A); }

.mock-item-body {
    flex: 1;
    min-width: 0;
}

.mock-item-name {
    font-size: calc(3.6 * var(--u));
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-item-desc {
    font-size: calc(3 * var(--u));
    color: var(--grey);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: calc(0.4 * var(--u));
}

.mock-price {
    flex: none;
    font-size: calc(3.6 * var(--u));
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.mock-foot {
    flex: none;
    margin: calc(3.5 * var(--u)) calc(5 * var(--u)) calc(6.4 * var(--u));
    padding: calc(3.2 * var(--u)) calc(5 * var(--u));
    border-radius: calc(4.6 * var(--u));
    background: var(--saffron);
    color: var(--saffron-ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(2.8 * var(--u));
    font-size: calc(3.4 * var(--u));
    font-weight: 500;
    letter-spacing: -0.015em;
}

.mock-foot-google {
    background: var(--ink);
    color: var(--white);
}

.mock-stars {
    display: inline-flex;
    gap: calc(0.5 * var(--u));
    color: var(--saffron);
    flex: none;
}

.mock-stars svg {
    width: calc(3.2 * var(--u));
    height: calc(3.2 * var(--u));
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 288px), 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.feature-card {
    background: var(--white);
    padding: clamp(26px, 3.4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background-color 0.35s var(--ease-out);
}

.feature-card:hover {
    background: #FCFCFD;
}

.feature-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
    color: var(--saffron);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.feature-title {
    font-size: var(--step-1);
    font-weight: 500;
    letter-spacing: -0.026em;
}

.feature-text {
    font-size: var(--step--1);
    line-height: 1.55;
    color: var(--grey);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin-bottom: clamp(36px, 5vw, 60px);
}

.section-head-center {
    align-items: center;
    text-align: center;
    margin-inline: auto;
}

.section-head .lede {
    max-width: 52ch;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(24px, 3vw, 40px);
    counter-reset: step;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    counter-increment: step;
}

.step-item::before {
    content: '0' counter(step);
    font-size: var(--step--1);
    font-variant-numeric: tabular-nums;
    color: var(--saffron);
}

.step-title {
    font-size: var(--step-1);
    font-weight: 500;
    letter-spacing: -0.024em;
}

.step-text {
    font-size: var(--step--1);
    line-height: 1.55;
    color: var(--grey);
}

.plan-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border-radius: var(--radius-pill);
    background: var(--lime);
    margin-inline: auto;
}

.plan-toggle button {
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-size: var(--step--1);
    font-weight: 500;
    color: var(--grey);
    transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
    white-space: nowrap;
}

.plan-toggle button.is-active {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.plan-toggle .save-badge {
    display: inline-block;
    margin-inline-start: 7px;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    background: var(--saffron-soft);
    color: var(--saffron-deep);
    font-size: var(--step--2);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: start;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(26px, 3vw, 34px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--white);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease);
}

.plan-card:hover {
    border-color: #D5D5DC;
    box-shadow: var(--shadow-md);
}

.plan-card.is-popular {
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
}

.plan-card.is-selected {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px var(--saffron-soft);
}

.plan-flag {
    position: absolute;
    top: -11px;
    inset-inline-start: clamp(26px, 3vw, 34px);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--ink);
    color: var(--white);
    font-size: var(--step--2);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.plan-name {
    font-size: var(--step-2);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.plan-tagline {
    font-size: var(--step--1);
    color: var(--grey);
    line-height: 1.45;
    min-height: 2.9em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-block: 6px;
}

.plan-amount {
    font-size: var(--step-4);
    font-weight: 500;
    letter-spacing: -0.042em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.plan-period {
    font-size: var(--step--1);
    color: var(--grey);
}

.plan-billed {
    font-size: var(--step--2);
    color: var(--grey);
    margin-top: -12px;
    min-height: 1.3em;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: var(--step--1);
    line-height: 1.4;
    padding-top: 4px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.plan-features li::before {
    content: '';
    flex: none;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--saffron-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.6 6.2 4.9 8.5 9.4 3.9' stroke='%23A87A2C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.plan-features li.is-muted {
    color: #B4B4BB;
}

.plan-features li.is-muted::before {
    background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3.6 6h4.8' stroke='%23B4B4BB' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.plan-card .btn {
    margin-top: auto;
}

.trial-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(22px, 3vw, 32px);
    border-radius: var(--radius-xl);
    background: var(--lime);
    margin-top: clamp(24px, 3vw, 36px);
}

.trial-strip .trial-copy {
    max-width: 52ch;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 2px;
    cursor: pointer;
    font-size: var(--step-1);
    font-weight: 500;
    letter-spacing: -0.022em;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    flex: none;
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M7 1.5v11M1.5 7h11' stroke='%2386868B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2px 24px;
    max-width: 68ch;
    font-size: var(--step-0);
    line-height: 1.6;
    color: var(--grey);
}

.cta-band {
    position: relative;
    padding-block: clamp(64px, 9vw, 120px);
    text-align: center;
    overflow: hidden;
}

.cta-band .cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.site-footer {
    background: var(--ink-deep);
    color: var(--ink-muted);
    padding-block: clamp(48px, 6vw, 76px) 32px;
    font-size: var(--step--1);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    padding-bottom: clamp(32px, 4vw, 52px);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 30ch;
}

.footer-brand .brand {
    color: var(--white);
}

.footer-col-title {
    font-size: var(--step--2);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid var(--ink-line);
    font-size: var(--step--2);
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--ink-line);
    transition: background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--ink-line-strong);
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.auth-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    min-height: calc(100dvh - var(--nav-height));
    padding-block: clamp(40px, 7vw, 80px);
    background: var(--lime);
}

.auth-card {
    width: min(440px, 100%);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-md);
}

.auth-head {
    margin-bottom: 28px;
}

.auth-head h1 {
    font-size: var(--step-3);
    margin-bottom: 8px;
}

.auth-head p {
    color: var(--grey);
    font-size: var(--step--1);
}

.auth-foot {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: var(--step--1);
    color: var(--grey);
}

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: calc(100dvh - var(--nav-height) - 200px);
    padding-block: clamp(60px, 10vw, 120px);
    text-align: center;
}

.error-code {
    font-size: clamp(72px, 14vw, 148px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.9;
    color: var(--saffron);
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(24px, 5vw, 64px);
    opacity: 0.5;
    font-size: var(--step--1);
    color: var(--grey);
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(20px, 3vw, 40px);
    padding-block: clamp(40px, 5vw, 64px);
    border-block: 1px solid var(--ink-line);
}

.stat-band .stat-value {
    font-size: var(--step-3);
    font-weight: 500;
    letter-spacing: -0.038em;
    color: var(--white);
}

.stat-band .stat-label {
    font-size: var(--step--1);
    color: #86868B;
    margin-top: 6px;
}

.stand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

.stand-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(20px, 2.6vw, 28px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--white);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.stand-card:hover {
    border-color: #D5D5DC;
    box-shadow: var(--shadow-md);
}

.stand-card.is-selected {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px var(--saffron-soft);
}

.stand-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: linear-gradient(170deg, #F7F7F9 0%, #ECECEF 100%);
    padding: 22px;
    overflow: hidden;
}

.stand-piece {
    position: relative;
    width: 63%;
    max-width: 170px;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    text-align: center;
    transform-origin: bottom center;
}

.stand-piece.ink {
    background: var(--ink);
    color: var(--lime);
}

.stand-piece.saffron {
    background: var(--saffron);
    color: var(--saffron-ink);
}

.stand-piece.clear {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.stand-piece::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 78%;
    height: 9px;
    border-radius: 0 0 5px 5px;
    background: rgba(0, 0, 0, 0.09);
}

.stand-piece-name {
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.65;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stand-qr {
    width: 54%;
    aspect-ratio: 1;
    border-radius: 5px;
    background: currentColor;
    -webkit-mask: var(--qr-mask) center / contain no-repeat;
    mask: var(--qr-mask) center / contain no-repeat;
}

.stand-piece-stars {
    display: flex;
    gap: 1.5px;
    color: var(--saffron);
}

.stand-piece.saffron .stand-piece-stars {
    color: var(--saffron-ink);
}

.stand-piece-stars svg {
    width: 9px;
    height: 9px;
    fill: currentColor;
}

.stand-piece-cta {
    font-size: 7.5px;
    line-height: 1.25;
    opacity: 0.72;
    max-width: 92%;
}

.stand-piece-table {
    font-size: 7.5px;
    font-weight: 500;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    border: 1px solid currentColor;
    opacity: 0.42;
}

.option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.option-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: var(--step--1);
    cursor: pointer;
    transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
    white-space: nowrap;
}

.option-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-chip:hover {
    border-color: #D0D0D8;
}

.option-chip:has(input:checked) {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.option-chip:has(input:focus-visible) {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

.option-swatch {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex: none;
}

.qty-field {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    overflow: hidden;
    height: 38px;
}

.qty-field button {
    width: 36px;
    height: 100%;
    font-size: 17px;
    line-height: 1;
    color: var(--grey);
    transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.qty-field button:hover {
    background: var(--lime);
    color: var(--ink);
}

.qty-field input {
    width: 42px;
    height: 100%;
    border: 0;
    text-align: center;
    font-size: var(--step--1);
    font-variant-numeric: tabular-nums;
    background: transparent;
    -moz-appearance: textfield;
}

.qty-field input::-webkit-outer-spin-button,
.qty-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-field input:focus {
    outline: none;
}

.wizard-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--step--2);
    color: var(--grey);
    letter-spacing: 0.02em;
}

.wizard-progress-bar {
    flex: 1;
    max-width: 180px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    overflow: hidden;
}

.wizard-progress-bar i {
    display: block;
    height: 100%;
    border-radius: 2px;
    background: var(--saffron);
    transition: width 0.5s var(--ease);
}

.setup-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: clamp(32px, 5vw, 68px);
    align-items: start;
    padding-block: clamp(40px, 6vw, 76px);
}

.setup-layout .setup-aside {
    position: sticky;
    top: calc(var(--nav-height) + 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

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

.setup-form-grid .span-2 {
    grid-column: 1 / -1;
}

.slug-preview {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    background: var(--lime);
    font-size: var(--step--1);
    color: var(--grey);
    word-break: break-all;
}

.slug-preview b {
    color: var(--ink);
    font-weight: 500;
}

@media (max-width: 900px) {
    .setup-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .setup-layout .setup-aside {
        position: static;
        order: -1;
    }
    .setup-layout .setup-aside .device {
        --device-width: 240px;
    }
}

@media (max-width: 560px) {
    .setup-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.summary-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(20px, 2.6vw, 26px);
    border-radius: var(--radius-lg);
    background: var(--lime);
    font-size: var(--step--1);
}

.summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.summary-row span:last-child {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.summary-total {
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: var(--step-1);
    font-weight: 500;
    letter-spacing: -0.022em;
}

.legal-prose {
    max-width: 72ch;
    font-size: var(--step-0);
    line-height: 1.7;
    color: #46464A;
}

.legal-prose h2 {
    font-size: var(--step-2);
    margin-top: 44px;
    margin-bottom: 14px;
    color: var(--ink);
}

.legal-prose h3 {
    font-size: var(--step-1);
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--ink);
}

.legal-prose p {
    margin-bottom: 16px;
}

.legal-prose ul {
    list-style: disc;
    padding-inline-start: 22px;
    margin-bottom: 16px;
}

.legal-prose li {
    margin-bottom: 8px;
}

.legal-prose strong {
    color: var(--ink);
    font-weight: 500;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

@media (max-width: 860px) {
    .support-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-line svg {
    width: 19px;
    height: 19px;
    flex: none;
    color: var(--saffron);
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.contact-line .contact-label {
    font-size: var(--step--2);
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-line .contact-value {
    font-size: var(--step-0);
    font-weight: 500;
}

.term-row {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 28px 0 24px;
}

.plan-choice-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.plan-choice {
    position: relative;
    display: block;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--white);
    padding: clamp(20px, 2.6vw, 26px);
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.plan-choice:hover {
    border-color: #D0D0D8;
}

.plan-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-choice:has(input:checked) {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px var(--saffron-soft);
}

.plan-choice:has(input:focus-visible) {
    outline: 2px solid var(--saffron);
    outline-offset: 3px;
}

.plan-choice-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-choice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.plan-choice .plan-name {
    font-size: var(--step-2);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.plan-choice .plan-tagline {
    min-height: 0;
}

.plan-choice .plan-price {
    padding-block: 2px;
}

.plan-choice .plan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 8px 18px;
    padding-top: 6px;
}

.plan-choice .plan-features > span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: var(--step--1);
    line-height: 1.4;
}

.plan-choice .plan-features > span::before {
    content: '';
    flex: none;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--saffron-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.6 6.2 4.9 8.5 9.4 3.9' stroke='%23A87A2C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.plan-choice .plan-features > span.is-muted {
    color: #B4B4BB;
}

.plan-choice .plan-features > span.is-muted::before {
    background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3.6 6h4.8' stroke='%23B4B4BB' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
