@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=DM+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --bg: #07090f;
    --bg-soft: #0b0f1a;
    --panel: #0e1420;
    --panel-2: #121c2c;
    --panel-3: #16223a;
    --line: rgba(255,255,255,.07);
    --line-med: rgba(255,255,255,.12);
    --text: #e4eeff;
    --muted: #7a9bbf;
    --muted-2: #556d88;
    --brand: #4d8fff;
    --brand-2: #2ecfbd;
    --accent: #f0a020;
    --accent-2: #ffc84a;
    --success: #30d87a;
    --danger: #f05555;
    --shadow: 0 28px 70px rgba(0,0,0,.5);
    --radius: 18px;
    --radius-sm: 11px;
    --max: 1140px;
    --nav-h: 66px;
    --font: 'DM Sans',ui-sans-serif,system-ui,sans-serif;
    --serif: 'Instrument Serif',Georgia,serif;
    --mono: 'DM Mono',ui-monospace,monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    background-image: radial-gradient(ellipse 1000px 600px at 0% 0%,rgba(77,143,255,.07),transparent 55%),
    radial-gradient(ellipse 800px 500px at 100% 20%,rgba(46,207,189,.05),transparent 50%);
}

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

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 0;
}

/* ── Layout ─────────────────────────────── */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 36px 22px 110px;
}

.wrap-tight {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

.section {
    margin-top: 32px;
}

/* ── Nav ────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7,9,15,.88);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    height: 100%;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-right: auto;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: block;
}

.nav-wordmark {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.025em;
    background: linear-gradient(100deg,var(--text) 60%,var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-right: 16px;
}

.nav-links a {
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .15s,background .15s;
    letter-spacing: -.01em;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,.05);
}

.nav-links a.active {
    color: var(--text);
}

/* store pill */
.nav-store {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line-med);
    color: var(--text);
    transition: background .15s,border-color .15s;
}

.nav-store:hover {
    background: rgba(255,255,255,.12);
}

.nav-store.active {
    background: rgba(77,143,255,.15);
    border-color: rgba(77,143,255,.3);
    color: var(--brand);
}

/* hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 7px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    margin-left: 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--muted);
    transition: transform .24s,opacity .24s;
}

/* mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    z-index: 199;
    background: rgba(7,9,15,.97);
    backdrop-filter: blur(20px);
    padding: 20px 22px 40px;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s,transform .2s;
}

.mobile-drawer.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-drawer a {
    display: block;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--line);
    transition: background .15s;
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
    background: rgba(255,255,255,.06);
}

.mobile-drawer .drawer-store {
    margin-top: 6px;
    border-color: rgba(77,143,255,.3);
    background: rgba(77,143,255,.1);
    color: var(--brand);
}

/* ── Typography ──────────────────────────── */
h1 {
    margin: 0 0 18px;
    font-size: clamp(34px,5.5vw,64px);
    line-height: .97;
    letter-spacing: -.05em;
    font-weight: 800;
}

h1 em {
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
}

h2 {
    margin: 0 0 14px;
    font-size: clamp(22px,2.8vw,32px);
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 800;
}

h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -.025em;
    font-weight: 700;
}

h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.015em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid var(--line-med);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: var(--success);
    flex-shrink: 0;
    box-shadow: 0 0 7px var(--success);
    animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink{
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.kicker-teal {
    color: var(--brand-2);
}

.kicker-blue {
    color: var(--brand);
}

.subcopy {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 56ch;
    margin: 0 0 24px;
}

.lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
}

.body-copy {
    color: var(--muted);
    line-height: 1.72;
    font-size: 15px;
}

.small {
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.6;
}

.center {
    text-align: center;
}

/* ── Buttons (large, section-anchoring) ──── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
    border: 1px solid var(--line-med);
    background: rgba(255,255,255,.05);
    color: var(--text);
    cursor: pointer;
    transition: transform .15s,opacity .15s,background .18s,border-color .18s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg,var(--brand) 0%,var(--brand-2) 100%);
    color: #04111f;
    border: none;
    box-shadow: 0 8px 32px rgba(77,143,255,.25);
}

.btn-primary:hover {
    opacity: .93;
    box-shadow: 0 12px 40px rgba(77,143,255,.35);
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
}

.btn-accent {
    background: linear-gradient(135deg,var(--accent) 0%,var(--accent-2) 100%);
    color: #180c00;
    border: none;
    box-shadow: 0 8px 32px rgba(240,160,32,.2);
}

.btn-accent:hover {
    opacity: .93;
    box-shadow: 0 12px 40px rgba(240,160,32,.3);
    background: linear-gradient(135deg,var(--accent),var(--accent-2));
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line-med);
}

.btn-ghost:hover {
    background: rgba(255,255,255,.06);
    border-color: var(--line-med);
}

.btn-outline-brand {
    background: rgba(77,143,255,.08);
    border: 1px solid rgba(77,143,255,.3);
    color: var(--brand);
}

.btn-outline-brand:hover {
    background: rgba(77,143,255,.14);
    border-color: rgba(77,143,255,.5);
    color: var(--brand);
}

.btn-sm {
    padding: 12px 22px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-xl {
    padding: 22px 44px;
    font-size: 18px;
    border-radius: 20px;
}

.cta-row,
.hero-actions,
.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ── Cards / surfaces ────────────────────── */
.card,
.panel,
.stat,
.feature,
.note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.025);
    padding: 24px;
}

.card-icon,
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,rgba(77,143,255,.18),rgba(46,207,189,.10));
    border: 1px solid rgba(255,255,255,.07);
    font-size: 22px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

/* ── Hero ────────────────────────────────── */
.hero {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(170deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.015) 100%),
    radial-gradient(700px 300px at 65% -10%,rgba(77,143,255,.08),transparent 55%);
    box-shadow: var(--shadow);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle,rgba(46,207,189,.06),transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-aside {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
}

/* ── Grids ───────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
}

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

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

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 16px;
}

/* ── Product cards (store/products page) ─── */
.product-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.025);
    overflow: hidden;
    transition: border-color .2s,transform .2s,box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--line-med);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

.product-card-band {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg,var(--brand),var(--brand-2));
}

.product-card-band.amber {
    background: linear-gradient(90deg,var(--accent),var(--accent-2));
}

.product-card-band.teal {
    background: linear-gradient(90deg,var(--brand-2),#1aafaa);
}

.product-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-footer {
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.015);
}

.product-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    color: var(--muted);
}

.tag-blue {
    background: rgba(77,143,255,.12);
    border-color: rgba(77,143,255,.2);
    color: var(--brand);
}

.tag-teal {
    background: rgba(46,207,189,.12);
    border-color: rgba(46,207,189,.2);
    color: var(--brand-2);
}

.tag-amber {
    background: rgba(240,160,32,.12);
    border-color: rgba(240,160,32,.2);
    color: var(--accent);
}

.tag-dim {
    background: rgba(255,255,255,.04);
    color: var(--muted-2);
    border-color: var(--line);
}

/* ── Pricing plans ───────────────────────── */
.plan {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.025);
    padding: 26px;
    transition: transform .2s,border-color .2s;
}

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

.plan.featured {
    border-color: rgba(77,143,255,.35);
    box-shadow: 0 0 0 1px rgba(77,143,255,.12),0 20px 50px rgba(10,25,60,.3);
}

.plan .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
    letter-spacing: .02em;
}

.plan.featured .badge {
    background: rgba(77,143,255,.12);
    border-color: rgba(77,143,255,.25);
    color: var(--brand);
}

.price {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1;
    margin: 12px 0 6px;
}

.price small {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0;
}

.plan-list {
    margin: 12px 0 0;
}

.plan-list li {
    padding: 8px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.plan-list li::before {
    content: '→';
    color: var(--brand-2);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Store category tabs ─────────────────── */
.cat-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 6px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    width: fit-content;
    margin-bottom: 28px;
}

.cat-tab {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: color .15s,background .15s;
    border: none;
    background: none;
    font-family: var(--font);
}

.cat-tab:hover {
    color: var(--text);
    background: rgba(255,255,255,.05);
}

.cat-tab.active {
    background: rgba(255,255,255,.09);
    color: var(--text);
}

/* ── Misc ────────────────────────────────── */
.divider {
    height: 1px;
    background: var(--line);
    margin: 32px 0;
}

.callout {
    border-left: 3px solid var(--brand-2);
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(46,207,189,.06);
}

.backlink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
    transition: color .15s;
}

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

/* ── Forms ───────────────────────────────── */
.form-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.025);
    padding: 24px;
}

label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.04);
    color: var(--text);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .18s,background .18s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(77,143,255,.4);
    background: rgba(77,143,255,.04);
}

select option {
    color: #0f1627;
    background: #f6f8fc;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.field {
    margin-bottom: 16px;
}

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

/* ── Modal ───────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(4,6,12,.88);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--panel);
    border: 1px solid var(--line-med);
    border-radius: 22px;
    padding: 32px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 40px 100px rgba(0,0,0,.7);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line);
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
    display: grid;
    place-items: center;
    transition: background .15s;
    font-family: var(--font);
}

.modal-close:hover {
    background: rgba(255,255,255,.12);
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.stepper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.step-node {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-2);
}

.step-node.active {
    color: var(--text);
}

.step-node.done {
    color: var(--brand-2);
}

.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid var(--line-med);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-node.active .step-dot {
    border-color: var(--brand);
    background: rgba(77,143,255,.15);
    color: var(--brand);
}

.step-node.done .step-dot {
    border-color: var(--brand-2);
    background: rgba(46,207,189,.15);
    color: var(--brand-2);
}

.step-line {
    flex: 1;
    height: 1px;
    background: var(--line);
    margin: 0 8px;
}

.order-box {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13.5px;
}

.order-row+.order-row {
    border-top: 1px solid var(--line);
}

.order-row .lbl {
    color: var(--muted);
}

.order-row .val {
    font-weight: 700;
}

.order-row.total .lbl,
.order-row.total .val {
    font-size: 15px;
    color: var(--text);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    z-index: 400;
    pointer-events: none;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--panel-2);
    border: 1px solid var(--line-med);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .22s,transform .22s;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Footer ──────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 40px 22px 48px;
    max-width: var(--max);
    margin: 40px auto 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.footer-brand-name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.6;
    max-width: 26ch;
    margin-top: 0;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0 0 12px;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 8px;
    transition: color .15s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    font-size: 12.5px;
    color: var(--muted-2);
}

/* ── Responsive ──────────────────────────── */
@media (max-width:960px){
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width:720px){
    .nav-toggle {
        display: flex;
    }

    .nav-links,
    .nav-store {
        display: none;
    }

    .mobile-drawer {
        display: flex;
    }

    h1 {
        font-size: clamp(30px,9vw,42px);
    }

    .hero {
        padding: 30px 22px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-row,
    .hero-actions,
    .button-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .wrap {
        padding: 28px 16px 90px;
    }
}

/* polish: clickable cards + purchase options */
.product-card[data-href],
.product-card[data-modal],
.plan[data-href],
.plan[data-modal] {
    cursor: pointer;
}

.product-card[data-href]:focus-visible,
.product-card[data-modal]:focus-visible,
.plan[data-href]:focus-visible,
.plan[data-modal]:focus-visible {
    outline: 2px solid rgba(77,143,255,.45);
    outline-offset: 3px;
}

.purchase-options {
    display: grid;
    gap: 14px;
    margin: 14px 0 18px;
}

.option-block {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
}

.option-block h4 {
    margin: 0 0 10px;
    font-size: 14px;
}

.option-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--muted-2);
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.qty-row select {
    max-width: 120px;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 10px;
}

.check-tile {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
}

.check-tile input {
    width: auto;
    margin-top: 2px;
}

.check-tile strong {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.check-tile span {
    display: block;
    font-size: 12px;
    color: var(--muted);
}
