@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ─── Design tokens (match src/index.css) ─── */
:root {

    --bg-dark: #0A1628;
    --card-bg: #1A2B4A;
    --brand-blue: #06B6D4;
    --brand-purple: #1A2B4A;
    --text-slate: #94a3b8;

    color-scheme: dark;
    --background: 215 50% 10%;
    --foreground: 0 0% 95%;
    --card: 215 50% 12%;
    --card-foreground: 0 0% 95%;
    --primary: 187 73% 47%;
    --primary-foreground: 220 20% 6%;
    --secondary: 215 50% 20%;
    --secondary-foreground: 0 0% 85%;
    --muted: 220 14% 14%;
    --muted-foreground: 220 10% 55%;
    --destructive: 0 72% 55%;
    --border: 220 14% 18%;
    --radius: 0.75rem;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --gradient-hero: linear-gradient(
        135deg,
        hsl(187 73% 47% / 0.15),
        hsl(215 50% 10%) 60%
    );
    --gradient-card: linear-gradient(
        180deg,
        hsl(215 50% 14%),
        hsl(215 50% 10%)
    );
    --gradient-accent: linear-gradient(
        135deg,
        #06B6D4,
        #0891B2
    );
    --shadow-glow: 0 0 40px hsl(187 73% 47% / 0.15);
    --shadow-card: 0 8px 32px hsl(0 0% 0% / 0.3);
    --phone-frame: 220 14% 20%;
    --laptop-bevel: 220 14% 14%;
    --video-placeholder: 220 18% 8%;
    --tablet-shadow: 0 20px 60px hsl(0 0% 0% / 0.6);
    --device-shadow-strong: 0 28px 60px hsl(0 0% 0% / 0.45);
}

html[data-theme="light"] {
    color-scheme: light;
    --background: 215 50% 10%;
    --foreground: 222 47% 11%;
    --card: 215 50% 12%;
    --card-foreground: 222 47% 11%;
    --primary: 187 73% 47%;
    --primary-foreground: 220 22% 8%;
    --secondary: 215 50% 20%;
    --secondary-foreground: 222 35% 16%;
    --muted: 210 18% 92%;
    --muted-foreground: 215 16% 42%;
    --destructive: 0 72% 48%;
    --border: 214 20% 88%;
    --gradient-hero: linear-gradient(
        135deg,
        hsl(187 73% 47% / 0.14),
        hsl(215 50% 10%) 58%
    );
    --gradient-card: linear-gradient(180deg, hsl(0 0% 100%), hsl(210 22% 96%));
    --gradient-accent: linear-gradient(135deg, hsl(152 72% 36%), hsl(160 78% 30%));
    --shadow-glow: 0 0 40px hsl(152 72% 38% / 0.12);
    --shadow-card: 0 8px 32px hsl(222 47% 11% / 0.08);
    --phone-frame: 214 20% 82%;
    --laptop-bevel: 210 18% 88%;
    --video-placeholder: 210 18% 92%;
    --tablet-shadow: 0 20px 50px hsl(222 47% 11% / 0.12);
    --device-shadow-strong: 0 24px 50px hsl(222 47% 11% / 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: hsl(var(--background));
}
::-webkit-scrollbar-thumb {
    background: hsl(var(--border));
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary) / 0.5);
}

/* Layout */
.page {
    min-height: 100vh;
    background: hsl(var(--background));
    overflow-x: clip;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-left: max(clamp(1rem, 3vw + 0.25rem, 2rem), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(1rem, 3vw + 0.25rem, 2rem), env(safe-area-inset-right, 0px));
}

/* Icons (inline SVG) */
.icon {
    flex-shrink: 0;
    display: block;
}

.icon--16 {
    width: 16px;
    height: 16px;
}
.icon--18 {
    width: 18px;
    height: 18px;
}
.icon--20 {
    width: 20px;
    height: 20px;
}
.icon--18 {
    width: 18px;
    height: 18px;
}
.icon--22 {
    width: 22px;
    height: 22px;
}
.icon--24 {
    width: 24px;
    height: 24px;
}
.icon--28 {
    width: 28px;
    height: 28px;
}
.icon--30 {
    width: 30px;
    height: 30px;
}
.icon--32 {
    width: 32px;
    height: 32px;
}
.icon--36 {
    width: 36px;
    height: 36px;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.3);
    color: hsl(var(--primary));
    border-radius: 9999px;
    font-weight: 500;
}

.glass-card {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-card);
}

.glow-border {
    border: 1px solid hsl(var(--primary) / 0.3);
    box-shadow: var(--shadow-glow);
}

.hero-gradient {
    background: var(--gradient-hero);
}

.phone-mockup {
    border-radius: 2rem;
    overflow: hidden;
}

/* Dark theme bezels — full border + shadow here so light-theme tweaks can’t leave dark without a frame */
html:not([data-theme="light"]) .phone-mockup {
    border: 6px solid hsl(var(--phone-frame));
    box-shadow: 0 25px 60px hsl(0 0% 0% / 0.5),
    0 0 40px hsl(145 72% 50% / 0.1);
}

html[data-theme="light"] .phone-mockup {
    border: 6px solid hsl(var(--primary));
    box-shadow: 0 25px 60px hsl(222 47% 11% / 0.1),
    0 0 40px hsl(152 72% 38% / 0.12);
}

html[data-theme="light"] .features__laptop-screen {
    border-color: hsl(var(--primary));
}

html[data-theme="light"] .features__laptop-base {
    border: 3px solid hsl(var(--primary));
    border-top: none;
    background: linear-gradient(
        to bottom,
        hsl(var(--primary) / 0.14),
        hsl(var(--laptop-bevel))
    );
}

html[data-theme="light"] .features__tablet-inner {
    border-color: hsl(var(--primary));
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px hsl(145 72% 50% / 0.2);
    }
    50% {
        box-shadow: 0 0 40px hsl(145 72% 50% / 0.4);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float--1s {
    animation-delay: 1s;
}

.animate-float--2s {
    animation-delay: 2s;
}

.animate-float--15s {
    animation-delay: 1.5s;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Visually hidden checkbox for mobile nav */
.nav-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Navbar ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding-top: env(safe-area-inset-top, 0px);
    background: hsl(var(--background) / 0.8);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid hsl(var(--border));
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 0.75rem;
}

.nav__end {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav__end {
        gap: 1.5rem;
    }
}

.theme-toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--secondary));
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.theme-toggle:hover {
    background: hsl(var(--muted));
}

html[data-theme="light"] .theme-toggle__icon--sun,
html:not([data-theme="light"]) .theme-toggle__icon--moon {
    display: none;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.brand--logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand__logo-img {
    display: block;
    height: auto;
    max-width: 100%;
}

/* Dark site theme → white mark; light site theme → dark mark */
.brand__logo-img--light {
    display: none;
}

html[data-theme="light"] .brand--logo .brand__logo-img--dark {
    display: none;
}

html[data-theme="light"] .brand--logo .brand__logo-img--light {
    display: block;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav__links a:not(.btn--primary-sm) {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}

.nav__links a:not(.btn--primary-sm):hover {
    color: hsl(var(--primary));
}

.nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
}

.nav__toggle .icon--close {
    display: none;
}

.nav-checkbox:checked ~ .nav__inner .nav__toggle .icon--menu {
    display: none !important;
}

.nav-checkbox:checked ~ .nav__inner .nav__toggle .icon--close {
    display: block !important;
}

.nav__mobile {
    display: none;
    overflow: hidden;
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
}

.nav-checkbox:checked ~ .nav__mobile {
    display: block;
}

.nav__mobile-inner {
    padding-block: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav__mobile-inner a {
    color: hsl(var(--muted-foreground));
}

.nav__mobile-inner a:hover {
    color: hsl(var(--primary));
}

.nav__mobile-inner .btn--primary-sm {
    text-align: center;
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
    }
    .nav__toggle {
        display: none;
    }
    .nav__mobile {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: filter 0.2s, background-color 0.2s;
}

.btn:hover {
    filter: brightness(1.1);
}

.btn--primary {
    padding: 0.875rem 1.75rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn--outline {
    padding: 0.875rem 1.75rem;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn--outline:hover {
    filter: none;
    background: hsl(var(--secondary));
}

.btn--primary-sm {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.875rem;
    font-weight: 500;
}

.btn--primary-sm:hover {
    filter: brightness(1.1);
}

.btn--block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: filter 0.2s, background-color 0.2s;
}

.btn--block-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn--block-primary:hover {
    filter: brightness(1.1);
}

.btn--block-outline {
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn--block-outline:hover {
    background: hsl(var(--secondary));
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* dynamic viewport — better on mobile browsers */
    display: flex;
    align-items: center;
    padding-top: calc(4rem + env(safe-area-inset-top, 0px));
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__bg img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--gradient-hero);
}

.hero .container {
    position: relative;
    z-index: 10;
    padding-block: clamp(2.5rem, 6vw + 1rem, 5rem);
}

.hero__grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero__badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero__lead {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 36rem;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 22rem) {
    .hero__actions .btn {
        width: 100%;
    }
}

.hero__phones {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.hero__phones-inner {
    position: relative;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
    min-height: 12rem;
}

.hero__phone-main {
    width: min(14rem, 78vw);
    margin-inline: auto;
}

@media (min-width: 768px) {
    .hero__phone-main {
        width: 16rem;
        max-width: none;
    }
}

.hero__phone-secondary {
    position: absolute;
    width: min(12rem, 52vw);
    right: max(-0.75rem, -8vw);
    top: 3rem;
    max-width: 45%;
}

@media (min-width: 480px) {
    .hero__phone-secondary {
        width: 12rem;
        right: -2rem;
        top: 4rem;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .hero__phone-secondary {
        width: 14rem;
        right: -5rem;
    }
}

@media (max-width: 22rem) {
    .hero__phone-secondary {
        display: none;
    }
}

/* ─── Section common ─── */
.section {
    padding-block: clamp(3rem, 7vw + 1rem, 6rem);
    position: relative;
}

section[id] {
    scroll-margin-top: calc(4.5rem + env(safe-area-inset-top, 0px));
}

.section__header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw + 0.5rem, 4rem);
}

.section__header h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section__header p {
    color: hsl(var(--muted-foreground));
    max-width: 36rem;
    margin-inline: auto;
    padding-inline: 0.25rem;
    hyphens: auto;
    word-break: break-word;
}

.text-destructive {
    color: hsl(var(--destructive));
}

/* Problems */
.problems__container {
    position: relative;
    overflow-x: clip;
}

.problems__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.problems__blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(50rem, 140vw);
    height: min(50rem, 140vw);
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.03);
    filter: blur(64px);
}

.problems__list {
    max-width: 56rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problems__row {
    display: grid;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .problems__row {
        grid-template-columns: 1fr auto 1fr;
    }
}

.problems__problem {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--destructive) / 0.2);
    background: hsl(var(--destructive) / 0.05);
}

.problems__problem span {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    min-width: 0;
    word-break: break-word;
}

.problems__arrow {
    display: none;
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .problems__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.problems__solution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--primary) / 0.2);
    background: hsl(var(--primary) / 0.05);
}

.problems__solution span {
    font-size: 0.875rem;
    color: hsl(var(--secondary-foreground));
    min-width: 0;
    word-break: break-word;
}

/* What is — cards */
.cards-3 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cards-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-feature {
    border-radius: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    transition: box-shadow 0.3s, border-color 0.3s;
}

.card-feature:hover {
    border-color: hsl(var(--primary) / 0.3);
    box-shadow: var(--shadow-glow);
}

.card-feature__icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: hsl(var(--primary));
    transition: background 0.3s;
}

.card-feature:hover .card-feature__icon {
    background: hsl(var(--primary) / 0.2);
}

.card-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-feature p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

.what__footer-badge {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.what__footer-badge .badge-glow {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Features main grid */
.features__top {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .features__top {
        grid-template-columns: 1fr 1fr;
    }
}

.features__hero-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--primary) / 0.2);
    padding: clamp(1.25rem, 4vw, 2rem);
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .features__hero-card {
        min-height: 380px;
    }
}

@media (min-width: 768px) {
    .features__hero-card {
        padding: 2.5rem;
        min-height: 420px;
    }
}

.features__hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        hsl(var(--primary) / 0.08),
        hsl(var(--card)),
        hsl(var(--card))
    );
    z-index: 0;
}

.features__hero-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: hsl(var(--primary) / 0.06);
    border-radius: 50%;
    filter: blur(48px);
    z-index: 0;
    transition: background 0.7s;
}

.features__hero-card:hover::after {
    background: hsl(var(--primary) / 0.12);
}

.features__hero-inner {
    position: relative;
    z-index: 1;
}

.features__hero-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.15);
    border: 1px solid hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
    transition: transform 0.3s;
}

.features__hero-card:hover .features__hero-icon {
    transform: scale(1.1);
}

.features__hero-card .badge-glow {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}

.features__hero-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.features__hero-card .lead {
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
    max-width: 28rem;
}

.features__tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.features__tags span {
    font-size: 0.75rem;
    border: 1px solid hsl(var(--primary) / 0.2);
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.06);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}

.features__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features__side-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
    border-bottom: 1px solid hsl(var(--border) / 0.4);
}

.features__side-item:last-child {
    border-bottom: none;
}

.features__side-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    transition: background 0.2s;
}

.features__side-item:hover .features__side-icon {
    background: hsl(var(--primary) / 0.2);
}

.features__side-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-display);
}

.features__side-item p {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Admin panel screenshot carousel */
.admin-slider {
    width: 100%;
    max-width:900px;
    margin-inline: auto;
    padding: 0;
    overflow: hidden;
    border-radius: 1rem;
}

.admin-slider__viewport {
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    outline: none;
}

.admin-slider__viewport:focus-visible {
    box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--primary));
}

.admin-slider__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .admin-slider__track {
        transition: none;
    }
}

.admin-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.admin-slider__slide .features__browser {
    flex-shrink: 0;
    border-radius: 0;
}

.admin-slider__shot {
    background: hsl(220 14% 8%);
    padding: 0 0.5rem 0.5rem;
}

html[data-theme="light"] .admin-slider__shot {
    background: hsl(220 14% 96%);
}

.admin-slider__shot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 0.375rem 0.375rem;
}

.admin-slider__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.45;
    border-top: 1px solid hsl(var(--border) / 0.45);
}

.admin-slider__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.14);
    color: hsl(var(--primary));
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.5);
}

.admin-slider__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.admin-slider__arrow:hover {
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.08);
}

.admin-slider__arrow:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

.admin-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-slider__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: hsl(var(--muted-foreground) / 0.35);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, width 0.2s;
}

.admin-slider__dot:hover {
    background: hsl(var(--muted-foreground) / 0.55);
}

.admin-slider__dot.is-active {
    width: 1.5rem;
    background: hsl(var(--primary));
}

.admin-slider__dot:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Laptop mockup (legacy — kept for any other use) */
.features__laptop-wrap {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin-inline: auto;
}

.features__laptop {
    position: relative;
}

.features__laptop-screen {
    position: relative;
    border-radius: 1rem 1rem 0 0;
    border: 3px solid hsl(var(--border));
    border-bottom: none;
    background: hsl(var(--card));
    padding: 0.5rem;
    padding-bottom: 0;
}

.features__browser {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem clamp(0.35rem, 2vw, 0.75rem);
    background: hsl(var(--muted));
    border-radius: var(--radius) var(--radius) 0 0;
    min-width: 0;
}

.features__dots {
    display: flex;
    gap: 0.375rem;
}

.features__dots span {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.features__dots span:nth-child(1) {
    background: hsl(var(--destructive) / 0.6);
}
.features__dots span:nth-child(2) {
    background: rgb(234 179 8 / 0.6);
}
.features__dots span:nth-child(3) {
    background: hsl(var(--primary) / 0.6);
}

.features__url {
    flex: 1;
    min-width: 0;
    margin-inline: clamp(0.35rem, 2vw, 2rem);
    background: hsl(var(--background));
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    font-size: clamp(9px, 1.8vw, 10px);
    color: hsl(var(--muted-foreground));
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.features__laptop-base {
    position: relative;
    height: 1rem;
    background: linear-gradient(to bottom, hsl(var(--border)), hsl(var(--laptop-bevel)));
    border-radius: 0 0 var(--radius) var(--radius);
}

.features__laptop-base::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: hsl(var(--muted));
    border-radius: 0 0 9999px 9999px;
}

.features__laptop-shadow {
    position: absolute;
    bottom: -1rem;
    left: 10%;
    right: 10%;
    height: 2rem;
    background: hsl(var(--primary) / 0.06);
    filter: blur(32px);
    border-radius: 50%;
}

.features__tablet {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 45%;
    z-index: 10;
    display: none;
    transform: rotate(2deg);
    transition: transform 0.5s;
}

.features__tablet:hover {
    transform: rotate(0deg);
}

@media (min-width: 768px) {
    .features__tablet {
        display: block;
    }
}

@media (min-width: 1024px) {
    .features__tablet {
        right: -3rem;
    }
}

.features__tablet-inner {
    border-radius: 1rem;
    border: 3px solid hsl(var(--border));
    background: hsl(var(--card));
    padding: 0.375rem;
    box-shadow: var(--tablet-shadow);
}

.features__tablet-notch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    background: hsl(var(--muted));
    border-radius: var(--radius) var(--radius) 0 0;
}

.features__tablet-notch div {
    width: 2rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: hsl(var(--border));
}

.features__tablet img {
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
}

/* How it works */
.steps {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
}

.step__icon-wrap {
    position: relative;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.step__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.3);
    box-shadow: var(--shadow-glow);
}

.step__num {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Video */
.video__figure {
    max-width: min(40rem, 100%);
    margin: 0 auto;
}

.video__frame {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    max-width: min(40rem, 100%);
    margin-inline: auto;
    padding: 0;
}

.video__player {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    background: hsl(var(--video-placeholder));
}

.video__fallback {
    margin: 0;
    padding: 1.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
}

.video__fallback a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.video__caption {
    margin-top: 1.25rem;
    text-align: center;
}

.video__caption .quote {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    padding-inline: 0.5rem;
    line-height: 1.35;
}

/* Admin QR two col */
.split {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .split {
        grid-template-columns: 1fr 1fr;
    }
}

.split h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.split .lead {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.split__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.split__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: hsl(var(--secondary-foreground));
}

.split__list-item span,
.split__list-item p {
    min-width: 0;
    word-break: break-word;
}

.split__media {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Admin QR: horizontal device card (image + copy side by side) */
.split__media .split-device-card {
    width: 100%;
    max-width: min(36rem, 100%);
    margin-inline: auto;
}

.split-device-card__row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .split-device-card__row {
        flex-direction: row;
        align-items: stretch;
        gap: 1.25rem 1.5rem;
    }
}

.split-device-card__visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    border-radius: calc(var(--radius) + 2px);
    background: hsl(var(--primary) / 0.09);
    border: 1px solid hsl(var(--primary) / 0.18);
    max-height: 15rem;
}

@media (min-width: 640px) {
    .split-device-card__visual {
        width: 44%;
        max-width: 15rem;
        max-height: none;
        align-self: stretch;
        min-height: 0;
        padding: 0.75rem 0.85rem;
    }
}

@media (min-width: 1024px) {
    .split-device-card__visual {
        max-width: 17rem;
        padding: 0.85rem 1rem;
    }
}

.split-device-card__visual img {
    width: auto;
    max-width: 100%;
    max-height: 12.5rem;
    height: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .split-device-card__visual img {
        max-height: 14.5rem;
    }
}

@media (min-width: 1024px) {
    .split-device-card__visual img {
        max-height: 16.5rem;
    }
}

.split-device-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.split__media .split-device-card .split-device-card__body h3 {
    margin-bottom: 0.35rem;
}

.split__media .split-device-card .split-device-card__body .desc {
    margin-bottom: 0.75rem;
}

.split__media .split-device-card .split-device-card__body ul {
    margin-bottom: 1rem;
}

.split__media .split-device-card .split-device-card__body li {
    margin-bottom: 0.5rem;
}

.split__media .split-device-card .split-device-card__body li:last-of-type {
    margin-bottom: 0;
}

.split-device-card__cta {
    margin-top: auto;
}

/* Mobile app section */
.mobile-app {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mobile-app {
        grid-template-columns: 1fr 1fr;
    }
}

.mobile-app__phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.mobile-app__phones .phone-mockup {
    width: min(12rem, 42vw + 5rem);
    max-width: 100%;
}

@media (min-width: 480px) {
    .mobile-app__phones {
        flex-wrap: nowrap;
    }

    .mobile-app__phones .phone-mockup {
        width: 12rem;
    }
}

@media (min-width: 768px) {
    .mobile-app__phones .phone-mockup {
        width: 14rem;
    }
}

.mobile-app__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mobile-app__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-app__cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: hsl(var(--secondary-foreground));
}

.mobile-app__cell .icon {
    color: hsl(var(--primary));
}

.mobile-app h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mobile-app .lead {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

/* Industries — bento-style cards */
.use-cases {
    position: relative;
    overflow-x: clip;
}

.use-cases::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 45% at 50% -5%, hsl(145 72% 50% / 0.09), transparent 52%),
    radial-gradient(ellipse 60% 35% at 100% 60%, hsl(220 70% 40% / 0.06), transparent 45%);
    pointer-events: none;
}

html[data-theme="light"] .use-cases::before {
    background: radial-gradient(ellipse 85% 45% at 50% -5%, hsl(152 72% 38% / 0.07), transparent 52%),
    radial-gradient(ellipse 60% 35% at 100% 60%, hsl(220 60% 50% / 0.05), transparent 45%);
}

.use-cases .container {
    position: relative;
    z-index: 1;
}

.industries-bento {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .industries-bento {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
}

.use-card {
    --accent: #06B6D4;
    position: relative;
    margin: 0;
    padding: 1.375rem 1.375rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid hsl(var(--border) / 0.8);
    background: linear-gradient(
        155deg,
        hsl(220 18% 11% / 0.95) 0%,
        hsl(220 20% 7% / 0.98) 100%
    );
    box-shadow: 0 4px 28px hsl(0 0% 0% / 0.35);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease,
    border-color 0.35s ease;
}

html[data-theme="light"] .use-card {
    background: linear-gradient(155deg, hsl(0 0% 100%) 0%, hsl(210 25% 96%) 100%);
    box-shadow: 0 4px 28px hsl(222 47% 11% / 0.08);
    border-color: hsl(var(--border));
}

html[data-theme="light"] .use-card:hover {
    box-shadow: 0 24px 56px hsl(222 47% 11% / 0.12),
    0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent),
    0 0 64px color-mix(in srgb, var(--accent) 12%, transparent);
}

@media (min-width: 640px) {
    .use-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: 22rem;
        min-width: min(100%, 16rem);
    }
}

@media (min-width: 1024px) {
    .use-card {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: 20rem;
    }
}

.use-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 55%, white));
    z-index: 1;
}

.use-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        120% 80% at 20% -20%,
        color-mix(in srgb, var(--accent) 22%, transparent),
        transparent 58%
    );
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.use-card:hover::after {
    opacity: 0.85;
}

.use-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 42%, hsl(var(--border)));
    box-shadow: 0 24px 56px hsl(0 0% 0% / 0.45), 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent),
    0 0 64px color-mix(in srgb, var(--accent) 14%, transparent);
}

.use-card--emerald {
    --accent: #06B6D4;
}
.use-card--blue {
    --accent: #0891B2;
}
.use-card--amber {
    --accent: #67E8F9;
}
.use-card--violet {
    --accent: #1A2B4A;
}
.use-card--rose {
    --accent: #0A1628;
}

.use-card__icon {
    position: relative;
    z-index: 2;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 14%, hsl(220 18% 10%));
    border: 1px solid color-mix(in srgb, var(--accent) 28%, hsl(var(--border)));
    box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.04);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

html[data-theme="light"] .use-card__icon {
    background: color-mix(in srgb, var(--accent) 12%, hsl(210 25% 98%));
    border-color: color-mix(in srgb, var(--accent) 22%, hsl(var(--border)));
    box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.95);
}

.use-card:hover .use-card__icon {
    transform: scale(1.06) translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
    box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.06), 0 0 32px color-mix(in srgb, var(--accent) 28%, transparent);
}

.use-card__title {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-display);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.use-card__tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.use-card__tags > span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.35;
    color: hsl(var(--muted-foreground));
    background: hsl(0 0% 0% / 0.22);
    border: 1px solid hsl(var(--border) / 0.45);
    border-radius: 9999px;
    padding: 0.35rem 0.8rem;
    max-width: 100%;
    word-break: break-word;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.use-card:hover .use-card__tags > span {
    border-color: color-mix(in srgb, var(--accent) 22%, hsl(var(--border) / 0.5));
    background: color-mix(in srgb, var(--accent) 8%, hsl(0 0% 0% / 0.25));
}

html[data-theme="light"] .use-card__tags > span {
    background: hsl(var(--secondary));
    border-color: hsl(var(--border));
}

html[data-theme="light"] .use-card:hover .use-card__tags > span {
    border-color: color-mix(in srgb, var(--accent) 25%, hsl(var(--border)));
    background: color-mix(in srgb, var(--accent) 8%, hsl(var(--secondary)));
}

.use-card__tags .tag-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.tag-dot--emerald {
    background: #06B6D4;
}
.tag-dot--blue {
    background: #0891B2;
}
.tag-dot--amber {
    background: #67E8F9;
}
.tag-dot--violet {
    background: #1A2B4A;
}
.tag-dot--rose {
    background: #0A1628;
}

/* Pricing */
.pricing__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .pricing__grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }

    .pricing__grid > .pricing-card {
        width: min(100%, 22rem);
        flex: 0 0 auto;
    }
}

@media (min-width: 900px) {
    .pricing__grid > .pricing-card {
        width: min(100%, 24rem);
    }
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem);
}

.pricing-card--highlight {
    border-color: hsl(var(--primary) / 0.3);
    box-shadow: var(--shadow-glow);
}

.pricing-card__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}

.pricing-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    margin-bottom: 1.25rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card .desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    margin-bottom: 2rem;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--secondary-foreground));
    margin-bottom: 0.75rem;
}

.pricing-card li::before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: hsl(var(--primary));
}

/* Why grid */
.why-grid {
    display: grid;
    gap: 1px;
    background: hsl(var(--border) / 0.3);
    border-radius: 1rem;
    overflow: hidden;
    max-width: 56rem;
    margin-inline: auto;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-cell {
    background: hsl(var(--card));
    padding: clamp(1rem, 3vw, 1.5rem);
    transition: background-color 0.2s;
}

.why-cell:hover {
    background: hsl(var(--primary) / 0.05);
}

.why-cell__inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-cell__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    transition: transform 0.2s, background 0.2s;
}

.why-cell:hover .why-cell__icon {
    background: hsl(var(--primary) / 0.2);
    transform: scale(1.1);
}

.why-cell h3 {
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.why-cell p {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .use-card:hover,
    .use-card:hover .use-card__icon {
        transform: none !important;
    }
}

/* CTA */
.cta {
    text-align: center;
    max-width: 42rem;
    margin-inline: auto;
}

.cta h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta .lead {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid hsl(var(--border));
    padding-block: 2rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copy {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
    .footer__links {
        justify-content: flex-end;
    }
}

.footer__links a:hover {
    color: hsl(var(--primary));
}

/* Content / legal pages */
.content-page {
    padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: clamp(3rem, 6vw, 4rem);
    min-height: 65vh;
}

.content-page .container--narrow {
    max-width: 48rem;
}

.content-prose {
    color: hsl(var(--muted-foreground));
}

.content-prose > h1 {
    font-size: clamp(1.875rem, 4vw, 2.35rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.content-prose > .content-prose__lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: hsl(var(--muted-foreground));
}

.content-prose__meta {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    margin: -0.5rem 0 2rem;
    opacity: 0.9;
}

.content-prose h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 2.25rem 0 0.75rem;
    font-family: var(--font-display);
}

.content-prose h3 {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 1.5rem 0 0.5rem;
}

.content-prose p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.content-prose ul,
.content-prose ol {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
    line-height: 1.65;
}

.content-prose li {
    margin-bottom: 0.5rem;
}

.content-prose li::marker {
    color: hsl(var(--primary));
}

.content-prose a {
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-prose a:hover {
    filter: brightness(1.15);
}

.content-prose strong {
    color: hsl(var(--secondary-foreground));
}

/* About page — distinct layout (hero + TOC + cards) */
.content-page.about-page {
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.about-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.25rem, 4vw, 3rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 1;
    pointer-events: none;
}

.about-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 80% 60% at 15% 20%, hsl(145 72% 50% / 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, hsl(220 40% 40% / 0.08), transparent 50%);
    pointer-events: none;
}

html[data-theme="light"] .about-hero__bg::after {
    background-image: radial-gradient(ellipse 80% 60% at 15% 20%, hsl(152 72% 38% / 0.1), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, hsl(210 40% 50% / 0.06), transparent 50%);
}

.about-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .about-hero__inner {
        grid-template-columns: auto 1fr;
        gap: clamp(1.5rem, 4vw, 2.75rem);
        align-items: stretch;
    }
}

.about-hero__accent {
    display: none;
    width: 4px;
    border-radius: 999px;
    background: var(--gradient-accent);
    box-shadow: var(--shadow-glow);
    min-height: 6.5rem;
    align-self: stretch;
}

@media (min-width: 768px) {
    .about-hero__accent {
        display: block;
    }
}

.about-hero__copy h1 {
    font-size: clamp(2rem, 4.5vw, 2.65rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
    font-family: var(--font-display);
}

.about-hero__lead {
    margin: 0;
    max-width: 40rem;
    font-size: 1.125rem;
    line-height: 1.65;
    color: hsl(var(--muted-foreground));
}

.about-hero__lead a {
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-hero__lead a:hover {
    filter: brightness(1.15);
}

.about-layout {
    display: grid;
    gap: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 56rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 11.5rem minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 3rem);
        align-items: start;
        max-width: 72rem;
    }
}

.about-toc {
    position: relative;
    padding: 1rem 1.125rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border) / 0.85);
    background: hsl(var(--card) / 0.65);
    backdrop-filter: blur(8px);
}

@media (min-width: 1024px) {
    .about-toc {
        position: sticky;
        top: calc(5rem + env(safe-area-inset-top, 0px));
        padding: 1.125rem 1rem;
    }
}

.about-toc__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
}

.about-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

@media (max-width: 1023px) {
    .about-toc__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

.about-toc__list a {
    display: block;
    font-size: 0.875rem;
    line-height: 1.35;
    color: hsl(var(--muted-foreground));
    padding: 0.35rem 0;
    border-radius: calc(var(--radius) - 2px);
    transition: color 0.15s ease, background-color 0.15s ease;
}

@media (max-width: 1023px) {
    .about-toc__list a {
        padding: 0.4rem 0.65rem;
        background: hsl(var(--muted) / 0.45);
        border: 1px solid hsl(var(--border) / 0.5);
    }
}

.about-toc__list a:hover {
    color: hsl(var(--primary));
}

.about-toc__list a:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-card {
    scroll-margin-top: calc(5rem + env(safe-area-inset-top, 0px));
    position: relative;
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid hsl(var(--border) / 0.9);
    background: var(--gradient-card);
    box-shadow: var(--shadow-card);
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--primary) / 0.35));
    border-radius: 3px 0 0 3px;
    opacity: 0.85;
}

.about-card--contact {
    border-color: hsl(var(--primary) / 0.35);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.about-card--contact::before {
    opacity: 1;
    width: 4px;
}

.about-card__head {
    display: flex;
    align-items: baseline;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
    padding-left: 0.35rem;
}

.about-card__index {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: hsl(var(--primary));
    opacity: 0.9;
}

.about-card__title {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    font-weight: 600;
    color: hsl(var(--foreground));
    font-family: var(--font-display);
    margin: 0;
    letter-spacing: -0.02em;
}

.about-card__body.content-prose {
    padding-left: 0.35rem;
}

.about-card__body.content-prose p:last-child {
    margin-bottom: 0;
}

.about-card__body.content-prose ul {
    margin-bottom: 1rem;
}

.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border) / 0.6);
    padding: 1.35rem 0;
}

.faq-item:first-child {
    border-top: 1px solid hsl(var(--border) / 0.6);
}

.faq-item h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
}

.faq-item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* FAQ page — same system as About (hero + TOC + cards) */
.content-page.faq-page {
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.faq-sections {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.faq-page .faq-item {
    scroll-margin-top: calc(5rem + env(safe-area-inset-top, 0px));
    position: relative;
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid hsl(var(--border) / 0.9);
    background: var(--gradient-card);
    box-shadow: var(--shadow-card);
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
    overflow: hidden;
}

.faq-page .faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--primary) / 0.35));
    border-radius: 3px 0 0 3px;
    opacity: 0.85;
}

.faq-page .faq-item--contact {
    border-color: hsl(var(--primary) / 0.35);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.faq-page .faq-item--contact::before {
    opacity: 1;
    width: 4px;
}

.faq-item__head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem 0.85rem;
    margin-bottom: 0.75rem;
    padding-left: 0.35rem;
}

.faq-item__index {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: hsl(var(--primary));
    opacity: 0.9;
    line-height: 1.45;
    padding-top: 0.15rem;
}

.faq-page .faq-item h2 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.faq-page .faq-item p {
    padding-left: 0.35rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

.faq-page .faq-item strong {
    color: hsl(var(--secondary-foreground));
}

.faq-page .faq-item p a {
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-page .faq-item p a:hover {
    filter: brightness(1.15);
}

@media (max-width: 1023px) {
    .faq-page .about-toc__list {
        flex-direction: column;
        flex-wrap: nowrap;
        max-height: min(42vh, 16rem);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 0.35rem;
        padding-right: 0.25rem;
    }

    .faq-page .about-toc__list a {
        white-space: normal;
        line-height: 1.35;
    }
}

.footer .brand {
    text-decoration: none;
}

/* About page — rich visual (hero + bento + timeline) */
.about-rich {
    overflow-x: clip;
}

.about-rich__hero {
    position: relative;
    min-height: min(92vh, 52rem);
    display: flex;
    align-items: flex-end;
    padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.about-rich__hero-media {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-rich__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.about-rich__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsl(var(--background) / 0.2) 0%, hsl(var(--background)) 92%),
    linear-gradient(135deg, hsl(var(--primary) / 0.12), transparent 55%);
}

.about-rich__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.5;
}

.about-rich__orb--a {
    width: min(28rem, 80vw);
    height: min(28rem, 80vw);
    background: hsl(145 72% 50% / 0.2);
    top: 10%;
    right: -10%;
}

.about-rich__orb--b {
    width: min(22rem, 70vw);
    height: min(22rem, 70vw);
    background: hsl(210 70% 45% / 0.15);
    bottom: 25%;
    left: -15%;
}

html[data-theme="light"] .about-rich__orb--a {
    background: hsl(187 73% 47% / 0.14);
}
html[data-theme="light"] .about-rich__orb--b {
    background: hsl(220 60% 50% / 0.1);
}

.about-rich__hero-content {
    position: relative;
    z-index: 2;
    max-width: 48rem;
}

.about-rich__badge {
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
}

.about-rich__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
}

.about-rich__title-line {
    display: block;
}

.about-rich__title-line--muted {
    color: hsl(var(--muted-foreground));
    font-weight: 600;
}

.about-rich__intro {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    margin: 0 0 2rem;
    max-width: 40rem;
}

.about-rich__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 479px) {
    .about-rich__stats {
        grid-template-columns: 1fr;
    }
}

.about-rich__stat {
    padding: 1rem 1.1rem;
    text-align: center;
    border-radius: var(--radius);
}

.about-rich__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--primary));
    line-height: 1.1;
}

.about-rich__stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.35;
}

.about-rich__bento-section .section__header {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.about-rich__bento {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 960px) {
    .about-rich__bento {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.25rem;
        align-items: stretch;
    }

    .about-rich__tile--dashboard {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .about-rich__tile--phones {
        grid-column: 2;
        grid-row: 1;
    }

    .about-rich__tile--quote {
        grid-column: 2;
        grid-row: 2 / span 2;
        align-self: stretch;
    }

    .about-rich__tile--device {
        grid-column: 1;
        grid-row: 3;
    }
}

.about-rich__tile {
    border-radius: 1.25rem;
    overflow: hidden;
    margin: 0;
}

.about-rich__tile--dashboard {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.about-rich__tile-img {
    aspect-ratio: 16 / 10;
    background: hsl(var(--video-placeholder));
    overflow: hidden;
}

.about-rich__tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-rich__tile-img--device {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.about-rich__tile-img--device img {
    width: min(16rem, 70%);
    height: auto;
    object-fit: contain;
}

.about-rich__tile-cap {
    margin: 0;
    padding: 1rem 1.25rem 1.15rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.about-rich__tile-cap--phones {
    border-top: none;
    padding-top: 0.25rem;
    text-align: center;
}

.about-rich__tile--phones {
    background: hsl(var(--card) / 0.5);
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    padding: 1.5rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 12rem;
}

.about-rich__phone {
    width: min(7.5rem, 38vw);
    position: absolute;
    transition: transform 0.35s ease;
}

.about-rich__phone--a {
    left: 12%;
    top: 1.25rem;
    transform: rotate(-8deg);
    z-index: 1;
}

.about-rich__phone--b {
    right: 10%;
    top: 2.25rem;
    transform: rotate(6deg);
    z-index: 2;
}

@media (min-width: 960px) {
    .about-rich__tile--phones {
        min-height: 14rem;
    }

    .about-rich__phone {
        width: min(8.5rem, 42%);
    }

    .about-rich__phone--a {
        left: 8%;
    }

    .about-rich__phone--b {
        right: 6%;
    }
}

@media (max-width: 639px) {
    .about-rich__phone {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: rotate(-4deg);
        margin-bottom: 0.75rem;
    }

    .about-rich__phone--b {
        transform: rotate(4deg);
        margin-top: -2rem;
        margin-left: 15%;
    }

    .about-rich__tile--phones {
        min-height: 0;
        padding-bottom: 1.5rem;
    }
}

.about-rich__tile--quote {
    padding: 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-rich__tile--quote p {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 1rem;
    color: hsl(var(--foreground));
}

.about-rich__tile--quote footer {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    font-style: normal;
}

.about-rich__quote-dots {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.about-rich__quote-dots span {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.6);
}

.about-rich__quote-dots span:nth-child(2) {
    background: hsl(var(--muted-foreground) / 0.5);
}

.about-rich__quote-dots span:nth-child(3) {
    background: hsl(var(--destructive) / 0.45);
}

.about-rich__section-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.75rem;
    letter-spacing: -0.02em;
}

.about-rich__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 40rem;
}

.about-rich__timeline::before {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, hsl(var(--primary) / 0.4), hsl(var(--border)));
    border-radius: 2px;
}

.about-rich__timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    padding: 0 0 2rem 0;
    position: relative;
}

.about-rich__timeline-step:last-child {
    padding-bottom: 0;
}

.about-rich__timeline-num {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: hsl(var(--muted-foreground));
    position: relative;
    z-index: 1;
}

.about-rich__timeline-step--accent .about-rich__timeline-num {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
    box-shadow: 0 0 20px hsl(var(--primary) / 0.25);
}

.about-rich__timeline-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
}

.about-rich__timeline-step p {
    margin: 0;
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.about-rich__values-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .about-rich__values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-rich__value {
    padding: 1.5rem 1.35rem;
    border-radius: 1.125rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.about-rich__value:hover {
    border-color: hsl(var(--primary) / 0.25);
    box-shadow: var(--shadow-glow);
}

.about-rich__value-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius);
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.about-rich__value h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
}

.about-rich__value p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
}

.about-rich__proof-inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-rich__proof-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.about-rich__proof-figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 1.25rem;
}

.about-rich__proof-img {
    aspect-ratio: 4 / 3;
    background: hsl(var(--video-placeholder));
}

.about-rich__proof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-rich__proof-cap {
    padding: 0.85rem 1.15rem 1rem;
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.about-rich__proof-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

.about-rich__proof-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: hsl(var(--muted-foreground));
    margin: 0 0 1.5rem;
}

.about-rich__proof-lead a {
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-rich__closing {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 40rem;
    margin-inline: auto;
}

.about-rich__closing-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.about-rich__closing-lead {
    color: hsl(var(--muted-foreground));
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .about-rich__phone {
        transition: none;
    }

    .about-rich__tile--phones .about-rich__phone--a,
    .about-rich__tile--phones .about-rich__phone--b {
        transform: rotate(0deg);
    }
}

.text-center {
    text-align: center !important;
}





.card {
    background: var(--card-bg);
    width: 100%;
    max-width: 800px;
    border-radius: 32px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Diagram Styles --- */
.diagram-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

/* Connecting Lines */
.line {
    position: absolute;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
    height: 2px;
    z-index: 1;
}

.line-left {
    left: 150px;
    width: 80px;
    background: linear-gradient(90deg, var(--brand-blue), transparent);
    box-shadow: 0 0 10px var(--brand-blue);
}

.line-right {
    right: 100px;
    width: 120px;
    background: linear-gradient(90deg, var(--brand-blue), transparent);
    box-shadow: 0 0 10px var(--brand-blue);
}

/* QR Center - Enhanced Modern Design */
.qr-container {
    position: relative;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(224, 42, 255, 0.05));
    border: 2px solid transparent;
    border-radius: 24px;
    background-clip: padding-box;
    z-index: 2;
}

.qr-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
}

.qr-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000, #1a1a2e);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.qr-img {
    width: 70%;
    filter: invert(1) brightness(1.2) contrast(1.1);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.qr-box:hover .qr-img {
    transform: scale(1.05);
}

.scan-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
    box-shadow: 0 0 20px var(--brand-blue);
    animation: scan 2.5s infinite ease-in-out;
}

@keyframes scan {
    0%, 100% { top: 0; opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { top: 100%; }
}

.check-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--card-bg);
    border: 2px solid var(--brand-blue);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Left Pill */
.user-pill {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.user-icon {
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar {
    width: 70px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
    box-shadow: 0 0 15px var(--brand-blue);
    animation: progress 3s infinite ease-in-out;
}

@keyframes progress {
    0%, 100% { width: 70%; }
    50% { width: 85%; }
}

/* Assets Column */
.assets-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 2;
    position: relative;
}

.asset-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.asset-item:hover {
    transform: translateY(-2px);
}

.asset-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(224, 42, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgb(4, 34, 65);
}

.eth-main .asset-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 212, 255, 0.1));
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.asset-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-slate);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.asset-base {
    width: 14px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* --- Content Styles --- */
.title {
    font-size: 28px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.description {
    color: var(--text-slate);
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.growth-text {
    font-weight: bold;
    color: var(--brand-purple);
    font-size: 18px;
}

.sub-text {
    color: var(--text-slate);
    font-size: 12px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .diagram-area {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .user-pill {
        order: 1;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .qr-container {
        order: 2;
    }

    .assets-column {
        order: 3;
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }

    .line {
        display: none;
    }

    .title {
        font-size: 24px;
    }

    .description {
        font-size: 13px;
    }

    .footer-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .main-container {
        padding: 15px;
    }

    .qr-box {
        width: 80px;
        height: 80px;
    }

    .qr-container {
        padding: 20px;
    }

    .assets-column {
        gap: 20px;
    }

    .asset-icon {
        width: 36px;
        height: 36px;
    }

    .eth-main .asset-icon {
        width: 44px;
        height: 44px;
    }

    .title {
        font-size: 20px;
    }

    .description {
        font-size: 12px;
    }

    .growth-text {
        font-size: 16px;
    }

    .sub-text {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .card {
        padding: 25px 15px;
    }

    .qr-box {
        width: 70px;
        height: 70px;
    }

    .assets-column {
        gap: 15px;
    }

    .asset-item {
        transform: scale(0.9);
    }
}


.col1 {
    flex: 0 0 45%;
    padding:15px;
}

.col2 {
    flex: 0 0 55%;
    padding:15px;
}

/* Tablet and below */
@media (max-width: 1024px) {
    .col2{
        display: none;
    }

    .col1 {
        flex: 0 0 100%;
    }
}
