:root {
    --navy-950: #06101e;
    --navy-900: #0a1728;
    --navy-800: #10233a;
    --navy-700: #16314f;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --cyan-400: #22d3ee;
    --green-500: #22c55e;
    --green-400: #4ade80;
    --amber-400: #fbbf24;
    --slate-950: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --max-width: 1160px;
    --shadow-lg: 0 30px 80px rgba(2, 8, 23, 0.32);
    --shadow-card: 0 18px 44px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--navy-950);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

body.site-light {
    background: #f8fafc;
    color: var(--slate-950);
}

a {
    color: inherit;
}

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

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

.site-header {
    position: sticky;
    color: var(--white);
    top: 0;
    z-index: 50;
    background: rgba(6, 16, 30, 0.86);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    backdrop-filter: blur(18px);
}

.site-header.light {
    color: var(--slate-950);
    background: rgba(248, 250, 252, 0.92);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.brand-mark {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-600), var(--cyan-400));
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
}

.brand-mark.small {
    width: 43px;
    height: 43px;
    border-radius: 13px;
}

.brand-mark svg {
    width: 34px;
    height: 34px;
}

.brand-mark.small svg {
    width: 29px;
    height: 29px;
}

.brand-copy strong,
.brand-copy span {
    display: block;
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: 0.01em;
}

.brand-copy span {
    margin-top: 2px;
    font-size: 12px;
    color: #94a3b8;
}

.site-light .brand-copy span {
    color: var(--slate-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links > a:not(.nav-cta) {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.site-light .nav-links > a:not(.nav-cta) {
    color: var(--slate-600);
}

.nav-links > a:hover {
    color: var(--white);
}

.site-light .nav-links > a:hover {
    color: var(--slate-950);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.32);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 76px;
    background:
        radial-gradient(circle at 16% 20%, rgba(37, 99, 235, 0.24), transparent 31%),
        radial-gradient(circle at 90% 8%, rgba(34, 211, 238, 0.17), transparent 29%),
        linear-gradient(180deg, var(--navy-950) 0%, #09182b 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -260px 36%;
    height: 520px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    filter: blur(80px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.eyebrow.dark {
    background: #eaf2ff;
    border-color: #d6e5ff;
    color: #1d4ed8;
}

.hero h1 {
    max-width: 720px;
    margin: 22px 0 20px;
    font-size: clamp(3.2rem, 6vw, 5.9rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero h1 span {
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 670px;
    margin: 0;
    color: #b8c6d9;
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), #0ea5e9);
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.34);
}

.button-secondary {
    color: #dbeafe;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 35, 58, 0.6);
}

.hero-points {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 650;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-points b {
    color: #67e8f9;
}

.scheduler-visual {
    position: relative;
    padding: 30px 12px 34px 28px;
}

.visual-window {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 25px;
    background: rgba(10, 24, 42, 0.95);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.visual-toolbar {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.visual-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 750;
}

.visual-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
}

.status-pill {
    padding: 7px 11px;
    border-radius: 999px;
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.2);
    font-size: 11px;
    font-weight: 800;
}

.visual-control-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 12px;
    padding: 18px 20px 4px;
}

.visual-control-row > div {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(30, 51, 78, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.visual-label,
.visual-control-row strong {
    display: block;
}

.visual-label {
    margin-bottom: 5px;
    color: #8fa3bc;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.visual-control-row strong {
    font-size: 13px;
}

.interval-board {
    display: grid;
    grid-template-columns: 60px repeat(4, minmax(48px, 1fr));
    gap: 7px;
    padding: 18px 20px;
}

.board-day,
.board-time,
.slot {
    min-height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.board-day {
    color: #9fb0c7;
    font-size: 11px;
    font-weight: 750;
}

.board-time {
    justify-content: start;
    color: #8094ae;
    font-size: 10px;
}

.slot {
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.1);
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    font-weight: 900;
}

.slot.selected {
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(74, 222, 128, 0.34);
}

.slot.skipped {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.13);
    border-color: rgba(251, 191, 36, 0.2);
}

.visual-footer {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.13);
    color: #8fa3bc;
    font-size: 10px;
}

.visual-footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.visual-footer strong {
    margin-left: auto;
    color: #e2e8f0;
    font-size: 11px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.selected-dot {
    background: var(--green-400);
}

.skipped-dot {
    background: var(--amber-400);
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 190px;
    padding: 13px 15px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 15px;
    background: rgba(15, 35, 58, 0.93);
    box-shadow: 0 18px 48px rgba(2, 8, 23, 0.4);
    backdrop-filter: blur(14px);
}

.floating-card span,
.floating-card strong {
    display: block;
}

.floating-card span {
    margin-bottom: 4px;
    color: #8fa3bc;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card-top {
    top: 0;
    right: -10px;
}

.floating-card-bottom {
    bottom: 0;
    left: -10px;
}

.trust-strip {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: #081525;
}

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

.trust-grid > div {
    padding: 28px 30px;
    border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 6px;
    color: #f8fafc;
    font-size: 15px;
}

.trust-grid span {
    color: #8fa3bc;
    font-size: 13px;
    line-height: 1.55;
}

.section {
    padding: 88px 0;
}

.section-light {
    background: #f8fafc;
    color: var(--slate-950);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 18px 0 14px;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: #9fb0c7;
    font-size: 17px;
    line-height: 1.72;
}

.section-light .section-heading p {
    color: var(--slate-600);
}

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

.feature-card {
    position: relative;
    min-height: 240px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.feature-card-highlight {
    background: linear-gradient(145deg, #eff6ff, #ffffff 70%);
    border-color: #bfdbfe;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 13px;
    background: #eaf2ff;
    color: #1d4ed8;
    font-size: 19px;
    font-weight: 900;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.7;
}

.workflow-section {
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.16), transparent 25%),
        #091827;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 74px;
    align-items: start;
}

.workflow-steps {
    display: grid;
    gap: 14px;
}

.workflow-steps article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: 18px;
    background: rgba(16, 35, 58, 0.68);
}

.workflow-steps article > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 900;
}

.workflow-steps h3 {
    margin: 1px 0 6px;
    font-size: 16px;
}

.workflow-steps p {
    margin: 0;
    color: #9fb0c7;
    font-size: 13px;
    line-height: 1.6;
}

.comparison-panel {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
    padding: 44px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
}

.comparison-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.comparison-copy p {
    margin: 0;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.75;
}

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

.comparison-card {
    padding: 22px;
    border-radius: 20px;
}

.comparison-card > span {
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 850;
}

.comparison-card ul,
.plan-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 11px;
}

.comparison-card li {
    color: var(--slate-600);
    font-size: 13px;
    line-height: 1.5;
}

.muted-card {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.active-card {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.active-card > span {
    color: #1d4ed8;
}

.plans-section {
    background: #071321;
}

.plan-grid {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.plan-card {
    position: relative;
    padding: 31px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(16, 35, 58, 0.68);
}

.featured-plan {
    border-color: rgba(34, 211, 238, 0.45);
    background: linear-gradient(155deg, rgba(37, 99, 235, 0.22), rgba(16, 35, 58, 0.78));
}

.plan-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.13);
    color: #a5f3fc;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-badge.secondary {
    background: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
}

.plan-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.plan-price strong,
.plan-price span {
    display: block;
}

.plan-price strong {
    font-size: 34px;
    letter-spacing: -0.035em;
}

.plan-price span {
    margin-top: 4px;
    color: #8fa3bc;
    font-size: 12px;
}

.plan-card > p {
    min-height: 52px;
    margin: 18px 0;
    color: #a9b8cb;
    font-size: 14px;
    line-height: 1.65;
}

.plan-card li {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.5;
}

.subscriber-cta {
    max-width: 920px;
    margin: 22px auto 0;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: 20px;
    background: rgba(16, 35, 58, 0.58);
}

.subscriber-cta strong,
.subscriber-cta span {
    display: block;
}

.subscriber-cta strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.subscriber-cta span {
    color: #8fa3bc;
    font-size: 13px;
}

.disclaimer-section {
    padding: 0 0 72px;
    background: #071321;
}

.disclaimer-card {
    padding: 19px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.07);
}

.disclaimer-card strong {
    color: #fde68a;
}

.disclaimer-card p {
    margin: 0;
    color: #b8c6d9;
    font-size: 13px;
    line-height: 1.6;
}

.footer {
    padding: 34px 0;
    color: var(--white);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: #050d17;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8fa3bc;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

/* Terms page */
.tos-wrapper {
    padding: 58px 0 80px;
}

.tos-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.tos-card h1 {
    margin: 0 0 8px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -0.04em;
}

.tos-card h2 {
    margin: 30px 0 9px;
    font-size: 18px;
}

.tos-card p,
.tos-card li {
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.72;
}

.tos-card p {
    margin: 0;
}

.tos-meta {
    margin-bottom: 26px;
    color: var(--slate-500);
    font-size: 13px;
}

.tos-list {
    margin: 10px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 9px;
}

.site-light .button-secondary {
    color: var(--slate-950);
    background: var(--white);
    border-color: #cbd5e1;
}

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

    .hero-copy {
        max-width: 780px;
    }

    .scheduler-visual {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

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

    .workflow-grid,
    .comparison-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
    }

    .nav-links {
        justify-content: flex-end;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav-links > a:not(.nav-cta) {
        display: none;
    }

    .trust-grid,
    .plan-grid,
    .comparison-columns {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }

    .trust-grid > div:last-child {
        border-bottom: 0;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--max-width));
    }

    .brand-copy span {
        display: none;
    }

    .nav-cta {
        padding: 0 12px;
        min-height: 38px;
        font-size: 11px;
    }

    .hero {
        padding: 58px 0 52px;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

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

    .feature-card {
        min-height: auto;
    }

    .scheduler-visual {
        padding: 22px 0 30px;
    }

    .floating-card {
        display: none;
    }

    .visual-control-row {
        grid-template-columns: 1fr;
    }

    .interval-board {
        grid-template-columns: 44px repeat(4, minmax(36px, 1fr));
        gap: 5px;
        padding: 14px 12px;
    }

    .board-day,
    .board-time,
    .slot {
        min-height: 33px;
    }

    .visual-footer {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 14px;
    }

    .visual-footer strong {
        width: 100%;
        margin-left: 0;
    }

    .section {
        padding: 64px 0;
    }

    .comparison-panel,
    .tos-card {
        padding: 24px;
    }

    .plan-card {
        padding: 24px;
    }

    .disclaimer-card {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 72px 0;
    background: #f8fafc;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 36px 40px;
    border: 1px solid #dbeafe;
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: var(--shadow-card);
}

.contact-card h2 {
    margin: 16px 0 10px;
    color: var(--slate-900);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.contact-card p {
    max-width: 680px;
    margin: 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.button-whatsapp {
    flex-shrink: 0;
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(22, 163, 74, 0.24);
}

.button-whatsapp:hover {
    background: #15803d;
}

.footer-meta {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.copyright,
.terms-footer p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.terms-footer {
    padding: 24px 0 40px;
    text-align: center;
}

@media (max-width: 820px) {
    .contact-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .footer-meta {
        justify-items: start;
    }
}


.install-action-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.install-help-link {
    color: var(--muted);
    font-size: 0.86rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* Subscriber installation options */
.setup-hero-section {
    padding-top: 54px;
}

.setup-heading {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.setup-primary-card,
.setup-finish-card,
.permission-help-card,
.setup-method-card,
.loader-source-panel {
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.22);
}

.setup-primary-card,
.setup-finish-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 24px;
    border-radius: 22px;
}

.setup-step-number {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: white;
    background: linear-gradient(145deg, #2563eb, #38bdf8);
    border-radius: 15px;
    font-weight: 900;
}

.setup-kicker {
    display: block;
    margin-bottom: 5px;
    color: #93c5fd;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.setup-primary-copy h2,
.setup-finish-card h2,
.setup-method-heading h2 {
    margin-bottom: 6px;
}

.setup-primary-copy p,
.setup-finish-card p,
.setup-method-card p,
.permission-help-card p,
.loader-source-panel p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.setup-primary-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.setup-method-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 34px 0 18px;
}

.setup-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.setup-method-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 22px;
}

.setup-method-card.recommended-method {
    border-color: rgba(56, 189, 248, 0.45);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.7));
}

.method-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 10px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
}

.method-badge.secondary {
    color: #d1fae5;
    background: rgba(16, 185, 129, 0.15);
}

.setup-method-card .button {
    margin-top: auto;
}

.setup-note {
    margin-top: 15px;
    padding: 12px 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.55;
}

.manual-steps {
    margin: 4px 0 20px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.65;
}

.manual-steps li + li {
    margin-top: 7px;
}

.copy-loader-status {
    min-height: 22px;
    margin: 12px 0 0;
    color: #86efac;
    font-size: 0.82rem;
}

.copy-loader-status.error {
    color: #fda4af;
}

.loader-source-panel {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
}

.loader-source-panel summary {
    cursor: pointer;
    font-weight: 800;
}

.loader-source-panel textarea {
    width: 100%;
    min-height: 360px;
    margin-top: 14px;
    padding: 14px;
    color: #dbeafe;
    background: #020617;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    font: 0.75rem/1.55 "SFMono-Regular", Consolas, monospace;
    resize: vertical;
}

.setup-finish-card {
    grid-template-columns: auto 1fr;
    margin-top: 18px;
}

.permission-help-card {
    margin-top: 18px;
    padding: 22px;
    border-radius: 18px;
}

.permission-help-card h3 {
    margin-bottom: 8px;
}

@media (max-width: 820px) {
    .setup-primary-card,
    .setup-finish-card,
    .setup-method-grid {
        grid-template-columns: 1fr;
    }

    .setup-primary-actions {
        justify-content: flex-start;
    }

    .setup-primary-actions .button,
    .setup-method-card .button {
        width: 100%;
    }
}


.site-light .site-header:not(.light) .brand-copy span,
.site-light .footer .brand-copy span {
    color: #94a3b8;
}

.site-light .site-header:not(.light) .nav-links > a:not(.nav-cta) {
    color: #cbd5e1;
}

.site-light .site-header:not(.light) .nav-links > a:hover {
    color: var(--white);
}

/* Results gallery (real selected-shift screenshots) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

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

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

.result-card {
    margin: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--slate-200);
}

.result-card img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--slate-200);
}

.result-card figcaption {
    padding: 14px 18px 18px;
}

.result-card figcaption strong {
    display: block;
    font-size: 14px;
    color: var(--slate-950);
}

.result-card figcaption span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--slate-600);
}

