/* ===== Reset & Variables ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream: #FAF7F2; --cream-dark: #F0EDE6;
    --dark: #1A1918; --dark-surface: #222120;
    --accent: #E8620A; --accent-hover: #D4560A;
    --accent-light: rgba(232,98,10,0.08);
    --green: #34d399; --green-dim: rgba(52,211,153,0.12);
    --gold: #d97706; --gold-dim: rgba(217,119,6,0.1);
    --text: #1A1A1A; --text-muted: #71717A;
    --text-on-dark: #F5F5F5; --text-on-dark-muted: #A1A1AA;
    --border: rgba(0,0,0,0.07); --border-strong: rgba(0,0,0,0.13);
    --border-dark: rgba(255,255,255,0.08); --border-dark-strong: rgba(255,255,255,0.14);
    --max-width: 1280px;
    --section-pad-y: 3.25rem;
    --section-pad-y-loose: 4rem;
    --font-display: 'Bricolage Grotesque', serif;
    --font-body: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-padding-top: 5rem; }
body {
    font-family: var(--font-body); background: var(--cream); color: var(--text);
    line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}

/* Animated grain overlay */
body::after {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    animation: grain 8s steps(6) infinite;
}
@keyframes grain {
    0%, 100% { transform: translate(0,0); }
    10% { transform: translate(-2%,-3%); }
    30% { transform: translate(3%,1%); }
    50% { transform: translate(-1%,3%); }
    70% { transform: translate(2%,-2%); }
    90% { transform: translate(-3%,1%); }
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0; line-height: 1.1; }
h1 { font-weight: 800; } h2 { font-weight: 700; } h3 { font-weight: 700; }
a { color: inherit; text-decoration: none; }

/* ===== Aurora Glow Blobs ===== */
.aurora-container { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.aurora-blob {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.11;
    will-change: transform;
}
.aurora-blob-1 { width: 500px; height: 500px; top: -10%; left: 20%; background: radial-gradient(circle, #E8620A, transparent 70%); }
.aurora-blob-2 { width: 400px; height: 400px; top: 30%; right: 10%; background: radial-gradient(circle, #f59e0b, transparent 70%); }
.aurora-blob-3 { width: 350px; height: 350px; top: 60%; left: 40%; background: radial-gradient(circle, #ec4899, transparent 70%); }

/* ===== Nav ===== */
#nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(250,247,242,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled { background: rgba(250,247,242,0.95); box-shadow: 0 1px 24px rgba(0,0,0,0.06); }
nav { max-width: var(--max-width); margin: 0 auto; padding: 0.85rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; letter-spacing: 0; display: inline-flex; align-items: center; gap: 0.4rem; }
.logo-icon { border-radius: 6px; flex-shrink: 0; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1.1rem;
    background: var(--text); color: var(--cream); border-radius: 8px;
    transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600; border-radius: 12px;
    transition: background 0.2s ease, opacity 0.2s ease; cursor: pointer; border: none;
}
.btn-primary {
    padding: 0.95rem 2rem; background: var(--accent); color: white; font-size: 1.05rem;
    box-shadow: none;
    position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { left: -100%; } 50% { left: 100%; } }
.btn-large { padding: 1rem 2.35rem; font-size: 1.05rem; }
.hero-ctas .btn-primary {
    --cta-magnet-x: 0px;
    --cta-magnet-y: 0px;
    transform: translate3d(var(--cta-magnet-x), var(--cta-magnet-y), 0);
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.22s var(--ease);
    will-change: transform;
}
.hero-ctas .btn-primary:hover {
    transform: translate3d(var(--cta-magnet-x), var(--cta-magnet-y), 0) scale(1.01);
}

/* ===== Section Headers ===== */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 2.55rem; }
.section-header h2 { font-size: clamp(1.9rem, 3.4vw, 2.58rem); margin-bottom: 0.85rem; }
.section-sub { font-size: 1.02rem; color: var(--text-muted); line-height: 1.58; }
.section-sub-light { color: var(--text-on-dark-muted); }

/* ===== Hero ===== */
.hero {
    max-width: var(--max-width); margin: 0 auto; padding: 5.65rem 2rem 3.2rem;
    text-align: center; position: relative; overflow: hidden;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 1.15rem; border-radius: 100px;
    background: var(--green-dim); border: 1px solid rgba(52,211,153,0.2);
    font-size: 0.82rem; font-weight: 600; color: #059669; margin-bottom: 1.3rem;
}

/* ===== Hero Headline ===== */
.hero-headline {
    max-width: 980px;
    margin: 0 auto 1rem;
    font-size: clamp(2.45rem, 4.95vw, 4.12rem);
    line-height: 1.04;
    text-align: center;
    position: relative;
    text-wrap: balance;
}
.hero-headline-demo {
    display: block;
}
.hero-title-line {
    display: block;
    position: relative;
    min-height: 1.04em;
}
.hero-title-reserve {
    color: transparent;
    pointer-events: none;
    user-select: none;
}
.hero-title-live {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    color: var(--text);
    text-align: center;
}
.hero-title-ghost {
    color: rgba(26, 25, 24, 0.42);
}
.hero-title-ghost-next {
    color: rgba(26, 25, 24, 0.66);
}
.hero-title-caret {
    display: inline-block;
    width: 3px;
    height: 0.82em;
    margin-left: 0.06em;
    margin-right: -3px;
    vertical-align: -0.07em;
    border-radius: 99px;
    background: var(--accent);
    animation: hero-title-blink 0.95s step-end infinite;
}
.hero-title-caret.is-hidden {
    display: none;
}
.hero-title-tab {
    --hero-title-tab-width: 2.9rem;
    --hero-title-tab-gap: 0.45rem;
    --hero-title-tab-overlap: 0rem;
    display: inline-flex;
    align-items: center;
    margin-left: var(--hero-title-tab-gap);
    margin-right: calc(-1 * (var(--hero-title-tab-width) + var(--hero-title-tab-gap)));
    opacity: 0;
    transform: translate(calc(-1 * var(--hero-title-tab-overlap)), -0.05em) scale(0.96);
    transition: opacity 0.16s ease, transform 0.16s ease;
    vertical-align: middle;
}
.hero-title-tab.is-visible {
    opacity: 1;
    transform: translate(calc(-1 * var(--hero-title-tab-overlap)), -0.05em) scale(1);
}
.hero-title-tab.is-pressed {
    transform: translate(calc(-1 * var(--hero-title-tab-overlap)), -0.05em) scale(0.9);
}
.hero-title-tab kbd {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hero-title-tab-width);
    padding: 0.2em 0.55em 0.22em;
    border: 1.5px solid rgba(232, 98, 10, 0.3);
    border-radius: 7px;
    background: rgba(232, 98, 10, 0.11);
    box-shadow: inset 0 -1px 0 rgba(109, 62, 31, 0.1);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.24em;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}
.hero-title-tab kbd::before {
    content: "Tab";
}
@keyframes hero-title-blink {
    0%, 100% { opacity: 0.75; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1.02rem, 1.65vw, 1.16rem);
    color: var(--text-muted); max-width: 720px; margin: 0 auto; line-height: 1.55;
}
.hero-subtitle strong {
    color: var(--text);
    font-weight: 700;
}
.hero-ctas {
    display: flex; flex-direction: column; align-items: center; gap: 0.58rem; margin: 1.55rem 0 0;
}
.hero-note { font-size: 0.9rem; color: #57534e; font-weight: 500; }
/* ===== Hero App Demo ===== */
.hero-app-demo {
    max-width: 1040px;
    margin: 1.55rem auto 0;
    text-align: left;
}
.hero-demo-tabs {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-bottom: 0;
}
.hero-demo-tab {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    justify-content: flex-start;
    padding: 0.4rem 0.56rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.48);
    color: var(--text-muted);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-demo-tab:hover {
    color: var(--text);
    transform: translateX(1px);
}
.hero-demo-tab[aria-pressed="true"] {
    background: #fff;
    color: var(--text);
    border-color: rgba(232,98,10,0.24);
}
.hero-demo-tab img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.hero-demo-shell {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}
.hero-demo-window {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,0.82);
}
.hero-demo-window {
    height: 410px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-window-bar {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.72);
}
.hero-window-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.hero-demo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}
.hero-demo-app-name,
.hero-demo-surface {
    display: block;
}
.hero-demo-app-name {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.15;
}
.hero-demo-surface {
    margin-top: 0.1rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-demo-context-label {
    flex-shrink: 0;
    padding: 0.25rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(52,211,153,0.22);
    background: var(--green-dim);
    color: #047857;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-demo-context {
    flex: 1 1 auto;
    margin: 0.72rem 0.9rem 0;
    padding: 0.86rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--cream);
    min-height: 156px;
}
.hero-demo-thread {
    display: grid;
    gap: 0.6rem;
    width: 100%;
}
.hero-demo-message {
    display: flex;
    align-items: flex-start;
    gap: 0.68rem;
    margin: 0;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.4;
}
.hero-message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #4a154b;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
}
.hero-message-body {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
}
.hero-message-meta {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    min-width: 0;
}
.hero-message-meta strong {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.2;
}
.hero-message-meta em {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}
.hero-message-text {
    color: var(--text);
    min-width: 0;
}
.hero-message-subject {
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.25;
}
.hero-message-bubble {
    display: inline-block;
    max-width: 82%;
    padding: 0.5rem 0.72rem;
    border-radius: 17px;
    background: #e9e9ee;
    color: #171717;
    font-size: 0.99rem;
    line-height: 1.35;
}
.hero-demo-window[data-demo-style="slack"] .hero-demo-context {
    background: #fbfbfb;
}
.hero-demo-window[data-demo-style="slack"] .hero-message-avatar {
    background: #4a154b;
}
.hero-demo-window[data-demo-style="teams"] .hero-window-bar {
    background: linear-gradient(180deg, #f4f2ff 0%, rgba(255,255,255,0.82) 100%);
}
.hero-demo-window[data-demo-style="teams"] .hero-demo-context {
    background: #f7f6ff;
}
.hero-demo-window[data-demo-style="teams"] .hero-message-avatar {
    border-radius: 50%;
    background: #6264a7;
}
.hero-demo-window[data-demo-style="messages"] .hero-window-bar {
    background: linear-gradient(180deg, #f8f8fb 0%, #fff 100%);
}
.hero-demo-window[data-demo-style="whatsapp"] .hero-window-bar {
    background: linear-gradient(180deg, #ecfff5 0%, rgba(255,255,255,0.88) 100%);
}
.hero-demo-window[data-demo-style="whatsapp"] .hero-demo-context {
    background: #f0ebe3;
}
.hero-demo-thread--messages {
    gap: 0.34rem;
}
.hero-demo-thread--whatsapp {
    gap: 0.38rem;
}
.hero-demo-thread--whatsapp .hero-demo-message,
.hero-demo-thread--messages .hero-demo-message {
    display: flex;
}
.hero-demo-thread--messages .hero-demo-message.is-you,
.hero-demo-thread--whatsapp .hero-demo-message.is-you {
    justify-content: flex-end;
}
.hero-demo-thread--messages .hero-demo-message.is-you .hero-message-bubble {
    background: #007aff;
    color: #fff;
    border-bottom-right-radius: 6px;
}
.hero-demo-thread--whatsapp .hero-demo-message.is-you .hero-message-bubble {
    background: #d9fdd3;
    color: #111b21;
    border-bottom-right-radius: 6px;
}
.hero-demo-thread--messages .hero-demo-message:not(.is-you) .hero-message-bubble {
    border-bottom-left-radius: 6px;
}
.hero-demo-thread--whatsapp .hero-demo-message:not(.is-you) .hero-message-bubble {
    background: #fff;
    border-bottom-left-radius: 6px;
}
.hero-demo-window[data-demo-style="chatgpt"] .hero-demo-context,
.hero-demo-window[data-demo-style="claude"] .hero-demo-context {
    background: #fff;
}
.hero-demo-window[data-demo-style="chatgpt"] .hero-message-avatar {
    border-radius: 50%;
    background: #10a37f;
}
.hero-demo-window[data-demo-style="claude"] .hero-message-avatar {
    border-radius: 50%;
    background: #c15f3c;
}
.hero-demo-thread--chatgpt .hero-demo-message,
.hero-demo-thread--claude .hero-demo-message {
    gap: 0.75rem;
}
.hero-demo-thread--chatgpt .hero-message-text,
.hero-demo-thread--claude .hero-message-text {
    font-size: 1rem;
    line-height: 1.46;
}
.hero-demo-window[data-demo-style="chatgpt"] .hero-demo-message.is-you,
.hero-demo-window[data-demo-style="claude"] .hero-demo-message.is-you {
    padding-top: 0.22rem;
}
.hero-demo-window[data-demo-style="chatgpt"] .hero-demo-message.is-you .hero-message-body,
.hero-demo-window[data-demo-style="claude"] .hero-demo-message.is-you .hero-message-body {
    padding: 0.42rem 0.58rem;
    border-radius: 11px;
    background: #f4f4f4;
}
.hero-demo-window[data-demo-style="gmail"] .hero-window-bar,
.hero-demo-window[data-demo-style="outlook"] .hero-window-bar {
    background: #fff;
}
.hero-demo-window[data-demo-style="google-docs"] .hero-window-bar {
    background: linear-gradient(180deg, #f3f7ff 0%, #fff 100%);
}
.hero-demo-window[data-demo-style="google-docs"] .hero-demo-icon {
    border-radius: 7px;
}
.hero-demo-window[data-demo-style="gmail"] .hero-demo-context,
.hero-demo-window[data-demo-style="outlook"] .hero-demo-context {
    background: #fff;
    padding: 0.88rem 1rem;
    overflow: hidden;
}
.hero-demo-window[data-demo-style="google-docs"] .hero-demo-context {
    flex: 1 1 auto;
    border-color: rgba(66,133,244,0.12);
    background: #eef3f8;
    padding: 0.62rem;
    overflow: hidden;
}
.hero-demo-thread--google-docs {
    display: block;
    height: 100%;
}
.hero-demo-window[data-demo-style="gmail"] .hero-message-avatar {
    border-radius: 50%;
    background: #ea4335;
}
.hero-demo-window[data-demo-style="outlook"] .hero-message-avatar {
    border-radius: 6px;
    background: #0078d4;
}
.hero-demo-window[data-demo-style="gmail"] .hero-demo-message,
.hero-demo-window[data-demo-style="outlook"] .hero-demo-message {
    padding-bottom: 0.48rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hero-demo-window[data-demo-style="gmail"] .hero-demo-message:last-child,
.hero-demo-window[data-demo-style="outlook"] .hero-demo-message:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.hero-demo-email {
    display: grid;
    gap: 0.32rem;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.34;
}
.hero-email-subject-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 0;
}
.hero-email-subject-line strong {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.hero-email-subject-line em {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
}
.hero-email-meta-line {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    min-width: 0;
    padding-bottom: 0.38rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.hero-email-meta-line strong {
    flex-shrink: 0;
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.2;
}
.hero-email-meta-line span {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.hero-email-body {
    display: grid;
    gap: 0.13rem;
    padding-top: 0.04rem;
    font-size: 0.9rem;
    line-height: 1.24;
}
.hero-email-body p {
    margin: 0;
}
.hero-demo-doc {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1.02rem 1.12rem 1rem;
    border: 1px solid rgba(60,64,67,0.1);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15,23,42,0.07);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}
.hero-doc-page-meta {
    margin-bottom: 0.34rem;
    color: #5f6368;
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-demo-doc h4 {
    margin: 0 0 0.5rem;
    color: #202124;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.18;
}
.hero-doc-section {
    display: grid;
    gap: 0.2rem;
    margin-top: 0.46rem;
}
.hero-doc-section h5 {
    margin: 0;
    color: #202124;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-doc-section p,
.hero-doc-section li {
    color: #3c4043;
    font-size: 0.78rem;
    line-height: 1.38;
}
.hero-doc-section p {
    margin: 0;
}
.hero-doc-section ul {
    display: grid;
    gap: 0.1rem;
    margin: 0;
    padding-left: 1.05rem;
}
.hero-doc-active-line {
    margin-top: 0.55rem;
}
.hero-doc-editor-mount .hero-demo-editor[data-demo-style="google-docs"] {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #202124;
    font-size: 0.82rem;
    line-height: 1.45;
    box-shadow: none;
}
.hero-demo-editor {
    flex: 0 0 auto;
    margin: 0.62rem 0.9rem 0.44rem;
    min-height: 68px;
    padding: 0.62rem 0.78rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 0.95rem;
    line-height: 1.34;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.hero-demo-editor[data-demo-style="slack"],
.hero-demo-editor[data-demo-style="teams"] {
    min-height: 68px;
    border-radius: 12px;
}
.hero-demo-editor[data-demo-style="messages"],
.hero-demo-editor[data-demo-style="whatsapp"] {
    min-height: 66px;
    border-radius: 22px;
    background: #f7f7f8;
}
.hero-demo-editor[data-demo-style="whatsapp"] {
    background: #fff;
}
.hero-demo-editor[data-demo-style="chatgpt"],
.hero-demo-editor[data-demo-style="claude"] {
    min-height: 68px;
    border-radius: 18px;
    background: #fff;
}
.hero-demo-editor[data-demo-style="gmail"],
.hero-demo-editor[data-demo-style="outlook"] {
    min-height: 70px;
    border-radius: 10px;
    box-shadow: none;
}
.hero-demo-editor[data-demo-style="google-docs"] {
    min-height: 62px;
    margin: 0.62rem 0.9rem 0.44rem;
    padding: 0.62rem 0.78rem;
    border-color: rgba(66,133,244,0.12);
    border-radius: 6px;
    background: #fff;
    color: #202124;
    font-size: 0.82rem;
    line-height: 1.42;
    box-shadow: 0 12px 28px rgba(15,23,42,0.07);
}
.hero-demo-ghost {
    color: #77716a;
    opacity: 0.52;
}
.hero-demo-cursor { color: var(--accent); animation: cursor-blink 1s step-end infinite; font-weight: 100; }
@keyframes cursor-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0.9rem 0.62rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-demo-footer kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    margin-right: 0.35rem;
    padding: 0.08rem 0.38rem;
    border: 1px solid rgba(232,98,10,0.24);
    border-radius: 6px;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 900;
}
.hero-demo-footer.accepted kbd {
    animation: hero-demo-tab-press 0.24s ease-out;
}
@keyframes hero-demo-tab-press {
    0% { transform: scale(1); }
    45% { transform: scale(0.9); background: rgba(232,98,10,0.18); }
    100% { transform: scale(1); }
}
/* ===== Steps Section ===== */
.steps-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(232,98,10,0.12), transparent 34rem),
        var(--dark);
    color: var(--text-on-dark);
    padding: 3.35rem 2rem;
}
.steps-section .section-header,
.steps-grid {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}
.steps-section .section-header { max-width: 780px; margin-bottom: 2.55rem; }
.steps-section .section-header h2 {
    color: #fff;
    font-size: clamp(2rem, 3.7vw, 2.72rem);
}
.steps-section .section-sub {
    color: rgba(245,245,245,0.78);
    font-size: 1.04rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 0;
    align-items: center;
    max-width: 1040px;
}

.step-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
    border: 1px solid var(--border-dark-strong);
    border-radius: 13px;
    padding: 1.6rem 1.5rem 1.7rem;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.step-connector {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.65rem;
}
.connector-line {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}
.connector-line::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255,255,255,0.28);
    border-right: 2px solid rgba(255,255,255,0.28);
    transform: translateY(-50%) rotate(45deg);
}
.connector-line.drawn { transform: scaleX(1); }
.step-num {
    font-family: var(--font-display);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
    color: #ff8a3d;
    margin-bottom: 1rem;
}
.step-card h3 { color: #fff; font-size: 1.14rem; margin-bottom: 0.58rem; }
.step-card p {
    font-size: 0.95rem;
    color: rgba(245,245,245,0.76);
    line-height: 1.62;
}

/* Footnote asterisk used in hero / section copy — small, soft-accent colour */
.hero-asterisk {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75em;
    padding: 0 0.05em;
}

/* ===== Supported Apps Grid ===== */
.everywhere-section { max-width: var(--max-width); margin: 0 auto; padding: var(--section-pad-y) 2rem; }
.everywhere-section .section-header { max-width: 720px; }
.app-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.72rem;
    max-width: 1000px;
    margin: 0 auto;
}
.app-card {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.95rem 0.75rem 0.82rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 13px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
    min-height: 124px;
    position: relative;
    overflow: hidden;
}
.js .app-card { opacity: 0; transform: scale(0.92) translateY(8px); }
.js .app-card.popped { opacity: 1; transform: scale(1) translateY(0); }

/* Icon — full-color brand SVG rendered at ~48px. No colored background tile;
 * the SVGs already carry their own brand colors (gradients, multi-path).
 * A subtle shadow gives each icon physicality on the white card.
 */
.app-card-tile {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.app-card-tile svg,
.app-card-tile img {
    width: 100%; height: 100%;
    display: block;
    object-fit: contain;
}
.app-card-tile img[src$="whatsapp.png"] {
    transform: scale(1.08);
}
.app-card-tile img[src$="claude.svg"] {
    transform: scale(0.96);
}
.app-card-tile-placeholder {
    font-family: var(--font-display, "Bricolage Grotesque"), system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--text-muted);
}

.app-card-name {
    font-size: 0.9rem; font-weight: 600; color: var(--text);
    text-align: center; line-height: 1.2;
    margin-top: 0.15rem;
}

.app-card-footer {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    min-height: 18px;
    margin-top: auto;
}
.app-card-browser,
.app-card-platform {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
.app-card-browser,
.app-card-platform,
.app-card-browser svg,
.app-card-browser img { width: 100%; height: 100%; display: block; object-fit: contain; }
.app-card-browser,
.app-card-platform { width: 18px; height: 18px; }
.app-card-system-tag {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.68rem; font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}
.app-card-system-tag img {
    width: 14px; height: 14px;
    opacity: 0.92;
    object-fit: contain;
    transform: translateY(-0.5px);
    flex-shrink: 0;
}

/* Expansion card. */
.app-coverage-card {
    grid-column: 1 / -1;
    align-items: stretch;
    gap: 0.75rem;
    min-height: auto;
    padding: 0.9rem 0.95rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.72);
    box-shadow: none;
}
.app-coverage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.68rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.app-coverage-heading {
    min-width: 0;
    text-align: left;
}
.app-coverage-title {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.15;
}
.app-coverage-copy {
    margin: 0.22rem 0 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}
.app-coverage-stats {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem;
    flex-shrink: 0;
}
.app-coverage-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.28rem;
    padding: 0.28rem 0.48rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}
.app-coverage-stat strong {
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 800;
}

/* Expansion-card icon row. */
.app-card-footer-roadmap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: stretch;
    margin-top: 0;
    gap: 0.7rem;
    padding: 0;
    min-width: 0;
}
.app-roadmap-lane {
    display: block;
    min-width: 0;
}
.app-roadmap-label {
    color: var(--text);
    display: block;
    margin-bottom: 0.38rem;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}
.app-roadmap-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 0.34rem;
    min-width: 0;
}
.app-roadmap-mini {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    min-width: 0;
    position: relative;
    padding: 0.34rem 0.44rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    background: rgba(255,255,255,0.74);
    overflow: hidden;
}
.app-roadmap-mini-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--mini-brand, #111) 10%, white);
    color: var(--mini-brand, var(--text));
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
}
.app-roadmap-mini-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.app-roadmap-mini-icon img[src$=".jpg"] {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}
.app-roadmap-mini-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
}
.app-roadmap-more {
    border-style: dashed;
    border-color: rgba(242,92,5,0.22);
    background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,238,224,0.44));
}
.app-roadmap-more .app-roadmap-mini-icon {
    border: 1px dashed rgba(242,92,5,0.34);
    background: rgba(255,255,255,0.78);
    color: var(--accent);
    font-size: 0.92rem;
}
.app-roadmap-more .app-roadmap-mini-label {
    color: var(--accent);
    font-weight: 800;
}

.supported-link-row {
    margin-top: 1.15rem;
    text-align: center;
}
.supported-link-row a {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
}
.supported-link-row a:hover { text-decoration: underline; }

/* ===== Features ===== */
.features-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(232,98,10,0.18), transparent 30rem),
        var(--dark);
    color: var(--text-on-dark);
    max-width: none;
    margin: 0;
    padding: 3.35rem 2rem;
}
.features-section .section-header {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.features-section .section-header::before {
    content: none;
}
.features-section .section-header h2 {
    color: #fff;
    font-size: clamp(2rem, 3.7vw, 2.72rem);
    line-height: 1.08;
    margin-bottom: 0.85rem;
}
.features-section .section-sub {
    color: rgba(255,255,255,0.74);
    font-size: 1.04rem;
    line-height: 1.58;
}
.features-grid {
    counter-reset: feature-card;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 960px);
    margin: 0 auto;
    border-top: 0;
    border-bottom: 0;
}
.feature-card {
    --feature-accent: #ff8a3d;
    counter-increment: feature-card;
    min-height: 0;
    padding: 1.28rem 1.25rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 4.8rem minmax(230px, 0.32fr) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(1.4rem, 4vw, 3.8rem);
    overflow: visible;
    position: relative;
    isolation: isolate;
}
.feature-card::before { content: none; }
.feature-card:last-child {
    border-bottom: 0;
}
.feature-card + .feature-card {
    padding-top: 1.28rem;
}
.feature-card::after {
    content: '0' counter(feature-card);
    grid-column: 1;
    grid-row: 1;
    color: var(--feature-accent);
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    opacity: 1;
}
.feature-card h3 {
    grid-column: 2;
    grid-row: 1;
    max-width: 20rem;
    margin: 0;
    font-size: clamp(1.12rem, 1.55vw, 1.34rem);
    line-height: 1.16;
    position: relative;
    z-index: 1;
    color: #fff;
}
.feature-card p {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 1;
    max-width: 35rem;
    color: rgba(255,255,255,0.78);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}

/* ===== Pricing ===== */
.pricing-section {
    --pricing-accent-text: #9a3412;
    --pricing-accent-button: #b7410e;
    --pricing-accent-button-hover: #a83a00;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-pad-y) 2rem;
}
.pricing-section .section-header {
    max-width: 820px;
}
.pricing-stage {
    display: grid;
    gap: 1rem;
    max-width: 1060px;
    margin: 0 auto;
}

.pricing-common,
.launch-offer-card,
.pricing-plan-card,
.pricing-lifetime-card {
    border: 1px solid rgba(26,25,24,0.1);
    border-radius: 13px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58)),
        var(--cream);
    color: var(--text);
    box-shadow: none;
}

.launch-offer-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 0.7fr);
    gap: 1.35rem;
    align-items: center;
    padding: 1.25rem 1.45rem;
    border-color: rgba(232,98,10,0.28);
    background:
        linear-gradient(180deg, rgba(255,250,245,0.94), rgba(255,255,255,0.72)),
        var(--cream);
}
.launch-offer-copy {
    min-width: 0;
    padding-right: 1.35rem;
    border-right: 1px solid rgba(26,25,24,0.1);
}
.launch-offer-kicker {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--pricing-accent-button);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.launch-offer-copy h3 {
    max-width: 560px;
    margin: 0;
    color: var(--text);
    font-size: clamp(1.72rem, 3vw, 2.45rem);
    line-height: 1.03;
}
.launch-offer-copy p {
    max-width: 620px;
    margin: 0.72rem 0 0;
    color: #625a52;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.48;
}
.launch-offer-claim {
    display: grid;
    gap: 0.9rem;
    min-width: 0;
}
.launch-offer-meter {
    display: grid;
    gap: 0.52rem;
}
.launch-offer-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border: 1.5px solid rgba(194,73,12,0.42);
    border-radius: 9px;
    background:
        linear-gradient(180deg, rgba(255,250,245,0.98), rgba(255,244,236,0.9)),
        #fff7ef;
    color: #a33a10;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}
.launch-offer-submit:disabled {
    cursor: default;
    opacity: 0.58;
}

.pricing-common {
    display: grid;
    grid-template-columns: minmax(310px, 0.5fr) minmax(0, 1fr);
    gap: 1.65rem;
    align-items: center;
    padding: 1.15rem 1.45rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.66)),
        var(--cream);
    box-shadow: none;
}
.pricing-common-copy {
    min-width: 0;
    padding-right: 1.35rem;
    border-right: 1px solid rgba(26,25,24,0.1);
}
.pricing-common-rule {
    display: none;
    width: 2.2rem;
    height: 3px;
    margin-bottom: 0.72rem;
    border-radius: 999px;
    background: var(--pricing-accent-button);
}
.pricing-common-copy h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.34rem, 1.9vw, 1.72rem);
    line-height: 1.08;
}
.pricing-common-copy p {
    margin: 0.58rem 0 0;
    color: #6a635d;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.46;
}
.pricing-common-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing-common-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.68rem;
    min-height: 52px;
    padding: 0.58rem 0.95rem;
    color: #312d29;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.28;
}
.pricing-common-list li:nth-child(n+4) {
    border-top: 1px solid rgba(26,25,24,0.08);
}
.pricing-common-list li:nth-child(2),
.pricing-common-list li:nth-child(3),
.pricing-common-list li:nth-child(5),
.pricing-common-list li:nth-child(6) {
    border-left: 1px solid rgba(26,25,24,0.08);
}
.pricing-common-list li::before {
    content: '';
    flex: 0 0 auto;
    width: 1.42rem;
    height: 1.42rem;
    border: 1px solid rgba(5,150,105,0.42);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7)),
        rgba(52,211,153,0.08);
    box-shadow: none;
}
.pricing-common-list li::after {
    content: '';
    position: absolute;
    left: 1.42rem;
    top: 50%;
    width: 0.46rem;
    height: 0.26rem;
    border-left: 2px solid #059669;
    border-bottom: 2px solid #059669;
    transform: translateY(-62%) rotate(-45deg);
}

.pricing-secondary {
    display: grid;
    gap: 0.72rem;
}
.pricing-secondary-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0.1rem;
}
.pricing-secondary-header span {
    color: var(--pricing-accent-text);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.pricing-secondary-header p {
    max-width: 520px;
    margin: 0;
    color: #746c64;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
}

.pricing-plan-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}
.pricing-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 252px;
    padding: 1.15rem 1.2rem;
    transition: transform 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease;
}
.pricing-plan-card:hover,
.pricing-lifetime-card:hover {
    border-color: rgba(232,98,10,0.24);
    transform: none;
}
.pricing-plan-card-monthly {
    border-color: rgba(232,98,10,0.26);
    background:
        linear-gradient(180deg, rgba(255,251,247,0.86), rgba(255,255,255,0.68)),
        var(--cream);
}
.pricing-plan-card-featured {
    border-color: rgba(232,98,10,0.34);
    background:
        linear-gradient(180deg, rgba(255,251,247,0.9), rgba(255,255,255,0.72)),
        var(--cream);
}
.pricing-plan-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    margin-bottom: 1.05rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(26,25,24,0.09);
}
.pricing-plan-name {
    display: inline-flex;
    min-width: 0;
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.12;
}
.pricing-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.45rem;
    padding: 0.22rem 0.54rem;
    border: 1px solid rgba(232,98,10,0.2);
    border-radius: 999px;
    background: rgba(232,98,10,0.055);
    color: #9a3412;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}
.pricing-plan-card-monthly .pricing-plan-badge {
    border-color: rgba(232,98,10,0.16);
    background: rgba(232,98,10,0.045);
    color: #8a3a16;
}
.pricing-plan-price {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(2.06rem, 3vw, 2.62rem);
    font-weight: 800;
    line-height: 1;
}
.pricing-plan-card > .pricing-plan-price,
.pricing-plan-card > .pricing-price-stack {
    margin-top: auto;
}
.pricing-price-stack {
    display: grid;
    gap: 0.38rem;
}
.pricing-plan-compare-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 1.62rem;
}
.pricing-plan-old-price {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    color: #716c66;
    font-family: var(--font-display);
    font-size: clamp(1.24rem, 1.8vw, 1.48rem);
    font-weight: 800;
    line-height: 1;
}
.pricing-plan-old-price > span {
    position: relative;
}
.pricing-plan-old-price > span::after {
    content: '';
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    top: 54%;
    height: 2.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(154,52,18,0.18), rgba(154,52,18,0.72), rgba(154,52,18,0.18));
    transform: translateY(-50%) rotate(-4deg);
}
.pricing-plan-saving {
    display: inline-flex;
    align-items: center;
    min-height: 1.4rem;
    padding: 0.18rem 0.46rem;
    border: 1px solid rgba(26,25,24,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.58);
    color: #625a52;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}
.pricing-plan-detail {
    display: block;
    margin-top: 0.65rem;
    color: #5f5750;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
}
.pricing-plan-note {
    display: block;
    min-height: 2.18rem;
    margin-top: 0.8rem;
    margin-bottom: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(26,25,24,0.09);
    color: #625a52;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.25;
}
.pricing-plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 0.9rem;
    padding: 0.62rem 0.85rem;
    border: 1.5px solid rgba(26,25,24,0.72);
    border-radius: 9px;
    background: rgba(255,255,255,0.82);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
}
.pricing-plan-card-featured .pricing-plan-action {
    border-color: rgba(194,73,12,0.42);
    background:
        linear-gradient(180deg, rgba(255,250,245,0.98), rgba(255,244,236,0.9)),
        #fff7ef;
    box-shadow: none;
    color: #a33a10;
}
.pricing-secondary .pricing-plan-card {
    border-color: rgba(26,25,24,0.085);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.54)),
        var(--cream);
}
.pricing-secondary .pricing-plan-card-featured {
    border-color: rgba(232,98,10,0.2);
}

.pricing-lifetime-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(310px, 0.5fr) repeat(2, minmax(0, 0.5fr));
    gap: 1.65rem;
    align-items: center;
    overflow: hidden;
    padding: 1.15rem 1.45rem;
    transition: transform 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease;
}
.pricing-lifetime-card::before { content: none; }
.pricing-lifetime-copy,
.pricing-lifetime-launch,
.pricing-lifetime-offer {
    position: relative;
    z-index: 1;
}
.pricing-lifetime-copy {
    min-width: 0;
    padding-right: 1.35rem;
    border-right: 1px solid rgba(26,25,24,0.1);
}
.pricing-lifetime-kicker {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--pricing-accent-button);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
}
.pricing-lifetime-copy h3 {
    max-width: 430px;
    margin: 0 0 0.55rem;
    font-size: clamp(1.25rem, 2vw, 1.62rem);
    line-height: 1.12;
}
.pricing-lifetime-copy p {
    margin: 0;
    color: #625a52;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
}
.pricing-lifetime-launch {
    display: grid;
    gap: 0.28rem;
    min-height: 70px;
    align-content: center;
    padding: 0.05rem 1.1rem 0.05rem 0;
    border-left: 0;
    border-right: 1px solid rgba(26,25,24,0.1);
}
.pricing-lifetime-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.52rem;
}
.pricing-lifetime-old-price {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #827970;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 800;
    line-height: 1;
}
.pricing-lifetime-old-price::after {
    content: '';
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    top: 50%;
    height: 2px;
    border-radius: 999px;
    background: rgba(128,65,33,0.72);
    transform: translateY(-50%) rotate(-4deg);
}
.pricing-lifetime-old-price[hidden] {
    display: none;
}
.pricing-lifetime-price {
    display: block;
    font-family: var(--font-display);
    color: var(--text);
    font-size: clamp(1.58rem, 2.1vw, 2rem);
    font-weight: 800;
    line-height: 1;
}
.pricing-lifetime-offer {
    display: grid;
    gap: 0.5rem;
    align-items: center;
}
.pricing-launch-meter {
    display: grid;
    gap: 0.52rem;
    width: 100%;
}
.pricing-launch-count {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.55rem;
    color: #625a52;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.2;
}
.pricing-launch-count strong {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}
.pricing-launch-track {
    display: block;
    overflow: hidden;
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(26,25,24,0.1);
}
.pricing-launch-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pricing-accent-button), #f7a35d);
    transition: width 0.3s ease;
}
.pricing-lifetime-note {
    color: #6f665e;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
}
.pricing-lifetime-action {
    min-width: 0;
    margin-top: 0;
    border-color: rgba(232,98,10,0.34);
    color: var(--pricing-accent-button);
    background: rgba(255,255,255,0.86);
}
.pricing-lifetime-regular-action {
    width: 100%;
}
.pricing-lifetime-regular-action[hidden] {
    display: none;
}
.pricing-note {
    max-width: 720px;
    margin: 0.95rem auto 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
}

/* ===== FAQ ===== */
.faq-section { max-width: var(--max-width); margin: 0 auto; padding: var(--section-pad-y) 2rem var(--section-pad-y-loose); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; cursor: pointer; font-family: var(--font-display);
    font-size: 1.02rem; font-weight: 600; letter-spacing: 0;
    list-style: none; color: var(--text);
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--text-muted);
    transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
    padding: 0 0 1rem;
    font-size: 0.92rem; color: var(--text-muted); line-height: 1.65;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--dark);
    color: var(--text-on-dark); padding: 3.6rem 2rem; text-align: center;
}
.cta-icon { border-radius: 14px; margin-bottom: 1.15rem; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.cta-content h2 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 0.55rem; }
.cta-sub { font-size: 1.05rem; color: var(--text-on-dark-muted); margin-bottom: 1.8rem; }
.cta-note { margin-top: 1.25rem; font-size: 0.82rem; color: var(--text-on-dark-muted); }

/* ===== Download Modal ===== */
body.download-modal-open { overflow: hidden; }
.download-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.download-modal[hidden] { display: none; }
.download-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26,25,24,0.56);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.18s ease;
}
.download-dialog {
    position: relative;
    width: min(100%, 480px);
    max-height: min(760px, calc(100vh - 2rem));
    overflow: auto;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    padding: 2rem;
    color: var(--text);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.download-modal.is-open .download-modal-backdrop { opacity: 1; }
.download-modal.is-open .download-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.download-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.download-close span {
    position: relative;
    width: 13px;
    height: 13px;
    display: block;
}
.download-close span::before,
.download-close span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
}
.download-close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.download-close span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.download-close:hover {
    background: var(--cream);
    color: var(--text);
}
.download-dialog h2 {
    max-width: 360px;
    margin-bottom: 1.15rem;
    font-size: clamp(1.8rem, 5vw, 2.35rem);
}
.download-form {
    display: grid;
    gap: 0.85rem;
}
.download-field {
    display: grid;
    gap: 0.35rem;
    text-align: left;
}
.download-field span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
}
.download-field input,
.download-field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    padding: 0 0.9rem;
}
.download-field input:focus,
.download-field select:focus {
    outline: 2px solid rgba(232,98,10,0.32);
    outline-offset: 2px;
}
.download-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
}
.download-submit.btn-primary {
    max-width: none;
}
.download-submit:disabled {
    opacity: 0.72;
    cursor: wait;
}
.download-status {
    min-height: 1.4em;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: center;
}
.download-status.is-pending { color: var(--text-muted); }
.download-status.is-success { color: #047857; }
.download-status.is-error { color: #dc2626; }

/* ===== Footer ===== */
footer { background: var(--dark); color: var(--text-on-dark); border-top: 1px solid var(--border-dark); padding: 2.3rem 2rem 1.1rem; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(460px, 1.55fr); gap: 3rem; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid var(--border-dark); }
.footer-icon { border-radius: 7px; flex-shrink: 0; }
.footer-brand .logo { display: inline-flex; margin-bottom: 0.5rem; }
.footer-brand p { max-width: 280px; color: var(--text-on-dark-muted); font-size: 0.9rem; font-style: italic; line-height: 1.55; }
.footer-links-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.42rem; min-width: 0; }
.footer-col h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0; color: var(--text-on-dark-muted); margin-bottom: 0.12rem; font-family: var(--font-body); font-weight: 700; }
.footer-col a { font-size: 0.86rem; line-height: 1.35; color: var(--text-on-dark-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom { padding-top: 1rem; text-align: center; }
.footer-bottom p { color: var(--text-on-dark-muted); font-size: 0.75rem; }

/* ===== Legal Pages ===== */
.legal { max-width: 680px; margin: 0 auto; padding: 10rem 2rem 6rem; }
.legal h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: 0; margin-bottom: 0.5rem; }
.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal p, .legal li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal a { color: var(--accent); font-weight: 500; }
.legal a:hover { text-decoration: underline; }

/* ===== Marketing Pages ===== */
.marketing-page {
    padding-top: 5rem;
}
.marketing-page h1,
.marketing-page h2,
.marketing-page h3 {
    letter-spacing: 0;
}
.marketing-hero {
    max-width: 1020px;
    margin: 0 auto;
    padding: 5.5rem 2rem 3.5rem;
}
.marketing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.marketing-hero h1 {
    max-width: 820px;
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 6vw, 4.2rem);
    line-height: 1.05;
}
.marketing-lede {
    max-width: 720px;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.75;
}
.marketing-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.marketing-inline-link {
    color: var(--accent);
    font-weight: 700;
}
.marketing-inline-link:hover { text-decoration: underline; }
.marketing-note {
    color: var(--text-muted);
    font-size: 0.88rem;
}
.marketing-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}
.marketing-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}
.marketing-section:first-child { border-top: 0; }
.marketing-section h2 {
    max-width: 700px;
    margin-bottom: 0.9rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}
.marketing-section > p,
.marketing-section-copy {
    max-width: 760px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.marketing-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.marketing-card,
.support-app-card,
.page-cta {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.marketing-card {
    padding: 1.35rem;
}
.marketing-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
}
.marketing-card p,
.marketing-card li {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}
.marketing-card ul {
    margin-top: 0.7rem;
    padding-left: 1.15rem;
}
.support-app-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}
.support-app-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 82px;
    padding: 0.95rem;
}
a.support-app-card {
    cursor: pointer;
}
a.support-app-card:hover {
    border-color: var(--border-strong);
}
.support-app-card img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}
.support-app-card strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.25;
}
.support-app-card span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}
.support-chip-row {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.support-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.62rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.58);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}
.support-chip img {
    width: 15px;
    height: 15px;
}
.marketing-table {
    width: 100%;
    margin-top: 1.5rem;
    border-collapse: collapse;
    table-layout: fixed;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,0.7);
}
.marketing-table th,
.marketing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}
.marketing-table tr:last-child td { border-bottom: 0; }
.marketing-table th {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.marketing-table td {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}
.marketing-table td:first-child {
    color: var(--text);
    font-weight: 700;
}
.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 3rem;
    align-items: start;
}
.guide-article {
    max-width: 760px;
    min-width: 0;
    width: 100%;
}
.guide-article h2 {
    margin: 2.6rem 0 0.85rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
}
.guide-article h3 {
    margin: 1.6rem 0 0.55rem;
    font-size: 1.12rem;
}
.guide-article p,
.guide-article li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.78;
}
.guide-article p { margin-bottom: 1rem; }
.guide-article ul,
.guide-article ol {
    padding-left: 1.25rem;
    margin: 0.75rem 0 1.25rem;
}
.guide-summary {
    margin: 0 0 2rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,0.68);
}
.guide-summary strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: var(--accent);
}
.guide-summary p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}
.guide-sidebar {
    position: sticky;
    top: 6.5rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,0.64);
}
.guide-sidebar h2 {
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--text-muted);
}
.guide-sidebar a {
    display: block;
    padding: 0.42rem 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}
.guide-sidebar a:hover {
    color: var(--accent);
}
.guide-callout {
    margin: 2rem 0;
    padding: 1.25rem;
    border-left: 3px solid var(--accent);
    background: rgba(255, 112, 16, 0.07);
}
.guide-callout p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}
.guide-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
}
.page-cta h2 {
    margin-bottom: 0.4rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
}
.page-cta p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.page-cta .marketing-hero-actions {
    justify-content: flex-end;
    margin-top: 0;
}

/* ===== Focus Styles ===== */
a:focus-visible, button:focus-visible, .nav-cta:focus-visible, .btn:focus-visible, summary:focus-visible, .app-card:focus-visible, .pricing-plan-card:focus-visible, .pricing-lifetime-card:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--accent); outline-offset: 2px; border-radius: inherit;
}

/* ===== Animations ===== */
.js [data-animate="fade-up"] { opacity: 0; transform: translateY(40px); }
.js [data-animate="fade-up"].animated { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

/* ===== Help Pages ===== */
.help-hero {
    width: 100%; margin: 0 auto;
    padding: 9rem 2rem 4rem; text-align: center;
    position: relative; overflow: hidden;
}
.help-hero::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    top: -80px; right: -50px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,98,10,0.08), transparent 70%);
    filter: blur(80px); pointer-events: none;
}
.help-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.75rem;
    position: relative;
}
.help-hero p {
    font-size: 1.1rem; color: var(--text-muted); max-width: 550px; margin: 0 auto;
    line-height: 1.6; position: relative;
}
.help-content {
    max-width: 840px; margin: 0 auto; padding: 0 2rem 5rem;
}
.help-app-card {
    background: white; border: 1px solid var(--border); border-radius: 16px;
    padding: 2.25rem 2.5rem; margin-bottom: 1.5rem;
}
.help-app-card-primary { border-top: 3px solid var(--accent); }
.help-app-card-secondary { border: 1.5px dashed var(--border-strong); }
.help-app-header {
    display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem;
}
.help-app-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.help-app-icon-google { background: #E8F0FE; color: #4285F4; }
.help-app-icon-other { background: var(--gold-dim); color: var(--gold); }
.help-app-header h2 { font-size: 1.25rem; margin: 0 0 0.35rem 0; }
.help-app-card p {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.75rem;
}
.help-app-card p:last-child { margin-bottom: 0; }
.help-steps {
    list-style: none; padding: 0; margin: 1.25rem 0 1.5rem;
    position: relative;
}
.help-steps::before {
    content: ''; position: absolute;
    left: 15px; top: 20px; bottom: 20px;
    width: 2px; background: rgba(232,98,10,0.12);
    border-radius: 1px;
}
.help-step {
    display: flex; align-items: flex-start; gap: 0.9rem;
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
    position: relative;
}
.help-step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent-light); color: var(--accent);
    border: 1.5px solid rgba(232,98,10,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
    font-family: var(--font-display);
    position: relative; z-index: 1;
}
.help-step-text {
    font-size: 0.95rem; color: var(--text); line-height: 1.6;
    padding-top: 0.2rem;
}
.help-step-text strong { font-weight: 600; }
.help-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 0.75rem; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600;
}
.help-badge::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; flex-shrink: 0;
}
.help-badge-green {
    background: var(--green-dim); color: #047857;
    border: 1px solid rgba(52,211,153,0.2);
}
.help-badge-green::before { background: #047857; }
.help-badge-amber {
    background: var(--gold-dim); color: #92400e;
    border: 1px solid rgba(217,119,6,0.15);
}
.help-badge-amber::before { background: #d97706; }
.help-app-icons-row {
    display: flex; gap: 0.75rem; margin: 1rem 0 0.5rem;
    flex-wrap: wrap;
}
.help-app-faded {
    font-size: 0.82rem; color: var(--text-muted);
    padding: 0.3rem 0.65rem; background: rgba(0,0,0,0.03);
    border-radius: 6px; opacity: 0.45;
}
.help-report-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    color: var(--accent); font-weight: 600; font-size: 0.9rem;
    margin-top: 0.5rem;
}
.help-report-link:hover { text-decoration: underline; }
.help-contact {
    background: var(--cream-dark); border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 2.5rem; text-align: center; margin-top: 2rem;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.help-contact p {
    font-size: 0.95rem; color: var(--text-muted); margin: 0;
}
.help-contact a { color: var(--accent); font-weight: 500; }
.help-contact a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .app-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 760px;
    }
    .pricing-stage { max-width: 920px; }
    .launch-offer-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .launch-offer-copy {
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(26,25,24,0.1);
    }
    .pricing-common {
        grid-template-columns: minmax(270px, 0.48fr) minmax(0, 1fr);
        gap: 1.2rem;
        padding: 1.05rem 1.2rem;
    }
    .pricing-common-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .pricing-plan-row { gap: 0.8rem; }
    .pricing-lifetime-card {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
        gap: 1.25rem;
    }
    .pricing-lifetime-copy { grid-column: 1 / -1; }
    .pricing-lifetime-launch {
        padding-left: 0;
        border-left: 0;
    }
}
@media (max-width: 900px) {
    .hero-headline { white-space: normal; }
    .hero-demo-shell {
        grid-template-columns: 1fr;
    }
    .features-section {
        display: block;
    }
    .features-section .section-header {
        max-width: 720px;
        margin: 0 auto 2.55rem;
        text-align: center;
    }
    .features-section .section-header::before {
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid {
        width: min(100%, 760px);
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .hero { padding: 5.8rem 1.25rem 2.65rem; }
    .hero-headline { font-size: clamp(2.15rem, 8.2vw, 3.15rem); min-height: auto; }
    .hero-title-tab {
        --hero-title-tab-width: 2.35rem;
        --hero-title-tab-gap: 0.22rem;
        --hero-title-tab-overlap: 0rem;
    }
    .hero-title-tab kbd {
        padding: 0.24em 0.62em 0.26em;
        font-size: 0.34em;
    }
    .hero-demo-tabs {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .hero-demo-tab {
        width: auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }
    .hero-demo-window {
        height: auto;
        min-height: 330px;
    }
    .hero-window-bar {
        align-items: flex-start;
        flex-direction: column;
    }
    .hero-demo-context,
    .hero-demo-editor {
        margin-left: 0.9rem;
        margin-right: 0.9rem;
    }
    .hero-demo-context {
        min-height: 154px;
    }
    .hero-demo-message { gap: 0.56rem; }
    .hero-message-avatar { width: 26px; height: 26px; }
    .hero-demo-editor {
        min-height: 82px;
        font-size: 0.94rem;
    }
    .hero-demo-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }
    .nav-cta { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 0; }
    .step-connector {
        min-height: 32px;
        padding: 0.45rem 0;
    }
    .connector-line {
        width: 2px;
        height: 100%;
        min-height: 24px;
        transform: scaleY(1);
        transform-origin: top;
    }
    .connector-line::after {
        right: 50%;
        top: auto;
        bottom: -1px;
        transform: translateX(50%) rotate(135deg);
    }
    .connector-line.drawn { transform: scaleY(1); }
    .feature-card {
        grid-template-columns: 2.8rem 1fr;
        row-gap: 0.55rem;
        padding: 1.15rem 0;
    }
    .feature-card h3 {
        grid-column: 2;
    }
    .feature-card p {
        grid-column: 2;
        grid-row: 2;
        font-size: 1rem;
    }
    .pricing-stage { max-width: 560px; }
    .launch-offer-card {
        padding: 1.25rem;
    }
    .launch-offer-submit {
        width: 100%;
    }
    .pricing-secondary-header {
        display: grid;
        gap: 0.38rem;
    }
    .pricing-secondary-header p {
        max-width: none;
        text-align: left;
    }
    .pricing-common {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
    .pricing-common-copy {
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(26,25,24,0.1);
    }
    .pricing-common-rule { margin-bottom: 0.8rem; }
    .pricing-common-copy h3 { font-size: 1.5rem; }
    .pricing-common-copy p { margin-top: 0.45rem; font-size: 0.92rem; }
    .pricing-common-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-common-list li {
        min-height: 48px;
        border-left: 0 !important;
        border-top: 0 !important;
        padding: 0;
        font-size: 0.96rem;
    }
    .pricing-common-list li:nth-child(n+3) { border-top: 1px solid rgba(26,25,24,0.08) !important; }
    .pricing-common-list li:nth-child(even) { border-left: 1px solid rgba(26,25,24,0.08) !important; padding-left: 0.75rem; }
    .pricing-common-list li::after { left: 0.53rem; }
    .pricing-common-list li:nth-child(even)::after { left: 1.28rem; }
    .pricing-plan-row { grid-template-columns: 1fr; }
    .pricing-plan-card { min-height: auto; }
    .pricing-lifetime-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
    .pricing-lifetime-copy {
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(26,25,24,0.1);
    }
    .pricing-lifetime-copy { grid-column: auto; }
    .pricing-lifetime-launch {
        min-height: auto;
        padding: 0 0 1rem;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(26,25,24,0.1);
    }
    .pricing-lifetime-offer {
        grid-template-columns: 1fr;
        border-top: 0;
        padding-top: 0;
    }
    .pricing-lifetime-action { min-width: 0; }
    .app-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 580px;
    }
    .app-coverage-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .app-coverage-stats {
        justify-content: flex-start;
    }
    .app-card-footer-roadmap {
        width: 100%;
        grid-template-columns: 1fr;
    }
    footer { padding: 2.4rem 1.5rem 1.25rem; }
    .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-links-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 2rem; }
    .marketing-hero { padding: 4.5rem 1.25rem 2.5rem; }
    .marketing-shell { padding: 0 1.25rem 4rem; }
    .marketing-grid,
    .marketing-grid-two,
    .support-app-list,
    .guide-layout,
    .guide-list { grid-template-columns: 1fr; }
    .guide-layout { gap: 1.5rem; }
    .guide-sidebar { position: static; }
    .page-cta {
        align-items: flex-start;
        flex-direction: column;
    }
    body::after { display: none; }
}
@media (max-width: 600px) {
    .help-app-card { padding: 1.5rem; }
    .help-hero { padding: 7rem 1.25rem 2.5rem; }
    .help-content { padding: 0 1.25rem 4rem; }
    .app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .hero { padding: 5.3rem 1rem 2.25rem; }
    .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.85rem; }
    .btn-primary { width: 100%; justify-content: center; max-width: 300px; }
    .section-header h2 { font-size: 1.75rem; }
    .app-grid { gap: 0.5rem; }
    .app-card { padding: 0.75rem 0.6rem; min-height: 110px; gap: 0.4rem; }
    .app-card-tile { width: 42px; height: 42px; border-radius: 11px; }
    .app-card-name { font-size: 0.85rem; }
    .app-card-browser,
    .app-card-platform { width: 14px; height: 14px; }
    .app-card-system-tag { font-size: 0.7rem; }
    .app-coverage-card { padding: 0.85rem 0.75rem; min-height: auto; }
    .app-coverage-title { font-size: 0.95rem; }
    .app-coverage-copy { font-size: 0.78rem; }
    .app-coverage-stat { padding: 0.3rem 0.44rem; font-size: 0.66rem; }
    .app-roadmap-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .app-roadmap-mini { padding: 0.38rem 0.42rem; gap: 0.38rem; }
    .app-roadmap-mini-icon { width: 25px; height: 25px; border-radius: 7px; }
    .app-roadmap-mini-icon img { width: 19px; height: 19px; }
    .app-roadmap-mini-label { font-size: 0.68rem; }
    .hero-demo-tab {
        min-height: 36px;
        font-size: 0.76rem;
        padding: 0.42rem 0.62rem;
    }
    .hero-demo-window {
        min-height: 338px;
    }
    .hero-demo-message,
    .hero-message-bubble {
        font-size: 0.92rem;
    }
    .download-dialog { padding: 1.5rem; border-radius: 14px; }
    .download-close { top: 0.65rem; right: 0.65rem; }
    footer { padding: 2rem 1.25rem 1.15rem; }
    .footer-top { gap: 1.55rem; padding-bottom: 1.55rem; }
    .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 1.4rem; }
    .footer-col { gap: 0.36rem; }
    .footer-col h4 { font-size: 0.72rem; }
    .footer-col a { font-size: 0.82rem; }
    .features-section { padding: 3rem 1rem; }
    .feature-card { padding: 1.15rem 0; }
    .pricing-section { padding: 3rem 1rem; }
    .pricing-common-list { grid-template-columns: 1fr; }
    .pricing-common-list li {
        min-height: 42px;
        padding: 0;
        border-left: 0 !important;
        border-top: 0 !important;
    }
    .pricing-common-list li:nth-child(n+2) { border-top: 1px solid rgba(26,25,24,0.08) !important; }
    .pricing-common-list li:nth-child(even) { border-left: 0 !important; padding-left: 0; }
    .pricing-common-list li::before {
        width: 1.8rem;
        height: 1.8rem;
    }
    .pricing-common-list li::after {
        left: 0.57rem;
        width: 0.58rem;
        height: 0.32rem;
        border-left-width: 2.25px;
        border-bottom-width: 2.25px;
    }
    .pricing-common-list li:nth-child(even)::after { left: 0.57rem; }
    .pricing-plan-card { padding: 1rem; }
    .pricing-plan-price,
    .pricing-lifetime-price { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; }
    .aurora-blob, .hero-app-demo, .step-card, .feature-card, .app-card, [data-animate] { transition-duration: 0.01ms !important; }
    .aurora-blob { display: none; }
    .hero-subtitle, .hero-ctas { opacity: 1; }
}
