:root {
    --orange: #ff5d18;
    --orange-dark: #dc4300;
    --orange-soft: #fff1ea;
    --ink: #06111b;
    --ink-2: #0d1d2a;
    --ink-3: #172a38;
    --green: #03c75a;
    --green-dark: #078542;
    --green-soft: #e9fbf1;
    --paper: #ffffff;
    --canvas: #f4f7f8;
    --canvas-2: #edf2f3;
    --line: #dce5e8;
    --text: #172530;
    --muted: #60717d;
    --muted-light: #aebdc5;
    --shadow-sm: 0 10px 28px rgba(6, 17, 27, 0.08);
    --shadow-lg: 0 28px 80px rgba(6, 17, 27, 0.18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--paper);
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
    overflow-wrap: anywhere;
    -webkit-font-smoothing: antialiased;
}

body.lightbox-open,
body.menu-open {
    overflow: hidden;
}

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

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

button {
    color: inherit;
}

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

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

p,
h1,
h2,
h3,
ul {
    margin-top: 0;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3 {
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
}

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

:focus-visible {
    outline: 3px solid rgba(255, 93, 24, 0.42);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 74px;
    color: #fff;
    background: rgba(6, 17, 27, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(6, 17, 27, 0.96);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #ff7c3f, var(--orange));
    box-shadow: 0 9px 24px rgba(255, 93, 24, 0.28);
    font-size: 18px;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    color: #fff;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.brand-copy span {
    margin-top: 5px;
    color: #ff9a6c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.primary-navigation a {
    position: relative;
    color: #c8d2d8;
    font-size: 14px;
    font-weight: 650;
    transition: color 160ms ease;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    color: #fff;
}

.primary-navigation a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    margin-left: 4px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff7130, var(--orange));
    box-shadow: 0 14px 34px rgba(255, 93, 24, 0.28);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 18px 38px rgba(255, 93, 24, 0.35);
}

.button-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.3);
}

.button-dark {
    margin-top: 20px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 13px 30px rgba(6, 17, 27, 0.15);
}

.button-dark:hover {
    background: var(--ink-3);
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13.5px;
}

.button-large {
    min-height: 58px;
    padding: 16px 26px;
    font-size: 16px;
}

.button-full {
    width: 100%;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 150px 0 0;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 93, 24, 0.13), transparent 32%),
        radial-gradient(circle at 88% 30%, rgba(3, 199, 90, 0.1), transparent 28%),
        var(--ink);
}

.hero-grid,
.final-cta-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.hero-glow-orange {
    top: 60px;
    left: -250px;
    background: var(--orange);
}

.hero-glow-green {
    right: -230px;
    bottom: 40px;
    background: var(--green);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
    align-items: center;
    gap: 44px;
}

.eyebrow,
.section-kicker {
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ff9c70;
    letter-spacing: -0.01em;
    text-transform: none;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(3, 199, 90, 0.12);
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 26px;
    font-size: clamp(42px, 4.35vw, 62px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.13;
}

.hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 32px;
    color: #bdc9cf;
    font-size: 17px;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin: 26px 0 0;
    padding: 0;
    color: #d1dbe0;
    font-size: 14px;
    list-style: none;
}

.hero-facts span {
    margin-right: 5px;
    color: var(--green);
    font-weight: 900;
}

.hero-visual {
    position: relative;
    width: 720px;
    max-width: 61vw;
}

.screen-frame {
    overflow: hidden;
    border: 1px solid rgba(6, 17, 27, 0.12);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.screen-frame-hero {
    width: 100%;
    transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
    transform-origin: center left;
    box-shadow: 0 44px 110px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen-frame-bar {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: #667680;
    background: #f6f8f9;
    border-bottom: 1px solid #e1e7e9;
    font-size: 11px;
}

.screen-frame-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d0d8dc;
}

.screen-frame-bar span:first-child {
    background: #ff6b57;
}

.screen-frame-bar span:nth-child(2) {
    background: #ffbd2e;
}

.screen-frame-bar span:nth-child(3) {
    background: #28c840;
}

.screen-frame-bar strong {
    margin-left: auto;
    font-weight: 700;
}

.screen-button {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: #eef2f3;
    cursor: zoom-in;
    overflow: hidden;
}

.screen-button img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.screen-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 17, 27, 0.18), transparent 28%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.screen-button:hover img {
    transform: scale(1.012);
    filter: saturate(1.03);
}

.screen-button:hover::after,
.screen-button:hover .zoom-label {
    opacity: 1;
}

.zoom-label {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 9px;
    color: #fff;
    background: rgba(6, 17, 27, 0.76);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transition: opacity 220ms ease;
}

.image-caption {
    margin: 14px 0 0;
    color: #8d9ca5;
    font-size: 12px;
    text-align: center;
}

.hero-summary {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 82px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-summary > div {
    display: grid;
    gap: 2px;
    padding: 24px 28px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-summary > div:last-child {
    border-right: 0;
}

.hero-summary strong {
    color: #fff;
    font-size: 18px;
}

.hero-summary span {
    color: #91a1aa;
    font-size: 13px;
}

.section {
    padding: 108px 0;
}

.section-light {
    background: #fff;
}

.section-soft {
    background: var(--canvas);
}

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

.section-heading h2,
.pricing-intro h2,
.notice-copy h2,
.final-cta h2 {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: clamp(32px, 3.45vw, 48px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.22;
}

.section-heading > p:last-child,
.pricing-intro > p,
.notice-copy > p {
    max-width: 660px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.76;
}

.section-dark .section-heading h2,
.section-dark .notice-copy h2 {
    color: #fff;
}

.section-dark .section-heading > p:last-child,
.section-dark .notice-copy > p {
    color: #aebdc5;
}

.section-kicker-green {
    color: var(--green);
}

.centered {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.centered > p:last-child {
    margin-inline: auto;
}

.intro-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: end;
}

.intro-copy .lead {
    margin-bottom: 22px;
    color: #30414c;
    font-size: 18px;
    line-height: 1.82;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(220, 67, 0, 0.24);
    text-underline-offset: 5px;
}

.text-link:hover {
    color: var(--orange);
    text-decoration-color: var(--orange);
}

.text-link-light {
    margin-top: 24px;
    color: #78eaa9;
    text-decoration-color: rgba(120, 234, 169, 0.3);
}

.fact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 58px;
}

.fact-card {
    position: relative;
    min-height: 230px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--canvas);
}

.fact-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 4px;
    background: var(--orange);
}

.fact-card:nth-child(2)::before {
    background: var(--ink);
}

.fact-card:nth-child(3)::before {
    background: var(--green);
}

.fact-number {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.fact-card h3 {
    margin: 44px 0 10px;
    color: var(--ink);
    font-size: 21px;
    letter-spacing: -0.025em;
}

.fact-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.workflow-list {
    display: grid;
    gap: 34px;
}

.workflow-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 46px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.045);
}

.workflow-card-reverse .workflow-copy {
    grid-column: 2;
}

.workflow-card-reverse .screen-frame {
    grid-row: 1;
    grid-column: 1;
}

.step-badge {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 11px;
    border-radius: 8px;
    color: #fff;
    background: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.workflow-copy h3 {
    margin-bottom: 14px;
    font-size: 28px;
    letter-spacing: -0.035em;
}

.workflow-copy > p {
    color: #acbbc3;
    font-size: 15.5px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: #dce5e9;
    font-size: 14px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.workflow-card .screen-frame {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

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

.mode-card {
    padding: 28px;
    border: 1px solid #ffd2bf;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--orange-soft), #fff 30%);
}

.mode-card-green {
    border-color: #bdebd0;
    background: linear-gradient(180deg, var(--green-soft), #fff 30%);
}

.mode-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
}

.mode-label span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mode-label-shopping {
    color: #c33c00;
    background: #fff;
}

.mode-label-shopping span {
    background: var(--orange);
}

.mode-label-travel {
    color: var(--green-dark);
    background: #fff;
}

.mode-label-travel span {
    background: var(--green);
}

.mode-card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 25px;
    letter-spacing: -0.035em;
}

.mode-card > p {
    min-height: 54px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 15px;
}

.screen-frame-compact {
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.feature-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 64px;
}

.feature-layout > .section-heading {
    position: sticky;
    top: 118px;
    align-self: start;
}

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

.feature-card {
    min-height: 232px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 24px rgba(6, 17, 27, 0.035);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 12px;
    color: #fff;
    background: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.feature-card:nth-child(3n + 1) .feature-icon {
    background: var(--orange);
}

.feature-card:nth-child(3n) .feature-icon {
    color: var(--ink);
    background: var(--green);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 19px;
    letter-spacing: -0.025em;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.split-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 72px;
}

.showcase-card {
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

.showcase-card-dark {
    color: #fff;
    border-color: var(--ink-3);
    background: var(--ink);
}

.showcase-copy {
    padding: 4px 4px 26px;
}

.showcase-copy h3 {
    margin-bottom: 9px;
    color: var(--ink);
    font-size: 25px;
    letter-spacing: -0.035em;
}

.showcase-card-dark .showcase-copy h3 {
    color: #fff;
}

.showcase-copy p:not(.section-kicker) {
    margin-bottom: 0;
    color: var(--muted);
}

.showcase-card-dark .showcase-copy p:not(.section-kicker) {
    color: #aebdc5;
}

.showcase-card .screen-frame {
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.notice-section {
    position: relative;
    overflow: hidden;
}

.notice-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -250px;
    right: -140px;
    border: 1px solid rgba(3, 199, 90, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(3, 199, 90, 0.035), 0 0 0 140px rgba(3, 199, 90, 0.02);
}

.notice-layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 56px;
    align-items: center;
}

.notice-layout .screen-frame {
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.pricing-section {
    background: #fff;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 82px;
    align-items: center;
}

.requirements {
    margin-top: 36px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--canvas);
}

.requirements > strong {
    color: var(--ink);
    font-size: 15px;
}

.check-list-dark li {
    color: #3d4d57;
}

.price-card {
    position: relative;
    isolation: isolate;
    padding: 42px;
    overflow: hidden;
    border: 1px solid #243847;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(255, 93, 24, 0.2), transparent 30%),
        radial-gradient(circle at 12% 100%, rgba(3, 199, 90, 0.1), transparent 35%),
        var(--ink);
    box-shadow: 0 34px 100px rgba(6, 17, 27, 0.26);
}

.price-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(135deg, #000, transparent 70%);
}

.price-topline {
    display: flex;
    align-items: center;
    gap: 18px;
}

.price-topline img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
}

.price-topline span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.price-topline h3 {
    margin: 4px 0 0;
    font-size: 26px;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 42px 0 0;
}

.price strong {
    font-size: clamp(48px, 6vw, 68px);
    letter-spacing: -0.055em;
    line-height: 1;
}

.price span {
    padding-bottom: 8px;
    color: #c1ccd2;
    font-size: 20px;
    font-weight: 750;
}

.price-subtitle {
    margin: 13px 0 28px;
    color: #9faeb6;
    font-size: 14px;
}

.price-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.price-list li {
    display: flex;
    gap: 11px;
    color: #e0e8ec;
}

.price-list span {
    color: var(--green);
    font-weight: 900;
}

.price-note {
    margin: 24px 0;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #aebdc5;
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    line-height: 1.65;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: start;
}

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

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

.faq-list summary {
    position: relative;
    padding: 24px 54px 24px 2px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    right: 7px;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.faq-list summary span::after {
    top: 1px;
    right: 0;
    transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 720px;
    margin: -4px 0 24px;
    padding-right: 54px;
    color: var(--muted);
}

.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 74px 0;
    color: #fff;
    background: var(--ink-2);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.final-cta h2 {
    margin-bottom: 0;
    color: #fff;
    max-width: 760px;
    font-size: clamp(29px, 3.3vw, 43px);
    line-height: 1.24;
}

.site-footer {
    padding: 58px 0 30px;
    color: #8ea0aa;
    background: #02080d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
}

.brand-footer {
    margin-bottom: 24px;
}

.footer-grid > div:first-child > p {
    max-width: 650px;
    margin-bottom: 0;
    font-size: 13px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
}

.footer-links a {
    font-size: 13px;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.mobile-cta {
    display: none;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 13, 0.88);
    backdrop-filter: blur(14px);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1500px);
    max-height: 94vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: var(--ink);
    box-shadow: 0 40px 130px rgba(0, 0, 0, 0.55);
}

.lightbox-toolbar {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 20px;
    color: #dfe8ec;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-toolbar strong {
    font-size: 14px;
}

.lightbox-toolbar button {
    padding: 8px 11px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.lightbox-toolbar button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-toolbar button span {
    margin-left: 4px;
    font-size: 20px;
    line-height: 0;
    vertical-align: -2px;
}

.lightbox-stage {
    max-height: calc(94vh - 54px);
    overflow: auto;
    background: #0a141d;
}

.lightbox-stage img {
    width: 100%;
    height: auto;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay-1 {
    transition-delay: 90ms;
}

.reveal-delay-2 {
    transition-delay: 180ms;
}

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

@media (max-width: 1180px) {
    .hero-content {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 36px;
    }

    .hero-visual {
        width: 720px;
    }

    .primary-navigation {
        gap: 18px;
    }
}

@media (max-width: 980px) {
    .site-header {
        height: 68px;
    }

    .menu-toggle {
        display: grid;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }

    .primary-navigation {
        position: fixed;
        inset: 68px 0 auto;
        display: grid;
        gap: 0;
        padding: 10px 20px 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(6, 17, 27, 0.98);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 180ms ease;
    }

    .primary-navigation.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-navigation a {
        padding: 14px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .primary-navigation a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 124px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        width: 100%;
        max-width: none;
        margin-top: 12px;
    }

    .screen-frame-hero {
        transform: none;
    }

    .intro-layout,
    .feature-layout,
    .notice-layout,
    .pricing-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .feature-layout > .section-heading {
        position: static;
    }

    .workflow-card,
    .workflow-card-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .workflow-card-reverse .workflow-copy,
    .workflow-card-reverse .screen-frame {
        grid-row: auto;
        grid-column: auto;
    }

    .workflow-card-reverse .workflow-copy {
        order: 0;
    }

    .workflow-card-reverse .screen-frame {
        order: 1;
    }

    .final-cta-inner {
        display: grid;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 72px;
    }

    body {
        padding-bottom: 82px;
        font-size: 15px;
        line-height: 1.72;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-copy strong {
        font-size: 13px;
    }

    .brand-copy span {
        margin-top: 4px;
        font-size: 9px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(32px, 9.8vw, 42px);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.72;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-facts {
        display: grid;
    }

    .hero-summary {
        grid-template-columns: 1fr;
        margin-top: 54px;
    }

    .hero-summary > div {
        padding: 17px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-summary > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 76px 0;
    }

    .section-heading h2,
    .pricing-intro h2,
    .notice-copy h2 {
        font-size: clamp(27px, 8vw, 32px);
        line-height: 1.28;
    }

    .section-heading > p:last-child,
    .pricing-intro > p,
    .notice-copy > p {
        font-size: 15px;
    }

    .centered {
        margin-bottom: 38px;
        text-align: left;
    }

    .fact-cards,
    .mode-grid,
    .feature-grid,
    .split-showcase {
        grid-template-columns: 1fr;
    }

    .fact-card {
        min-height: 200px;
    }

    .workflow-card {
        padding: 22px;
        border-radius: 24px;
    }

    .workflow-copy h3,
    .mode-card h3,
    .showcase-copy h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .mode-card,
    .showcase-card {
        padding: 20px;
        border-radius: 24px;
    }

    .mode-card > p {
        min-height: 0;
    }

    .feature-card {
        min-height: 210px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p,
    .mode-card > p,
    .workflow-copy > p {
        font-size: 14.5px;
    }

    .price-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .price strong {
        font-size: clamp(46px, 15vw, 62px);
    }

    .faq-list summary {
        padding-block: 20px;
        font-size: 16px;
        line-height: 1.5;
    }

    .faq-list details p {
        padding-right: 24px;
    }

    .final-cta {
        padding: 64px 0;
    }

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

    .footer-bottom {
        display: grid;
        gap: 10px;
    }

    .mobile-cta {
        position: fixed;
        z-index: 900;
        inset: auto 0 0;
        display: block;
        padding: 10px 14px max(10px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(6, 17, 27, 0.1);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
    }

    .mobile-cta .button {
        min-height: 52px;
    }

    .lightbox {
        padding: 10px;
    }

    .lightbox-dialog {
        width: 100%;
        max-height: 92vh;
        border-radius: 14px;
    }

    .lightbox-stage {
        max-height: calc(92vh - 54px);
    }
}

@media (max-width: 430px) {
    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .eyebrow {
        align-items: flex-start;
    }

    .workflow-card,
    .mode-card,
    .showcase-card,
    .price-card {
        padding-inline: 18px;
    }

    .price-topline img {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
}

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

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

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

@media print {
    .site-header,
    .mobile-cta,
    .hero-actions,
    .final-cta,
    .zoom-label {
        display: none !important;
    }

    .hero {
        padding-top: 50px;
    }

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