:root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-soft: #f8f7fb;
    --surface: #ffffff;
    --text: #17151f;
    --text-soft: #4b4757;
    --muted: #726d80;
    --line: #e9e7f0;
    --line-strong: #d9d6e4;
    --accent: #c026d3;
    --accent-strong: #a21caf;
    --accent-soft: rgba(192, 38, 211, 0.09);
    --accent-2: #6d5ae6;
    --accent-2-soft: rgba(109, 90, 230, 0.1);
    --amber: #ea7a1a;
    --amber-soft: rgba(234, 122, 26, 0.12);
    --teal: #0d9488;
    --teal-soft: rgba(13, 148, 136, 0.1);
    --grad: linear-gradient(92deg, #f97316, #d946ef 52%, #4f46e5);
    --header-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 1px 2px rgba(23, 21, 31, 0.05), 0 4px 14px rgba(23, 21, 31, 0.05);
    --shadow-lg: 0 24px 60px rgba(23, 21, 31, 0.12);
    --cta-shadow: 0 10px 28px rgba(192, 38, 211, 0.28);
    --focus-ring: rgba(192, 38, 211, 0.35);
    --max: 1280px;
    --radius: 20px;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0b0b12;
    --bg-soft: #12111c;
    --surface: #161522;
    --text: #f2f0f7;
    --text-soft: #c4c0d2;
    --muted: #8e89a0;
    --line: #26243570;
    --line-strong: #37344c;
    --accent: #e879f9;
    --accent-strong: #f0abfc;
    --accent-soft: rgba(232, 121, 249, 0.12);
    --accent-2: #a5b4fc;
    --accent-2-soft: rgba(165, 180, 252, 0.12);
    --amber: #fdba74;
    --amber-soft: rgba(253, 186, 116, 0.12);
    --teal: #5eead4;
    --teal-soft: rgba(94, 234, 212, 0.1);
    --grad: linear-gradient(92deg, #fb923c, #e879f9 52%, #818cf8);
    --header-bg: rgba(11, 11, 18, 0.8);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
    --cta-shadow: 0 10px 28px rgba(232, 121, 249, 0.2);
    --focus-ring: rgba(232, 121, 249, 0.4);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

.hero-grid > *,
.stat-strip > *,
.steps > *,
.feature-grid > *,
.channel-grid > *,
.pricing-grid > *,
.tpl-grid > *,
.footer-grid > * {
    min-width: 0;
}

.iphone {
    max-width: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    border-radius: 6px;
}

button {
    font: inherit;
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--grad);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 550;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 12px 26px;
    background: var(--surface);
    color: var(--text);
    font-weight: 650;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    border-color: var(--muted);
}

.button.primary {
    border-color: transparent;
    background: var(--accent);
    color: #ffffff;
    box-shadow: var(--cta-shadow);
}

:root[data-theme="dark"] .button.primary {
    background: #c026d3;
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--accent-strong);
}

:root[data-theme="dark"] .button.primary:hover,
:root[data-theme="dark"] .button.primary:focus-visible {
    background: #d33bdf;
}

.button svg {
    width: 18px;
    height: 18px;
}

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

.hero {
    padding: 76px 0 56px;
    background:
        radial-gradient(56% 44% at 65% 0%, var(--accent-soft), transparent 70%),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
    gap: 56px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    background: var(--surface);
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--teal);
}

.hero h1 {
    max-width: 640px;
    margin: 0 0 18px;
    font-size: clamp(2.5rem, 4.6vw, 3.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.hero h1 .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--text-soft);
    font-size: 1.16rem;
}

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

.trust-line {
    margin: 0;
    max-width: 520px;
    color: var(--muted);
    font-size: 0.92rem;
}

.rotator {
    position: relative;
    display: inline-block;
    width: 9.2ch;
    height: 1.08em;
    vertical-align: bottom;
}

.rotator > span {
    position: absolute;
    inset: 0;
    opacity: 0;
    text-align: left;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rotateWord 18s infinite;
}

.rotator > span:nth-child(2) { animation-delay: 3s; }
.rotator > span:nth-child(3) { animation-delay: 6s; }
.rotator > span:nth-child(4) { animation-delay: 9s; }
.rotator > span:nth-child(5) { animation-delay: 12s; }
.rotator > span:nth-child(6) { animation-delay: 15s; }

.rotator .soon-sup {
    font-size: 0.28em;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: super;
    background: var(--amber-soft);
    color: var(--amber);
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: var(--amber);
    border-radius: 999px;
    padding: 1px 6px;
    margin-left: 4px;
}

@keyframes rotateWord {
    0% { opacity: 0; transform: translateY(14px); }
    2.5%, 14% { opacity: 1; transform: none; }
    16.5%, 100% { opacity: 0; transform: translateY(-14px); }
}

.phone-demo {
    max-width: 300px;
    width: 100%;
    margin: 0;
    justify-self: center;
}

.iphone {
    position: relative;
    border-radius: 54px;
    padding: 11px;
    background: linear-gradient(155deg, #45454e, #1a1a20 40%, #101014);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.38),
        inset 0 0 0 2px rgba(255, 255, 255, 0.09),
        inset 0 0 0 5px rgba(0, 0, 0, 0.55);
}

.iphone-screen {
    display: flex;
    flex-direction: column;
    aspect-ratio: 9 / 19.2;
    border-radius: 44px;
    padding: 8px 14px 14px;
    background: var(--bg);
    overflow: hidden;
}

.dynamic-island {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 25px;
    border-radius: 999px;
    background: #000000;
    z-index: 2;
}

.statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 12px;
    font-size: 0.74rem;
    font-weight: 700;
}

.statusbar svg {
    width: 15px;
    height: 12px;
    display: block;
}

.statusbar .sb-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 2px 12px;
    border-bottom: 1px solid var(--line);
}

.dm-header svg {
    width: 18px;
    height: 18px;
    color: var(--text);
}

.dm-header .ig-avatar {
    width: 30px;
    height: 30px;
}

.dm-header strong {
    display: block;
    font-size: 0.86rem;
    line-height: 1.15;
}

.dm-header span {
    color: var(--muted);
    font-size: 0.72rem;
}

.ig-avatar {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--grad);
    flex: none;
}

.ig-avatar.small {
    width: 18px;
    height: 18px;
}

.thread {
    display: grid;
    gap: 9px;
    align-content: start;
    flex: 1;
    min-height: 0;
    padding: 14px 2px 4px;
}

.ctx {
    justify-self: center;
    border-radius: 999px;
    padding: 4px 13px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
}

.msg {
    max-width: 82%;
    border-radius: 18px;
    padding: 9px 12px;
    font-size: 0.84rem;
    line-height: 1.45;
}

.msg.in {
    justify-self: start;
    border: 1px solid var(--line);
    border-bottom-left-radius: 6px;
    background: var(--bg-soft);
}

.msg.in u {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-decoration-color: var(--accent);
    text-underline-offset: 2px;
}

.msg.typing {
    display: flex;
    gap: 4px;
    padding: 12px 13px;
}

.msg.typing span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--muted);
    animation: dotPulse 1s infinite;
}

.msg.typing span:nth-child(2) { animation-delay: 0.18s; }
.msg.typing span:nth-child(3) { animation-delay: 0.36s; }

.bubble {
    max-width: 90%;
    border-radius: 14px;
    padding: 8px 11px;
    font-size: 0.82rem;
    line-height: 1.4;
}

.bubble.comment {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
    border: 1px solid var(--line);
    background: var(--surface);
    border-bottom-left-radius: 4px;
}

.bubble.dm {
    justify-self: end;
    background: var(--grad);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.toast {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    color: var(--teal);
    font-size: 0.74rem;
    font-weight: 700;
}

.toast svg {
    width: 13px;
    height: 13px;
}

.dm-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--muted);
    font-size: 0.8rem;
}

.dm-input svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.home-bar {
    width: 112px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 4px;
    background: var(--line-strong);
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

.anim {
    opacity: 0;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.anim.a1 { animation-name: demoComment; }
.anim.a2 { animation-name: demoTyping; }
.anim.a3 { animation-name: demoDm; }
.anim.a4 { animation-name: demoClick; }

@keyframes demoComment {
    0%, 5% { opacity: 0; transform: translateY(8px); }
    10%, 92% { opacity: 1; transform: none; }
    97%, 100% { opacity: 0; }
}

@keyframes demoTyping {
    0%, 14% { opacity: 0; }
    18%, 32% { opacity: 1; }
    36%, 100% { opacity: 0; }
}

@keyframes demoDm {
    0%, 36% { opacity: 0; transform: translateY(8px); }
    42%, 92% { opacity: 1; transform: none; }
    97%, 100% { opacity: 0; }
}

@keyframes demoClick {
    0%, 52% { opacity: 0; }
    58%, 92% { opacity: 1; }
    97%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .anim,
    .rotator > span {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .anim.a1, .anim.a3, .anim.a4,
    .rotator > span:first-child {
        opacity: 1;
    }

    .msg.typing {
        display: none;
    }
}

.phone-demo.static .anim {
    animation: none;
    opacity: 1;
    transform: none;
}

.phone-demo.static .msg.typing {
    display: none;
}

.section {
    padding: 100px 0;
}

.section.alt {
    background: var(--bg-soft);
    border-block: 1px solid var(--line);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 46px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.section-lede {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 1.06rem;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 26px 0 0;
}

.stat-tile {
    padding: 26px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-tile strong {
    display: block;
    margin-bottom: 4px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-tile span {
    color: var(--muted);
    font-size: 0.92rem;
}

.badge-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 38px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.badge-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-strip svg {
    width: 17px;
    height: 17px;
    color: var(--teal);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--grad);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.step h3 {
    margin-bottom: 8px;
    font-size: 1.16rem;
    font-weight: 700;
}

.step p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.97rem;
}

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

.feature-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
}

.feature-card:nth-child(4n + 2) .feature-icon {
    background: var(--accent-2-soft);
    color: var(--accent-2);
}

.feature-card:nth-child(4n + 3) .feature-icon {
    background: var(--amber-soft);
    color: var(--amber);
}

.feature-card:nth-child(4n + 4) .feature-icon {
    background: var(--teal-soft);
    color: var(--teal);
}

.feature-icon svg {
    width: 21px;
    height: 21px;
}

.feature-card h3 {
    margin: 14px 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.93rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    gap: 18px;
    justify-content: center;
}

.price-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    position: relative;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    padding: 4px 14px;
    background: var(--grad);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 750;
    white-space: nowrap;
}

.price-card h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 750;
}

.price-amount {
    margin-bottom: 4px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.price-was {
    margin-left: 8px;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: line-through;
}

.price-card.dark .price-was {
    color: #8e89a0;
}

.price-amount.soon {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
}

.pricing-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
}

.soon-tag {
    display: inline-block;
    margin-left: 6px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 1px 8px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 650;
    white-space: nowrap;
    vertical-align: 1px;
}

.price-card li.soon {
    color: var(--muted);
}

.price-card.dark .soon-tag,
.price-card.dark li.soon {
    border-color: #37344c;
    color: #8e89a0;
}

.plan-note {
    margin: -6px 0 4px;
    color: var(--muted);
    font-size: 0.92rem;
}

.price-card .button {
    margin-top: 10px;
}

.price-card.dark {
    background: #17151f;
    border-color: #17151f;
    color: #c4c0d2;
}

.price-card.dark h3,
.price-card.dark li strong {
    color: #ffffff;
}

.price-card.dark .plan-note {
    color: #8e89a0;
}

.price-card.dark ul {
    color: #c4c0d2;
}

:root[data-theme="dark"] .price-card.dark {
    background: #1c1a2b;
    border-color: var(--accent);
}

.price-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.price-card li {
    position: relative;
    padding-left: 28px;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background:
        var(--teal-soft)
        center / 10px no-repeat
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230d9488" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "\2212";
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--text-soft);
}

.cta-panel {
    padding: 54px 40px;
    border-radius: 22px;
    background:
        radial-gradient(80% 120% at 15% 0%, rgba(249, 115, 22, 0.16), transparent 55%),
        radial-gradient(80% 120% at 85% 100%, rgba(79, 70, 229, 0.18), transparent 55%),
        linear-gradient(120deg, rgba(217, 70, 239, 0.14), rgba(109, 90, 230, 0.1)),
        var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-panel h2 {
    max-width: 640px;
    margin: 0 auto 12px;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.cta-panel p {
    max-width: 520px;
    margin: 0 auto 26px;
    color: var(--text-soft);
    font-size: 1.06rem;
}

.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose h2 {
    margin: 38px 0 10px;
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -0.01em;
}

.prose h3 {
    margin: 24px 0 8px;
    font-size: 1.08rem;
    font-weight: 700;
}

.prose p,
.prose li {
    color: var(--text-soft);
}

.prose ul,
.prose ol {
    margin: 0 0 14px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 6px;
}

.prose a {
    color: var(--accent);
}

.prose a:hover,
.prose a:focus-visible {
    text-decoration: underline;
}

.page-cta {
    margin-top: 44px;
    text-align: center;
}

.cookie-note {
    position: fixed;
    isolation: isolate;
    right: 20px;
    bottom: 20px;
    left: auto;
    z-index: 40;
    max-width: 400px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    color: var(--text-soft);
}

.cookie-note p {
    margin: 0 0 12px;
    padding-right: 26px;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.cookie-note.is-notice #consent-accept {
    display: none;
}

.cookie-note.is-notice .notice-only {
    display: block;
}

.cookie-note .notice-only {
    display: none;
}

.cookie-close svg {
    width: 16px;
    height: 16px;
}

.cookie-close:hover,
.cookie-close:focus-visible {
    color: var(--text);
}

.cookie-note a {
    color: var(--accent);
}

.cookie-note a:hover,
.cookie-note a:focus-visible {
    text-decoration: underline;
}

.cookie-note .button {
    min-height: 38px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.cookie-note .consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 560px) {
    .cookie-note {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
    }
}

.tpl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tpl-card {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.tpl-card h3 {
    margin: 4px 0 0;
    font-size: 1.12rem;
    font-weight: 750;
}

.tpl-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.tpl-card .button {
    margin-top: 8px;
    justify-self: start;
}

.chat-mini {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--bg-soft);
}

.tpl-gates {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tpl-gates .tag {
    font-size: 0.76rem;
    min-height: 24px;
    padding: 2px 9px;
}

.tpl-sub {
    max-width: 640px;
    margin: 64px auto 10px;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tpl-sub-lede {
    max-width: 560px;
    margin: 0 auto 34px;
    text-align: center;
    color: var(--text-soft);
}

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

    .hero-text {
        text-align: center;
    }

    .hero h1,
    .hero-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-line {
        margin: 0 auto;
    }

    .phone-demo {
        margin: 46px auto 0;
    }


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

@media (max-width: 620px) {
    .tpl-grid {
        grid-template-columns: 1fr;
    }
}

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

.channel-tile {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 22px 12px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.channel-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.channel-tile svg {
    width: 26px;
    height: 26px;
    color: var(--accent-2);
}

.status-pill {
    display: inline-block;
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pill.live {
    background: var(--teal-soft);
    color: var(--teal);
}

.status-pill.soon {
    background: var(--amber-soft);
    color: var(--amber);
}

.page-pill {
    text-align: center;
    margin: -28px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 44px 0 6px;
}

.footer-col strong {
    display: block;
    margin-bottom: 10px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
}

.footer-col a {
    display: block;
    padding: 3px 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
    color: var(--text);
}

.footer-col .status-pill {
    margin-left: 6px;
    vertical-align: 1px;
}

@media (max-width: 980px) {
    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 560px) {
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.geo-note {
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 44px;
    padding: 56px 0 44px;
}

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

.footer-brand p {
    max-width: 300px;
    margin: 12px 0 20px;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.55;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-soft);
    transition: border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    border-color: var(--line-strong);
    color: var(--text);
    transform: translateY(-1px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

.footer-col strong {
    display: block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
}

.footer-col a {
    display: block;
    padding: 5px 0;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
    color: var(--text);
}

.footer-col .status-pill {
    margin-left: 6px;
    vertical-align: 1px;
}

/* Claim marks and the disclaimers they point to. A claim with "up to" in it
   carries a superscript symbol that links to the block at the end of the
   page, just above the footer, where the same symbol carries the note. */
sup.note {
    font-size: 0.7em;
    line-height: 0;
    vertical-align: super;
}

sup.note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

sup.note a:hover,
sup.note a:focus-visible {
    text-decoration: underline;
}

.disclaimers {
    margin-top: 40px;
    padding: 18px 0 8px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.disclaimers h2 {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.disclaimers ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.disclaimers .note-mark {
    display: inline-block;
    min-width: 1.2em;
    font-weight: 700;
    color: var(--accent);
}

/* The footer's top bar: a page's own controls in its slot (the pricing
   page's country and currency sentence), and the theme switch on the right
   for every page. margin-left:auto keeps the switch right even when the
   slot is empty or its content is hidden. */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-top .theme-control {
    margin-left: auto;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-inner p {
    margin: 0;
}

.theme-control {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: max-content;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
}

.theme-option {
    width: 34px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    padding: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease;
}

.theme-option svg {
    width: 16px;
    height: 16px;
}

.theme-option:hover,
.theme-option:focus-visible {
    color: var(--text);
}

.theme-option[aria-pressed="true"] {
    background: var(--accent-soft);
    color: var(--accent);
}

@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .hero {
        padding: 64px 0 32px;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-grid,
    .pricing-grid.four {
        grid-template-columns: minmax(0, 420px);
    }

    .cta-panel {
        padding: 40px 22px;
    }
}

@media (max-width: 560px) {
    .hero-actions,
    .hero-actions .button,
    .cta-panel .button {
        width: 100%;
    }

    .feature-grid,
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top .theme-control {
        margin-left: 0;
    }
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 18px;
        padding: 44px 0 36px;
    }

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

    .footer-col strong {
        font-size: 0.66rem;
        letter-spacing: 0.08em;
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 0.82rem;
        padding: 4px 0;
    }

    .footer-col .status-pill {
        display: inline-block;
        margin: 2px 0 0;
        font-size: 0.6rem;
        padding: 1px 7px;
    }
}
/* Internal support for the blog: every post and every landing page
   points at three related reads, so authority reaches posts that the
   hub alone left stranded. */
.related {
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.related h2 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 750;
    letter-spacing: -0.01em;
}

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

.related-card {
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color 150ms ease, transform 150ms ease;
}

.related-card:hover,
.related-card:focus-visible {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.related-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.98rem;
    font-weight: 700;
}

.related-card span {
    color: var(--text-soft);
    font-size: 0.9rem;
}

@media (max-width: 860px) {
    .related-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
