:root {
    --bg: #070806;
    --ink: #f8f7f2;
    --muted: #b8b7ad;
    --soft: #e5e0d5;
    --surface: rgba(20, 22, 19, 0.84);
    --surface-strong: rgba(27, 29, 25, 0.96);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.22);
    --green: #54dfa8;
    --gold: #f0cb62;
    --blue: #62c5ff;
    --danger: #ff7c7c;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: "Cairo", sans-serif;
    background:
        linear-gradient(135deg, #070806 0%, #11120e 54%, #080907 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(84, 223, 168, 0.08), transparent 30%, rgba(240, 203, 98, 0.06)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 24%);
    opacity: 0.68;
}

a {
    color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
figure,
strong {
    margin: 0;
}

h1,
h2,
h3,
h4,
.brand-copy strong,
.price-box strong {
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 13ch;
    font-size: 3.35rem;
    line-height: 2.03;
    font-weight: 800;
}

h2 {
    max-width: 12ch;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 800;
}

h3 {
    font-size: 1.32rem;
    line-height: 1.24;
}

h4 {
    font-size: 1rem;
    line-height: 1.35;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 72px;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 7, 0.8);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0f100d;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Space Grotesk", "Cairo", sans-serif;
    font-size: 1.05rem;
}

.brand-copy span,
.section-copy,
.hero-lead,
.flow-card p,
.pricing-head p,
.pricing-card small,
.site-footer {
    color: var(--muted);
    line-height: 1.75;
}

.main-nav,
.lang-switch,
.hero-actions,
.trust-row,
.pricing-tags,
.store-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-nav {
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav a,
.lang-btn,
.primary-btn,
.secondary-btn,
.chat-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.045);
    font: inherit;
    font-size: 0.93rem;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.main-nav a:hover,
.lang-btn:hover,
.lang-btn.active,
.primary-btn:hover,
.secondary-btn:hover,
.chat-card button:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.08);
}

.primary-btn {
    border-color: rgba(84, 223, 168, 0.5);
    background: linear-gradient(135deg, var(--green), var(--gold));
    color: #11120d;
}

.secondary-btn {
    border-color: rgba(240, 203, 98, 0.36);
}

.lang-switch {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.lang-btn {
    min-width: 48px;
    padding: 0 12px;
}

.lang-btn.active {
    color: var(--green);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 42px;
    align-items: center;
    min-height: 720px;
    margin-top: 18px;
    padding: 52px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 48%, rgba(84, 223, 168, 0.07)),
        rgba(10, 11, 9, 0.86);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset-inline: 52px;
    bottom: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.hero-copy {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 20px;
    align-content: center;
}

.eyebrow {
    color: var(--green);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 58ch;
    font-size: 1.08rem;
}

.hero-actions {
    flex-wrap: wrap;
}

.trust-row {
    flex-wrap: wrap;
    margin-top: 8px;
}

.trust-card {
    min-width: 128px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.trust-card strong {
    display: block;
    font-family: "Space Grotesk", "Cairo", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.trust-card span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-stage {
    position: relative;
    min-height: 600px;
}

.desktop-preview,
.phone-preview,
.chat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #10110f;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.desktop-preview {
    position: absolute;
    inset-block-start: 64px;
    inset-inline: 0 90px;
    transform: rotate(-2deg);
    animation: float-desktop 8s ease-in-out infinite;
}

html[dir="ltr"] .desktop-preview {
    inset-inline: 90px 0;
    transform: rotate(2deg);
}

.desktop-preview::before,
.screen-panel::before {
    content: "";
    display: block;
    height: 34px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        #151713;
}

.desktop-preview img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
    transition: opacity 260ms ease;
}

.live-pill {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(84, 223, 168, 0.35);
    border-radius: var(--radius);
    color: var(--green);
    background: rgba(84, 223, 168, 0.09);
    font-size: 0.78rem;
    font-weight: 800;
}

.phone-preview {
    position: absolute;
    width: 190px;
    padding: 8px;
}

.phone-preview img {
    width: 100%;
    aspect-ratio: 9 / 18.6;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: top;
}

.phone-main {
    inset-block-start: 170px;
    inset-inline-end: 0;
    width: 230px;
    animation: float-phone 6s ease-in-out infinite;
}

.phone-side {
    inset-block-end: 38px;
    inset-inline-start: 42px;
    width: 176px;
    animation: float-phone 7s ease-in-out 500ms infinite;
}

.ai-orbit {
    position: absolute;
    inset-inline-end: 186px;
    bottom: 64px;
    display: grid;
    gap: 8px;
    max-width: 230px;
}

.ai-orbit span,
.smart-stack span,
.pricing-tier,
.pricing-badge {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--soft);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.82rem;
    font-weight: 800;
}

.ai-orbit span:nth-child(1) {
    border-color: rgba(84, 223, 168, 0.34);
    color: var(--green);
}

.ai-orbit span:nth-child(2) {
    justify-self: end;
    border-color: rgba(240, 203, 98, 0.34);
    color: var(--gold);
}

.ai-orbit span:nth-child(3) {
    border-color: rgba(98, 197, 255, 0.34);
    color: var(--blue);
}

.section,
.showcase-section,
.ai-section,
.app-section,
.contact-panel {
    margin-top: 88px;
}

.section-head {
    display: grid;
    gap: 12px;
}

.section-head.centered {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.section-head.centered h2 {
    margin-inline: auto;
}

.section-copy {
    max-width: 65ch;
    font-size: 1rem;
}

.section-head.centered .section-copy {
    margin-inline: auto;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.flow-card {
    position: relative;
    display: grid;
    grid-template-rows: 260px auto;
    gap: 18px;
    min-height: 510px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease;
}

.flow-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.flow-card.green {
    border-color: rgba(84, 223, 168, 0.24);
}

.flow-card.gold {
    border-color: rgba(240, 203, 98, 0.24);
}

.flow-card.blue {
    border-color: rgba(98, 197, 255, 0.24);
}

.flow-image {
    display: grid;
    place-items: start center;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.22);
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 500ms ease;
}

.flow-card:hover .flow-image img {
    transform: scale(1.035);
}

.flow-card div:last-child {
    display: grid;
    gap: 9px;
}

.flow-card span {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(240, 203, 98, 0.25);
    border-radius: var(--radius);
    color: var(--gold);
    font-family: "Space Grotesk", "Cairo", sans-serif;
    font-weight: 800;
}

.showcase-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: start;
}

.showcase-section.reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.showcase-section.reverse .sticky-copy {
    order: 2;
}

.sticky-copy {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 12px;
    padding-top: 14px;
}

.phone-river {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 14px;
    align-items: end;
}

.phone-shot {
    position: relative;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #10110f;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: rise-loop 7s ease-in-out infinite;
    animation-delay: var(--delay);
}

.phone-shot:nth-child(2n) {
    transform: translateY(36px);
}

.phone-shot:nth-child(3n) {
    transform: translateY(70px);
}

.phone-shot img {
    width: 100%;
    aspect-ratio: 9 / 18.6;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: top;
}

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

.screen-panel {
    margin: 0;
    grid-column: span 3;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #10110f;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: screen-breathe 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.screen-panel.large {
    grid-column: span 6;
}

.screen-panel img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
}

.ai-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 44px;
    align-items: center;
    padding: 44px;
    border: 1px solid rgba(84, 223, 168, 0.24);
    border-radius: var(--radius);
    background:
        linear-gradient(120deg, rgba(84, 223, 168, 0.08), rgba(255, 255, 255, 0.025) 48%, rgba(240, 203, 98, 0.08)),
        rgba(10, 11, 9, 0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ai-copy {
    display: grid;
    gap: 16px;
}

.ai-points {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.ai-point {
    position: relative;
    padding: 12px 14px;
    padding-inline-start: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--soft);
    background: rgba(255, 255, 255, 0.045);
    line-height: 1.65;
}

.ai-point::before {
    content: "✓";
    position: absolute;
    top: 13px;
    inset-inline-start: 14px;
    color: var(--green);
    font-weight: 800;
}

.ai-demo {
    position: relative;
    min-height: 560px;
}

.ai-phone {
    inset-inline-start: 5%;
    inset-block-start: 30px;
    width: 255px;
    animation: float-phone 7s ease-in-out infinite;
}

.chat-card {
    position: absolute;
    inset-block-start: 96px;
    inset-inline-end: 4%;
    display: grid;
    gap: 12px;
    width: min(330px, 58%);
    padding: 18px;
    animation: chat-pop 4s ease-in-out infinite;
}

.chat-card span {
    color: var(--green);
    font-weight: 800;
}

.chat-card p {
    color: var(--soft);
    line-height: 1.75;
}

.chat-card button {
    width: fit-content;
    border-color: rgba(84, 223, 168, 0.42);
    color: #11120d;
    background: var(--green);
}

.smart-stack {
    position: absolute;
    inset-inline-end: 10%;
    inset-block-end: 72px;
    display: grid;
    gap: 10px;
}

.smart-stack span {
    animation: tag-slide 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.pricing-toggle {
    display: flex;
    width: fit-content;
    gap: 8px;
    padding: 6px;
    margin: 24px auto 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.pricing-toggle-btn {
    min-width: 126px;
    min-height: 40px;
    border: 0;
    border-radius: var(--radius);
    color: var(--muted);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.pricing-toggle-btn.active {
    color: #11120d;
    background: var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.pricing-card {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        var(--surface);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: rgba(240, 203, 98, 0.48);
    background:
        linear-gradient(180deg, rgba(240, 203, 98, 0.14), rgba(255, 255, 255, 0.025)),
        var(--surface-strong);
}

.pricing-tags {
    flex-wrap: wrap;
}

.pricing-tier {
    color: var(--gold);
    border-color: rgba(240, 203, 98, 0.34);
    background: rgba(240, 203, 98, 0.08);
}

.pricing-badge {
    color: var(--blue);
    border-color: rgba(98, 197, 255, 0.34);
    background: rgba(98, 197, 255, 0.08);
}

.ai-badge {
    color: var(--green);
    border-color: rgba(84, 223, 168, 0.42);
    background: rgba(84, 223, 168, 0.09);
}

.pricing-head {
    display: grid;
    gap: 8px;
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.24);
}

.price-box strong {
    font-family: "Space Grotesk", "Cairo", sans-serif;
    font-size: 2.55rem;
    line-height: 1;
}

.price-box span {
    color: var(--muted);
    font-weight: 800;
}

.pricing-card ul {
    display: grid;
    align-content: start;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    min-height: 34px;
    padding: 7px 12px;
    padding-inline-start: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--soft);
    background: rgba(255, 255, 255, 0.035);
    line-height: 1.45;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    top: 7px;
    inset-inline-start: 12px;
    color: var(--green);
    font-weight: 800;
}

.pricing-card li.ai-feature {
    border-color: rgba(84, 223, 168, 0.35);
    background: rgba(84, 223, 168, 0.08);
}

.pricing-card .primary-btn {
    width: 100%;
}

.comparison-wrap {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.comparison-head {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: start;
    min-width: 230px;
}

.comparison-table thead th {
    color: var(--soft);
    background: rgba(255, 255, 255, 0.045);
}

.compare-check,
.compare-dash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius);
    font-style: normal;
    font-weight: 800;
}

.compare-check {
    color: #11120d;
    background: var(--green);
}

.compare-dash {
    color: var(--muted);
    background: rgba(255, 255, 255, 0.07);
}

.comparison-cards {
    display: none;
}

.app-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
}

.app-copy {
    display: grid;
    gap: 14px;
}

.app-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 14px;
    align-items: center;
}

.app-strip .phone-shot:nth-child(2n) {
    transform: translateY(32px);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(110deg, rgba(84, 223, 168, 0.08), rgba(255, 255, 255, 0.025), rgba(240, 203, 98, 0.08)),
        rgba(10, 11, 9, 0.9);
    box-shadow: var(--shadow);
}

.contact-panel > div:first-child {
    display: grid;
    gap: 12px;
}

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

.contact-card {
    display: grid;
    gap: 6px;
    min-height: 86px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.045);
    text-decoration: none;
}

.contact-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-card strong {
    overflow-wrap: anywhere;
}

.demo-btn {
    grid-column: 1 / -1;
}

.site-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes float-desktop {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

@keyframes float-phone {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

@keyframes rise-loop {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -8px;
    }
}

@keyframes screen-breathe {
    0%,
    100% {
        filter: brightness(0.96);
    }

    50% {
        filter: brightness(1.08);
    }
}

@keyframes chat-pop {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -8px;
    }
}

@keyframes tag-slide {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: -8px 0;
    }
}

@media (max-width: 1180px) {
    .hero,
    .ai-section {
        grid-template-columns: 1fr;
    }

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

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

    .showcase-section,
    .showcase-section.reverse,
    .app-section,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .showcase-section.reverse .sticky-copy {
        order: initial;
    }

    .sticky-copy {
        position: static;
    }
}

@media (max-width: 860px) {
    .page-shell {
        width: min(100% - 22px, var(--container));
        padding-top: 12px;
    }

    .site-header {
        position: relative;
        top: auto;
        grid-template-columns: 1fr;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .lang-switch {
        justify-content: flex-start;
    }

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

    h1 {
        max-width: none;
        font-size: 2.85rem;
    }

    h2 {
        max-width: none;
        font-size: 2.18rem;
    }

    .hero-stage {
        min-height: 470px;
    }

    .desktop-preview {
        inset-block-start: 20px;
        inset-inline: 0;
        transform: none;
    }

    html[dir="ltr"] .desktop-preview {
        inset-inline: 0;
        transform: none;
    }

    .phone-main {
        inset-block-start: 170px;
        inset-inline-end: 12px;
        width: 190px;
    }

    .phone-side {
        inset-block-end: 8px;
        inset-inline-start: 8px;
        width: 148px;
    }

    .ai-orbit {
        inset-inline-end: auto;
        inset-inline-start: 0;
        bottom: 72px;
    }

    .flow-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .flow-card {
        min-height: 0;
        grid-template-rows: 240px auto;
    }

    .phone-river,
    .app-strip {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(150px, 44%);
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        padding: 4px 0 12px;
    }

    .phone-shot {
        scroll-snap-align: start;
    }

    .phone-shot:nth-child(2n),
    .phone-shot:nth-child(3n),
    .app-strip .phone-shot:nth-child(2n) {
        transform: none;
    }

    .screen-wall {
        grid-template-columns: 1fr;
    }

    .screen-panel,
    .screen-panel.large {
        grid-column: auto;
    }

    .ai-section {
        padding: 24px;
    }

    .ai-demo {
        min-height: 520px;
    }

    .ai-phone {
        inset-inline-start: 0;
        width: 210px;
    }

    .chat-card {
        inset-inline-end: 0;
        width: min(310px, 66%);
    }

    .smart-stack {
        inset-inline-end: 0;
        inset-block-end: 44px;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }
}

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

    .brand-copy span {
        font-size: 0.82rem;
    }

    .hero,
    .ai-section,
    .contact-panel,
    .comparison-wrap {
        padding: 20px;
    }

    h1 {
        font-size: 2.28rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-actions,
    .trust-row,
    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn,
    .trust-card {
        width: 100%;
    }

    .hero-stage {
        order: -1;
        min-height: 430px;
    }

    .desktop-preview {
        inset-block-start: 0;
    }

    .phone-main {
        inset-block-start: 126px;
        width: 178px;
    }

    .phone-side {
        width: 136px;
    }

    .ai-orbit {
        bottom: 58px;
        max-width: 190px;
    }

    .flow-card {
        grid-template-rows: 220px auto;
        padding: 14px;
    }

    .phone-river,
    .app-strip {
        grid-auto-columns: minmax(158px, 62%);
    }

    .pricing-toggle {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .pricing-toggle-btn {
        min-width: 0;
    }

    .price-box strong {
        font-size: 2.1rem;
    }

    .comparison-table-wrap {
        display: none;
    }

    .comparison-cards {
        display: grid;
        gap: 10px;
    }

    .comparison-card {
        padding: 13px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.04);
    }

    .comparison-card h4 {
        margin-bottom: 10px;
    }

    .comparison-card div {
        display: grid;
        gap: 8px;
    }

    .comparison-card span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 38px;
        padding: 7px 9px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius);
        color: var(--muted);
        background: rgba(255, 255, 255, 0.035);
    }

    .ai-demo {
        min-height: 560px;
    }

    .ai-phone {
        width: 190px;
    }

    .chat-card {
        top: 112px;
        width: min(265px, 76%);
        padding: 14px;
    }

    .smart-stack {
        inset-inline-start: 0;
        inset-inline-end: auto;
        bottom: 36px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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