:root {
    --page: #f3f6f8;
    --surface: #ffffff;
    --surface-soft: #eaf0f4;
    --ink: #0b1f33;
    --ink-soft: #22384d;
    --muted: #5d6e7f;
    --muted-strong: #516477;
    --line: #d6e0e7;
    --blue: #1d4f7a;
    --blue-deep: #12354f;
    --steel: #536f86;
    --teal: #0f766e;
    --gold: #8b5e1a;
    --violet: #536f86;
    --green: #0f766e;
    --orange: #8b5e1a;
    --blue-soft: #e3edf5;
    --steel-soft: #e7edf1;
    --teal-soft: #e1f0ed;
    --gold-soft: #f4edde;
    --dark: #081b2c;
    --container: 1280px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius-xl: 38px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --shadow-soft: 0 24px 70px rgba(8, 27, 44, .09);
    --shadow-card: 0 16px 42px rgba(8, 27, 44, .08);
    --ease: cubic-bezier(.2, .72, .25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page);
    color: var(--ink);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open,
html.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

button {
    border: 0;
}

em {
    color: var(--blue);
    font-style: normal;
}

.container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 16px;
    z-index: 10000;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.top-note {
    min-height: 34px;
    padding: 7px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--dark);
    color: #a8c2d8;
    font-size: 11px;
    letter-spacing: -.02em;
    text-align: center;
}

.top-note strong {
    color: #fff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(214, 224, 231, .82);
    background: rgba(243, 246, 248, .92);
    box-shadow: 0 8px 30px rgba(8, 27, 44, .04);
    backdrop-filter: saturate(1.35) blur(14px);
    -webkit-backdrop-filter: saturate(1.35) blur(14px);
}

.header-inner {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    min-height: 74px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    border-radius: 13px;
    border: 1px solid rgba(196, 154, 90, .9);
    background: linear-gradient(145deg, #081b2c, #1d4f7a);
    box-shadow: 0 8px 20px rgba(8, 27, 44, .24);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(196, 154, 90, .7);
    border-radius: 10px;
    pointer-events: none;
}

.brand-mark__letter {
    position: relative;
    z-index: 1;
    margin-left: -7px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.brand-mark__year {
    position: absolute;
    z-index: 2;
    right: 4px;
    bottom: 5px;
    color: #d6aa65;
    font-size: 7px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.04em;
}

.brand > span:last-child {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.brand strong {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.brand small {
    color: #607387;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 32px);
}

.desktop-nav a {
    position: relative;
    color: #5f6b7f;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue);
    transition: right .25s var(--ease);
}

.header-cta {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 13px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(8, 27, 44, .14);
    transition: transform .25s var(--ease), background .25s ease;
}

.header-cta span {
    color: #b7d0df;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 10vw, 142px) 0 0;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: min(880px, 76vw);
    aspect-ratio: 1;
    top: -46%;
    right: -19%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 119, 153, .2), rgba(83, 111, 134, .07) 42%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .34;
    background-image:
        linear-gradient(rgba(29, 79, 122, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 79, 122, .045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
    gap: clamp(54px, 7vw, 105px);
    align-items: center;
}

.eyebrow {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 24px 0 0;
    font-size: clamp(58px, 6.2vw, 92px);
    font-weight: 900;
    line-height: .99;
    letter-spacing: -.074em;
}

.hero-lead {
    max-width: 680px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.82;
    letter-spacing: -.022em;
}

.hero-actions,
.final-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    min-height: 56px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 15px 32px rgba(29, 79, 122, .24);
}

.button--soft {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .76);
    color: var(--ink-soft);
}

.button--white {
    background: #fff;
    color: var(--ink);
}

.button--glass {
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.hero-checks {
    margin: 27px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    list-style: none;
}

.hero-checks li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-checks span {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow--one {
    width: 360px;
    height: 360px;
    right: 3%;
    top: 8%;
    background: rgba(76, 119, 153, .16);
}

.hero-glow--two {
    width: 190px;
    height: 190px;
    left: 4%;
    bottom: 3%;
    background: rgba(15, 118, 110, .12);
}

.answer-card {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 32px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 40px 100px rgba(38, 57, 101, .18);
}

.answer-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 14px -14px -14px 14px;
    border: 1px solid rgba(29, 79, 122, .1);
    border-radius: inherit;
    background: rgba(226, 235, 241, .76);
}

.answer-card__top {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
}

.answer-logo {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--dark), var(--blue));
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: -.06em;
    box-shadow: inset 0 0 0 1px rgba(196, 154, 90, .7);
}

.answer-card__top > div {
    display: grid;
    line-height: 1.3;
}

.answer-card__top strong {
    font-size: 14px;
    letter-spacing: -.03em;
}

.answer-card__top small {
    color: var(--muted-strong);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .06em;
}

.answer-status {
    padding: 7px 9px;
    border-radius: 99px;
    background: var(--teal-soft);
    color: var(--teal);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
}

.answer-question {
    margin: 26px 0 12px;
    padding: 14px 17px;
    border-radius: 14px 14px 5px 14px;
    background: #edf2f5;
    color: var(--muted);
    font-size: 12px;
    text-align: right;
}

.answer-result {
    padding: 18px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
    border: 1px solid #ccdae5;
    border-radius: 18px;
    background: #eaf2f7;
}

.answer-result__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
}

.answer-result div {
    display: grid;
    gap: 4px;
}

.answer-result small {
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
}

.answer-result strong {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: -.03em;
}

.answer-flow {
    position: relative;
    margin: 27px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.answer-flow::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--line);
}

.answer-flow li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--muted-strong);
    font-size: 9px;
    text-align: center;
}

.answer-flow span {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 8px;
    font-weight: 850;
}

.answer-flow .is-active {
    color: var(--ink);
}

.answer-flow .is-active span {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.floating-note {
    position: absolute;
    z-index: 3;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 17px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 46px rgba(8, 27, 44, .13);
    animation: noteFloat 5s ease-in-out infinite;
}

.floating-note > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--steel-soft);
    color: var(--violet);
    font-size: 13px;
    font-weight: 900;
}

.floating-note > div {
    display: grid;
    line-height: 1.3;
}

.floating-note small {
    color: var(--muted-strong);
    font-size: 8px;
    font-weight: 750;
}

.floating-note strong {
    font-size: 11px;
}

.floating-note--query {
    top: 7%;
    left: -4%;
}

.floating-note--signal {
    right: -5%;
    bottom: 10%;
    animation-delay: -2.2s;
}

.floating-note--signal > span {
    background: var(--teal-soft);
    color: var(--teal);
}

@keyframes noteFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.value-strip {
    position: relative;
    z-index: 4;
    margin-top: clamp(76px, 10vw, 135px);
    padding: 22px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.value-strip > div {
    min-height: 58px;
    padding: 5px clamp(18px, 3vw, 40px);
    display: grid;
    align-content: center;
    gap: 4px;
    border-right: 1px solid var(--line);
}

.value-strip > div:first-child {
    padding-left: 0;
}

.value-strip > div:last-child {
    border-right: 0;
}

.value-strip strong {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
}

.value-strip span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.section {
    padding: clamp(92px, 11vw, 156px) 0;
}

.section-heading > h2,
.section-heading--split h2,
.difference-intro h2,
.asset-copy h2,
.faq-layout h2 {
    margin: 21px 0 0;
    font-size: clamp(44px, 5.3vw, 72px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.065em;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, .62fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: end;
}

.section-heading--split > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.sample-section {
    position: relative;
}

.sample-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 400px;
    height: 400px;
    top: 26%;
    left: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 118, 110, .1), transparent 70%);
    pointer-events: none;
}

.sample-grid {
    margin-top: clamp(45px, 6vw, 75px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sample-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.sample-card__media {
    position: relative;
    aspect-ratio: 1.55 / 1;
    display: block;
    overflow: hidden;
    background: var(--soft);
}

.sample-card__media::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(12, 16, 24, .5));
    pointer-events: none;
}

.sample-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.sample-card__number,
.sample-card__peek {
    position: absolute;
    z-index: 2;
    font-size: 9px;
    font-weight: 900;
}

.sample-card__number {
    top: 16px;
    left: 16px;
    padding: 7px 9px;
    border-radius: 9px;
    background: rgba(8, 27, 44, .94);
    color: #fff;
    letter-spacing: .04em;
    box-shadow: 0 8px 18px rgba(8, 27, 44, .17);
}

.sample-card__peek {
    right: 17px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
}

.sample-card__peek i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-style: normal;
    backdrop-filter: blur(5px);
}

.sample-card__body {
    padding: clamp(22px, 2.2vw, 30px);
}

.sample-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted-strong);
    font-size: 11px;
    font-weight: 850;
}

.sample-card__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sample-card__meta i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--soft);
}

.sample-card__meta small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
}

.sample-card h3 {
    min-height: 2.35em;
    margin: 18px 0 0;
    font-size: clamp(24px, 2.2vw, 31px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -.052em;
}

.sample-card__body > p {
    min-height: 5em;
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.sample-card ul {
    min-height: 31px;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.sample-card li {
    padding: 7px 9px;
    border-radius: 99px;
    background: var(--soft);
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 850;
}

.sample-card__price {
    min-height: 48px;
    margin-top: 14px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 15%, var(--line));
    border-radius: 14px;
    background: linear-gradient(135deg, var(--soft), rgba(255, 255, 255, .94));
}

.sample-card__price span {
    color: var(--muted-strong);
    font-size: 10px;
    font-weight: 800;
}

.sample-card__price strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.035em;
}

.sample-card__trigger {
    min-height: 48px;
    margin-top: 0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.sample-card__signals {
    min-height: 29px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.sample-signal {
    min-height: 27px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted-strong);
    font-size: 9px;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(8, 27, 44, .07);
    animation: signalBob 3.2s ease-in-out infinite;
}

.sample-signal b {
    color: inherit;
    font: inherit;
}

.sample-signal--live {
    border-color: color-mix(in srgb, var(--teal) 24%, var(--line));
    background: var(--teal-soft);
    color: var(--teal);
}

.sample-signal--live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .1);
    animation: livePulse 1.7s ease-in-out infinite;
}

@keyframes signalBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes livePulse {
    0%,
    100% {
        opacity: .65;
        transform: scale(.86);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.sample-card__actions {
    margin-top: 13px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 8px;
}

.sample-empty {
    margin-top: 24px;
    padding: 48px 24px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-align: center;
}

.sample-empty strong {
    font-size: 19px;
    letter-spacing: -.035em;
}

.sample-empty p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.sample-card__order {
    min-height: 48px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--blue-deep), var(--blue));
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(29, 79, 122, .18);
    transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.trigger-arrow {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--soft);
    color: var(--accent);
    transition: transform .25s var(--ease);
}

.sample-notice {
    margin: 26px 0 0;
    padding: 16px 19px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .72);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.sample-notice > span {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
}

.difference-section {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
}

.difference-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -240px;
    top: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83, 111, 134, .15), transparent 68%);
    pointer-events: none;
}

.difference-intro {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(55px, 10vw, 150px);
    align-items: center;
}

.difference-copy {
    color: var(--muted);
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.88;
}

.difference-copy p {
    margin: 0 0 17px;
}

.difference-copy p:last-child {
    margin-bottom: 0;
}

.difference-copy strong {
    color: var(--ink);
}

.understand-panel {
    position: relative;
    z-index: 1;
    margin-top: clamp(55px, 7vw, 90px);
    padding: clamp(28px, 4.5vw, 56px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 95% 0, rgba(83, 111, 134, .35), transparent 34%),
        radial-gradient(circle at 8% 100%, rgba(15, 118, 110, .18), transparent 30%),
        var(--dark);
    color: #fff;
    box-shadow: 0 34px 80px rgba(8, 27, 44, .2);
}

.understand-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 58px 58px;
    pointer-events: none;
}

.understand-panel__title,
.understand-grid {
    position: relative;
    z-index: 1;
}

.understand-panel__title {
    display: flex;
    align-items: center;
    gap: 17px;
}

.understand-panel__title > span {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 17px;
    border: 1px solid rgba(196, 154, 90, .45);
    background: linear-gradient(145deg, var(--blue-deep), var(--blue));
    color: #fff;
    font-size: 20px;
}

.understand-panel__title small {
    color: #9fc3d9;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
}

.understand-panel__title h3 {
    margin: 2px 0 0;
    font-size: clamp(20px, 2.7vw, 35px);
    line-height: 1.2;
    letter-spacing: -.045em;
}

.understand-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.understand-grid > div {
    min-height: 170px;
    padding: 29px clamp(16px, 2.5vw, 33px);
    display: grid;
    align-content: space-between;
    gap: 30px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.understand-grid > div:first-child {
    padding-left: 0;
}

.understand-grid > div:last-child {
    border-right: 0;
}

.understand-grid span {
    color: #9fc3d9;
    font-size: 10px;
    font-weight: 850;
}

.understand-grid strong {
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 1.45;
    letter-spacing: -.04em;
}

.terms-grid {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.term-card {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(29, 79, 122, .12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .75);
}

.term-card > span {
    width: 48px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .06em;
}

.term-card h3 {
    margin: 21px 0 0;
    font-size: 18px;
    letter-spacing: -.04em;
}

.term-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.comparison-section {
    padding-top: clamp(70px, 9vw, 120px);
    background: var(--surface-soft);
}

.comparison-shell {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(250px, .68fr) minmax(0, 1.32fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.comparison-heading {
    padding: clamp(32px, 4vw, 50px);
    background:
        radial-gradient(circle at 90% 8%, rgba(196, 154, 90, .16), transparent 34%),
        linear-gradient(155deg, var(--dark), var(--blue-deep));
    color: #fff;
}

.comparison-heading > p {
    margin: 0;
    color: #a8c9dc;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.comparison-heading h2 {
    margin: 20px 0 0;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.06em;
}

.comparison-heading > span {
    margin-top: 70px;
    display: block;
    color: #d7e4ec;
    font-size: 13px;
    line-height: 1.7;
}

.comparison-table-wrap {
    min-width: 0;
    padding: clamp(20px, 3vw, 38px);
}

.comparison-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    padding: 19px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
    vertical-align: middle;
}

.comparison-table th {
    color: var(--muted-strong);
    font-size: 11px;
    font-weight: 850;
}

.comparison-table th + th,
.comparison-table td + td {
    border-left: 1px solid var(--line);
}

.comparison-table th:last-child {
    color: var(--ink);
}

.comparison-table th span {
    color: var(--blue);
}

.comparison-table td:first-child {
    color: var(--muted);
}

.comparison-table td:last-child {
    color: var(--ink);
    font-weight: 800;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.methods-section {
    background: #fff;
}

.method-grid {
    margin-top: clamp(46px, 6vw, 72px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.method-card {
    position: relative;
    min-height: 440px;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface-soft);
}

.method-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    bottom: -125px;
    border-radius: 50%;
    background: var(--method-glow);
    pointer-events: none;
}

.method-card--blue {
    --method: #1d4f7a;
    --method-soft: #e3edf5;
    --method-glow: rgba(29, 79, 122, .14);
}

.method-card--violet {
    --method: #536f86;
    --method-soft: #e7edf1;
    --method-glow: rgba(83, 111, 134, .14);
}

.method-card--green {
    --method: #0f766e;
    --method-soft: #e1f0ed;
    --method-glow: rgba(15, 118, 110, .14);
}

.method-card--orange {
    --method: #8b5e1a;
    --method-soft: #f4edde;
    --method-glow: rgba(139, 94, 26, .13);
}

.method-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.method-card__top > span {
    color: var(--method);
    font-size: 11px;
    font-weight: 900;
}

.method-card__top > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--method-soft);
    color: var(--method);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
}

.method-card h3 {
    margin: 48px 0 0;
    font-size: clamp(31px, 4vw, 49px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.063em;
}

.method-card > p {
    max-width: 540px;
    margin: 21px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.method-tags {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.method-tags span,
.method-question {
    padding: 9px 12px;
    border-radius: 99px;
    background: var(--method-soft);
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 850;
}

.method-question {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: inline-flex;
    border-radius: 12px 12px 3px 12px;
}

.method-card .method-caution {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding-left: 16px;
    border-left: 2px solid var(--method);
    color: var(--method);
    font-size: 11px;
    font-weight: 750;
}

.process-section {
    background: #fff;
}

.process-shell {
    padding: clamp(38px, 6vw, 78px);
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr);
    gap: clamp(55px, 8vw, 118px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 8% 0, rgba(83, 111, 134, .42), transparent 30%),
        radial-gradient(circle at 92% 100%, rgba(15, 118, 110, .22), transparent 31%),
        var(--dark);
    color: #fff;
}

.eyebrow--light {
    color: #a8c9dc;
}

.process-heading h2 {
    margin: 23px 0 0;
    font-size: clamp(41px, 5vw, 66px);
    line-height: 1.06;
    letter-spacing: -.065em;
}

.process-heading h2 em {
    color: #b8d4e4;
}

.process-heading > p:not(.eyebrow) {
    margin: 26px 0 0;
    color: #bfccd6;
    font-size: 14px;
    line-height: 1.85;
}

.process-heading .button {
    margin-top: 33px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.process-list li {
    min-height: 154px;
    padding: 26px 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.process-list li > span {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(196, 154, 90, .4);
    background: linear-gradient(145deg, var(--blue-deep), var(--blue));
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(8, 27, 44, .28);
}

.process-list small {
    color: #9fc3d9;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
}

.process-list h3 {
    margin: 3px 0 0;
    font-size: 20px;
    letter-spacing: -.04em;
}

.process-list p {
    margin: 7px 0 0;
    color: #bfccd6;
    font-size: 12px;
    line-height: 1.7;
}

.schedule-note {
    margin: 16px 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--muted);
    font-size: 10px;
}

.asset-section {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    background: #fff;
}

.asset-support {
    min-height: 590px;
    padding: clamp(36px, 6vw, 75px);
    display: grid;
    grid-template-columns: minmax(350px, .82fr) minmax(0, 1.18fr);
    gap: clamp(55px, 9vw, 135px);
    align-items: center;
    overflow: hidden;
    border: 1px solid #cbdbe5;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 15% 15%, rgba(83, 111, 134, .18), transparent 31%),
        radial-gradient(circle at 88% 85%, rgba(15, 118, 110, .09), transparent 28%),
        #f4f7f9;
}

.asset-visual {
    position: relative;
    min-height: 390px;
}

.asset-photo {
    position: absolute;
    display: grid;
    place-items: center;
    border: 8px solid rgba(255, 255, 255, .86);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(8, 27, 44, .16);
}

.asset-photo::before,
.asset-photo::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.asset-photo--back {
    width: 56%;
    aspect-ratio: .86;
    top: 0;
    right: 5%;
    transform: rotate(8deg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .25), transparent),
        #6f8da2;
}

.asset-photo--back::before {
    width: 46%;
    aspect-ratio: 1;
    top: 16%;
    left: 18%;
    background: #d4e2ea;
}

.asset-photo--back::after {
    width: 72%;
    height: 30%;
    left: 14%;
    bottom: 14%;
    border-radius: 70% 70% 22px 22px;
    background: #294d66;
}

.asset-photo--front {
    width: 61%;
    aspect-ratio: .95;
    left: 3%;
    bottom: 0;
    transform: rotate(-6deg);
    background: linear-gradient(150deg, #8fb4c5, #2f7c78);
}

.asset-photo--front::before {
    width: 68%;
    height: 40%;
    left: 16%;
    bottom: 12%;
    border-radius: 50% 50% 18px 18px;
    background: #153d55;
}

.asset-photo--front::after {
    width: 30%;
    aspect-ratio: 1;
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    background: #e3edf2;
    box-shadow: 0 0 0 9px rgba(255, 255, 255, .16);
}

.asset-photo span {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
    color: var(--gold);
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 10px 26px rgba(8, 27, 44, .15);
}

.asset-spark {
    position: absolute;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--orange);
    font-size: 14px;
    font-style: normal;
    box-shadow: 0 12px 30px rgba(8, 27, 44, .14);
}

.asset-spark--one {
    top: 16%;
    left: 3%;
}

.asset-spark--two {
    right: 0;
    bottom: 13%;
}

.asset-copy h2 {
    font-size: clamp(40px, 4.9vw, 65px);
}

.asset-copy > p:not(.eyebrow) {
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.asset-copy > p strong {
    color: var(--ink);
}

.asset-note {
    margin-top: 27px;
    padding: 17px 18px;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 11px;
    align-items: start;
    border: 1px solid #cbdbe5;
    border-radius: 15px;
    background: rgba(255, 255, 255, .64);
}

.asset-note > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.asset-note p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.65;
}

.asset-copy > small {
    margin-top: 19px;
    display: block;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.faq-section {
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    gap: clamp(65px, 10vw, 150px);
    align-items: start;
}

.faq-lead {
    margin: 23px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 92px;
    padding: 23px 8px;
    display: grid;
    grid-template-columns: 34px 1fr 28px;
    gap: 17px;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary > span {
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
}

.faq-list summary strong {
    font-size: 16px;
    letter-spacing: -.03em;
}

.faq-list summary > i {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--surface-soft);
}

.faq-list summary > i::before,
.faq-list summary > i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    border-radius: 99px;
    background: var(--ink-soft);
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.faq-list summary > i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > i {
    background: var(--blue-soft);
}

.faq-list details[open] summary > i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    padding: 0 50px 28px 59px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.final-section {
    padding: 0 0 clamp(84px, 10vw, 140px);
    background: #fff;
}

.final-card {
    position: relative;
    padding: clamp(54px, 8vw, 104px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .03), transparent 45%),
        linear-gradient(125deg, var(--dark) 0%, var(--blue-deep) 52%, var(--teal) 118%);
    color: #fff;
    box-shadow: 0 32px 80px rgba(8, 27, 44, .24);
}

.final-card > *:not(.final-orb) {
    position: relative;
    z-index: 2;
}

.final-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.final-orb--one {
    width: 480px;
    height: 480px;
    right: -170px;
    top: -230px;
    background: rgba(105, 149, 177, .28);
}

.final-orb--two {
    width: 270px;
    height: 270px;
    right: 18%;
    bottom: -190px;
    background: rgba(35, 154, 144, .22);
}

.final-card > p:first-of-type {
    margin: 0;
    color: #b6d1e0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.final-card h2 {
    max-width: 1050px;
    margin: 21px 0 0;
    font-size: clamp(43px, 6vw, 80px);
    line-height: 1.03;
    letter-spacing: -.068em;
}

.final-card h2 em {
    color: #d9e8ef;
}

.final-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: #dbe7ed;
    font-size: 14px;
    line-height: 1.85;
}

.final-card > small {
    max-width: 760px;
    margin-top: 31px;
    display: block;
    color: #b7cbd6;
    font-size: 9px;
    line-height: 1.65;
}

.site-footer {
    padding: 45px 0 55px;
    border-top: 1px solid var(--line);
    background: var(--page);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr .85fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.brand--footer .brand-mark {
    box-shadow: none;
}

.footer-grid > p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

.footer-grid > p strong {
    color: var(--ink-soft);
    font-size: 11px;
}

.footer-grid nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.footer-grid nav a {
    color: var(--muted-strong);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.footer-note {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.mobile-sticky-cta {
    display: none;
}

.preview-modal[hidden] {
    display: none;
}

.preview-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    padding: 3dvh 2vw;
    display: grid;
    place-items: center;
}

.preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 27, 44, .82);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    animation: modalFade .22s ease both;
}

.preview-modal__dialog {
    position: relative;
    width: min(1440px, 96vw);
    height: min(940px, 94dvh);
    min-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: var(--surface-soft);
    box-shadow: 0 40px 120px rgba(8, 27, 44, .46);
    animation: modalUp .3s var(--ease) both;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
    }
}

.preview-modal__header {
    min-height: 74px;
    padding: 13px 16px 13px 20px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto 46px;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
}

.preview-browser-dots {
    display: flex;
    gap: 6px;
}

.preview-browser-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--steel);
}

.preview-browser-dots i:nth-child(2) {
    background: var(--gold);
}

.preview-browser-dots i:nth-child(3) {
    background: var(--teal);
}

.preview-modal__heading {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: baseline;
}

.preview-modal__heading > p:first-child {
    margin: 0;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.preview-modal__heading h2 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    font-size: 15px;
    letter-spacing: -.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-modal__heading > p:last-child {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.preview-modal__process {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.preview-modal__close {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--surface-soft);
    cursor: pointer;
}

.preview-modal__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    border-radius: 99px;
    background: var(--ink-soft);
    transform: translate(-50%, -50%) rotate(45deg);
}

.preview-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.preview-modal__viewport {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: var(--surface-soft);
}

.preview-modal__frame {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #fff;
    opacity: 1;
    transition: opacity .2s ease;
}

.preview-modal__viewport[aria-busy="true"] .preview-modal__frame {
    opacity: 0;
    pointer-events: none;
}

.preview-modal__loading {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(29, 79, 122, .1), transparent 36%),
        var(--surface-soft);
    color: var(--muted-strong);
    text-align: center;
}

.preview-modal__loading[hidden] {
    display: none;
}

.preview-modal__loading > span {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border: 3px solid var(--line);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.preview-modal__loading strong {
    font-size: 13px;
}

.preview-modal__loading small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.preview-modal__retry {
    min-height: 38px;
    margin-top: 16px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    color: var(--blue);
    font: inherit;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.preview-modal__retry[hidden] {
    display: none;
}

.preview-modal__retry:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

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

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(29, 79, 122, .16);
}

.has-reveal .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .62s var(--ease) var(--delay, 0ms),
        transform .62s var(--ease) var(--delay, 0ms);
}

.has-reveal .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .desktop-nav a:hover::after {
        right: 0;
    }

    .header-cta:hover,
    .button:hover {
        transform: translateY(-3px);
    }

    .header-cta:hover {
        background: var(--blue-deep);
    }

    .button--primary:hover {
        background: var(--blue-deep);
        box-shadow: 0 18px 40px rgba(29, 79, 122, .3);
    }

    .sample-card:hover {
        border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
        box-shadow: 0 24px 65px rgba(8, 27, 44, .14);
        transform: translateY(-6px);
    }

    .sample-card__media:hover img {
        transform: scale(1.03);
    }

    .sample-card__trigger:hover {
        border-color: var(--ink);
        background: var(--ink);
        color: #fff;
    }

    .sample-card__trigger:hover .trigger-arrow {
        background: rgba(255, 255, 255, .2);
        color: #fff;
        transform: translateX(3px);
    }

    .sample-card__order:hover {
        background: linear-gradient(145deg, var(--dark), var(--teal));
        box-shadow: 0 15px 32px rgba(8, 27, 44, .22);
        transform: translateY(-2px);
    }

    .preview-modal__close:hover {
        background: var(--blue-soft);
    }

    .footer-grid nav a:hover {
        color: var(--blue);
    }
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 16px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .83fr);
        gap: 45px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .floating-note--query {
        left: -1%;
    }

    .floating-note--signal {
        right: -1%;
    }

    .sample-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sample-card h3,
    .sample-card__body > p {
        min-height: 0;
    }

    .process-shell {
        grid-template-columns: 1fr 1.05fr;
        gap: 50px;
    }
}

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

    .header-cta {
        margin-left: auto;
    }

    .hero-grid,
    .difference-intro,
    .process-shell,
    .asset-support,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .answer-card {
        width: min(86%, 540px);
    }

    .floating-note--query {
        left: 3%;
    }

    .floating-note--signal {
        right: 3%;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-heading--split > p {
        max-width: 650px;
    }

    .difference-intro {
        gap: 38px;
    }

    .comparison-shell {
        grid-template-columns: 1fr;
    }

    .comparison-heading {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
    }

    .comparison-heading > p {
        grid-column: 1 / -1;
    }

    .comparison-heading > span {
        margin-top: 0;
        text-align: right;
    }

    .process-shell {
        gap: 58px;
    }

    .process-heading {
        max-width: 650px;
    }

    .asset-support {
        gap: 55px;
    }

    .asset-visual {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .faq-layout {
        gap: 50px;
    }

    .faq-layout > .section-heading {
        max-width: 650px;
    }

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

    .footer-grid nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    :root {
        --gutter: 20px;
        --radius-xl: 28px;
        --radius-lg: 23px;
    }

    html {
        scroll-padding-top: 74px;
    }

    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    body.modal-open {
        padding-bottom: 0;
    }

    .top-note {
        min-height: 31px;
        font-size: 9px;
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .brand strong {
        font-size: 12px;
    }

    .header-cta {
        min-height: 39px;
        padding: 0 13px;
        gap: 12px;
        font-size: 10px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-copy h1 {
        font-size: clamp(49px, 13.5vw, 70px);
    }

    .hero-lead {
        margin-top: 25px;
        font-size: 15px;
        line-height: 1.78;
    }

    .hero-actions {
        margin-top: 29px;
    }

    .button {
        min-height: 53px;
        padding-inline: 18px;
        font-size: 12px;
    }

    .hero-checks {
        display: grid;
        gap: 9px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .answer-card {
        width: min(92%, 500px);
        padding: 20px;
        border-radius: 26px;
    }

    .floating-note {
        padding: 10px 11px;
        border-radius: 14px;
    }

    .floating-note--query {
        top: 0;
        left: 0;
    }

    .floating-note--signal {
        right: 0;
        bottom: 2%;
    }

    .value-strip {
        margin-top: 65px;
        grid-template-columns: 1fr;
        padding: 0;
    }

    .value-strip > div,
    .value-strip > div:first-child {
        min-height: 72px;
        padding: 14px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value-strip > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 92px 0;
    }

    .section-heading > h2,
    .section-heading--split h2,
    .difference-intro h2,
    .asset-copy h2,
    .faq-layout h2 {
        font-size: clamp(39px, 10.7vw, 54px);
    }

    .sample-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sample-card__media {
        aspect-ratio: 1.65 / 1;
    }

    .sample-card h3 {
        font-size: 27px;
    }

    .sample-card__body > p {
        font-size: 12px;
    }

    .understand-panel {
        padding: 28px 23px;
    }

    .understand-panel__title {
        align-items: flex-start;
    }

    .understand-panel__title > span {
        width: 45px;
        height: 45px;
    }

    .understand-grid {
        grid-template-columns: 1fr 1fr;
    }

    .understand-grid > div {
        min-height: 136px;
        padding: 23px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .understand-grid > div:first-child {
        padding-left: 16px;
    }

    .understand-grid > div:nth-child(2) {
        border-right: 0;
    }

    .understand-grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .comparison-section {
        padding-top: 60px;
    }

    .comparison-heading {
        grid-template-columns: 1fr;
    }

    .comparison-heading > span {
        margin-top: 24px;
        text-align: left;
    }

    .comparison-table-wrap {
        padding: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 11px;
        line-height: 1.5;
        word-break: normal;
    }

    .comparison-table th {
        font-size: 10px;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-card {
        min-height: 390px;
        padding: 27px;
    }

    .method-card h3 {
        margin-top: 38px;
        font-size: 37px;
    }

    .process-shell {
        padding: 31px 23px;
    }

    .process-heading h2 {
        font-size: 42px;
    }

    .process-list li {
        min-height: 0;
        grid-template-columns: 45px 1fr;
        gap: 16px;
    }

    .asset-support {
        min-height: 0;
        padding: 32px 23px;
    }

    .asset-visual {
        min-height: 330px;
    }

    .faq-list summary {
        min-height: 82px;
        grid-template-columns: 27px 1fr 28px;
        gap: 10px;
        padding-inline: 2px;
    }

    .faq-list summary strong {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 36px 25px 37px;
    }

    .final-card {
        padding: 46px 24px;
    }

    .final-card h2 {
        font-size: clamp(39px, 10.5vw, 53px);
    }

    .final-actions {
        display: grid;
    }

    .final-actions .button {
        width: 100%;
    }

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

    .footer-grid nav {
        grid-column: auto;
    }

    .mobile-sticky-cta {
        position: fixed;
        z-index: 90;
        left: 14px;
        right: 14px;
        bottom: max(12px, env(safe-area-inset-bottom));
        min-height: 52px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 16px;
        background: rgba(8, 27, 44, .96);
        color: #fff;
        box-shadow: 0 14px 36px rgba(8, 27, 44, .3);
        font-size: 12px;
        font-weight: 850;
        text-decoration: none;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .modal-open .mobile-sticky-cta {
        display: none;
    }

    .preview-modal {
        padding: 0;
    }

    .preview-modal__backdrop {
        display: none;
    }

    .preview-modal__dialog {
        width: 100vw;
        height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .preview-modal__header {
        min-height: calc(68px + env(safe-area-inset-top));
        padding: calc(10px + env(safe-area-inset-top)) 10px 10px 14px;
        grid-template-columns: minmax(0, 1fr) auto 44px;
        gap: 8px;
    }

    .preview-browser-dots {
        display: none;
    }

    .preview-modal__heading {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .preview-modal__heading h2 {
        font-size: 13px;
    }

    .preview-modal__heading > p:last-child {
        display: none;
    }

    .preview-modal__process {
        grid-column: 2;
        min-height: 40px;
        padding: 0 11px;
        font-size: 10px;
    }

    .preview-modal__close {
        grid-column: 3;
    }
}

@media (max-width: 440px) {
    .brand small {
        display: none;
    }

    .header-cta span {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(44px, 12.5vw, 56px);
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .sample-card__actions {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 430px;
    }

    .answer-card {
        width: 100%;
        padding: 17px;
    }

    .answer-card__top {
        grid-template-columns: 38px 1fr;
    }

    .answer-logo {
        width: 38px;
        height: 38px;
    }

    .answer-status {
        display: none;
    }

    .answer-result strong {
        font-size: 11px;
    }

    .floating-note {
        animation-name: noteFloatSmall;
    }

    .floating-note--query {
        left: -7px;
    }

    .floating-note--signal {
        right: -7px;
    }

    .understand-panel__title h3 {
        font-size: 20px;
    }

    .understand-grid strong {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 13px 8px;
        font-size: 11px;
    }

    .method-card h3 {
        font-size: 34px;
    }

    .asset-visual {
        min-height: 280px;
    }

    .asset-photo {
        border-width: 6px;
    }
}

@keyframes noteFloatSmall {
    0%,
    100% {
        transform: scale(.9) translateY(0);
    }
    50% {
        transform: scale(.9) translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .has-reveal .reveal {
        opacity: 1;
        transform: none;
    }
}
