:root {
    color-scheme: dark;
    --bg: #040404;
    --bg-soft: #080808;
    --surface: #101010;
    --surface-strong: #151515;
    --text: #f4f7f5;
    --muted: #8d9794;
    --muted-strong: #c7d0cd;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.22);
    --accent: #8df6d7;
    --accent-hover: #a5f9e0;
    --accent-ink: #06110f;
    --accent-rgb: 141, 246, 215;
    --accent-blue-rgb: 147, 199, 255;
    --danger: #ff8585;
    --success: #9bea78;
    --shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --container: 1120px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-width: 320px;
    background: linear-gradient(180deg, #050505 0, var(--bg) 760px);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 36px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 4, 4, 0.88);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-decoration: none;
}

.brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--text);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 780;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.button.primary {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--accent-ink);
}

.button.primary:hover {
    background: var(--accent-hover);
}

.button.compact {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.86rem;
}

.button.wide {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 13px;
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: none;
    content: "";
}

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

h1,
h2,
h3 {
    font-family: var(--font-sans);
    font-weight: 720;
    line-height: 1.04;
    letter-spacing: -0.025em;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 10.5vw, 3.25rem);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 8vw, 2.5rem);
}

h3 {
    margin-bottom: 10px;
    font-size: clamp(1.18rem, 3vw, 1.4rem);
}

p {
    color: var(--muted);
}

.lead {
    max-width: 620px;
    margin-bottom: 20px;
    color: var(--muted-strong);
    font-size: clamp(1.02rem, 2vw, 1.16rem);
    line-height: 1.58;
}

.section {
    padding-block: 56px;
}

.section + .section {
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.section-head p {
    max-width: 640px;
    margin-bottom: 0;
    font-size: 1.04rem;
}

.hero {
    overflow: hidden;
    padding-block: 48px 58px;
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: 36px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.offer-line {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 760;
}

.offer-line span {
    color: inherit;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.microcopy {
    margin: 15px 0 0;
    color: #8f9792;
    font-size: 0.86rem;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin: 17px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.8rem;
    list-style: none;
}

.hero-facts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-facts li::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--muted-strong);
    content: "";
}

.hero-visual {
    position: relative;
    min-height: 420px;
    isolation: isolate;
}

.hero-visual::before {
    position: absolute;
    inset: 14% 5% 12%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.05), transparent 58%);
    content: "";
    filter: blur(70px);
}

.fact-strip {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
}

.fact-strip-grid {
    display: grid;
}

.fact-strip a {
    display: grid;
    gap: 2px;
    padding-block: 18px;
    color: var(--text);
    text-decoration: none;
}

.fact-strip a + a {
    border-top: 1px solid var(--line);
}

.fact-strip strong {
    font-size: 0.88rem;
}

.fact-strip span {
    color: var(--muted);
    font-size: 0.78rem;
}

.fact-strip a:hover span {
    color: var(--muted-strong);
}

.hero-phone {
    position: absolute;
    filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.5));
}

.hero-phone.back {
    right: 4%;
    bottom: 2%;
    width: min(38%, 135px);
    opacity: 0.54;
    transform: rotate(4deg);
}

.hero-phone.front {
    left: 4%;
    bottom: 0;
    width: min(50%, 175px);
    transform: rotate(-1deg);
}

.status-badge {
    position: absolute;
    right: 1%;
    bottom: 13%;
    z-index: 3;
    max-width: 174px;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.92);
    box-shadow: var(--shadow);
}

.status-badge strong,
.status-badge span {
    display: block;
}

.status-badge strong {
    margin-bottom: 3px;
    font-size: 0.92rem;
}

.status-badge span {
    color: var(--muted);
    font-size: 0.78rem;
}

.demo-shell {
    display: grid;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #0b0b0b;
}

.demo-tabs {
    display: grid;
    gap: 9px;
}

.demo-tab {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.demo-tab:hover,
.demo-tab[aria-selected="true"] {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.055);
}

.demo-tab[aria-selected="true"] .step-number {
    background: var(--accent);
    color: var(--accent-ink);
}

.step-number {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
    font-weight: 850;
}

.demo-tab strong,
.demo-tab small {
    display: block;
}

.demo-tab strong {
    margin-bottom: 3px;
}

.demo-tab small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.demo-panels {
    display: grid;
    gap: 18px;
}

.demo-panel {
    min-height: 500px;
    margin: 0;
    padding: 20px 16px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #090a0a;
}

.demo-panel[hidden] {
    display: none;
}

.demo-panel figcaption {
    max-width: 430px;
    margin: 0 auto 20px;
    text-align: center;
}

.demo-panel figcaption strong {
    display: block;
    margin-bottom: 4px;
}

.demo-panel figcaption span {
    color: var(--muted);
    font-size: 0.9rem;
}

.device-frame {
    width: min(68%, 240px);
    margin: auto;
    padding: 8px 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
    border-radius: 38px 38px 0 0;
    background: #030404;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.device-frame img {
    width: 100%;
    border-radius: 30px 30px 0 0;
}

.device-frame.blocked {
    width: min(70%, 250px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.device-frame.blocked img {
    border-radius: 0;
}

.proof-note {
    margin: 18px 0 0;
    color: #8d9590;
    font-size: 0.82rem;
    text-align: center;
}

.proof-note a,
.feature-links a {
    color: var(--muted-strong);
    text-underline-offset: 3px;
}

.benefit-grid,
.feature-grid,
.screen-grid,
.support-grid {
    display: grid;
    gap: 14px;
}

.benefit-card,
.feature-card,
.content-card,
.support-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

#features .benefit-grid {
    gap: 0;
    border-block: 1px solid var(--line);
}

#features .benefit-card {
    padding: 24px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

#features .benefit-card + .benefit-card {
    border-top: 1px solid var(--line);
}

.benefit-card .number {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 18px;
    border: 0;
    border-radius: 0;
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 850;
}

.feature-links {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.benefit-card p,
.feature-card p,
.content-card p,
.support-card p {
    margin-bottom: 0;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.feature-card a {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 750;
    text-decoration: none;
}

.feature-card a:hover {
    text-decoration: underline;
}

.limitation {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid rgba(var(--accent-blue-rgb), 0.62);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(var(--accent-blue-rgb), 0.045);
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.impact-section {
    overflow: hidden;
}

.impact-shell {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 76% -12%, rgba(var(--accent-rgb), 0.075), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        #090a0a;
}

.impact-toolbar {
    display: grid;
    gap: 18px;
    align-items: end;
}

.chart-kicker {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.impact-total {
    margin: 0;
    color: var(--muted-strong);
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.025em;
}

.impact-total strong {
    color: var(--text);
    font-size: clamp(2.9rem, 12vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.06em;
}

.impact-controls {
    margin: 0;
    padding: 0;
    border: 0;
}

.impact-controls legend {
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
}

.impact-options {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
}

.impact-options button {
    min-height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.impact-options button:hover {
    color: var(--text);
}

.impact-options button[aria-pressed="true"] {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 5px 18px rgba(var(--accent-rgb), 0.14);
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 26px;
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 700;
}

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

.chart-legend span::before {
    width: 25px;
    height: 3px;
    border-radius: 999px;
    content: "";
}

.chart-legend .with-monk-mode::before {
    background: var(--accent);
    box-shadow: 0 0 9px rgba(var(--accent-rgb), 0.2);
}

.chart-legend .without-monk-mode::before {
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(199, 208, 205, 0.62) 0 6px, transparent 6px 10px);
}

.impact-chart {
    margin: 8px 0 0;
}

.chart-canvas-wrap {
    width: 100%;
    height: clamp(280px, 48vw, 430px);
}

.chart-canvas-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.impact-chart figcaption {
    display: grid;
    gap: 3px;
    margin: 5px 0 0;
}

.impact-chart figcaption strong {
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 750;
}

.impact-chart figcaption span {
    color: var(--muted);
    font-size: 0.75rem;
}

.impact-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    border-block: 1px solid var(--line);
}

.impact-summary div {
    min-width: 0;
    padding: 16px 8px;
}

.impact-summary div + div {
    border-left: 1px solid var(--line);
}

.impact-summary span,
.impact-summary strong {
    display: block;
}

.impact-summary span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: clamp(0.64rem, 2.2vw, 0.75rem);
}

.impact-summary strong {
    color: var(--text);
    font-family: var(--font-sans);
    font-size: clamp(0.84rem, 3vw, 1.05rem);
    line-height: 1.2;
}

.impact-note {
    max-width: 760px;
    margin: 15px 0 0;
    color: #838c87;
    font-size: 0.75rem;
    line-height: 1.55;
}

.pricing-wrap {
    display: grid;
    gap: 24px;
    align-items: center;
}

.price-card {
    padding: 24px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.price-card .trial {
    margin-bottom: 4px;
    color: var(--text);
    font-size: clamp(2.25rem, 9vw, 3rem);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.055em;
}

.price-card .then {
    margin-bottom: 22px;
    color: var(--muted-strong);
    font-size: 1.15rem;
    font-weight: 760;
}

.price-list {
    display: grid;
    gap: 12px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
}

.price-list li::before {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.fine-print {
    margin: 14px 0 0;
    color: #89918c;
    font-size: 0.78rem;
    line-height: 1.55;
}

.faq {
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 730;
    cursor: pointer;
    list-style: none;
}

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

.faq summary::after {
    flex: 0 0 auto;
    color: var(--muted-strong);
    content: "+";
    font-size: 1.45rem;
    font-weight: 400;
}

.faq details[open] summary::after {
    content: "–";
}

.faq .answer {
    max-width: 760px;
    padding: 0 0 24px;
}

.faq .answer p {
    margin: 0;
}

.final-cta {
    display: grid;
    justify-items: center;
    padding: 32px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 12px;
}

.final-cta p {
    max-width: 560px;
    margin-inline: auto;
}

.final-cta .actions {
    width: min(100%, 360px);
    margin: 24px auto 0;
    justify-content: center;
}

.site-footer {
    padding-block: 34px 42px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-note {
    margin: 0;
    color: #7f8782;
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.84rem;
    text-decoration: none;
}

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

.page-hero {
    padding-block: 58px 42px;
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(2.5rem, 8vw, 4rem);
}

.page-hero .lead {
    max-width: 740px;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.screen-card {
    padding: 20px 20px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.screen-card figcaption {
    min-height: 112px;
}

.screen-card figcaption strong {
    display: block;
    margin-bottom: 5px;
}

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

.screen-card > a {
    display: block;
}

.screen-card img {
    width: min(86%, 330px);
    margin-inline: auto;
    border-radius: 30px 30px 0 0;
}

.page-copy {
    max-width: 760px;
}

.page-copy h2 {
    margin-top: 46px;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.page-copy h3 {
    margin-top: 30px;
}

.page-copy ul {
    padding-left: 22px;
    color: var(--muted);
}

.page-copy strong {
    color: var(--text);
}

.breadcrumbs {
    padding-top: 24px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    color: var(--muted);
    font-size: 0.82rem;
}

.breadcrumbs li + li::before {
    margin-right: 7px;
    color: #5f6864;
    content: "/";
}

.breadcrumbs a {
    color: var(--muted-strong);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--text);
}

.guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.guide-meta strong {
    color: var(--muted-strong);
}

.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.guide-article {
    width: 100%;
    min-width: 0;
    max-width: 780px;
}

.guide-article > :first-child {
    margin-top: 0;
}

.guide-article h2 {
    margin: 48px 0 14px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.guide-article h3 {
    margin: 30px 0 10px;
}

.guide-article p,
.guide-article li,
.guide-article dd {
    color: var(--muted-strong);
}

.guide-article ul,
.guide-article ol {
    padding-left: 22px;
}

.guide-article li + li {
    margin-top: 9px;
}

.answer-box,
.table-of-contents,
.source-panel {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.answer-box {
    border-color: rgba(var(--accent-rgb), 0.24);
    background: rgba(var(--accent-rgb), 0.045);
}

.answer-box p:last-child,
.source-panel p:last-child {
    margin-bottom: 0;
}

.product-evidence {
    display: grid;
    align-items: center;
    gap: 18px;
    margin: 28px 0;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 18% 28%, rgba(var(--accent-rgb), 0.12), transparent 54%),
        var(--surface);
}

.product-evidence img {
    display: block;
    width: 100%;
    max-height: 360px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.34));
}

.product-evidence figcaption {
    color: var(--muted-strong);
    font-size: 0.93rem;
    line-height: 1.65;
}

.official-answer-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.official-answer {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.official-answer h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 1.02rem;
}

.official-answer p {
    margin: 0;
}

.table-of-contents h2,
.source-panel h2 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.table-of-contents ol,
.source-panel ul {
    margin: 0;
    padding-left: 20px;
}

.table-of-contents a,
.source-panel a,
.guide-article a {
    color: var(--accent);
    overflow-wrap: anywhere;
}

.table-of-contents a {
    text-decoration: none;
}

.table-of-contents a:hover,
.source-panel a:hover,
.guide-article a:hover {
    text-decoration: underline;
}

.comparison-table {
    width: 100%;
    max-width: 100%;
    margin: 24px 0;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.comparison-table table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--surface);
}

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

.comparison-table th {
    color: var(--text);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.comparison-table td {
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.fact-list {
    display: grid;
    grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
    margin: 24px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.fact-list dt,
.fact-list dd {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.fact-list dt {
    color: var(--text);
    font-weight: 750;
}

.fact-list dd {
    color: var(--muted-strong);
}

.fact-list dt:last-of-type,
.fact-list dd:last-of-type {
    border-bottom: 0;
}

.editorial-note {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
}

.notice {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted-strong);
}

.notice strong {
    color: var(--text);
}

.form-grid {
    display: grid;
    gap: 10px;
}

.form-grid label {
    margin-top: 6px;
    color: var(--muted-strong);
    font-size: 0.87rem;
    font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: #0c0e0d;
    color: var(--text);
}

.form-grid input,
.form-grid select {
    min-height: 48px;
    padding: 0 13px;
}

.form-grid textarea {
    min-height: 150px;
    padding: 12px 13px;
    resize: vertical;
}

.form-status {
    min-height: 1.5em;
    margin: 4px 0 0;
    font-size: 0.88rem;
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--danger);
}

.calculator-grid {
    display: grid;
    gap: 22px;
}

.result-card {
    display: grid;
    align-content: center;
    min-height: 270px;
    padding: 28px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: var(--radius-md);
    background: rgba(var(--accent-rgb), 0.045);
}

.result-number {
    margin: 0 0 6px;
    color: var(--text);
    font-size: clamp(3rem, 12vw, 5.5rem);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.06em;
}

.result-label {
    margin: 0;
    color: var(--muted-strong);
}

.center {
    text-align: center;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (min-width: 600px) {
    .fact-strip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fact-strip a {
        padding: 19px 20px;
    }

    .fact-strip a:first-child {
        padding-left: 0;
    }

    .fact-strip a:last-child {
        padding-right: 0;
    }

    .fact-strip a + a {
        border-top: 0;
        border-left: 1px solid var(--line);
    }

    .product-evidence {
        grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
        gap: 24px;
    }

    .product-evidence img {
        max-height: 390px;
    }

    .actions {
        flex-direction: row;
        align-items: center;
    }

    .actions .button {
        width: auto;
    }

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

    #features .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #features .benefit-card {
        padding: 28px 24px;
    }

    #features .benefit-card:first-child {
        padding-left: 0;
    }

    #features .benefit-card:last-child {
        padding-right: 0;
    }

    #features .benefit-card + .benefit-card {
        border-top: 0;
        border-left: 1px solid var(--line);
    }

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

    .impact-shell {
        padding: 26px;
    }

    .impact-toolbar {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .impact-options {
        width: auto;
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 820px) {
    .desktop-nav {
        display: flex;
    }

    .hero {
        padding-block: 68px 76px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
        gap: 40px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-phone.back {
        right: 7%;
        width: 185px;
    }

    .hero-phone.front {
        left: 10%;
        width: 245px;
    }

    .status-badge {
        right: 2%;
    }

    .section {
        padding-block: 76px;
    }

    .demo-shell {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
        gap: 22px;
        padding: 22px;
    }

    .demo-tabs {
        align-content: center;
    }

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

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

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

    .pricing-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
        gap: 52px;
    }

    .price-card {
        padding: 30px;
    }

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

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

    .impact-shell {
        padding: 32px 34px 26px;
    }

    .impact-summary div {
        padding: 18px 16px;
    }

    .guide-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 48px;
    }

    .guide-layout .table-of-contents {
        position: sticky;
        top: 94px;
        grid-column: 2;
        grid-row: 1;
    }

    .guide-layout .guide-article {
        grid-column: 1;
        grid-row: 1;
    }
}

@media (max-width: 440px) {
    .brand span {
        display: none;
    }

    .hero {
        padding-top: 44px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .status-badge {
        right: 0;
        max-width: 164px;
    }

    .fact-list {
        grid-template-columns: 1fr;
    }

    .fact-list dt {
        padding-bottom: 3px;
        border-bottom: 0;
    }

    .fact-list dd {
        padding-top: 3px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Homepage editorial redesign */
.home-page {
    background: #050505;
}

.home-page .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.11);
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: none;
}

.home-page h1,
.home-page h2,
.home-page h3 {
    font-weight: 580;
    letter-spacing: -0.045em;
}

.home-page .button {
    font-weight: 670;
}

.home-page .hero {
    padding-block: 30px 72px;
}

.home-page .hero-grid {
    gap: 28px;
}

.home-page .hero-kicker {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 720;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-page .hero h1 {
    max-width: 8.5ch;
    margin-bottom: 24px;
    font-size: clamp(3.35rem, 15vw, 6.9rem);
    line-height: 0.92;
}

.home-page .hero .lead {
    max-width: 590px;
    margin-bottom: 28px;
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    line-height: 1.55;
}

.hero-offer {
    display: grid;
    gap: 2px;
    max-width: 590px;
    padding-block: 18px;
    border-block: 1px solid var(--line);
}

.hero-offer strong {
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 650;
}

.hero-offer span {
    color: var(--muted);
    font-size: 0.86rem;
}

.home-page .hero-actions {
    margin-top: 24px;
}

.text-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 620;
    text-decoration: none;
}

.text-link:hover {
    color: var(--text);
}

.text-link span {
    color: var(--accent);
}

.product-stage {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: 520px;
    margin: 0;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: linear-gradient(145deg, #171917, #0d0f0e 72%);
    color: var(--text);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3);
}

.product-stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 2px 2px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.product-stage-tag {
    padding: 6px 10px;
    border: 1px solid rgba(141, 246, 215, 0.25);
    border-radius: 999px;
    background: rgba(141, 246, 215, 0.08);
    color: var(--accent);
    font-size: 0.61rem;
    font-weight: 830;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-stage-brand {
    color: rgba(244, 247, 245, 0.45);
    font-size: 0.62rem;
    font-weight: 760;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.product-stage-body {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(112px, 0.72fr) minmax(150px, 1.18fr);
    gap: 14px;
    align-items: center;
    padding-block: 18px;
}

.product-stage-controls > span {
    display: block;
    margin-bottom: 10px;
    color: rgba(244, 247, 245, 0.48);
    font-size: 0.58rem;
    font-weight: 820;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-stage-controls ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.product-stage-controls li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin: 0;
    padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-stage-control-mark {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: rgba(244, 247, 245, 0.38);
}

.product-stage-control-instant {
    background: #ff5757;
}

.product-stage-control-schedule {
    background: #48d77b;
}

.product-stage-control-time {
    background: #b4b7b5;
}

.product-stage-control-opens {
    background: #f3a341;
}

.product-stage-controls li > span:last-child {
    display: grid;
    gap: 2px;
}

.product-stage-controls strong {
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 670;
    line-height: 1.2;
}

.product-stage-controls small {
    color: rgba(244, 247, 245, 0.43);
    font-size: 0.59rem;
    line-height: 1.25;
}

.product-stage-device {
    width: min(100%, 208px);
    margin: auto;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 40px;
    background: #030403;
    box-shadow:
        0 30px 54px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(141, 246, 215, 0.04);
}

.product-stage-device img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 33px;
}

.product-stage figcaption {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 2px 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(244, 247, 245, 0.58);
    font-size: 0.67rem;
    font-weight: 680;
    letter-spacing: 0.02em;
}

.product-stage figcaption span {
    width: 18px;
    height: 2px;
    background: var(--accent);
}

.product-story {
    padding-block: 90px;
    overflow: hidden;
}

.story-intro {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin-bottom: 48px;
}

.story-intro .eyebrow,
.feature-band .eyebrow,
.pricing-band .eyebrow,
.faq-section .eyebrow,
.closing-section .eyebrow {
    margin-bottom: 0;
}

.story-intro h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.75rem, 8vw, 5.3rem);
    line-height: 0.98;
}

.story-intro > p:last-child {
    max-width: 650px;
    margin: 6px 0 0;
    font-size: 1.04rem;
}

.story-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 360px);
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.story-grid::-webkit-scrollbar {
    display: none;
}

.story-chapter {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: #101110;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.17);
    scroll-snap-align: start;
}

.story-chapter-featured {
    border-color: rgba(141, 246, 215, 0.72);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.72), transparent 38%),
        #dff9f1;
    color: #08110e;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

.story-copy {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 22px 22px 26px;
}

.story-chapter-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 38px;
}

.story-card-tag {
    padding: 5px 9px;
    border-radius: 999px;
    background: #08110e;
    color: #dff9f1;
    font-size: 0.61rem;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.story-card-tag-neutral {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(244, 247, 245, 0.7);
}

.chapter-number {
    display: block;
    margin: 0;
    color: rgba(244, 247, 245, 0.38);
    font-size: 0.78rem;
    font-weight: 680;
    letter-spacing: 0.08em;
}

.story-chapter-featured .chapter-number {
    color: rgba(8, 17, 14, 0.45);
}

.story-copy h3 {
    max-width: 10ch;
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 6vw, 2.35rem);
    line-height: 1;
}

.story-copy p {
    margin: 0;
    font-size: 0.92rem;
}

.story-chapter-featured h3 {
    color: #08110e;
}

.story-chapter-featured .story-copy p {
    color: rgba(8, 17, 14, 0.7);
}

.story-visual {
    position: relative;
    min-height: 455px;
    margin: 0 14px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    isolation: isolate;
}

.story-visual-mint {
    border-color: rgba(8, 17, 14, 0.12);
    background: linear-gradient(155deg, #d5f1e9, #b9e1d6 76%);
}

.story-visual-stone {
    background: linear-gradient(155deg, #30302c, #171817 76%);
}

.story-visual-blue {
    background: linear-gradient(155deg, #1c2a31, #0e1315 76%);
}

.story-visual-kicker {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(7, 9, 8, 0.58);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.story-visual-mint .story-visual-kicker {
    border-color: rgba(8, 17, 14, 0.11);
    background: rgba(255, 255, 255, 0.66);
    color: rgba(8, 17, 14, 0.68);
}

.story-device {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    left: 50%;
    width: min(58%, 190px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 37px;
    background: #050605;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
}

.story-device img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 31px;
    box-shadow: none;
}

.story-device-shield {
    width: min(56%, 184px);
}

.story-callout {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 2px;
    min-width: 118px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(10, 12, 11, 0.82);
    color: #f4f7f5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.story-callout strong {
    color: inherit;
    font-size: 0.74rem;
    line-height: 1.2;
}

.story-callout small {
    color: rgba(244, 247, 245, 0.56);
    font-size: 0.58rem;
    line-height: 1.3;
}

.story-visual-mint .story-callout {
    border-color: rgba(8, 17, 14, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #08110e;
}

.story-visual-mint .story-callout small {
    color: rgba(8, 17, 14, 0.56);
}

.story-callout-top {
    top: 78px;
    right: 10px;
}

.story-callout-bottom {
    bottom: 40px;
    left: 10px;
}

.home-page .proof-note {
    margin-top: 24px;
    text-align: left;
}

.feature-band {
    padding-block: 86px;
    border-top: 0 !important;
    background: #dff9f1;
    color: #08110e;
}

.feature-band-layout {
    display: grid;
    gap: 42px;
}

.feature-band .eyebrow,
.feature-band h2,
.feature-band h3 {
    color: #08110e;
}

.feature-band p {
    color: rgba(8, 17, 14, 0.66);
}

.feature-band-intro h2 {
    max-width: 13ch;
    margin: 12px 0 20px;
    font-size: clamp(2.65rem, 8vw, 4.8rem);
    line-height: 0.98;
}

.feature-band-intro > p:last-child {
    max-width: 580px;
    margin: 0;
    font-size: 1.02rem;
}

.feature-rows {
    border-top: 1px solid rgba(8, 17, 14, 0.2);
}

.feature-rows article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding-block: 24px;
    border-bottom: 1px solid rgba(8, 17, 14, 0.2);
}

.feature-rows article > span {
    color: rgba(8, 17, 14, 0.43);
    font-size: 0.78rem;
    font-weight: 680;
}

.feature-rows h3 {
    margin-bottom: 7px;
    font-size: clamp(1.45rem, 5vw, 2.2rem);
}

.feature-rows p {
    max-width: 520px;
    margin: 0;
}

.comparison-band {
    padding-block: 88px;
    border-top: 0 !important;
    background:
        radial-gradient(circle at 50% -20%, rgba(var(--accent-rgb), 0.1), transparent 42%),
        #080908;
}

.comparison-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.comparison-intro .eyebrow {
    margin-bottom: 12px;
    color: var(--accent);
}

.comparison-intro h2 {
    max-width: 15ch;
    margin: 0 auto;
    font-size: clamp(2.45rem, 6vw, 4.35rem);
    line-height: 0.98;
}

.comparison-intro > p {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--muted-strong);
    font-size: 0.98rem;
    line-height: 1.65;
}

.comparison-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin: 0 0 12px;
    color: rgba(244, 247, 245, 0.54);
    font-size: 0.68rem;
    font-weight: 720;
}

.comparison-scroll-hint span {
    color: var(--accent);
    font-size: 0.9rem;
}

.comparison-grid {
    display: grid;
    grid-auto-columns: min(82vw, 320px);
    grid-auto-flow: column;
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.comparison-grid::-webkit-scrollbar {
    display: none;
}

.comparison-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: #101110;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
    scroll-snap-align: start;
}

.comparison-card-featured {
    border-color: rgba(141, 246, 215, 0.72);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.7), transparent 38%),
        #dff9f1;
    color: #08110e;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.comparison-card-tag {
    align-self: flex-start;
    padding: 5px 9px;
    border-radius: 999px;
    background: #08110e;
    color: #dff9f1;
    font-size: 0.61rem;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.comparison-card-tag-neutral {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(244, 247, 245, 0.7);
}

.comparison-card-header {
    margin-top: 20px;
}

.comparison-name {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.comparison-app-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

.comparison-card-featured .comparison-app-icon {
    border-color: rgba(8, 17, 14, 0.13);
}

.comparison-screen-time-icon {
    position: relative;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #a88aff, #6d4de6);
}

.comparison-screen-time-glyph {
    position: relative;
    width: 21px;
    height: 28px;
}

.comparison-screen-time-glyph::before,
.comparison-screen-time-glyph::after {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    border-right: 10.5px solid transparent;
    border-left: 10.5px solid transparent;
    content: "";
}

.comparison-screen-time-glyph::before {
    top: 0;
    border-top: 13px solid #fff;
}

.comparison-screen-time-glyph::after {
    bottom: 0;
    border-bottom: 13px solid #fff;
}

.comparison-name h3,
.comparison-name p {
    margin: 0;
}

.comparison-name h3 {
    color: inherit;
    font-size: 1.04rem;
    letter-spacing: -0.015em;
}

.comparison-name p {
    margin-top: 2px;
    color: inherit;
    font-size: 0.7rem;
    line-height: 1.35;
    opacity: 0.6;
}

.comparison-price {
    min-height: 84px;
    margin-top: 28px;
}

.comparison-price strong,
.comparison-price span {
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.045em;
}

.comparison-price strong {
    font-size: clamp(1.9rem, 4vw, 2.35rem);
    font-weight: 740;
}

.comparison-price span {
    margin-left: 3px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0;
}

.comparison-price p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.69rem;
    line-height: 1.4;
}

.comparison-card-featured .comparison-price strong {
    color: #08110e;
}

.comparison-card-featured .comparison-price span,
.comparison-card-featured .comparison-price p {
    color: rgba(8, 17, 14, 0.58);
}

.comparison-card-body {
    flex: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-card-featured .comparison-card-body {
    border-top-color: rgba(8, 17, 14, 0.18);
}

.comparison-card-label {
    display: block;
    color: rgba(244, 247, 245, 0.46);
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.comparison-card-featured .comparison-card-label {
    color: rgba(8, 17, 14, 0.48);
}

.comparison-card-summary {
    min-height: 68px;
    margin: 7px 0 0;
    color: var(--muted-strong);
    font-size: 0.79rem;
    line-height: 1.5;
}

.comparison-card-featured .comparison-card-summary {
    color: rgba(8, 17, 14, 0.72);
}

.comparison-feature-list {
    display: grid;
    gap: 0;
    margin: 16px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    list-style: none;
}

.comparison-feature-list li {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(244, 247, 245, 0.77);
    font-size: 0.74rem;
    line-height: 1.35;
}

.comparison-feature-list li::before {
    position: absolute;
    top: 12px;
    left: 1px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.comparison-card-featured .comparison-feature-list {
    border-top-color: rgba(8, 17, 14, 0.13);
}

.comparison-card-featured .comparison-feature-list li {
    border-bottom-color: rgba(8, 17, 14, 0.13);
    color: rgba(8, 17, 14, 0.78);
}

.comparison-card-featured .comparison-feature-list li::before {
    background: #08110e;
}

.comparison-card-footer {
    min-height: 67px;
    margin-top: 22px;
}

.comparison-card-button {
    width: 100%;
    border-color: #08110e;
    background: #08110e;
    color: #fff;
    font-size: 0.82rem;
}

.comparison-card-button:hover {
    border-color: #172420;
    background: #172420;
}

.comparison-card-footer p {
    margin: 8px 0 0;
    color: rgba(8, 17, 14, 0.54);
    font-size: 0.65rem;
    line-height: 1.45;
}

.comparison-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-block: 10px;
    color: rgba(244, 247, 245, 0.72);
    font-size: 0.73rem;
    font-weight: 720;
    text-decoration: none;
}

.comparison-card-link:hover {
    color: var(--text);
}

.comparison-card-link span {
    color: var(--accent);
}

.comparison-takeaway {
    display: grid;
    gap: 17px;
    margin-top: 18px;
    padding: 23px;
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    border-radius: 18px;
    background: rgba(var(--accent-rgb), 0.055);
}

.comparison-takeaway div {
    display: grid;
    gap: 4px;
}

.comparison-takeaway span {
    color: rgba(244, 247, 245, 0.5);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.comparison-takeaway strong {
    color: var(--accent);
    font-size: 1rem;
}

.comparison-takeaway p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.85rem;
    line-height: 1.6;
}

.comparison-sources {
    max-width: none;
    margin: 14px 0 0;
    border-bottom: 1px solid var(--line);
}

.comparison-sources summary {
    display: flex;
    min-height: 52px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 7px 24px;
    color: rgba(244, 247, 245, 0.68);
    cursor: pointer;
    list-style: none;
}

.comparison-sources summary::-webkit-details-marker {
    display: none;
}

.comparison-sources summary > span {
    font-size: 0.68rem;
    line-height: 1.45;
}

.comparison-sources summary strong {
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 820;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.comparison-sources summary strong::after {
    margin-left: 7px;
    font-size: 0.9rem;
    content: "+";
}

.comparison-sources[open] summary strong::after {
    content: "−";
}

.comparison-source-copy {
    max-width: 920px;
    padding: 2px 0 18px;
}

.comparison-source-copy p {
    margin: 0;
    color: rgba(244, 247, 245, 0.62);
    font-size: 0.72rem;
    line-height: 1.6;
}

.comparison-source-copy p + p {
    margin-top: 8px;
}

.comparison-sources a {
    color: rgba(244, 247, 245, 0.86);
    text-underline-offset: 3px;
}

.faq-section {
    padding-block: 86px;
    border-top: 0 !important;
    background: #f1f0ea;
    color: #10110f;
}

.faq-section .eyebrow,
.faq-section h2,
.faq-section .faq summary {
    color: #10110f;
}

.faq-section .section-head {
    margin-bottom: 42px;
}

.faq-section .section-head h2 {
    max-width: 10ch;
    margin-top: 12px;
    font-size: clamp(2.8rem, 8vw, 5.4rem);
    line-height: 0.95;
}

.faq-section .faq {
    border-top-color: rgba(16, 17, 15, 0.22);
}

.faq-section .faq details {
    border-bottom-color: rgba(16, 17, 15, 0.22);
}

.faq-section .faq summary {
    min-height: 72px;
    font-size: 1.02rem;
    font-weight: 580;
}

.faq-section .faq summary::after {
    color: rgba(16, 17, 15, 0.62);
}

.faq-section .faq .answer p {
    color: rgba(16, 17, 15, 0.7);
}

.closing-section {
    padding-block: 88px;
    border-top: 0 !important;
    background: var(--accent);
    color: var(--accent-ink);
}

.closing-grid {
    display: grid;
    gap: 48px;
    align-items: end;
}

.closing-section .eyebrow {
    color: rgba(6, 17, 15, 0.62);
}

.closing-message h2 {
    max-width: 9ch;
    margin: 14px 0 0;
    color: var(--accent-ink);
    font-size: clamp(3.4rem, 13vw, 5.8rem);
    line-height: 0.92;
}

.closing-offer {
    padding-top: 24px;
    border-top: 1px solid rgba(6, 17, 15, 0.22);
}

.closing-copy {
    max-width: 510px;
    margin: 0 0 28px;
    color: rgba(6, 17, 15, 0.72);
    font-size: 1.05rem;
}

.closing-button {
    border-color: var(--accent-ink);
    background: var(--accent-ink);
    color: var(--text);
}

.closing-button:hover {
    border-color: #162420;
    background: #162420;
}

.closing-offer .fine-print {
    max-width: 500px;
    margin: 14px 0 0;
    color: rgba(6, 17, 15, 0.58);
}

@media (min-width: 600px) {
    .home-page .hero {
        padding-top: 42px;
    }

    .home-page .hero-actions .text-link {
        justify-content: flex-start;
    }

    .comparison-grid {
        grid-auto-columns: auto;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-right: 0;
        padding-right: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .comparison-scroll-hint {
        display: none;
    }

    .comparison-takeaway {
        grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
        gap: 38px;
        align-items: center;
    }
}

@media (min-width: 820px) {
    .home-page .hero {
        padding-block: 48px 96px;
    }

    .home-page .hero-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 26px;
    }

    .home-page .hero-copy {
        grid-column: 1 / span 7;
        align-self: center;
        padding-right: 30px;
    }

    .home-page .product-stage {
        grid-column: 8 / -1;
        min-height: 650px;
    }

    .home-page .hero h1 {
        font-size: clamp(5rem, 7.6vw, 7rem);
    }

    .product-stage {
        padding: 20px;
    }

    .product-stage-body {
        grid-template-columns: minmax(132px, 0.72fr) minmax(176px, 1.18fr);
        gap: 18px;
        padding-block: 22px;
    }

    .product-stage-device {
        width: min(100%, 222px);
    }

    .product-story {
        padding-block: 122px;
    }

    .story-intro {
        grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
        column-gap: 60px;
        max-width: none;
        align-items: end;
        margin-bottom: 64px;
    }

    .story-intro .eyebrow {
        grid-column: 1 / -1;
    }

    .story-intro h2 {
        grid-column: 1;
    }

    .story-intro > p:last-child {
        grid-column: 2;
        margin-bottom: 8px;
    }

    .story-grid {
        grid-auto-flow: initial;
        grid-auto-columns: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-right: 0;
        padding-right: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .story-copy {
        min-height: 275px;
        padding: 24px 24px 30px;
    }

    .story-visual {
        min-height: 470px;
    }

    .story-device {
        width: min(58%, 195px);
    }

    .story-device-shield {
        width: min(56%, 188px);
    }

    .feature-band {
        padding-block: 116px;
    }

    .feature-band-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 86px;
        align-items: start;
    }

    .feature-rows article {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 24px;
        padding-block: 30px;
    }

    .comparison-band {
        padding-block: 110px;
    }

    .faq-section {
        padding-block: 112px;
    }

    .faq-section .container {
        display: grid;
        grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
        gap: 90px;
        align-items: start;
    }

    .faq-section .section-head {
        position: sticky;
        top: 108px;
        margin: 0;
    }

    .closing-section {
        padding-block: 118px;
    }

    .closing-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.62fr);
        gap: 96px;
    }

    .closing-offer {
        margin-bottom: 6px;
    }
}

@media (min-width: 1040px) {
    .comparison-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 820px) and (max-width: 1039px) {
    .desktop-nav {
        display: none;
    }

    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    .home-page .hero-copy,
    .home-page .product-stage {
        grid-column: auto;
    }

    .home-page .hero-copy {
        max-width: 720px;
        padding-right: 0;
    }

    .home-page .product-stage {
        min-height: 590px;
    }

    .product-stage-body {
        width: 100%;
        max-width: 630px;
        grid-template-columns: minmax(170px, 0.68fr) minmax(210px, 1fr);
        gap: 34px;
        margin-inline: auto;
    }

    .product-stage-device {
        width: min(100%, 222px);
    }
}

@media (max-width: 440px) {
    .home-page .hero {
        padding-top: 28px;
    }

    .home-page .hero h1 {
        font-size: clamp(3.1rem, 15vw, 3.8rem);
    }

    .product-stage {
        min-height: 510px;
        padding: 16px;
    }

    .product-stage-body {
        grid-template-columns: minmax(108px, 0.74fr) minmax(142px, 1.05fr);
        gap: 10px;
        padding-block: 15px;
    }

    .product-stage-device {
        width: min(100%, 172px);
        padding: 6px;
        border-radius: 34px;
    }

    .product-stage-device img {
        border-radius: 28px;
    }

    .product-stage-controls li {
        padding-block: 10px;
    }

    .story-grid {
        grid-auto-columns: 84vw;
    }
}

@media (max-width: 359px) {
    .comparison-card {
        padding: 20px 18px;
    }
}

/* Personalized homepage conversion funnel */
.plan-builder-section {
    padding-block: 88px;
    border-top: 0 !important;
    background: #f1f0ea;
    color: #10110f;
}

.plan-builder-intro {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin-bottom: 34px;
}

.plan-builder-section .eyebrow,
.plan-builder-section h2,
.plan-builder-section h3,
.plan-builder-section legend {
    color: #10110f;
}

.plan-builder-intro .eyebrow {
    margin: 0;
    color: rgba(16, 17, 15, 0.62);
}

.plan-builder-intro h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.8rem, 8vw, 5.3rem);
    line-height: 0.96;
}

.plan-builder-intro > p:last-child {
    max-width: 680px;
    margin: 6px 0 0;
    color: rgba(16, 17, 15, 0.68);
    font-size: 1.04rem;
}

.plan-presets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
    border-block: 1px solid rgba(16, 17, 15, 0.2);
}

.plan-presets button {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 17px 12px;
    border: 0;
    border-right: 1px solid rgba(16, 17, 15, 0.15);
    border-bottom: 1px solid rgba(16, 17, 15, 0.15);
    background: transparent;
    color: #10110f;
    text-align: left;
    cursor: pointer;
}

.plan-presets button:nth-child(2n) {
    border-right: 0;
}

.plan-presets button:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.plan-presets button:hover,
.plan-presets button:focus-visible {
    background: rgba(16, 17, 15, 0.055);
}

.plan-presets strong,
.plan-presets span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-presets strong {
    font-size: 0.88rem;
}

.plan-presets span {
    color: rgba(16, 17, 15, 0.56);
    font-size: 0.76rem;
}

.plan-builder-shell {
    display: grid;
    gap: 18px;
    align-items: start;
}

.plan-form,
.plan-result {
    min-width: 0;
    border-radius: 24px;
}

.plan-form {
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid rgba(16, 17, 15, 0.18);
    background: #faf9f5;
}

.plan-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 25px 0;
    border: 0;
    border-bottom: 1px solid rgba(16, 17, 15, 0.15);
}

.plan-form fieldset:first-child {
    padding-top: 0;
}

.plan-form legend {
    width: 100%;
    margin-bottom: 14px;
    padding: 0;
    font-size: 1rem;
    font-weight: 690;
    letter-spacing: -0.012em;
}

.plan-form legend > span {
    margin-right: 9px;
    color: rgba(16, 17, 15, 0.42);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

.plan-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

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

.plan-choice,
.plan-pattern {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.plan-choice input,
.plan-pattern input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.plan-choice > span,
.plan-pattern > span {
    display: flex;
    min-height: 48px;
    align-items: center;
    border: 1px solid rgba(16, 17, 15, 0.17);
    border-radius: 12px;
    background: #fff;
    color: rgba(16, 17, 15, 0.74);
}

.plan-choice > span {
    justify-content: center;
    padding: 10px;
    font-size: 0.84rem;
    font-weight: 660;
    text-align: center;
}

.plan-choice input:checked + span,
.plan-pattern input:checked + span {
    border-color: #10110f;
    background: #10110f;
    color: #fff;
    box-shadow: 0 0 0 1px #10110f;
}

.plan-choice input:focus-visible + span,
.plan-pattern input:focus-visible + span {
    outline: 3px solid #32a987;
    outline-offset: 3px;
}

.plan-other-field {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.plan-other-field[hidden] {
    display: none;
}

.plan-other-field > span {
    color: rgba(16, 17, 15, 0.62);
    font-size: 0.76rem;
    font-weight: 670;
}

.plan-other-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid rgba(16, 17, 15, 0.22);
    border-radius: 12px;
    background: #fff;
    color: #10110f;
}

.plan-pattern-grid {
    display: grid;
    gap: 9px;
}

.plan-pattern > span {
    align-items: flex-start;
    padding: 13px 14px;
}

.plan-pattern strong,
.plan-pattern small {
    display: block;
}

.plan-pattern strong {
    margin-bottom: 2px;
    font-size: 0.87rem;
}

.plan-pattern small {
    color: rgba(16, 17, 15, 0.56);
    font-size: 0.76rem;
    line-height: 1.42;
}

.plan-pattern input:checked + span small {
    color: rgba(255, 255, 255, 0.68);
}

.plan-submit {
    width: 100%;
    margin-top: 24px;
    border-color: #10110f;
    background: #10110f;
    color: #fff;
}

.plan-submit:hover {
    border-color: #24312d;
    background: #24312d;
    color: #fff;
}

.plan-privacy {
    margin: 11px 0 0;
    color: rgba(16, 17, 15, 0.52);
    font-size: 0.74rem;
    line-height: 1.5;
    text-align: center;
}

.plan-result {
    display: grid;
    gap: 26px;
    padding: clamp(22px, 4vw, 36px);
    overflow: hidden;
    background: #0c0d0c;
    color: var(--text);
}

.plan-result h3 {
    max-width: 14ch;
    margin-bottom: 12px;
    color: var(--text);
    font-size: clamp(1.9rem, 6vw, 3.25rem);
    line-height: 1;
}

.plan-result-copy > p {
    max-width: 600px;
    margin-bottom: 20px;
    color: var(--muted-strong);
}

.plan-result-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.plan-steps {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 0.86rem;
}

.plan-phone {
    position: relative;
    display: grid;
    min-height: 360px;
    align-content: center;
    justify-items: center;
    padding: 58px 26px 28px;
    overflow: hidden;
    border: 7px solid #1e211f;
    border-radius: 38px;
    background: #e4fbf4;
    color: #07110e;
    text-align: center;
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
}

.plan-phone::before {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 76px;
    height: 20px;
    border-radius: 20px;
    background: #1e211f;
    content: "";
    transform: translateX(-50%);
}

.plan-phone-top {
    position: absolute;
    top: 38px;
    left: 21px;
    right: 21px;
    display: flex;
    justify-content: space-between;
    color: rgba(7, 17, 14, 0.53);
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0.08em;
}

.plan-app-mark {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 13px;
    place-items: center;
    border-radius: 17px;
    background: #10110f;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 760;
}

.plan-phone > strong {
    margin-bottom: 7px;
    font-size: 1.32rem;
}

.plan-phone > p {
    max-width: 280px;
    margin: 0 0 22px;
    color: rgba(7, 17, 14, 0.62);
    font-size: 0.82rem;
}

.plan-phone > button {
    min-height: 43px;
    padding: 0 15px;
    border: 1px solid #10110f;
    border-radius: 10px;
    background: #10110f;
    color: #fff;
    font-weight: 680;
    cursor: pointer;
}

.plan-phone > button:disabled {
    cursor: default;
    opacity: 0.48;
}

.plan-block-screen {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 42px 28px;
    background: rgba(7, 11, 9, 0.96);
    color: #fff;
}

.plan-block-screen[hidden] {
    display: none;
}

.plan-block-screen > span {
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-block-screen > strong {
    max-width: 9ch;
    margin-bottom: 14px;
    font-size: 1.7rem;
    line-height: 1.05;
}

.plan-block-screen > p {
    max-width: 250px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
}

.plan-result-actions {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.plan-result-actions[hidden],
.plan-ai-tools[hidden] {
    display: none;
}

.plan-result-actions .button {
    width: 100%;
}

.plan-result-actions > p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.48;
    text-align: center;
}

.plan-ai-tools {
    display: grid;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.plan-ai-tools > div:first-child > span,
.plan-ai-tools > div:first-child > strong {
    display: block;
}

.plan-ai-tools > div:first-child > span {
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 710;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.plan-ai-tools > div:first-child > p {
    max-width: 620px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

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

.plan-ai-actions button {
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 650;
    cursor: pointer;
}

.plan-ai-actions button:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.085);
}

.plan-ai-status {
    min-height: 1.4em;
    margin: 0;
    color: var(--accent);
    font-size: 0.76rem;
}

@media (min-width: 600px) {
    .plan-presets {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .plan-presets button,
    .plan-presets button:nth-child(2n) {
        border-right: 1px solid rgba(16, 17, 15, 0.15);
        border-bottom: 0;
    }

    .plan-presets button:last-child {
        border-right: 0;
    }

    .plan-choice-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .plan-app-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

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

    .plan-result-actions .button {
        width: auto;
    }

    .plan-result-actions > p {
        max-width: 560px;
        text-align: left;
    }
}

@media (min-width: 920px) {
    .plan-builder-section {
        padding-block: 118px;
    }

    .plan-builder-intro {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
        column-gap: 70px;
        max-width: none;
        align-items: end;
        margin-bottom: 48px;
    }

    .plan-builder-intro .eyebrow {
        grid-column: 1 / -1;
    }

    .plan-builder-intro h2 {
        grid-column: 1;
    }

    .plan-builder-intro > p:last-child {
        grid-column: 2;
        margin-bottom: 8px;
    }

    .plan-builder-shell {
        grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
        gap: 22px;
    }

    .plan-result {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
        column-gap: 34px;
        align-items: center;
    }

    .plan-phone {
        grid-column: 2;
        grid-row: 1 / span 3;
        min-height: 430px;
    }

    .plan-result-copy,
    .plan-result-actions,
    .plan-ai-tools {
        grid-column: 1;
    }

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

@media (max-width: 420px) {
    .plan-choice-grid,
    .plan-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-presets {
        grid-template-columns: 1fr;
    }

    .plan-presets button,
    .plan-presets button:nth-child(2n),
    .plan-presets button:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(16, 17, 15, 0.15);
    }

    .plan-presets button:last-child {
        border-bottom: 0;
    }
}

/* Plan builder visual reset: editorial, compact, and product-native */
.plan-builder-section {
    padding-block: 76px;
    background: #f1f0ea;
}

.plan-builder-intro {
    display: grid;
    max-width: 1080px;
    margin-bottom: 20px;
}

.plan-builder-intro h2 {
    max-width: 15ch;
    font-size: clamp(2.7rem, 5.8vw, 4.8rem);
    line-height: 0.98;
}

.plan-builder-intro > p:last-child {
    max-width: 570px;
    font-size: 1rem;
    line-height: 1.65;
}

.plan-builder-shell {
    display: block;
}

.plan-form,
.plan-result {
    border-radius: 0;
}

.plan-form {
    display: grid;
    padding: 12px 0 0;
    border: 0;
    border-top: 1px solid rgba(16, 17, 15, 0.28);
    border-bottom: 1px solid rgba(16, 17, 15, 0.28);
    background: transparent;
}

.plan-form fieldset,
.plan-form fieldset:first-child {
    margin: 0;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid rgba(16, 17, 15, 0.16);
}

.plan-form fieldset:last-of-type {
    border-bottom: 0;
}

.plan-form legend {
    display: flex;
    gap: 11px;
    align-items: baseline;
    margin-bottom: 0;
    font-size: 1rem;
}

.plan-form legend > span {
    min-width: 19px;
    margin: 0;
    color: rgba(16, 17, 15, 0.42);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 620;
}

.plan-choice-grid,
.plan-app-grid,
.plan-pattern-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.plan-choice > span,
.plan-pattern > span {
    position: relative;
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 10px;
    min-height: 40px;
    align-items: center;
    padding: 7px 2px;
    border: 0;
    border-bottom: 1px solid rgba(16, 17, 15, 0.13);
    border-radius: 0;
    background: transparent;
    color: rgba(16, 17, 15, 0.68);
    text-align: left;
    box-shadow: none;
    transition: color 140ms ease, border-color 140ms ease;
}

.plan-choice > span::before,
.plan-pattern > span::before {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(16, 17, 15, 0.38);
    border-radius: 50%;
    content: "";
    transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.plan-choice:hover > span,
.plan-pattern:hover > span {
    border-color: rgba(16, 17, 15, 0.3);
    color: #10110f;
}

.plan-choice input:checked + span,
.plan-pattern input:checked + span {
    border-color: rgba(16, 17, 15, 0.42);
    background: transparent;
    color: #10110f;
    box-shadow: none;
}

.plan-choice input:checked + span::before,
.plan-pattern input:checked + span::before {
    border-color: #10110f;
    background: #32a987;
    box-shadow: inset 0 0 0 2px #f1f0ea;
}

.plan-choice input:focus-visible + span,
.plan-pattern input:focus-visible + span {
    outline: 2px solid #32a987;
    outline-offset: 3px;
}

.plan-choice > span {
    justify-content: start;
    font-size: 0.86rem;
    font-weight: 640;
}

.plan-pattern > span {
    align-items: start;
}

.plan-pattern > span::before {
    grid-row: 1 / span 2;
    margin-top: 3px;
}

.plan-pattern strong {
    grid-column: 2;
    margin: 0;
    font-size: 0.86rem;
    font-weight: 660;
}

.plan-pattern small,
.plan-pattern input:checked + span small {
    grid-column: 2;
    margin-top: 2px;
    color: rgba(16, 17, 15, 0.5);
    font-size: 0.74rem;
}

.plan-other-field {
    max-width: 340px;
}

.plan-other-field input {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.55);
}

.plan-submit {
    width: auto;
    min-width: 190px;
    margin: 14px 0 0;
    justify-self: start;
}

.plan-privacy {
    margin: 8px 0 12px;
    text-align: left;
}

.plan-result[hidden] {
    display: none;
}

.plan-result {
    display: grid;
    gap: 30px;
    margin-top: 38px;
    padding: clamp(34px, 5vw, 54px) 0;
    overflow: visible;
    border-top: 3px solid #10110f;
    border-bottom: 1px solid rgba(16, 17, 15, 0.28);
    background: transparent;
    color: #10110f;
}

.plan-result-copy {
    max-width: 660px;
}

.plan-result h3 {
    max-width: 18ch;
    margin: 0 0 15px;
    color: #10110f;
    font-size: clamp(2rem, 4.4vw, 3.7rem);
    line-height: 1.02;
}

.plan-result h3:focus {
    outline: none;
}

.plan-result-copy > p {
    max-width: 630px;
    margin: 0;
    color: rgba(16, 17, 15, 0.65);
    font-size: 0.94rem;
    line-height: 1.62;
}

.plan-result-kicker {
    margin-bottom: 14px;
    color: #167b64;
}

.plan-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: plan-step;
}

.plan-steps li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(16, 17, 15, 0.16);
    color: rgba(16, 17, 15, 0.7);
    font-size: 0.84rem;
    line-height: 1.55;
    counter-increment: plan-step;
}

.plan-steps li::before {
    color: #167b64;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.7rem;
    content: "0" counter(plan-step);
}

.plan-result-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(16, 17, 15, 0.18);
}

.plan-result-actions .button {
    width: auto;
    flex: 0 0 auto;
    border-color: #10110f;
    background: #10110f;
    color: #fff;
}

.plan-result-actions > p {
    max-width: 470px;
    margin: 0;
    color: rgba(16, 17, 15, 0.52);
    text-align: left;
}

.plan-ai-tools {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 26px;
    align-items: end;
    padding-top: 24px;
    border-top: 1px solid rgba(16, 17, 15, 0.18);
}

.plan-ai-tools > div:first-child > span {
    color: #167b64;
}

.plan-ai-tools > div:first-child > strong {
    color: #10110f;
}

.plan-ai-tools > div:first-child > p {
    color: rgba(16, 17, 15, 0.56);
    line-height: 1.55;
}

.plan-ai-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0 18px;
    justify-content: flex-start;
}

.plan-ai-actions button {
    min-height: 34px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(16, 17, 15, 0.34);
    border-radius: 0;
    background: transparent;
    color: #10110f;
    font-size: 0.76rem;
}

.plan-ai-actions button:hover {
    border-color: var(--accent);
    background: transparent;
    color: var(--accent);
}

.plan-ai-status {
    grid-column: 1 / -1;
    color: #167b64;
}

@media (min-width: 760px) {
    .plan-builder-intro {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
        column-gap: 70px;
        align-items: end;
    }

    .plan-builder-intro .eyebrow {
        grid-column: 1 / -1;
    }

    .plan-builder-intro h2 {
        grid-column: 1;
    }

    .plan-builder-intro > p:last-child {
        grid-column: 2;
        margin-bottom: 4px;
    }
}

@media (min-width: 920px) {
    .plan-builder-section {
        padding-block: 64px;
    }

    .plan-form {
        grid-template-columns: 0.82fr 0.88fr 1.3fr;
        padding-top: 14px;
    }

    .plan-form fieldset,
    .plan-form fieldset:first-child,
    .plan-form fieldset:last-of-type {
        min-width: 0;
        padding: 0 24px 10px;
        border-right: 1px solid rgba(16, 17, 15, 0.16);
        border-bottom: 0;
    }

    .plan-form fieldset:first-child {
        padding-left: 0;
    }

    .plan-form fieldset:last-of-type {
        padding-right: 0;
        border-right: 0;
    }

    .plan-choice-grid,
    .plan-app-grid,
    .plan-pattern-grid {
        grid-template-columns: 1fr;
    }

    .plan-choice > span,
    .plan-pattern > span {
        min-height: 36px;
        padding: 4px 2px;
    }

    .plan-pattern small,
    .plan-pattern input:checked + span small {
        line-height: 1.3;
    }

    .plan-submit,
    .plan-privacy {
        grid-column: 1 / -1;
    }

    .plan-submit {
        margin-top: 14px;
    }

    .plan-result {
        grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
        column-gap: 64px;
        align-items: start;
    }

    .plan-result-copy {
        grid-column: 1;
    }

    .plan-steps {
        grid-column: 2;
    }

    .plan-result-actions,
    .plan-ai-tools {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .plan-builder-section {
        padding-block: 64px;
    }

    .plan-builder-intro {
        margin-bottom: 28px;
    }

    .plan-choice-grid,
    .plan-app-grid,
    .plan-pattern-grid {
        grid-template-columns: 1fr;
    }

    .plan-result-actions {
        display: grid;
    }

    .plan-result-actions .button {
        width: 100%;
    }

    .plan-ai-tools {
        grid-template-columns: 1fr;
    }
}
