        :root {
            color-scheme: light;
            --apple-bg: #fbfbfd;
            --apple-bg-alt: #000;
            --apple-text: #1d1d1f;
            --apple-text-alt: #f5f5f7;
            --apple-text-muted: #6e6e73;
            --apple-link: #0066cc;
            --apple-accent: #E92960;
            --font: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
            --section-padding: clamp(48px, 8vw, 80px);
            --section-x: clamp(24px, 5vw, 48px);
            --content-width: 980px;
            --block-width: 1100px;
            --space-lg: 1.5rem;
            --space-md: 1rem;
            --space-xl: 2rem;
            --transition: 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }

        body {
            margin: 0;
            font: 17px/1.5 var(--font);
            color: var(--apple-text);
            background: var(--apple-bg);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Floating nav — liquid glass Apple effect */
        .nav-wrapper {
            position: fixed;
            top: var(--space-lg);
            left: 50%;
            transform: translateX(-50%);
            width: min(calc(var(--block-width) + 64px), calc(100% - 16px));
            max-width: calc(100vw - 16px);
            z-index: 100;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-md) var(--space-xl);
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            backdrop-filter: saturate(180%) blur(24px);
            -webkit-backdrop-filter: saturate(180%) blur(24px);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                0 4px 24px -4px rgba(0, 0, 0, 0.08),
                0 12px 48px -12px rgba(0, 0, 0, 0.12);
        }

        .nav:hover {
            background: rgba(255, 255, 255, 0.55);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.35) inset,
                0 4px 24px -4px rgba(0, 0, 0, 0.08),
                0 20px 56px -16px rgba(0, 0, 0, 0.16);
        }

        /* Dark glass when nav is over dark section */
        .nav-wrapper.nav-dark .nav {
            background: rgba(0, 0, 0, 0.35);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 4px 24px -4px rgba(0, 0, 0, 0.3),
                0 12px 48px -12px rgba(0, 0, 0, 0.4);
        }

        .nav-wrapper.nav-dark .nav:hover {
            background: rgba(0, 0, 0, 0.45);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.12) inset,
                0 4px 24px -4px rgba(0, 0, 0, 0.3),
                0 20px 56px -16px rgba(0, 0, 0, 0.5);
        }

        .nav-wrapper.nav-dark .nav-logo {
            color: var(--apple-text-alt);
        }

        .nav-wrapper.nav-dark .nav-cta--apple img {
            filter: invert(1) brightness(1.1);
        }

        .nav {
            transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--apple-text);
            font-size: 18px;
            font-weight: 600;
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }

        .nav-logo img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }

        .nav-logo:focus-visible {
            outline: 2px solid var(--apple-accent);
            outline-offset: 4px;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            --nav-badge-h: 40px;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: var(--nav-badge-h);
            line-height: 0;
            flex-shrink: 0;
            transition: opacity var(--transition);
            cursor: pointer;
        }

        .nav-cta:hover { opacity: 0.85; }
        .nav-cta:focus-visible { outline: 2px solid var(--apple-accent); outline-offset: 4px; }

        .nav-cta img {
            display: block;
            height: var(--nav-badge-h);
            width: auto;
            object-fit: contain;
        }

        .nav-cta--apple {
            width: calc(var(--nav-badge-h) * 119.66407 / 40);
        }

        .nav-cta--play {
            width: calc(var(--nav-badge-h) * 238.96 / 70.87);
            position: relative;
        }

        .nav-cta--play .nav-play-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            height: var(--nav-badge-h);
            width: auto;
            max-width: 100%;
        }

        .nav-cta--play .nav-play-badge--light {
            display: none;
        }

        .nav-wrapper.nav-dark .nav-cta--play .nav-play-badge--dark {
            display: none;
        }

        .nav-wrapper.nav-dark .nav-cta--play .nav-play-badge--light {
            display: block;
        }

        .nav-pills {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex: 1;
            padding: 0 var(--space-lg);
        }

        .nav-pill {
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.3);
            color: var(--apple-text);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: background var(--transition), border-color var(--transition), color var(--transition);
            cursor: pointer;
        }

        .nav-pill:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .nav-pill.active {
            background: var(--apple-text);
            border-color: var(--apple-text);
            color: #fff;
        }

        .nav-wrapper.nav-dark .nav-pill {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: var(--apple-text-alt);
        }

        .nav-wrapper.nav-dark .nav-pill:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .nav-wrapper.nav-dark .nav-pill.active {
            background: #fff;
            border-color: #fff;
            color: #000;
        }

        .nav-hamburger {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border: none;
            background: transparent;
            cursor: pointer;
            border-radius: 12px;
            color: var(--apple-text);
            transition: background 0.2s ease;
        }

        .nav-hamburger:hover {
            background: rgba(0, 0, 0, 0.06);
        }

        .nav-wrapper.nav-dark .nav-hamburger {
            color: var(--apple-text-alt);
        }

        .nav-wrapper.nav-dark .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-hamburger svg { width: 24px; height: 24px; }

        .nav-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 8px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 16px;
            backdrop-filter: saturate(180%) blur(24px);
            -webkit-backdrop-filter: saturate(180%) blur(24px);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                0 8px 32px -8px rgba(0, 0, 0, 0.12),
                0 16px 48px -16px rgba(0, 0, 0, 0.08);
            flex-direction: column;
            gap: 4px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        }

        .nav-dropdown.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-wrapper.nav-dark .nav-dropdown {
            background: rgba(0, 0, 0, 0.35);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 8px 32px -8px rgba(0, 0, 0, 0.3),
                0 16px 48px -16px rgba(0, 0, 0, 0.2);
        }

        .nav-dropdown .nav-pill {
            display: block;
            width: 100%;
            padding: 14px 18px;
            text-align: left;
            border-radius: 12px;
            font-size: 16px;
        }

        .nav-dropdown .nav-pill:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .nav-wrapper.nav-dark .nav-dropdown .nav-pill:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        @media (max-width: 900px) {
            .nav-pills { display: none; }
            .nav-hamburger { display: flex; }
            .nav-dropdown { display: flex; }

            .nav-logo span {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
            }

            .nav-logo { gap: 0; }
            .nav-right { gap: 8px; --nav-badge-h: 36px; }
        }

        @media (max-width: 640px) {
            .nav-wrapper { top: var(--space-md); width: calc(100% - 16px); max-width: calc(100vw - 16px); }
            .nav { padding: 10px 12px; }
            .nav-left { gap: 8px; }
            .nav-logo img { width: 32px; height: 32px; }
            .nav-hamburger { width: 40px; height: 40px; }
            .nav-right { gap: 8px; --nav-badge-h: 34px; }
        }

        @media (max-width: 380px) {
            .nav { padding: 8px 10px; }
            .nav-right { --nav-badge-h: 32px; }
        }

        /* Hero — Apple-style large headline */
        .hero {
            padding: 100px var(--section-x) var(--section-padding);
            text-align: center;
        }

        @media (min-width: 768px) {
            .hero { padding-top: 120px; }
        }

        @media (max-width: 640px) {
            .hero { padding-top: 100px; }
        }

        .hero-eyebrow {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--apple-accent);
            margin-bottom: 12px;
        }

        .hero h1 {
            margin: 0 0 12px;
            font-size: clamp(40px, 8vw, 80px);
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: -0.025em;
            color: var(--apple-text);
        }

        .hero-tagline {
            font-size: clamp(21px, 3vw, 28px);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--apple-text-muted);
            margin: 0 0 40px;
            max-width: min(720px, 100%);
            margin-left: auto;
            margin-right: auto;
            line-height: 1.25;
        }

        .hero-device {
            margin-top: 48px;
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-device .phones-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(24px, 4vw, 40px);
            flex-wrap: wrap;
        }

        .hero-device .phones-row-rest {
            display: contents;
        }

        .hero-device .phones-row img,
        .hero-device .phones-row .phones-row-rest img {
            width: calc((100% - 2 * clamp(24px, 4vw, 40px)) / 3);
            max-width: 360px;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .hero-phones-carousel {
            display: none;
        }

        .design-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(32px, 5vw, 48px);
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto 48px;
            width: 100%;
        }

        .design-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 36px;
        }

        .design-column img {
            width: 100%;
            max-width: 320px;
            height: auto;
            object-fit: contain;
            flex-shrink: 0;
        }

        .design-column .design-card {
            width: 100%;
            flex: 1;
            min-height: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }


        /* Get the highlights — Apple feature strip */
        .highlights {
            padding: var(--section-padding) var(--section-x);
            background: var(--apple-bg);
        }

        .highlights-title {
            font-size: 40px;
            font-weight: 600;
            letter-spacing: -0.025em;
            text-align: center;
            margin: 0 0 48px;
            color: var(--apple-text);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            max-width: var(--block-width);
            margin: 0 auto;
            padding: 0;
        }

        .highlight-item {
            text-align: center;
            padding: 20px 16px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            transition: all 0.25s ease;
            cursor: default;
        }

        .highlight-item:hover {
            background: rgba(255, 255, 255, 0.85);
            transform: translateY(-2px);
        }

        .highlight-item .icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            color: var(--apple-accent);
        }

        .highlight-item .icon svg { width: 100%; height: 100%; }

        .highlight-item h3 {
            margin: 0 0 8px;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .highlight-item p {
            margin: 0;
            font-size: 14px;
            color: var(--apple-text-muted);
            line-height: 1.4;
        }

        /* Design section — Apple alternating */
        .section-dark {
            background: var(--apple-bg-alt);
            color: var(--apple-text-alt);
        }

        .section-dark h2 {
            color: var(--apple-text-alt);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.68) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
        }

        .section-dark h3 { color: var(--apple-text-alt); }

        .section-dark p { color: rgba(255, 255, 255, 0.8); }

        .design-section {
            padding: var(--section-padding) var(--section-x);
        }

        .design-section h2 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 600;
            letter-spacing: -0.025em;
            text-align: center;
            margin: 0 0 48px;
        }

        .design-section .design-device {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }


        .design-card {
            padding: 32px 28px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            transition: all 0.25s ease;
        }

        .design-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.22);
        }

        .design-card .icon {
            width: 44px;
            height: 44px;
            margin-bottom: 16px;
        }

        .design-card .icon svg,
        .design-card .icon i {
            width: 100%;
            height: 100%;
        }

        .design-card-icon-terminal .icon { color: #00c853; }
        .design-card-icon-install .icon { color: #8b5cf6; }
        .design-card-icon-files .icon { color: #0088ff; }
        .design-card-icon-gpio .icon { color: #ff9f0a; }
        .design-card-icon-agent .icon { color: #64d2ff; }
        .design-card-icon-containers .icon { color: #30d158; }

        .design-card h3 {
            margin: 0 0 12px;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .design-card p {
            margin: 0;
            font-size: 15px;
            line-height: 1.5;
        }

        /* Reviews — card-based redesign */
        .reviews-section {
            min-height: min(70vh, 720px);
            padding: var(--section-padding) var(--section-x);
            background: linear-gradient(180deg, var(--apple-bg) 0%, #f5f5f9 50%, var(--apple-bg) 100%);
        }

        .reviews-header {
            text-align: center;
            margin-bottom: clamp(48px, 6vw, 72px);
        }

        .reviews-section h2 {
            font-size: clamp(36px, 5.5vw, 56px);
            font-weight: 600;
            letter-spacing: -0.03em;
            margin: 0 0 20px;
            color: var(--apple-text);
        }

        .reviews-badge {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 24px 36px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.04),
                0 8px 24px -8px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .reviews-app-icon {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .reviews-stars {
            display: flex;
            gap: 4px;
            color: #f59e0b;
        }

        .reviews-stars svg { width: 28px; height: 28px; fill: currentColor; }

        .reviews-rating {
            font-size: 19px;
            font-weight: 600;
            color: var(--apple-text);
            letter-spacing: -0.02em;
        }

        .carousel {
            max-width: 760px;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide {
            flex: 0 0 100%;
            min-width: 0;
            padding: 0 24px;
            overflow: visible;
        }

        .review-card {
            background: #fff;
            border-radius: 24px;
            padding: clamp(44px, 6vw, 60px) clamp(44px, 6vw, 60px) clamp(36px, 5vw, 52px);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.04),
                0 4px 24px -4px rgba(0, 0, 0, 0.08),
                0 24px 48px -12px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.06);
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: visible;
        }

        .carousel-slide blockquote {
            margin: 0 0 24px;
            padding-left: 56px;
            position: relative;
            font-size: clamp(20px, 2.5vw, 24px);
            font-weight: 400;
            line-height: 1.55;
            font-style: italic;
            color: var(--apple-text);
        }

        .carousel-slide blockquote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 2.4em;
            line-height: 1;
            color: var(--apple-accent);
            opacity: 0.45;
            font-family: Georgia, serif;
            display: block;
        }

        .carousel-slide cite {
            display: block;
            font-size: 16px;
            font-style: normal;
            color: var(--apple-text-muted);
            font-weight: 500;
        }

        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            margin-top: 48px;
        }

        .carousel-btn {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 50%;
            background: #fff;
            color: var(--apple-text);
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .carousel-btn:hover {
            background: #f8f8fa;
            border-color: rgba(0, 0, 0, 0.18);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .carousel-btn svg { width: 20px; height: 20px; }

        .carousel-dots {
            display: flex;
            gap: 12px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.18);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .carousel-dot:hover { background: rgba(0, 0, 0, 0.3); }
        .carousel-dot.active { background: var(--apple-accent); transform: scale(1.2); }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            max-width: 980px;
            margin: 0 auto;
        }

        .trust-card {
            padding: 32px 28px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 249, 250, 0.98) 100%);
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.04),
                0 10px 28px -12px rgba(0, 0, 0, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .trust-card .icon {
            width: 44px;
            height: 44px;
            margin-bottom: 16px;
            color: var(--apple-accent);
        }

        .trust-card .icon svg,
        .trust-card .icon i {
            width: 100%;
            height: 100%;
        }

        .trust-card h3 {
            margin: 0 0 10px;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--apple-text);
        }

        .trust-card p {
            margin: 0;
            font-size: 15px;
            line-height: 1.55;
            color: var(--apple-text-muted);
        }

        .trust-action {
            display: flex;
            justify-content: center;
            margin-top: 32px;
        }

        .trust-action a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.12);
            background: rgba(255, 255, 255, 0.75);
            color: var(--apple-text);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: -0.01em;
            transition: background var(--transition), border-color var(--transition), transform var(--transition);
            cursor: pointer;
        }

        .trust-action a:hover {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(0, 0, 0, 0.16);
            transform: translateY(-1px);
        }

        .trust-action a:focus-visible {
            outline: 2px solid var(--apple-accent);
            outline-offset: 4px;
        }

        .trust-action a svg {
            width: 18px;
            height: 18px;
        }

        /* Links section — Apple-style */
        .links-section {
            padding: var(--section-padding) var(--section-x);
            background: var(--apple-bg);
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            max-width: 980px;
            margin: 0 auto;
        }

        .link-card {
            display: block;
            padding: 32px 28px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .link-card:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .link-card .icon {
            width: 44px;
            height: 44px;
            margin-bottom: 20px;
            color: var(--apple-accent);
        }

        .link-card .icon svg { width: 100%; height: 100%; }

        .link-card h3 {
            margin: 0 0 8px;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .link-card p {
            margin: 0;
            font-size: 15px;
            color: var(--apple-text-muted);
            line-height: 1.5;
        }

        /* CTA */
        .cta-section {
            min-height: min(50vh, 480px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: clamp(80px, 12vw, 140px) var(--section-x);
            text-align: center;
            background: var(--apple-bg-alt);
            color: var(--apple-text-alt);
        }

        .cta-logo {
            width: 96px;
            height: 96px;
            margin: 0 auto 32px;
            display: block;
            object-fit: contain;
        }

        .cta-section h2 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 600;
            letter-spacing: -0.025em;
            margin: 0 0 48px;
            color: var(--apple-text-alt);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.68) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
        }

        .cta-section p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 40px;
        }

        .cta-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-badge {
            display: inline-block;
            cursor: pointer;
            transition: opacity var(--transition);
        }

        .cta-badge:hover {
            opacity: 0.85;
        }

        .cta-badge img { height: 56px; width: auto; }

        .footer {
            padding: 32px var(--section-x);
            background: var(--apple-bg);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .footer-inner {
            max-width: 980px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 16px;
        }

        .footer-top {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
        }

        .footer-copy {
            margin: 0;
            font-size: 14px;
            color: var(--apple-text-muted);
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--apple-text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }

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

        .footer-badges {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
            justify-content: flex-start;
        }

        .footer-badge {
            display: inline-flex;
            line-height: 0;
            width: 175px;
            height: 49px;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .footer-badge img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-width: none;
        }

        .footer-badge--text {
            display: inline-flex;
            gap: 10px;
            background-color: #fff;
            color: #000;
            padding: 8px 12px;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid #E8E8E8;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            text-align: left;
        }

        .footer-badge--text svg {
            width: 28px;
            height: 28px;
            flex: 0 0 28px;
        }

        .footer-badge--text > div {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.1;
        }

        .waitlist-modal {
            position: fixed;
            inset: 0;
            z-index: 250;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .waitlist-modal.is-open {
            display: flex;
        }

        .waitlist-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: saturate(160%) blur(18px);
            -webkit-backdrop-filter: saturate(160%) blur(18px);
        }

        .waitlist-dialog {
            position: relative;
            width: min(640px, calc(100vw - 48px));
            max-height: calc(100vh - 96px);
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 24px 72px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06);
            transform: translateY(12px) scale(0.98);
            opacity: 0;
            transition: transform 220ms ease, opacity 220ms ease;
        }

        .waitlist-modal.is-open .waitlist-dialog {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .waitlist-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.06);
            color: #1d1d1f;
            display: grid;
            place-items: center;
            cursor: pointer;
            z-index: 10;
            transition: background var(--transition);
        }

        .waitlist-close:hover {
            background: rgba(0, 0, 0, 0.12);
        }

        .waitlist-close:focus-visible {
            outline: 2px solid var(--apple-accent);
            outline-offset: 2px;
        }

        .waitlist-close svg {
            width: 20px;
            height: 20px;
        }

        .waitlist-embed {
            width: 100%;
            max-height: calc(100vh - 96px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding-top: 48px;
        }

        .waitlist-embed iframe {
            display: block;
            width: 100%;
            height: 780px;
            border: 0;
        }

        body.waitlist-open {
            overflow: hidden;
            position: fixed;
            left: 0;
            right: 0;
            width: 100%;
        }

        #overview,
        #features,
        #section-dark,
        #reviews,
        #faq,
        #android,
        #download {
            scroll-margin-top: 90px;
        }

        @media (max-width: 1024px) {
            .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 900px) {
            .design-columns {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        @media (max-width: 734px) {
            .hero { padding-top: 100px; }
            .hero-phones-desktop { display: none !important; }
            .hero-phones-carousel {
                display: block;
                overflow: hidden;
                max-width: 100%;
            }
            .hero-carousel-track {
                display: flex;
                transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            .hero-carousel-slide {
                flex: 0 0 100%;
                min-width: 0;
                padding: 0 16px;
                display: flex;
                justify-content: center;
            }
            .hero-carousel-slide img {
                width: 100%;
                max-width: 280px;
                height: auto;
                object-fit: contain;
            }
            .hero-carousel-nav {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
                margin-top: 24px;
            }
            .hero-carousel-btn {
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid rgba(0, 0, 0, 0.12);
                border-radius: 50%;
                background: #fff;
                color: var(--apple-text);
                cursor: pointer;
                transition: all 0.2s ease;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            }
            .hero-carousel-btn:hover {
                background: #f8f8fa;
                border-color: rgba(0, 0, 0, 0.18);
            }
            .hero-carousel-btn svg { width: 20px; height: 20px; }
            .hero-carousel-dots {
                display: flex;
                gap: 10px;
            }
            .hero-carousel-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.2);
                border: none;
                padding: 0;
                cursor: pointer;
                transition: all 0.25s ease;
            }
            .hero-carousel-dot.active { background: var(--apple-accent); }
            .cta-section { min-height: 45vh; padding: 60px var(--section-x); }
            .cta-logo { width: 80px; height: 80px; margin-bottom: 24px; }
            .cta-section h2 { font-size: 32px; }
            .cta-section p { font-size: 19px; margin-bottom: 32px; }
            .cta-badge img { height: 48px; }
            .highlights-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }
            .highlight-item { padding: 16px 12px; }
            .highlight-item h3 { font-size: 15px; }
            .highlight-item p { font-size: 13px; }
        }

        @media (max-width: 480px) {
            :root { --section-x: 20px; }
            .hero h1 { font-size: 32px; }
            .hero-tagline { font-size: 18px; }
            .hero-carousel-slide img { max-width: 260px; }
            .highlights-grid { grid-template-columns: 1fr; }
            .design-card { padding: 24px 20px; }
            .design-card h3 { font-size: 18px; }
            .design-card p { font-size: 14px; }
            .review-card { padding: 32px 24px; }
            .carousel-slide blockquote { padding-left: 44px; font-size: 18px; }
            .reviews-badge { padding: 16px 24px; }
            .reviews-app-icon { width: 48px; height: 48px; }
            .footer { text-align: left; }
            .footer-top { justify-content: flex-start; }
            .waitlist-modal { padding: 14px; }
            .waitlist-dialog { width: calc(100vw - 28px); max-height: calc(100vh - 28px); border-radius: 16px; }
            .waitlist-embed { max-height: calc(100vh - 28px); padding-top: 44px; }
            .cookie-consent-inner { flex-direction: column; align-items: stretch; }
            .cookie-consent-actions { width: 100%; flex-direction: column; }
            .cookie-btn { width: 100%; justify-content: center; }
        }

        /* Cookie consent — glass bar, EU/US-aligned choices */
        .cookie-consent {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 199;
            padding: 12px var(--section-x) calc(12px + env(safe-area-inset-bottom, 0px));
            pointer-events: none;
            visibility: hidden;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
        }

        @media (prefers-reduced-motion: reduce) {
            .cookie-consent { transition: none; }
        }

        .cookie-consent.cookie-consent--open {
            pointer-events: auto;
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        body.has-cookie-banner {
            padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
        }

        @media (min-width: 768px) {
            body.has-cookie-banner { padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }
        }

        .cookie-consent-inner {
            max-width: var(--block-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px 24px;
            padding: 18px 22px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            backdrop-filter: saturate(180%) blur(24px);
            -webkit-backdrop-filter: saturate(180%) blur(24px);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                0 -4px 32px rgba(0, 0, 0, 0.08),
                0 12px 40px -12px rgba(0, 0, 0, 0.12);
        }

        .cookie-consent-text {
            flex: 1 1 280px;
            min-width: 0;
            font-size: 14px;
            line-height: 1.5;
            color: var(--apple-text);
        }

        .cookie-consent-text strong {
            display: block;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
            color: var(--apple-text);
        }

        .cookie-consent-text a {
            color: var(--apple-link);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .cookie-consent-text a:hover {
            opacity: 0.85;
        }

        .cookie-consent-ccpa {
            display: block;
            margin-top: 8px;
            font-size: 13px;
            color: var(--apple-text-muted);
        }

        .cookie-consent-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
        }

        .cookie-btn {
            appearance: none;
            font: inherit;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: -0.01em;
            padding: 10px 18px;
            min-height: 44px;
            border-radius: 999px;
            cursor: pointer;
            transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cookie-btn-secondary {
            border: 1.5px solid rgba(0, 0, 0, 0.18);
            background: rgba(255, 255, 255, 0.85);
            color: var(--apple-text);
        }

        .cookie-btn-secondary:hover {
            background: rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.28);
        }

        .cookie-btn-primary {
            border: 1.5px solid transparent;
            background: var(--apple-accent);
            color: #fff;
        }

        .cookie-btn-primary:hover {
            opacity: 0.92;
            filter: brightness(1.02);
        }

        .cookie-btn:focus-visible {
            outline: 2px solid var(--apple-accent);
            outline-offset: 3px;
        }

        .cookie-manage-wrap {
            width: 100%;
            flex-basis: 100%;
            margin-top: 4px;
        }

        .cookie-manage-toggle {
            background: none;
            border: none;
            padding: 6px 0;
            font: inherit;
            font-size: 13px;
            font-weight: 600;
            color: var(--apple-link);
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .cookie-manage-toggle:hover {
            opacity: 0.85;
        }

        .cookie-manage-toggle:focus-visible {
            outline: 2px solid var(--apple-accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .cookie-details {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .cookie-details[hidden] {
            display: none !important;
        }

        .cookie-details-intro {
            font-size: 13px;
            color: var(--apple-text-muted);
            margin: 0 0 12px;
        }

        .cookie-category {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 12px;
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
        }

        .cookie-cat-title {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--apple-text);
        }

        .cookie-cat-desc {
            display: block;
            font-size: 12px;
            color: var(--apple-text-muted);
            margin-top: 4px;
            line-height: 1.45;
        }

        .cookie-cat-badge {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--apple-text-muted);
            white-space: nowrap;
            padding-top: 2px;
        }

        .cookie-switch {
            position: relative;
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            cursor: pointer;
        }

        .cookie-switch input {
            position: absolute;
            opacity: 0;
            width: 48px;
            height: 28px;
            margin: 0;
            cursor: pointer;
        }

        .cookie-switch-ui {
            width: 48px;
            height: 28px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.12);
            transition: background var(--transition);
            position: relative;
        }

        .cookie-switch-ui::after {
            content: "";
            position: absolute;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
            top: 3px;
            left: 3px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            transition: transform var(--transition);
        }

        .cookie-switch input:checked + .cookie-switch-ui {
            background: var(--apple-accent);
        }

        .cookie-switch input:checked + .cookie-switch-ui::after {
            transform: translateX(20px);
        }

        .cookie-switch input:focus-visible + .cookie-switch-ui {
            outline: 2px solid var(--apple-accent);
            outline-offset: 3px;
        }

        .cookie-save-wrap {
            margin-top: 8px;
        }

        .faq-section {
            padding: var(--section-padding) var(--section-x);
            background: #f5f5f9;
        }

        .faq-section h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 600;
            letter-spacing: -0.025em;
            text-align: center;
            margin: 0 0 12px;
            color: var(--apple-text);
        }

        .faq-intro {
            text-align: center;
            font-size: 19px;
            color: var(--apple-text-muted);
            max-width: 640px;
            margin: 0 auto 40px;
        }

        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: grid;
            gap: 12px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            overflow: hidden;
        }

        .faq-item summary {
            padding: 18px 22px;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: -0.02em;
            cursor: pointer;
            list-style: none;
            color: var(--apple-text);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

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

        .faq-item summary::after {
            content: "+";
            font-size: 20px;
            font-weight: 500;
            line-height: 1;
            color: var(--apple-text-muted);
            display: grid;
            place-items: center;
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            margin-left: auto;
        }

        .faq-item[open] summary::after { content: "−"; }

        .faq-item p {
            margin: 0;
            padding: 0 22px 18px;
            font-size: 15px;
            line-height: 1.55;
            color: var(--apple-text-muted);
        }

        .faq-item a {
            color: var(--apple-link);
        }

        .android-section {
            padding: var(--section-padding) var(--section-x);
            background: #ffffff;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .android-header {
            max-width: var(--content-width);
            margin: 0 auto;
        }

        .android-section .hero-eyebrow {
            margin-bottom: 12px;
        }

        .android-section h2 {
            margin: 0 0 16px;
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 600;
            letter-spacing: -0.025em;
            color: var(--apple-text);
        }

        .android-accent {
            color: #33A752;
        }

        .android-intro {
            max-width: 560px;
            margin: 0 auto;
            font-size: clamp(19px, 2.5vw, 22px);
            line-height: 1.45;
            color: var(--apple-text-muted);
        }

        .android-video-wrap {
            max-width: 420px;
            margin: 48px auto 0;
        }

        .android-video {
            display: block;
            width: 100%;
            height: auto;
            border: 0;
            background: transparent;
        }

        .android-actions {
            margin-top: 36px;
            display: flex;
            justify-content: center;
        }

        .android-notify {
            appearance: none;
            font: inherit;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 24px;
            min-height: 48px;
            border-radius: 999px;
            border: 1.5px solid transparent;
            background: var(--apple-accent);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.01em;
            cursor: pointer;
            transition: opacity var(--transition), transform var(--transition);
        }

        .android-notify:hover {
            opacity: 0.92;
            transform: translateY(-1px);
        }

        .android-notify:focus-visible {
            outline: 2px solid var(--apple-accent);
            outline-offset: 4px;
        }

        @media (max-width: 734px) {
            .android-video-wrap { max-width: min(320px, 88vw); margin-top: 40px; }
            .android-actions { margin-top: 28px; }
        }

        /* Editorial refinement */
        main { overflow-x: hidden; width: 100%; max-width: 100%; }

        .hero {
            position: relative;
            isolation: isolate;
            min-height: 880px;
            padding-top: clamp(150px, 15vw, 210px);
            padding-bottom: clamp(88px, 12vw, 160px);
            background:
                radial-gradient(circle at 50% 33%, rgba(233, 41, 96, 0.14), transparent 25rem),
                radial-gradient(circle at 13% 55%, rgba(95, 90, 255, 0.10), transparent 23rem),
                linear-gradient(180deg, #fff 0%, #fbfbfd 78%, #f5f3f7 100%);
        }

        .hero::after {
            content: "";
            position: absolute;
            z-index: -1;
            width: min(86vw, 980px);
            height: 360px;
            left: 50%;
            bottom: 4%;
            transform: translateX(-50%);
            border-radius: 50%;
            background: radial-gradient(ellipse, rgba(29, 29, 31, 0.14), transparent 67%);
            filter: blur(14px);
            pointer-events: none;
        }

        .hero-eyebrow { letter-spacing: 0.15em; margin-bottom: 20px; }

        .hero h1 {
            max-width: 1040px;
            margin: 0 auto 22px;
            font-size: clamp(3.25rem, 7.2vw, 7rem);
            font-weight: 600;
            line-height: 0.93;
            letter-spacing: -0.073em;
            text-wrap: balance;
        }

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

        .hero-tagline {
            max-width: 760px;
            margin-bottom: 18px;
            font-size: clamp(1.15rem, 2.2vw, 1.55rem);
            font-weight: 500;
            line-height: 1.3;
        }

        .hero-copy {
            max-width: 610px;
            margin: 0 auto;
            color: var(--apple-text-muted);
            font-size: 17px;
            line-height: 1.55;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin: 30px auto 0;
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 50px;
            padding: 0 24px;
            border-radius: 999px;
            background: #1d1d1f;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.02em;
            text-decoration: none;
            box-shadow: 0 12px 24px -12px rgba(29, 29, 31, 0.45);
            transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease;
        }

        .hero-button svg,
        .hero-button i {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .hero-button:hover { transform: translateY(-3px); background: #000; box-shadow: 0 18px 32px -14px rgba(29, 29, 31, 0.5); }
        .hero-button:focus-visible { outline: 2px solid var(--apple-accent); outline-offset: 4px; }

        .hero-button--quiet { background: rgba(255, 255, 255, 0.68); color: var(--apple-text); box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.12); }
        .hero-button--quiet:hover { background: #fff; }

        .hero-device { margin-top: clamp(54px, 7vw, 86px); }
        .hero-device .phones-row { gap: clamp(14px, 3vw, 34px); align-items: center; }
        .hero-device .phones-row img { filter: none; }
        .hero-device .phones-row-main { transform: none; }

        .highlights, .design-section, .reviews-section, .faq-section, .android-section, .links-section { padding-top: clamp(110px, 13vw, 180px); padding-bottom: clamp(110px, 13vw, 180px); }
        .highlights { background: #fbfbfd; }
        .highlights-title, .design-section h2, .reviews-section h2, .faq-section h2, .android-section h2 { text-wrap: balance; }
        .highlights-title { font-size: clamp(2.8rem, 5.6vw, 5rem); line-height: 0.98; letter-spacing: -0.06em; margin-bottom: 64px; }

        .highlights-grid { grid-auto-flow: dense; gap: 12px; max-width: 1180px; }
        .highlight-item { min-height: 210px; padding: 30px 25px; text-align: left; border-radius: 22px; background: #fff; box-shadow: 0 14px 28px -24px rgba(16, 11, 20, 0.4); transition: transform 500ms cubic-bezier(.2,.8,.2,1), box-shadow 500ms ease, background 500ms ease; }
        .highlight-item:hover { transform: translateY(-7px); background: #fff; box-shadow: 0 24px 50px -25px rgba(16, 11, 20, 0.28); }
        .highlight-item .icon { margin: 0 0 28px; width: 38px; height: 38px; }

        .section-dark { position: relative; overflow: hidden; background: #0b0b0d; }
        .section-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 8% 18%, rgba(233,41,96,.22), transparent 26rem), radial-gradient(circle at 87% 72%, rgba(92,90,255,.18), transparent 29rem); pointer-events: none; }
        .design-section h2 { position: relative; max-width: 830px; margin: 0 auto 82px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .94; letter-spacing: -.065em; }
        .design-columns { position: relative; gap: clamp(38px, 5vw, 84px) clamp(18px, 3vw, 42px); }
        .design-column { gap: 28px; }
        .design-column img { transition: transform 700ms cubic-bezier(.2,.8,.2,1), opacity 600ms ease; filter: drop-shadow(0 28px 26px rgba(0,0,0,.45)); }
        .design-column:hover img { transform: translateY(-12px) scale(1.035); }
        .design-card { border-radius: 18px; transition: transform 500ms ease, background 500ms ease, border-color 500ms ease; }
        .design-card:hover { transform: translateY(-5px); }

        .reviews-section { background: linear-gradient(180deg, #f8f7f8 0%, #fff 55%, #f7f4f7 100%); }
        .reviews-section h2 { max-width: 800px; margin-left: auto; margin-right: auto; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .95; letter-spacing: -.065em; }
        .trust-grid { max-width: 1120px; gap: 12px; }
        .trust-card { border-radius: 22px; padding: 34px 30px; transition: transform 500ms ease, box-shadow 500ms ease; }
        .trust-card:hover { transform: translateY(-6px); box-shadow: 0 26px 42px -28px rgba(16, 11, 20, 0.32); }

        .faq-section { background: #f6f5f7; }
        .faq-section h2,
        .android-section h2 {
            max-width: 830px;
            margin-left: auto;
            margin-right: auto;
            font-size: clamp(3rem, 6vw, 5.6rem);
            line-height: .95;
            letter-spacing: -.065em;
        }
        .faq-section h2 { margin-bottom: 20px; }
        .android-section h2 { margin-bottom: 20px; }
        .faq-item summary::after { color: var(--apple-accent); }
        .faq-list { max-width: 860px; }
        .faq-item { border-radius: 18px; transition: transform 350ms ease, box-shadow 350ms ease; }
        .faq-item[open] { box-shadow: 0 18px 28px -24px rgba(0,0,0,.35); }

        .blog-promo-section { width: min(calc(var(--block-width) + 64px), calc(100% - 32px)); display: grid; grid-template-columns: 1fr; align-items: center; gap: clamp(36px, 7vw, 64px); margin: 0 auto; padding: clamp(56px, 8vw, 100px) clamp(28px, 4vw, 56px); background: transparent; overflow: hidden; scroll-margin-top: 120px; }
        .blog-promo-art { position: relative; width: min(100%, 440px); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; border-radius: 28px; background: #fbe9ef; overflow: hidden; isolation: isolate; }
        .blog-promo-art::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#b61949 .8px, transparent .8px); background-size: 22px 22px; opacity: .12; z-index: -1; }
        .blog-promo-orbit { position: absolute; border: 1px solid #b61949; border-radius: 50%; opacity: .16; }
        .blog-promo-orbit-one { width: 250px; height: 250px; }
        .blog-promo-orbit-two { width: 390px; height: 390px; }
        .blog-promo-chip { display: grid; place-items: center; width: 132px; height: 132px; color: #b61949; background: #ffffffb8; border: 1px solid #fff; border-radius: 32px; box-shadow: 0 20px 36px -22px #b61949, inset 0 0 0 6px #ffffff4d; transform: rotate(-8deg); }
        .blog-promo-chip svg { width: 60px; height: 60px; stroke-width: 1.4; }
        .blog-promo-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #b61949; }
        .blog-promo-dot-one { right: 28px; bottom: 28px; }
        .blog-promo-dot-two { left: 28px; top: 28px; opacity: .45; }
        .blog-promo-copy { max-width: 760px; margin: 0 auto; text-align: center; }
        .section-eyebrow { margin: 0 0 18px; color: #b61949; font-size: 12px; font-weight: 600; letter-spacing: .12em; }
        .blog-promo-copy h2 { margin: 0 0 22px; color: var(--apple-text); font-size: clamp(3rem, 5vw, 5.4rem); line-height: .96; letter-spacing: -.065em; }
        .blog-promo-copy h2 em { color: var(--apple-accent); font-style: normal; }
        .blog-promo-copy > p:not(.section-eyebrow) { max-width: 650px; margin: 0 auto 28px; color: var(--apple-text-muted); font-size: 18px; line-height: 1.6; }
        .blog-promo-link { display: inline-flex; align-items: center; gap: 20px; color: var(--apple-text); font-size: 16px; font-weight: 600; text-decoration: none; }
        .blog-promo-link span { color: var(--apple-accent); font-size: 23px; transition: transform 200ms ease; }
        .blog-promo-link:hover span { transform: translate(3px, -3px); }
        .blog-promo-articles { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 4px; }
        .blog-promo-article { display: flex; min-width: 0; flex-direction: column; border: 1px solid #e5e5eb; border-radius: 22px; overflow: hidden; background: #fff; color: var(--apple-text); text-decoration: none; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
        .blog-promo-article:hover { transform: translateY(-4px); border-color: #c9c9d1; box-shadow: 0 18px 34px -26px rgba(29, 29, 31, .35); }
        .blog-promo-article-art { --promo-tint: #fbe9ef; --promo-ink: #b61949; position: relative; min-height: 195px; display: grid; place-items: center; overflow: hidden; isolation: isolate; background: var(--promo-tint); }
        .blog-art-orange { --promo-tint: #fbefe3; --promo-ink: #9e6324; }
        .blog-art-blue { --promo-tint: #e9f1fa; --promo-ink: #286295; }
        .blog-promo-article-art::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .13; background-image: radial-gradient(var(--promo-ink) .7px, transparent .7px); background-size: 20px 20px; }
        .blog-promo-article-chip { width: 88px; height: 88px; display: grid; place-items: center; color: var(--promo-ink); background: #ffffffa6; border: 1px solid #ffffffd9; border-radius: 22px; box-shadow: 0 10px 25px -15px var(--promo-ink), inset 0 0 0 5px #ffffff35; transform: rotate(-8deg); }
        .blog-promo-article-chip svg { width: 44px; height: 44px; stroke-width: 1.5; }
        .blog-promo-article-orbit { position: absolute; width: 178px; height: 178px; border: 1px solid var(--promo-ink); border-radius: 50%; opacity: .12; }
        .blog-promo-article-orbit-two { width: 280px; height: 280px; }
        .blog-promo-article-label { position: absolute; left: 20px; bottom: 16px; color: var(--promo-ink); font-size: 9px; font-weight: 600; letter-spacing: .13em; }
        .blog-promo-article-dot { position: absolute; right: 20px; bottom: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--promo-ink); }
        .blog-promo-article-copy { display: flex; flex: 1; flex-direction: column; padding: 24px; }
        .blog-promo-article-meta { display: flex; justify-content: space-between; gap: 12px; color: #74747c; font-size: 11px; font-weight: 500; }
        .blog-promo-article-meta span:last-child { white-space: nowrap; }
        .blog-promo-article h3 { margin: 15px 0 12px; font-size: 23px; line-height: 1.2; letter-spacing: -.035em; }
        .blog-promo-article p { margin: 0 0 24px; color: #717178; font-size: 14px; line-height: 1.65; }
        .blog-promo-article-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; color: #686870; font-size: 11px; }
        .blog-promo-article-bottom b { color: var(--apple-text); font-size: 22px; font-weight: 400; }

        .android-section { position: relative; overflow: hidden; background: #fff; }
        .android-video-wrap { filter: none; }
        .cta-section { min-height: 620px; background: radial-gradient(circle at 50% 5%, #2b2430, #09090b 50%); }
        .cta-section h2 { font-size: clamp(3.2rem, 7vw, 6.6rem); line-height: .95; letter-spacing: -.07em; margin-bottom: 24px; }

        .reveal { opacity: 0; transform: translateY(28px) scale(.985); transition: opacity 750ms cubic-bezier(.2,.8,.2,1), transform 750ms cubic-bezier(.2,.8,.2,1); }
        .reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

        @media (max-width: 734px) {
            .hero { min-height: 0; padding-top: 128px; }
            .hero h1 { font-size: clamp(3.1rem, 14vw, 5.1rem); letter-spacing: -.065em; }
            .hero-actions { flex-direction: column; margin-top: 26px; }
            .hero-button { width: min(100%, 300px); }
            .hero-device .phones-row-main { transform: none; }
            .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .highlight-item { min-height: 190px; padding: 24px 18px; }
            .highlight-item .icon { margin-bottom: 22px; }
            .highlight-item h3 { font-size: 16px; }
            .highlight-item p { font-size: 13px; }
            .blog-promo-section { gap: 34px; padding-top: 44px; padding-bottom: 52px; }
            .blog-promo-copy h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
            .blog-promo-copy > p:not(.section-eyebrow) { font-size: 17px; }
            .blog-promo-articles { grid-template-columns: 1fr; }
            .blog-promo-article-art { min-height: 200px; }
        }

        @media (max-width: 420px) {
            .highlights-grid { grid-template-columns: 1fr; }
            .highlight-item { min-height: 0; }
        }

@media (min-width: 901px) and (max-width: 1080px) { .nav-pills { gap: 4px; padding: 0 10px; } .nav-pill { padding: 8px 10px; } .nav { padding-left: 20px; padding-right: 20px; } }
