:root {
    --ink: #090909;
    --ink-2: #161616;
    --paper: #ffffff;
    --soft: #f3f3f3;
    --soft-2: #e9e9e9;
    --muted: #686868;
    --line: #d8d8d8;
    --dark-line: #343434;
    --accent: #f8722e;
    --accent-hover: #ff8950;
    --accent-soft: #fff1e9;
    --accent-dark: #2a1810;
    --container: 1280px;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
    --bs-body-font-family: 'Montserrat', sans-serif;
    --bs-body-color: var(--ink);
    --bs-body-bg: var(--paper);
}

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

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid #bcbcbc;
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 12px 18px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    font-weight: 600;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 9, 9, 0.88);
    color: var(--paper);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 150px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.5vw, 42px);
    font-size: 16px;
    font-weight: 500;
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
    color: #d4d4d4;
    transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--paper);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta):focus-visible {
    color: var(--paper);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding: 10px 18px;
    border: 1px solid var(--paper);
    border-radius: 999px;
    color: var(--paper);
    transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
    background: var(--paper);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #454545;
    border-radius: 50%;
    background: transparent;
}

.nav-toggle span {
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--paper);
    transition: transform 180ms ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 156px 0 36px;
    background: var(--ink);
    color: var(--paper);
}

.hero::before {
    content: '';
    position: absolute;
    top: 13%;
    left: -8%;
    width: 38vw;
    height: 38vw;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 40%;
    left: -5%;
    width: 23vw;
    height: 23vw;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-lines,
.contact-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-lines {
    opacity: 0.75;
    animation: line-drift 22s ease-in-out infinite alternate;
}

.hero-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
    align-items: center;
    gap: clamp(42px, 5vw, 84px);
    min-height: calc(100vh - 260px);
}

.eyebrow {
    margin: 0 0 22px;
    color: #5f5f5f;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #b6b6b6;
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(54px, 5.8vw, 92px);
    font-weight: 200;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 strong {
    display: block;
    margin-top: 0.12em;
    font-weight: 500;
}

.hero-lead {
    max-width: 720px;
    margin: 34px 0 0;
    color: #d0d0d0;
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 300;
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
    margin-top: 40px;
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 58px;
    padding: 15px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.button::before,
.nav-cta::before {
    content: '';
    position: absolute;
    inset: -40% -70%;
    z-index: 0;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.34) 50%, transparent 62%);
    transform: translateX(-48%) rotate(8deg);
    animation: cta-sweep 4.8s cubic-bezier(0.45, 0, 0.25, 1) infinite;
    pointer-events: none;
}

.button > span,
.nav-cta > span {
    position: relative;
    z-index: 1;
    animation: cta-arrow 1.8s ease-in-out infinite;
}

.button-light:hover {
    box-shadow: 0 16px 38px rgba(255, 255, 255, 0.14);
}

.button-dark:hover {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

@keyframes cta-sweep {
    0%, 62% { transform: translateX(-48%) rotate(8deg); }
    84%, 100% { transform: translateX(48%) rotate(8deg); }
}

@keyframes cta-arrow {
    0%, 60%, 100% { transform: translate(0, 0); }
    72% { transform: translate(3px, -3px); }
    84% { transform: translate(0, 0); }
}

.button-light {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.button-light:hover {
    background: transparent;
    color: var(--paper);
}

.button-dark {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid currentColor;
    font-size: 16px;
    font-weight: 500;
}

.light-link {
    color: #d4d4d4;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 54px;
    color: #aeaeae;
    font-size: 15px;
    line-height: 1.5;
}

.hero-proof strong {
    padding-right: 18px;
    border-right: 1px solid #3d3d3d;
    color: var(--paper);
    font-size: 40px;
    font-weight: 200;
    line-height: 1;
}

.hero-visual {
    position: relative;
    min-height: clamp(540px, 60vh, 720px);
    overflow: hidden;
    border: 1px solid #3d3d3d;
    border-radius: 150px 32px 150px 32px;
    background: #151515;
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.52);
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.74) 100%);
    pointer-events: none;
}

.hero-visual > img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: 57% center;
    transform: scale(1.045);
    animation: hero-image-breathe 12s ease-in-out infinite alternate;
}

.hero-visual-card {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(12, 12, 12, 0.76);
    color: var(--paper);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-visual-card-main {
    right: 26px;
    bottom: 28px;
    left: 26px;
    padding: 26px;
    border-radius: 24px;
}

.hero-visual-card-main span {
    color: #9e9e9e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-visual-card-main p {
    max-width: 430px;
    margin: 12px 0 0;
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 400;
    line-height: 1.4;
}

.hero-visual-card-mini {
    top: 26px;
    right: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
}

.hero-visual-card-mini span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-visual-card-mini strong {
    font-size: 14px;
    font-weight: 500;
}

@keyframes hero-image-breathe {
    from { transform: scale(1.045); }
    to { transform: scale(1.1); }
}

.hero-demo {
    position: relative;
    border: 1px solid #454545;
    border-radius: 30px;
    background: rgba(22, 22, 22, 0.92);
    box-shadow: none;
    overflow: hidden;
    transform: rotate(1.2deg);
}

.hero-demo::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.demo-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--soft);
    color: var(--ink);
}

.demo-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.13;
    filter: invert(1);
    pointer-events: none;
    animation: line-drift 18s ease-in-out infinite alternate;
}

.demo-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(290px, 0.72fr) minmax(540px, 1.28fr);
    gap: clamp(52px, 7vw, 110px);
    align-items: center;
}

.demo-section-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin: 32px 0 0;
    color: #555;
    font-size: 17px;
}

.demo-section .eyebrow.light {
    color: #666;
}

.demo-section .light-title {
    color: var(--ink);
}

.decision-demo {
    transform: none;
    background: rgba(20, 20, 20, 0.9);
}

.decision-demo .chat-window {
    transition: opacity 180ms ease, transform 220ms ease;
}

.decision-demo.demo-changing .chat-window {
    opacity: 0.22;
    transform: translateY(8px) scale(0.99);
}

@keyframes line-drift {
    from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
    to { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
}

.demo-toolbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #353535;
}

.demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9c9c9c;
    box-shadow: 14px 0 0 #656565, 28px 0 0 #3f3f3f;
    margin-right: 28px;
}

.demo-title {
    color: #a6a6a6;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.demo-switch {
    display: flex;
    padding: 3px;
    border: 1px solid #3b3b3b;
    border-radius: 999px;
    background: #101010;
}

.demo-option {
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #8d8d8d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.demo-option.active {
    background: #ededed;
    color: var(--ink);
}

.chat-window {
    padding: clamp(24px, 3vw, 38px);
}

.chat-question {
    max-width: 85%;
    margin-left: auto;
    padding: 14px 18px;
    border: 1px solid #393939;
    border-radius: 22px 22px 5px 22px;
    background: #242424;
}

.chat-question span {
    display: block;
    margin-bottom: 5px;
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.chat-question p,
.chat-answer p,
.ad-preview p {
    margin: 0;
}

.chat-question p {
    color: #efefef;
    font-size: 16px;
    line-height: 1.55;
}

.chat-answer {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    margin-top: 24px;
    color: #d1d1d1;
    font-size: 16px;
    line-height: 1.65;
}

.chat-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #4a4a4a;
    border-radius: 9px;
    color: var(--paper);
    font-size: 14px;
}

.ad-preview {
    margin-top: 25px;
    padding: 16px;
    border: 1px solid #4b4b4b;
    border-radius: 19px;
    background: #f2f2f2;
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.ad-label {
    padding-bottom: 11px;
    border-bottom: 1px solid #d2d2d2;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ad-body {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding-top: 14px;
}

.ad-logo {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
    font-size: 16px;
    font-weight: 600;
}

.ad-brand {
    color: #6d6d6d;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.ad-preview h2 {
    margin: 4px 0 7px;
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.ad-preview p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.ad-url {
    display: inline-flex;
    gap: 8px;
    margin-top: 9px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.demo-note {
    margin: 0;
    padding: 0 38px 24px;
    color: #747474;
    font-size: 13px;
    line-height: 1.5;
}

.hero-foot {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 68px;
    border-top: 1px solid #333;
    color: #a5a5a5;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-foot span {
    position: relative;
    padding: 20px 34px 2px 0;
}

.hero-foot span:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #656565;
}

.section {
    padding: clamp(92px, 10vw, 150px) 0;
}

.split-heading,
.process-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(50px, 8vw, 130px);
    align-items: end;
}

.split-heading.compact {
    margin-bottom: 58px;
}

.section-title {
    max-width: 920px;
    margin: 0;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.section-title.narrow {
    max-width: 800px;
}

.light-title {
    color: var(--paper);
}

.section-copy {
    color: #555;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.75;
}

.section-copy p {
    margin: 0;
}

.section-copy p + p {
    margin-top: 22px;
}

.light-copy {
    color: #bdbdbd;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 76px;
}

.value-card {
    position: relative;
    min-height: 410px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.value-card.dark-card {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.card-number {
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.line-icon {
    width: 62px;
    height: 62px;
    margin-top: 74px;
}

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

.value-card h3 {
    margin: 28px 0 14px;
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.dark-card p {
    color: #bcbcbc;
}

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

.mechanics-grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: center;
}

.mechanics-image {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #1a1a1a;
}

.mechanics-image img {
    width: 100%;
    height: 100%;
    min-height: 780px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08);
}

.mechanics-image img[data-parallax-image] {
    transform: scale(1.12) translate3d(0, var(--parallax-image-y, 0), 0);
    will-change: transform;
}

.mechanics-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
}

.image-caption {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(9, 9, 9, 0.68);
    color: var(--paper);
    backdrop-filter: blur(12px);
}

.image-caption strong,
.image-caption span {
    display: block;
}

.image-caption strong {
    font-size: 16px;
    font-weight: 600;
}

.image-caption span {
    margin-top: 5px;
    color: #bcbcbc;
    font-size: 15px;
}

.mechanics-copy .section-title {
    max-width: 760px;
}

.step-list {
    margin: 62px 0 0;
    padding: 0;
    list-style: none;
}

.step-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-top: 1px solid #cecece;
}

.step-list li:last-child {
    border-bottom: 1px solid #cecece;
}

.step-list > li > span {
    color: #7c7c7c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.step-list h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.step-list p {
    margin: 0;
    color: var(--muted);
}

.solutions-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper);
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: -280px;
    right: -160px;
    width: 720px;
    height: 720px;
    border: 1px solid #242424;
    border-radius: 50%;
}

.solutions-section .container {
    position: relative;
    z-index: 2;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    min-height: 850px;
    padding: clamp(28px, 4vw, 54px);
    border-radius: var(--radius-lg);
}

.service-card {
    background: var(--paper);
    color: var(--ink);
}

.shop-card {
    border: 1px solid #3b3b3b;
    background: var(--ink-2);
    color: var(--paper);
}

.solution-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 26px;
    border-bottom: 1px solid currentColor;
}

.solution-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.solution-index {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 15px;
}

.solution-card > h3 {
    max-width: 560px;
    margin: 48px 0 22px;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.solution-lead {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.shop-card .solution-lead {
    color: #b8b8b8;
}

.example-box {
    margin: 40px 0 0;
    padding: 22px;
    border-radius: 18px;
    background: var(--soft);
}

.example-box.inverse {
    background: #252525;
}

.example-box span {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.example-box p {
    margin: 9px 0 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.tick-list {
    margin: 34px 0 40px;
    padding: 0;
    list-style: none;
}

.tick-list li {
    position: relative;
    padding: 15px 0 15px 34px;
    border-top: 1px solid rgba(128, 128, 128, 0.28);
    font-size: 16px;
    line-height: 1.55;
}

.tick-list li:last-child {
    border-bottom: 1px solid rgba(128, 128, 128, 0.28);
}

.tick-list li::before {
    content: '✓';
    position: absolute;
    top: 14px;
    left: 3px;
    font-size: 15px;
    font-weight: 600;
}

.solution-card > .button {
    align-self: flex-start;
    margin-top: auto;
}

.comparison-section {
    background: var(--paper);
}

.channel-list {
    display: grid;
    gap: 10px;
    margin-top: 70px;
}

.channel-row {
    display: grid;
    grid-template-columns: 0.7fr 1.25fr 1fr;
    gap: 30px;
    align-items: center;
    min-height: 118px;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.channel-row:hover {
    transform: translateX(7px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.channel-name {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.channel-name span {
    display: inline-flex;
    margin-left: 9px;
    padding: 4px 7px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    vertical-align: middle;
}

.channel-moment {
    font-size: 16px;
    font-weight: 500;
}

.channel-use {
    color: var(--muted);
    font-size: 16px;
}

.featured-row {
    border-radius: 18px;
    background: var(--ink);
    color: var(--paper);
}

.featured-row .channel-use {
    color: #b3b3b3;
}

.comparison-note {
    max-width: 790px;
    margin: 32px 0 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.process-section {
    border-top: 1px solid var(--line);
    background: var(--soft);
}

.process-head {
    align-items: start;
}

.process-head > p {
    max-width: 540px;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 78px;
}

.process-grid article {
    min-height: 310px;
    padding: 28px;
    border: 1px solid #c8c8c8;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.38);
    transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.process-grid article:hover {
    background: var(--paper);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.process-grid span {
    color: #808080;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.process-grid h3 {
    margin: 82px 0 14px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.ecosystem-section {
    padding: clamp(92px, 10vw, 150px) 0;
    background: var(--ink);
    color: var(--paper);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
}

.ecosystem-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin: 30px 0 36px;
    color: #b7b7b7;
    font-size: 18px;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ecosystem-right {
    display: grid;
    gap: 16px;
}

.ecosystem-visual {
    position: relative;
    min-height: 320px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #363636;
    border-radius: 34px;
    background: #171717;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}

.ecosystem-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.82));
}

.ecosystem-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: 62% 58%;
    transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ecosystem-visual:hover img {
    transform: scale(1.045);
}

.ecosystem-visual figcaption {
    position: absolute;
    right: 26px;
    bottom: 22px;
    left: 26px;
    z-index: 2;
    max-width: 600px;
    color: #d2d2d2;
    font-size: 16px;
}

.ecosystem-card {
    display: block;
    padding: 32px;
    border: 1px solid #373737;
    border-radius: var(--radius-md);
    background: #121212;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ecosystem-card:hover {
    transform: translateX(8px);
    border-color: #777;
    background: #1b1b1b;
}

.ecosystem-card strong span {
    transition: transform 180ms ease;
}

.ecosystem-card:hover strong span {
    transform: translate(4px, -4px);
}

.ecosystem-tag {
    color: #8d8d8d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ecosystem-card h3 {
    margin: 20px 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    letter-spacing: -0.045em;
}

.ecosystem-card p {
    margin: 0;
    color: #aaa;
    font-size: 16px;
}

.ecosystem-card strong {
    display: inline-flex;
    gap: 10px;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 600;
}

.faq-section {
    background: var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(60px, 9vw, 140px);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
    border-color: #ababab;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.faq-list summary {
    position: relative;
    padding: 26px 58px 26px 0;
    font-size: 17px;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

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

.faq-list details p {
    max-width: 760px;
    margin: -4px 58px 26px 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 12vw, 190px) 0;
    background: var(--ink);
    color: var(--paper);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 900px;
    height: 900px;
    border: 1px solid #292929;
    border-radius: 50%;
    transform: translateX(-50%);
}

.contact-lines {
    opacity: 0.55;
}

.contact-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-inner h2 {
    max-width: 1100px;
    margin: 0 auto;
    font-size: clamp(44px, 6.6vw, 92px);
    font-weight: 300;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.contact-inner > p:not(.eyebrow) {
    max-width: 760px;
    margin: 34px auto 40px;
    color: #bdbdbd;
    font-size: 18px;
}

.large-button {
    min-height: 66px;
    padding-inline: 28px;
}

.contact-meta {
    display: block;
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

.footer {
    padding: 80px 0 26px;
    border-top: 1px solid #303030;
    background: var(--ink);
    color: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 60px;
}

.footer-brand img {
    width: 178px;
    height: auto;
}

.footer h2 {
    margin: 0 0 18px;
    color: #8d8d8d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer a {
    display: block;
    width: fit-content;
    margin: 5px 0;
    border-bottom: 1px solid transparent;
    font-size: 16px;
}

.footer a:hover {
    border-color: currentColor;
}

.footer p {
    margin: 17px 0 0;
    color: #848484;
    font-size: 15px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid #2e2e2e;
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: #696969;
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid #3d3d3d;
    border-radius: 50%;
    background: rgba(9, 9, 9, 0.9);
    color: var(--paper);
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.back-to-top[hidden] {
    display: none;
}

/* Orange Xsoft variant — based on the AI search optimization landing palette. */

::selection {
    background: var(--accent);
    color: var(--ink);
}

:focus-visible {
    outline-color: var(--accent);
}

.primary-nav > a:not(.nav-cta)::after {
    background: var(--accent);
}

.nav-cta {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
}

.nav-cta:hover {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    color: var(--ink);
}

.hero::before,
.hero::after {
    border-color: rgba(248, 114, 46, 0.24);
}

.hero .eyebrow.light,
.solutions-section .eyebrow.light,
.ecosystem-section .eyebrow.light,
.demo-section .eyebrow.light {
    color: var(--accent);
}

.hero h1 strong,
.hero-proof strong {
    color: var(--accent);
}

.button-light {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
}

.button-light:hover {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    color: var(--ink);
    box-shadow: 0 16px 38px rgba(248, 114, 46, 0.26);
}

.light-link:hover {
    color: var(--accent);
}

.hero-visual {
    border-color: rgba(248, 114, 46, 0.56);
}

.hero-visual-card-main {
    border-color: rgba(248, 114, 46, 0.54);
}

.hero-visual-card-main span {
    color: var(--accent);
}

.hero-visual-card-mini span {
    background: var(--accent);
    color: var(--ink);
}

.hero-foot span:not(:last-child)::after {
    background: var(--accent);
}

.value-card.dark-card {
    border-color: var(--accent);
}

.dark-card .card-number,
.dark-card .line-icon,
.step-list > li > span,
.image-caption strong {
    color: var(--accent);
}

.hero-demo {
    border-color: rgba(248, 114, 46, 0.62);
}

.demo-dot {
    background: var(--accent);
}

.demo-option.active {
    background: var(--accent);
    color: var(--ink);
}

.chat-mark {
    border-color: var(--accent);
    color: var(--accent);
}

.ad-logo {
    background: var(--accent);
    color: var(--ink);
}

.ad-url b {
    color: var(--accent);
}

.solutions-section::before {
    border-color: rgba(248, 114, 46, 0.2);
}

.service-card,
.shop-card {
    border: 1px solid var(--accent);
}

.solution-label,
.solution-index,
.tick-list li::before {
    color: var(--accent);
}

.example-box {
    background: var(--accent-soft);
}

.example-box.inverse {
    border: 1px solid rgba(248, 114, 46, 0.35);
    background: var(--accent-dark);
}

.featured-row {
    border-color: var(--accent);
}

.featured-row .channel-name span {
    color: var(--accent);
}

.process-grid span {
    color: var(--accent);
}

.process-grid article:hover {
    border-color: var(--accent);
}

.ecosystem-visual {
    border-color: rgba(248, 114, 46, 0.58);
}

.ecosystem-card:hover {
    border-color: var(--accent);
}

.ecosystem-tag,
.ecosystem-card strong {
    color: var(--accent);
}

.faq-list details[open] {
    border-color: var(--accent);
}

.faq-list summary::before,
.faq-list summary::after {
    background: var(--accent);
}

.contact-section {
    background: var(--accent);
    color: var(--ink);
}

.contact-section::before {
    border-color: rgba(9, 9, 9, 0.16);
}

.contact-section .contact-lines {
    opacity: 0.13;
    filter: brightness(0);
}

.contact-section .eyebrow.light,
.contact-inner > p:not(.eyebrow),
.contact-meta {
    color: rgba(9, 9, 9, 0.68);
}

.contact-section .button-light {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.contact-section .button-light:hover {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.footer h2 {
    color: var(--accent);
}

.footer a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.back-to-top {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
}

.reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(42px) scale(0.985);
    transition: opacity 780ms ease, transform 880ms cubic-bezier(0.16, 1, 0.3, 1), filter 780ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal.from-left {
    transform: translateX(-44px);
}

.reveal.from-right {
    transform: translateX(44px);
}

.reveal.scale-in {
    transform: scale(0.93);
}

.reveal.from-left.is-visible,
.reveal.from-right.is-visible,
.reveal.scale-in.is-visible {
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1);
}

.motion-section.section-in-view {
    animation: section-arrive 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes section-arrive {
    from { filter: brightness(0.88); }
    to { filter: brightness(1); }
}

@media (max-width: 1199.98px) {
    .hero-stage {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .hero h1 {
        font-size: clamp(52px, 6.4vw, 76px);
    }

    .hero-demo {
        transform: none;
    }

    .demo-toolbar {
        grid-template-columns: auto 1fr;
    }

    .demo-switch {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .demo-option {
        flex: 1 1 50%;
    }

    .mechanics-image,
    .mechanics-image img {
        min-height: 690px;
    }

    .solution-card {
        min-height: 920px;
    }
}

@media (max-width: 991.98px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 82px;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: var(--ink);
        transition: max-height 260ms ease;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - 82px);
        padding: 14px 18px 24px;
        border-bottom: 1px solid #343434;
    }

    .primary-nav > a {
        padding: 17px 8px;
        border-bottom: 1px solid #2e2e2e;
    }

    .primary-nav .nav-cta {
        justify-content: space-between;
        margin-top: 12px;
        padding-inline: 18px;
        border: 1px solid var(--paper);
    }

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

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

    .hero {
        padding-top: 132px;
    }

    .hero-stage {
        grid-template-columns: 1fr;
        min-height: auto;
    }

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

    .hero h1 {
        font-size: clamp(56px, 9.7vw, 88px);
    }

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

    .demo-layout {
        grid-template-columns: 1fr;
    }

    .hero-demo {
        width: 100%;
        max-width: 760px;
        margin-left: auto;
    }

    .split-heading,
    .process-head,
    .faq-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .value-card {
        min-height: auto;
    }

    .line-icon {
        margin-top: 44px;
    }

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

    .mechanics-image,
    .mechanics-image img {
        min-height: 600px;
        max-height: 760px;
    }

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

    .solution-card {
        min-height: auto;
    }

    .solution-card > .button {
        margin-top: 4px;
    }

    .channel-row {
        grid-template-columns: 0.65fr 1.35fr;
    }

    .channel-use {
        grid-column: 2;
    }

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

    .ecosystem-copy {
        max-width: 720px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    body {
        font-size: 18px;
    }

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

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

    .brand img {
        width: 132px;
    }

    .primary-nav {
        top: 74px;
    }

    .hero {
        padding: 116px 0 28px;
    }

    .hero h1 {
        font-size: clamp(45px, 13.6vw, 66px);
        letter-spacing: -0.06em;
    }

    .hero-lead {
        margin-top: 26px;
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        margin-top: 32px;
    }

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

    .hero-actions .button {
        justify-content: space-between;
    }

    .hero-proof {
        margin-top: 42px;
    }

    .hero-proof strong {
        font-size: 34px;
    }

    .hero-visual {
        min-height: 520px;
        border-radius: 86px 24px 86px 24px;
    }

    .hero-visual-card-main {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 20px;
        border-radius: 18px;
    }

    .hero-visual-card-mini {
        top: 16px;
        right: 16px;
    }

    .hero-demo {
        margin-top: 12px;
        border-radius: 22px;
    }

    .decision-demo {
        margin-top: 0;
    }

    .demo-toolbar {
        padding: 14px;
    }

    .demo-title {
        font-size: 15px;
    }

    .chat-window {
        padding: 18px;
    }

    .chat-question {
        max-width: 94%;
    }

    .ad-body {
        grid-template-columns: 36px 1fr;
    }

    .ad-logo {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .demo-note {
        padding: 0 18px 18px;
    }

    .hero-foot {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .hero-foot span {
        padding: 13px 0;
        border-bottom: 1px solid #292929;
    }

    .hero-foot span:not(:last-child)::after {
        display: none;
    }

    .section,
    .ecosystem-section {
        padding: 88px 0;
    }

    .section-title {
        font-size: clamp(38px, 11vw, 54px);
    }

    .section-copy {
        font-size: 17px;
    }

    .value-grid {
        margin-top: 48px;
    }

    .value-card {
        padding: 24px;
    }

    .mechanics-grid {
        gap: 50px;
    }

    .mechanics-image,
    .mechanics-image img {
        min-height: 520px;
    }

    .mechanics-image {
        border-radius: 26px;
    }

    .image-caption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .step-list {
        margin-top: 42px;
    }

    .step-list li {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }

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

    .solution-card > h3 {
        margin-top: 36px;
        font-size: clamp(36px, 10.5vw, 52px);
    }

    .solution-lead {
        font-size: 17px;
    }

    .solution-card > .button {
        width: 100%;
    }

    .channel-list {
        margin-top: 48px;
    }

    .channel-row {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
        padding: 24px 16px;
    }

    .channel-use {
        grid-column: 1;
    }

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

    .process-grid article {
        min-height: 270px;
    }

    .process-grid h3 {
        margin-top: 56px;
    }

    .ecosystem-card {
        padding: 24px;
    }

    .ecosystem-cards {
        grid-template-columns: 1fr;
    }

    .ecosystem-visual,
    .ecosystem-visual img {
        min-height: 260px;
    }

    .faq-grid {
        gap: 50px;
    }

    .faq-list summary {
        padding: 24px 48px 24px 0;
        font-size: 17px;
    }

    .faq-list details p {
        margin-right: 0;
    }

    .contact-section {
        padding: 100px 0;
    }

    .contact-inner h2 {
        font-size: clamp(40px, 12vw, 60px);
    }

    .contact-inner > p:not(.eyebrow) {
        font-size: 17px;
    }

    .large-button {
        width: 100%;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 54px;
    }

    .primary-nav,
    .button,
    .text-link {
        font-size: 17px;
    }

    .eyebrow,
    .solution-label,
    .solution-index,
    .card-number,
    .step-list > li > span,
    .process-grid span,
    .ecosystem-tag,
    .footer h2 {
        font-size: 15px;
    }

    .hero-proof,
    .hero-foot,
    .hero-visual-card-mini strong,
    .image-caption span,
    .ad-preview p,
    .ecosystem-card strong,
    .footer p {
        font-size: 16px;
    }

    .hero-visual-card-main span,
    .hero-visual-card-mini span,
    .ad-label,
    .ad-brand,
    .channel-name span {
        font-size: 14px;
    }

    .demo-option,
    .chat-question span,
    .example-box span,
    .demo-note,
    .footer-bottom p,
    .footer-bottom a {
        font-size: 15px;
    }

    .chat-question p,
    .chat-answer,
    .tick-list li,
    .channel-use,
    .comparison-note,
    .process-grid p,
    .ecosystem-visual figcaption,
    .ecosystem-card p,
    .faq-list details p {
        font-size: 17px;
    }

    .ad-preview h2,
    .example-box p {
        font-size: 18px;
    }

    .ad-url,
    .contact-meta {
        font-size: 15px;
    }

    .comparison-note {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 419.98px) {
    .hero h1 {
        font-size: 43px;
    }

    .demo-title {
        display: none;
    }

    .demo-toolbar {
        grid-template-columns: auto 1fr;
    }

    .demo-switch {
        grid-column: 2;
    }

    .demo-dot {
        margin-right: 18px;
    }

    .chat-answer {
        grid-template-columns: 26px 1fr;
        gap: 10px;
    }

    .chat-mark {
        width: 26px;
        height: 26px;
    }

    .ad-preview {
        padding: 13px;
    }
}

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

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

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

@media print {
    .site-header,
    .back-to-top,
    .hero-lines,
    .contact-lines {
        display: none !important;
    }

    .hero {
        min-height: 0;
        padding-top: 50px;
    }

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