/*
 * PixelHunter — mobile first. Base styles are for phones;
 * @media (min-width: 768px) is tablet, (min-width: 1024px) is desktop.
 */

:root {
	/* Palette. Historic token names kept so every rule follows: --mint is the accent on dark
	   (cyan), --mint-ink the accent on light (violet), --violet the only CTA fill. */
	--ink: #131316; --ink-2: #212126; --grid: #2f3037; --grid-2: #3b3c45;
	--mint: #5de3ff; --mint-ink: #6c47ff; --mint-deep: #4b2fd6;
	--violet: #6c47ff; --violet-hover: #5a36f5; --fog: #f7f7f8; --mist: #eeeef0;
	--bone: #ffffff; --white: #ffffff; --line: #d9d9de;
	--text: #131316; --muted: #5e5f6e; --muted-dark: #9394a1; --soft-dark: #b4b5c0;
	--display: "Geist", Inter, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--sans: "Geist", Inter, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--shadow-card: rgb(217,217,222) 0 0 0 .5px, rgba(0,0,0,.06) 0 1px 2px, rgba(0,0,0,.08) 0 0 2px;
	--shadow-deep: rgba(0,0,0,.06) 0 0 0 1px, rgba(0,0,0,.08) 0 5px 15px, rgba(47,48,55,.2) 0 15px 35px -5px, rgba(34,42,53,.04) 0 4px 6px;
	--shimmer: rgba(255,255,255,.05) 0 1px 0 inset, rgba(255,255,255,.06) 0 0 0 1px inset;
	--mono: "Geist Mono", ui-monospace, Consolas, Monaco, monospace;
	--gutter: 20px;
	--bar: 80px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--mint-ink); text-decoration: none; }
h1, h2, h3, p, figure { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
/* focus ring keeps 3:1 against every background (WCAG 1.4.11): dark green on white, ink on mint */
.light :focus-visible { outline-color: var(--mint-ink); }
.plan.pro :focus-visible, .cost :focus-visible { outline-color: var(--ink); }
[tabindex="-1"]:focus { outline: none; }
section[id], main[id] { scroll-margin-top: var(--bar); }
.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.mono { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.display { font-family: var(--display); font-weight: 800; font-variation-settings: "opsz" 96, "wdth" 75; letter-spacing: -.03em; line-height: .9; text-transform: uppercase; }
.num { font-variant-numeric: tabular-nums; }
.sw { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; color: #1a1a1a; }
.code { font-family: var(--mono); font-size: .85em; }

/* sections & palette */
.dark { background: var(--ink); color: var(--bone); }
.light { background: var(--white); color: var(--text); border-top: 1px solid var(--line); }
.section { padding-top: 72px; padding-bottom: 64px; }
.stack { display: flex; flex-direction: column; gap: 40px; }
.head { display: grid; gap: 24px; align-items: end; }
.head-title { display: flex; flex-direction: column; gap: 20px; }
.eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow .rule { display: inline-block; flex: 0 0 auto; width: 32px; height: 1px; background: currentColor; }
.eyebrow a { color: inherit; }
.dark .eyebrow { color: var(--mint); } .light .eyebrow { color: var(--mint-ink); }
.dark .accent { color: var(--mint); } .light .accent { color: var(--mint-ink); }
.lede { font-size: 17px; line-height: 1.5; max-width: 520px; text-wrap: pretty; }
.dark .lede { color: var(--soft-dark); } .light .lede { color: var(--muted); }
.dark .lede .code { color: var(--bone); }
h2.display { font-size: clamp(44px, 9.5vw, 112px); }
.h2-sm { font-size: clamp(40px, 8vw, 96px) !important; }

/* buttons: brand hover everywhere */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 52px; padding: 0 22px; border-radius: 6px; font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; text-transform: none; white-space: nowrap; border: 1px solid transparent; transition: background .25s, color .25s, border-color .25s; cursor: pointer; }
.btn-mint { background: var(--mint); color: var(--ink); border-color: var(--mint); }
/* hovers stay in each button's own colour: a touch lighter, never a jump to another colour */
.btn-mint:hover { background: color-mix(in srgb, var(--mint) 80%, #fff); border-color: color-mix(in srgb, var(--mint) 80%, #fff); color: var(--ink); }
.btn-line { background: transparent; color: var(--bone); border-color: rgba(255,255,255,.35); }
.btn-line:hover { background: rgba(255,255,255,.08); border-color: var(--bone); }
.light .btn-line { color: var(--ink); border-color: rgba(19,19,22,.35); }
.light .btn-line:hover { background: rgba(19,19,22,.05); border-color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--bone); border-color: var(--ink); }
/* lighter ink from the palette: mixing navy with white greys it out */
.btn-ink:hover { background: var(--grid-2); border-color: var(--grid-2); }
.btn-sm { height: 42px; padding: 0 16px; font-size: 14px; }

/* nav */
.topbar { position: sticky; top: 0; z-index: 50; padding: 10px 0; }
.topbar .wrap { padding-left: calc(var(--gutter) - 16px); padding-right: calc(var(--gutter) - 16px); }
/* 1fr | menu | 1fr: equal side columns keep the menu on the exact centre whatever the logo and buttons measure */
.nav { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px; height: 60px; padding: 0 16px; border-radius: 12px; background: rgba(19,19,22,.72); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 16px 40px -24px rgba(0,0,0,.7); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--bone); font-size: 18px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.brand-mark { flex: 0 0 auto; }
.brand-name span { font-weight: 400; color: var(--mint); }
.brand-logo { height: 33px; width: auto; max-width: 260px; object-fit: contain; }
.nav > .brand { grid-column: 1; justify-self: start; }
.topbar .nav-links { display: none; grid-column: 2; color: var(--soft-dark); }
.nav-end { grid-column: 2; justify-self: end; }
.nav-list { display: flex; gap: 32px; margin: 0; padding: 0; list-style: none; }
.nav-a { position: relative; display: inline-block; padding-bottom: 4px; color: var(--soft-dark); white-space: nowrap; }
.nav-a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--mint); transition: width .3s; }
.nav-a:hover, .nav-a[aria-current="page"] { color: var(--bone); } .nav-a:hover::after { width: 100%; }
.nav-end { display: flex; align-items: center; gap: 12px; }
.nav-end .btn-sm { padding: 0 14px; }
.nav-cta { display: none; }
.m-menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; color: var(--bone); }
.m-menu summary::-webkit-details-marker { display: none; }
.m-menu .icon-close, .m-menu[open] .icon-burger { display: none; }
.m-menu[open] .icon-close { display: block; }
.m-menu[open] summary { background: var(--mint); color: var(--ink); border-color: var(--mint); }
/* the drawer hangs from the header bar (.nav is its containing block) and takes its full width */
.menu-panel { position: absolute; left: -1px; right: -1px; top: calc(100% + 8px); display: flex; flex-direction: column; gap: 4px; padding: 12px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); animation: panel-in .25s cubic-bezier(.2,.8,.2,1); }
@keyframes panel-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.panel-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.panel-list { display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 0; list-style: none; }
.panel-list a { display: block; padding: 12px 14px; border-radius: 6px; color: var(--soft-dark); }
.panel-list a:hover { background: rgba(93,227,255,.1); color: var(--mint); }
.menu-panel { max-height: calc(100vh - var(--bar) - 24px); overflow-y: auto; }
.menu-panel .btn { display: flex; font-size: 15px; }
.panel-list .sub-menu { display: flex; flex-direction: column; gap: 2px; margin: 0 0 4px 14px; padding: 0 0 0 10px; list-style: none; border-left: 1px solid rgba(255,255,255,.15); }

/* header sub-menus: open on hover and on keyboard focus */
.nav-list > li { position: relative; }
.nav-list .menu-item-has-children > .nav-a { padding-right: 16px; }
.nav-list .menu-item-has-children > .nav-a::before { content: ""; position: absolute; right: 2px; top: 5px; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .25s; }
.nav-list .menu-item-has-children:hover > .nav-a::before, .nav-list .menu-item-has-children:focus-within > .nav-a::before { transform: translateY(3px) rotate(225deg); }
.nav-list .sub-menu { position: absolute; left: -14px; top: calc(100% + 27px); z-index: 60; display: flex; flex-direction: column; gap: 2px; min-width: 240px; margin: 0; padding: 8px; list-style: none; background: var(--ink-2); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s; }
/* invisible bridge over the gap, so the menu stays open on the way down */
.nav-list .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -40px; height: 40px; }
.nav-list li:hover > .sub-menu, .nav-list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.nav-list li.sub-closed > .sub-menu { opacity: 0; visibility: hidden; }
.nav-list .sub-menu .nav-a { display: block; padding: 10px 12px; border-radius: 6px; }
.nav-list .sub-menu .nav-a::after { display: none; }
.nav-list .sub-menu .nav-a:hover { background: rgba(93,227,255,.1); color: var(--mint); }

/* hero */
.hero { position: relative; padding: 40px 0 0; overflow: hidden; }
.hero-inner { position: relative; gap: 32px; }
.hero-mark { position: absolute; right: calc(var(--gutter) * -1); top: -20px; width: clamp(360px, 60vw, 820px); height: auto; pointer-events: none; opacity: .9; z-index: 0; }
.hero h1 { font-size: clamp(56px, 14vw, 164px); color: var(--bone); max-width: 1180px; position: relative; z-index: 1; }
.hero .eyebrow, .hero-row { position: relative; z-index: 1; }
.hero-row { display: grid; gap: 28px; align-items: end; padding-top: 8px; }
.hero-row p { font-size: clamp(17px, 2.2vw, 22px); line-height: 1.45; color: var(--soft-dark); font-variation-settings: 'wdth' 100; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta .btn { flex: 1 1 100%; }
.hop { animation: hop 5s cubic-bezier(.2,.8,.2,1) infinite; }
.trail { transform-origin: 80px 45px; animation: trail 5s cubic-bezier(.2,.8,.2,1) infinite; }
@keyframes hop { 0%, 14% { transform: translateX(-41px); } 40%, 78% { transform: translateX(0); } 92%, 100% { transform: translateX(-41px); } }
@keyframes trail { 0%, 14% { transform: scaleX(0); opacity: 0; } 40%, 70% { transform: scaleX(1); opacity: 1; } 78% { opacity: 1; } 92%, 100% { transform: scaleX(0); opacity: 0; } }
.reveal { animation: up 1s cubic-bezier(.2,.8,.2,1) both; } .r2 { animation-delay: .1s; } .r3 { animation-delay: .2s; } .r4 { animation-delay: .3s; }
@keyframes up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.rule-grow { transform-origin: left; animation: grow 1.2s cubic-bezier(.2,.8,.2,1) both; } @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* marquee */
.marquee { display: flex; overflow: hidden; white-space: nowrap; margin-top: 56px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.marquee-track { display: flex; gap: 40px; padding-right: 40px; animation: slide 38s linear infinite; font-size: 13px; color: var(--muted-dark); }
.marquee-track .lang { display: inline-flex; align-items: center; gap: 10px; }
.flag { flex: 0 0 auto; width: 20px; height: 15px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee { position: relative; }
.motion-toggle { position: absolute; right: 12px; top: 50%; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; margin-top: -16px; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: var(--ink); color: var(--soft-dark); cursor: pointer; box-shadow: -20px 0 16px 4px var(--ink); transition: color .2s, border-color .2s; }
.motion-toggle:hover { color: var(--bone); border-color: var(--bone); }
.motion-toggle .icon-play, .motion-toggle[aria-pressed="true"] .icon-pause { display: none; }
.motion-toggle[aria-pressed="true"] .icon-play { display: block; }
/* paused: only the endless animations stop; one-off entrances are left to finish */
.motion-paused .marquee-track, .motion-paused .hop, .motion-paused .trail, .motion-paused .mail-link .dot { animation-play-state: paused; }

/* proof */
.proof { display: grid; gap: 32px; padding-top: 56px; padding-bottom: 64px; }
.proof > div { display: flex; flex-direction: column; gap: 12px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.proof > div:last-child { border-bottom: 0; padding-bottom: 0; }
.proof .big { font-size: clamp(72px, 12vw, 132px); color: var(--bone); }
.proof .big .unit { font-size: .36em; color: var(--mint); margin-left: 6px; }
.proof .mono { color: var(--mint); }
.proof p { font-size: 16px; color: var(--muted-dark); max-width: 300px; }
@property --n { syntax: "<integer>"; initial-value: 0; inherits: false; }
.count { counter-reset: n var(--n); animation: count 1.8s cubic-bezier(.2,.8,.2,1) .3s both; } .count::before { content: counter(n); }
@keyframes count { from { --n: 0; } to { --n: var(--to); } }

/* email stage */
.email-stage { display: grid; gap: 40px; align-items: center; }
.mails { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mail { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; color: #1a1a1a; font-size: 13px; line-height: 1.5; width: 100%; max-width: 420px; background: #fff; border-radius: 8px; box-shadow: 0 40px 80px -30px rgba(19,19,22,.45), 0 0 0 1px rgba(19,19,22,.1); overflow: hidden; }
.mail-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 18px; background: #f6f7f7; border-bottom: 1px solid #e5e5e5; font-size: 12px; color: #666; }
.mail-top .mono { font-size: 10px; color: var(--mint-ink); }
.mail-subj { padding: 10px 18px; border-bottom: 1px solid #eee; font-size: 12px; color: #666; }
.mail-subj b { color: #1a1a1a; }
.mail-head { padding: 18px 20px; background: var(--ink); color: var(--bone); font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.mail-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.mail table { width: 100%; border-collapse: collapse; font-size: 13px; }
.mail td { padding: 8px 0; border-top: 1px solid #eee; }
.mail td.c { text-align: center; color: #666; } .mail td.r { text-align: right; }
.mail tr.tot td { border-top-color: #ddd; font-weight: 600; }
.mail .meta { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: #444; }
.mail .foot { font-size: 11px; color: #6b6b6b; padding-top: 8px; border-top: 1px solid #eee; }
.mail-link { display: none; }
.steps { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.step .n { font-size: 26px; color: var(--mint-ink); }
.step h3 { font-size: clamp(22px, 3vw, 26px); color: var(--ink); }
.step p { margin-top: 6px; font-size: 15px; color: var(--muted); line-height: 1.55; }
.pills { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter); }
.pills::-webkit-scrollbar { display: none; }
.pill { flex: 0 0 auto; scroll-snap-align: start; white-space: nowrap; font-size: 11px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); }
.pill.on { background: var(--ink); color: var(--mint); }
.pill.off { border-style: dashed; border-color: var(--muted); color: var(--muted); }

/* any WordPress site */
.sites { border-top: 1px solid rgba(255,255,255,.1); }
.hero + .sites { border-top: 0; }
.bridge { display: inline-flex; align-items: center; gap: 10px; color: var(--mint); line-height: 1.6; }
.bridge:hover { color: var(--bone); }

/* how it works */
.two { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.3); }
.col { display: flex; flex-direction: column; gap: 20px; padding: 32px 0 8px; }
.col + .col { border-top: 1px solid rgba(255,255,255,.3); }
.col-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.col-head h3 { font-size: clamp(32px, 5vw, 44px); color: var(--bone); }
.col-head .mono { color: var(--mint); }
.row { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.15); font-size: 16px; line-height: 1.5; color: var(--soft-dark); }
.row .n { font-size: 26px; color: var(--mint); }
.row .code { color: var(--bone); }
.row b { color: var(--bone); font-weight: 700; }
.cost { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px; background: var(--mint); border-radius: 8px; color: var(--ink); font-family: var(--mono); font-size: 14px; }

/* slider (native scroll-snap) */
.slider { position: relative; }
.track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 12px 2px 48px; margin: -12px -2px -48px; scroll-padding-left: 2px; }
.track::-webkit-scrollbar { display: none; }
.track > * { flex: 0 0 84%; scroll-snap-align: start; }
/* above the track: its 48px shadow padding runs under the buttons, and iOS gives taps there to the scroller */
.slider-nav { position: relative; z-index: 1; display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; }
.slider-nav button { width: 44px; height: 44px; border-radius: 6px; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; display: grid; place-items: center; transition: background .25s, color .25s, border-color .25s; }
.slider-nav button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
.light .slider-nav { color: var(--ink); }

/* built for stores cards */
.feat { display: flex; flex-direction: column; gap: 14px; padding: 28px 24px 32px; border: 1px solid var(--line); background: var(--white); }
.feat .mono { color: var(--mint-ink); }
.feat h3, .card-title { font-size: clamp(28px, 4vw, 34px); color: var(--ink); }
.feat p { font-size: 15px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* storefront */
.switch-grid { display: grid; gap: 24px; }
.store { position: relative; height: 520px; overflow: hidden; background: #fff; border-radius: 12px; }
.store-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); font-family: system-ui, sans-serif; font-size: 13px; color: var(--muted); }
.store-bar img { height: 18px; width: auto; }
.store-bar nav { display: none; gap: 18px; }
.store-tools { display: flex; gap: 12px; }
.store-bar .cart { color: var(--text); font-weight: 600; }
.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px; }
.store-grid figure { display: flex; flex-direction: column; gap: 8px; font-family: system-ui, sans-serif; font-size: 12px; color: var(--text); }
.store-grid img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 6px; background: #e9e6dd; }
.store-grid figcaption { display: flex; justify-content: space-between; gap: 8px; }
.store-grid figcaption span { color: var(--muted); white-space: nowrap; }
.lg { display: none; }
.dim { position: absolute; inset: 0; background: rgba(19,19,22,.28); }
.sw-box { position: absolute; display: flex; gap: 4px; padding: 6px; background: #fff; border: 1px solid #dcdcde; border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: 13px; }
.sw-box .cur { background: #1a1a1a; color: #fff; font-weight: 600; border-radius: 5px; }
.sw-box > span { padding: 5px 9px; }
.sw-list { left: 16px; top: 70px; }
.sw-col { right: 16px; top: 70px; flex-direction: column; gap: 2px; }
.sw-menu { position: absolute; left: 16px; bottom: 44px; display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.sw-card { background: #fff; border: 1px solid #dcdcde; border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.sw-options { display: flex; flex-direction: column; padding: 4px; }
.sw-options span { padding: 4px 10px; }
.sw-current { display: flex; align-items: center; gap: 8px; padding: 8px 12px; }
.sw-select { position: absolute; right: 16px; bottom: 44px; display: flex; align-items: center; gap: 20px; padding: 9px 12px; background: #fff; border: 1px solid #8c8f94; border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: 13px; }
.tag { position: absolute; color: var(--ink); font-size: 10px; background: var(--mint); padding: 3px 6px; border-radius: 6px; }
.tag-list { left: 16px; top: 120px; }
.tag-col { right: 16px; top: 214px; }
.tag-menu { left: 16px; bottom: 16px; }
.tag-select { right: 16px; bottom: 16px; }
.pop { animation: pop .7s cubic-bezier(.2,.8,.2,1) both; } .pop-1 { animation-delay: .5s; } .pop-2 { animation-delay: .8s; } .pop-3 { animation-delay: 1.1s; } .pop-4 { animation-delay: 1.4s; }
@keyframes pop { from { opacity: 0; transform: scale(.85) translateY(10px); } to { opacity: 1; transform: none; } }
.glass { display: flex; flex-direction: column; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: var(--bone); }
.glass-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; font-weight: 600; }
.glass-head .mono { color: var(--muted-dark); }
.glass-rows { display: flex; flex-direction: column; padding: 6px 18px 4px; font-size: 13px; }
.grow { display: grid; grid-template-columns: 1fr auto 64px; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.grow:last-child { border-bottom: 0; }
.grow.sl { grid-template-columns: 1fr 110px 44px; }
.grow .val { font-family: var(--mono); font-size: 12px; color: var(--muted-dark); }
.swatch { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); }
.range { position: relative; height: 3px; border-radius: 2px; background: rgba(255,255,255,.2); }
.range i { position: absolute; left: 0; top: 0; height: 100%; background: var(--mint); border-radius: 2px; }
.range b { position: absolute; top: -6px; width: 14px; height: 14px; border-radius: 50%; background: var(--bone); transform: translateX(-50%); }
.glass-note { margin: auto 18px 18px; padding: 12px 14px; border-radius: 8px; background: rgba(93,227,255,.08); border: 1px solid rgba(93,227,255,.25); font-size: 12px; color: var(--soft-dark); line-height: 1.5; }
.glass-note b { color: var(--mint); font-weight: 600; }

/* set-up */
.setup { position: relative; border-top: 1px solid var(--line); }
.fill-line { position: absolute; left: 0; top: -1px; height: 2px; background: var(--mint); width: 0; animation: fill 2.4s cubic-bezier(.2,.8,.2,1) .4s forwards; } @keyframes fill { to { width: 100%; } }
.setup .track { padding-top: 0; margin-top: 0; }
.sstep { display: flex; flex-direction: column; gap: 12px; padding: 28px 20px 24px 0; border-right: 1px solid var(--line); }
.sstep .big { font-size: clamp(72px, 10vw, 96px); color: var(--mint-ink); }
.sstep .mono { color: var(--muted); }
.sstep h3 { font-size: clamp(26px, 3.5vw, 30px); color: var(--ink); }
.sstep p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* pricing */
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 26px 26px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; color: var(--bone); }
.plan-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.plan-top .mono { color: var(--mint); }
.badge { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 8px; border-radius: 999px; background: var(--ink); color: var(--mint); }
.price { margin-top: 20px; font-size: clamp(60px, 9vw, 76px); color: var(--bone); }
.price .period { font-size: 20px; margin-left: 6px; color: var(--muted-dark); }
.per { margin-top: 6px; font-size: 14px; color: var(--muted-dark); }
.feats { flex: 1; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); font-size: 15px; line-height: 1.6; color: var(--soft-dark); display: flex; flex-direction: column; gap: 8px; }
.feats div { display: flex; gap: 10px; align-items: baseline; }
.feats div::before { content: "■"; color: var(--mint); font-size: 9px; }
.feats b { color: var(--bone); font-weight: 700; }
.plan .btn { margin-top: 26px; height: 50px; font-size: 15px; }
.plan.pro { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.plan.pro .plan-top .mono, .plan.pro .price, .plan.pro .feats b { color: var(--ink); }
.plan.pro .price .period, .plan.pro .per, .plan.pro .feats { color: var(--mint-deep); }
.plan.pro .feats { border-top-color: rgba(19,19,22,.3); }
.plan.pro .feats div::before { color: var(--ink); }
.pricing-note { font-size: 15px; color: var(--muted-dark); max-width: 720px; }
.pricing-note a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.pricing-note a:hover { color: var(--bone); }
/* billing + currency switches: radios + :has(), no JS needed to switch. Selected = mint like .pill.on;
   the currency one is quieter (a correction, not a choice). Without :has() both hide: monthly, dollars. */
/* phone: both stacked, full width, same edges; tablet up: one row, currency pushed right */
.pricing-controls { display: flex; flex-direction: column; gap: 10px; }
.seg { display: flex; gap: 4px; min-inline-size: 0; margin: 0; padding: 4px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: var(--ink-2); }
.seg label { position: relative; flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 14px; border-radius: 999px; color: var(--soft-dark); font-size: 15px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: background .25s, color .25s; }
.seg input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.seg label:hover { background: rgba(255,255,255,.08); color: var(--bone); }
.seg label:has(:checked) { background: var(--mint); color: var(--ink); }
.seg label:has(:focus-visible) { outline: 2px solid var(--mint); outline-offset: 3px; }
.seg .save { padding: 3px 8px; border-radius: 999px; background: rgba(93,227,255,.14); color: var(--mint); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.seg label:has(:checked) .save { background: var(--ink); color: var(--mint); }
.seg-quiet label { min-height: 36px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.seg-quiet label:has(:checked) { background: rgba(255,255,255,.12); color: var(--bone); }
#pricing:has([name="billing"][value="month"]:checked) .bill-year,
#pricing:has([name="billing"][value="year"]:checked) .bill-month,
#pricing:has([name="currency"][value="usd"]:checked) .cur-eur,
#pricing:has([name="currency"][value="eur"]:checked) .cur-usd { display: none; }
@supports not selector(:has(a)) { .seg, .bill-year, .cur-eur { display: none; } }

/* faq: native accordion */
.faq { display: grid; gap: 40px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 40px 1fr 32px; gap: 12px; align-items: center; padding: 20px 0; transition: color .25s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .n { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--mint-ink); }
.qa summary h3 { font-size: clamp(22px, 3vw, 26px); color: var(--ink); transition: color .25s; }
.qa summary:hover h3, .qa[open] summary h3 { color: var(--mint-ink); }
.qa summary .x { position: relative; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s, border-color .25s; }
.qa summary .x::before, .qa summary .x::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: currentColor; transform: translate(-50%, -50%); }
.qa summary .x::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa summary:hover .x { background: rgba(19,19,22,.06); }
.qa[open] summary .x { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: var(--mint); }
.qa p { padding: 0 44px 24px 52px; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 720px; animation: up .5s cubic-bezier(.2,.8,.2,1) both; }

/* developers */
.dev { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; }
.dev::before { content: ""; display: block; height: 1px; background: var(--ink); margin-bottom: 28px; }
.dev h3 { font-size: clamp(28px, 4vw, 40px); color: var(--ink); }
.dev-grid { display: grid; gap: 16px; }
.dev-cell { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--ink); border-radius: 12px; color: var(--bone); min-width: 0; }
.dev-cell .mono { color: var(--mint); }
.dev-cell pre { margin: 0; font-family: var(--mono); font-size: 12.5px; line-height: 1.6; color: var(--soft-dark); overflow-x: auto; white-space: pre; }

/* cta + footer */
.cta { border-bottom: 1px solid rgba(255,255,255,.18); }
.cta h2 { font-size: clamp(56px, 12vw, 148px); color: var(--bone); }
.cta-row { display: flex; flex-direction: column; gap: 24px; }
.cta-row p { font-size: 18px; color: var(--soft-dark); max-width: 520px; }
.cta-row .btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row .btn { flex: 1 1 100%; }
.footer { display: flex; flex-direction: column; gap: 40px; padding-top: 56px; padding-bottom: 32px; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 20px; }
.foot-brand { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.foot-brand p { font-size: 15px; line-height: 1.55; color: var(--muted-dark); max-width: 320px; text-wrap: pretty; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col .mono { color: var(--mint); margin-bottom: 6px; }
.foot-list { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.foot-col a { color: var(--soft-dark); font-size: 15px; transition: color .2s; }
.foot-col a:hover { color: var(--mint); }
/* bottom bar — mobile: legal links first (what people tap), copyright and version under them */
.foot-bar { display: grid; grid-template-areas: "legal" "copy" "meta"; gap: 6px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; color: var(--muted-dark); }
.foot-bar > span:first-child { grid-area: copy; }
.foot-bar > span:nth-child(2) { grid-area: meta; }
.foot-bar > nav { grid-area: legal; margin-bottom: 12px; }
.foot-bar a { color: var(--soft-dark); } .foot-bar a:hover { color: var(--mint); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 0 24px; margin: 0; padding: 0; list-style: none; }
.foot-legal a { display: inline-block; padding: 6px 0; }

/* ===== inner pages ===== */
.page-hero { padding-top: 48px; padding-bottom: 64px; }
.page-hero .stack { gap: 28px; }
.page-hero h1 { font-size: clamp(48px, 11vw, 128px); color: var(--bone); max-width: 1180px; overflow-wrap: anywhere; }
.page-hero .lede { max-width: 640px; }
.error-404 { padding-bottom: 96px; }
.error-actions { gap: 16px; }

.entry-thumb { margin-bottom: 40px; }
.entry-thumb img { width: 100%; border-radius: 12px; }
.prose { max-width: 760px; font-size: 18px; line-height: 1.7; color: var(--text); overflow-wrap: break-word; }
.prose > * + * { margin-top: 1.2em; }
.prose h2, .prose h3, .prose h4, .prose h5, .prose h6 { font-family: var(--display); font-weight: 800; font-variation-settings: "opsz" 96, "wdth" 75; letter-spacing: -.02em; line-height: 1; text-transform: uppercase; color: var(--ink); margin-top: 1.8em; }
.prose h2 { font-size: clamp(32px, 5vw, 48px); } .prose h3 { font-size: clamp(26px, 4vw, 34px); } .prose h4 { font-size: 22px; }
.prose a { color: var(--mint-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: var(--mint-ink); }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--mint); font-size: 22px; line-height: 1.45; color: var(--ink); }
.prose code, .prose kbd { font-family: var(--mono); font-size: .85em; background: var(--bone); padding: .15em .4em; border-radius: 4px; }
.prose pre { background: var(--ink); color: var(--soft-dark); padding: 20px; border-radius: 12px; overflow-x: auto; font-family: var(--mono); font-size: 13px; line-height: 1.6; }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose img, .prose video, .prose iframe { border-radius: 12px; }
.prose table { display: block; overflow-x: auto; width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td, .prose .wp-block-table th, .prose .wp-block-table td { padding: 10px 12px; border: 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose tr:target td { background: color-mix(in srgb, var(--violet) 8%, #fff); } /* the row a plugin notice links to */
.prose .wp-block-table thead { border-bottom: 1px solid var(--line); }
.prose .wp-block-table table { width: 100%; }
.prose th { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose figcaption, .wp-caption-text { margin-top: 8px; font-size: 13px; color: var(--muted); }
.prose .alignwide { width: min(1100px, calc(100vw - 2 * var(--gutter))); max-width: none; }
.prose .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(-1 * (var(--gutter) + max(0px, (100vw - 1440px) / 2))); }
.alignleft { float: left; margin: .3em 1.5em 1em 0; }
.alignright { float: right; margin: .3em 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.gallery-caption { font-size: 13px; }
.bypostauthor > .comment-body .fn::after { content: " ■"; color: var(--mint-ink); font-size: .7em; }
.sticky.card { border-color: var(--mint-ink); box-shadow: inset 0 3px 0 var(--mint); }
.page-links { display: flex; gap: 10px; margin-top: 32px; }

.entry-footer { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.entry-footer a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: 11px; transition: background .25s, color .25s; }
.entry-footer a:hover { background: var(--ink); color: var(--mint); }

.post-navigation { margin-top: 56px; border-top: 1px solid var(--line); }
.post-navigation .nav-links { display: grid; gap: 0; }
.post-navigation a { display: flex; flex-direction: column; gap: 8px; padding: 24px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.post-navigation .mono { color: var(--mint-ink); }
.post-navigation .nav-title { font-weight: 800; font-variation-settings: "opsz" 96, "wdth" 75; font-size: 24px; line-height: 1.05; text-transform: uppercase; letter-spacing: -.02em; transition: color .25s; }
.post-navigation a:hover .nav-title { color: var(--mint-ink); }

/* cards and listings */
.post-grid { display: grid; gap: 16px; }
.card { gap: 12px; }
.card-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; margin-bottom: 8px; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--mint-ink); }
.card-more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; color: var(--ink); }
.card-more:hover { color: var(--mint-ink); }
.prose [id] { scroll-margin-top: var(--bar); }

/* documentation template: sticky "Contents" bar on mobile, sticky sidebar on desktop */
.doc-layout { display: grid; gap: 32px; align-items: start; }
.doc-aside { position: sticky; top: var(--bar); z-index: 20; margin: -24px calc(var(--gutter) * -1) 0; padding: 10px var(--gutter); background: rgba(255,255,255,.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.doc-toc summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; min-height: 44px; color: var(--ink); }
.doc-toc summary::-webkit-details-marker { display: none; }
.doc-toc summary::after { content: ""; width: 8px; height: 8px; margin-right: 4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .25s; }
.doc-toc[open] summary::after { transform: translateY(2px) rotate(225deg); }
.doc-toc-nav { position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 6px); max-height: 60vh; overflow-y: auto; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 30px 60px -24px rgba(19,19,22,.35); }
.doc-toc-list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.doc-toc-list a { display: block; padding: 9px 12px; border-left: 2px solid transparent; border-radius: 0 6px 6px 0; color: var(--muted); font-size: 14px; line-height: 1.35; transition: color .2s, background .2s, border-color .2s; }
.doc-toc-list a:hover { color: var(--ink); background: rgba(19,19,22,.04); }
.doc-toc-list a[aria-current] { color: var(--mint-ink); border-left-color: var(--mint); background: rgba(93,227,255,.1); font-weight: 600; }
/* the page you are on: ink and bold; its sections hang under it, indented and smaller, the one in view in mint */
.doc-toc-list a[aria-current="page"] { color: var(--ink); border-left-color: var(--ink); background: none; font-weight: 700; }
.doc-toc-sub { margin: 2px 0 10px 14px; border-left: 1px solid var(--line); }
.doc-toc-sub a { margin-left: -1px; padding: 6px 12px; font-size: 13px; }
.doc-download { display: none; }
.doc-group { display: block; margin: 12px 12px 6px; font-size: 10px; color: var(--muted); }
.doc-toc-nav nav + nav .doc-group { margin-top: 20px; }
.doc-body { min-width: 0; }
.doc-body .prose > h2:first-child, .doc-body .prose > p:first-child { margin-top: 0; }

/* download + changelog */
.download { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.download-meta { color: var(--muted-dark); }
.download-hash { max-width: 100%; font-size: 10px; letter-spacing: .1em; color: var(--muted-dark); }
.download-hash code { font-family: var(--mono); text-transform: none; letter-spacing: 0; overflow-wrap: anywhere; }
.light .download-hash { color: var(--muted); }
.releases { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.release { display: flex; flex-direction: column; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.release-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; }
.release-head h2 { font-size: clamp(40px, 7vw, 72px); color: var(--ink); }
.release-head .mono { color: var(--mint-ink); }
.release-foot { display: flex; flex-direction: column; gap: 10px; }

.empty { display: flex; flex-direction: column; gap: 20px; }
.empty h2 { font-size: clamp(36px, 7vw, 72px); color: var(--ink); }

.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; transition: background .25s, color .25s; }
.page-numbers.current, a.page-numbers:hover { background: var(--ink); color: var(--mint); }
.page-numbers.dots { border-color: transparent; }

/* forms */
.search-form { display: flex; gap: 8px; width: 100%; max-width: 560px; }
.search-field, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; min-height: 52px; padding: 12px 16px; border: 1px solid rgba(19,19,22,.35); border-radius: 6px; background: var(--white); color: var(--ink); font: inherit; font-size: 16px; }
.search-field { flex: 1; min-width: 0; }
.dark .search-field { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: var(--bone); }
.dark .search-field::placeholder { color: var(--muted-dark); }
.search-field:focus, .comment-form input:focus, .comment-form textarea:focus { outline: 2px solid var(--mint); outline-offset: 0; border-color: transparent; }

/* comments */
.comments { max-width: 760px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.comments-title, .comment-reply-title { font-size: clamp(28px, 5vw, 40px); color: var(--ink); margin-bottom: 24px; }
.comment-list, .comment-list .children { list-style: none; margin: 0; padding: 0; }
.comment-list .children { padding-left: 24px; border-left: 1px solid var(--line); }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: 14px; }
.comment-author { display: flex; align-items: center; gap: 12px; }
.comment-author .avatar { border-radius: 50%; }
.comment-author .says { display: none; }
.comment-metadata a { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.comment-content { margin-top: 12px; color: var(--text); }
.comment-content a { text-decoration: underline; text-underline-offset: 3px; }
.reply a { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.comment-respond { margin-top: 40px; }
.comment-form { display: flex; flex-direction: column; gap: 16px; }
.comment-form label { display: block; margin-bottom: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.comment-form-cookies-consent { display: flex; gap: 10px; align-items: flex-start; }
.comment-form-cookies-consent label { margin: 0; text-transform: none; letter-spacing: 0; font-family: var(--display); font-size: 14px; }
.comments-closed { color: var(--muted); }

/* accessibility helpers */
.screen-reader-text { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.skip-link:focus { clip-path: none; width: auto; height: auto; margin: 0; left: 12px; top: 12px; z-index: 100; padding: 12px 16px; background: var(--mint); color: var(--ink); border-radius: 6px; font-weight: 700; }
.admin-bar .topbar { top: 46px; }
@media (max-width: 600px) { .admin-bar .topbar { top: 0; } }
@media (min-width: 783px) { .admin-bar .topbar { top: 32px; } }
/* very narrow phones / 400% zoom (WCAG 1.4.10): the header must fit 320px */
@media (max-width: 374px) {
	.nav { gap: 10px; padding: 0 12px; }
	.brand { gap: 8px; font-size: 15px; }
	.brand-mark { width: 34px; height: auto; }
}

/* lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* scroll reveal */
@supports (animation-timeline: view()) {
	.sr { animation: sr-in linear both; animation-timeline: view(); animation-range: entry 0% entry 45%; }
	@keyframes sr-in { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
}
/* the hero mark and the marquee always move (owner's call); the pause button still stops them */
@media (prefers-reduced-motion: reduce) { *:not(.hop, .trail, .marquee-track), *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition: none !important; } html { scroll-behavior: auto; } }

/* ===== tablet ===== */
@media (min-width: 768px) {
	:root { --gutter: 32px; }
	.menu-panel { padding: 16px; }
	.panel-actions { flex-direction: row; }
	.panel-actions .btn { flex: 1; }
	.pricing-controls { flex-direction: row; flex-wrap: wrap; align-items: center; }
	.seg { display: inline-flex; }
	.seg label { flex: none; padding: 0 20px; }
	.seg-quiet { margin-left: auto; }
	.seg-quiet label { min-height: 44px; padding: 0 16px; }
	.section { padding-top: 96px; padding-bottom: 88px; }
	.stack { gap: 56px; }
	.head { grid-template-columns: 1.35fr 1fr; gap: 48px; }
	.lede { font-size: 19px; }
	.btn { height: 56px; padding: 0 26px; font-size: 17px; }
	.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }
	.hero { padding-top: 80px; }
	.hero-row { grid-template-columns: 1fr 1fr; gap: 48px; }
	.hero-cta { justify-content: flex-end; }
	.hero-cta .btn { flex: 0 0 auto; }
	.proof { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding-top: 72px; padding-bottom: 88px; }
	.proof > div { padding: 0 28px; border-bottom: 0; border-right: 1px solid rgba(255,255,255,.1); }
	.proof > div:first-child { padding-left: 0; } .proof > div:last-child { padding-right: 0; border-right: 0; }
	.mails { flex-direction: row; align-items: flex-start; }
	.mail { flex: 1; }
	.two { grid-template-columns: 1fr 1fr; }
	.col { padding: 40px 40px 8px 0; }
	.col + .col { border-top: 0; border-left: 1px solid rgba(255,255,255,.3); padding: 40px 0 8px 40px; }
	.pills { flex-wrap: wrap; gap: 10px; overflow: visible; margin: 0; padding: 0; }
	.pill { font-size: 12px; padding: 10px 14px; }
	.cost { flex-direction: row; justify-content: space-between; padding: 22px 28px; font-size: 15px; }
	.track > * { flex-basis: calc(50% - 8px); }
	.store { height: 560px; }
	.store-bar { padding: 18px 28px; }
	.store-bar nav { display: flex; }
	.lg { display: inline; }
	.store-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px 28px; }
	.faq { grid-template-columns: 1fr 1fr; gap: 56px; }
	/* the title stays in view while the questions scroll past, and lets go at the end of the list */
	.faq > .head-title { position: sticky; top: calc(var(--bar) + 24px); align-self: start; }
	.dev-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.dev { margin-top: 72px; }
	.dev::before { margin-bottom: 44px; }
	.cta-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
	.cta-row .btn { flex: 0 0 auto; }
	.foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
	.foot-brand { grid-column: auto; }
	/* two rows: legal links on top, copyright left and version right below */
	.foot-bar { grid-template-columns: 1fr auto; grid-template-areas: "legal legal" "copy meta"; align-items: center; gap: 4px 24px; }
	.foot-bar > span:nth-child(2) { justify-self: end; text-align: right; }
	.foot-bar > nav { margin-bottom: 8px; }
	.page-hero { padding-top: 80px; padding-bottom: 88px; }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.post-navigation .nav-links { grid-template-columns: 1fr 1fr; gap: 40px; }
	.post-navigation .nav-next { text-align: right; }
	.post-navigation .nav-next a { align-items: flex-end; }
}

/* ===== desktop ===== */
@media (min-width: 1024px) {
	:root { --bar: 104px; }
	.topbar { padding: 16px 0; }
	.topbar .wrap { padding-left: calc(var(--gutter) - 22px); padding-right: calc(var(--gutter) - 22px); }
	.nav { height: 68px; padding: 0 22px; }
	.topbar .nav-links { display: flex; }
	/* the centred menu only exists from here up: equal side columns keep it on the exact centre */
	.nav { grid-template-columns: 1fr auto 1fr; }
	.nav-end { grid-column: 3; }
	.nav-list { gap: 20px; }
	.nav-cta { display: inline-flex; }
	.m-menu { display: none; }
	.head { gap: 64px; }
	.hero h1 { font-size: clamp(120px, 11.4vw, 164px); }
	.email-stage { grid-template-columns: minmax(0, 1fr) 400px; gap: 56px; }
	.mails { position: relative; height: 640px; display: block; }
	.mail { position: absolute; width: min(420px, 64%); max-width: none; }
	.mail.a { left: 0; top: 48px; transform: rotate(-2.5deg); }
	.mail.b { right: 0; top: 0; transform: rotate(1.5deg); }
	.mail.a, .mail.b { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
	.mail-link { display: block; position: absolute; left: 18%; top: 585px; width: 56%; height: 2px; background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 12px); }
	.mail-link .dot { position: absolute; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: dotrun 2.6s cubic-bezier(.4,0,.2,1) infinite; }
	.mail-link .mono { display: block; position: absolute; left: 0; top: 14px; width: max-content; color: var(--mint-ink); }
	.mail-link .mono .code { text-transform: none; letter-spacing: 0; }
	@keyframes dotrun { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 10px); opacity: 0; } }
	.track > * { flex-basis: calc(33.333% - 11px); }
	.track.four > * { flex-basis: calc(25% - 12px); }
	.slider.lg-grid .slider-nav { display: none; }
	.slider.lg-grid .track { overflow: visible; }
	.sstep { padding: 36px 32px 0; }
	.sstep:first-child { padding-left: 0; } .sstep:last-child { padding-right: 0; border-right: 0; }
	.switch-grid { grid-template-columns: 1fr 360px; align-items: stretch; }
	.store { height: 100%; min-height: 560px; }
	.faq { grid-template-columns: 440px 1fr; gap: 96px; }
	.qa summary { padding: 24px 0; }
	.post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.doc-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 64px; }
	.doc-layout.no-aside { grid-template-columns: minmax(0, 1fr); }
	.doc-aside { top: calc(var(--bar) + 16px); max-height: calc(100vh - var(--bar) - 32px); overflow-y: auto; margin: 0; padding: 0; background: none; -webkit-backdrop-filter: none; backdrop-filter: none; border: 0; }
	.doc-aside { scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
	.doc-toc summary { min-height: 0; margin-bottom: 14px; color: var(--mint-ink); pointer-events: none; }
	.doc-toc summary::after { display: none; }
	.doc-toc-nav { position: static; max-height: none; overflow: visible; padding: 0; border: 0; border-left: 1px solid var(--line); border-radius: 0; box-shadow: none; }
	.doc-toc-list a { margin-left: -1px; }
	.doc-download { display: inline-flex; margin-top: 24px; }
}

/* ===== wide: design spacing for the header links ===== */
@media (min-width: 1280px) {
	.nav-list { gap: 32px; }
	/* one row once it fits: copyright | version | legal links */
	.foot-bar { grid-template-columns: auto 1fr auto; grid-template-areas: "copy meta legal"; }
	.foot-bar > span:nth-child(2) { justify-self: center; text-align: center; }
	.foot-bar > nav { margin-bottom: 0; }
}

/* =====================================================================
   Design layer (Clerk-inspired) over the base rules.
   Light marketing shell with dark product cards, violet only on CTAs,
   Geist set tight, radii 6 / 8 / 12 / 16 / 9999 and nothing else.
   ===================================================================== */

/* type and shell */
body { background: var(--fog); }
.wrap { max-width: calc(1200px + 2 * var(--gutter)); }
.display { font-weight: 700; font-variation-settings: normal; letter-spacing: -.035em; line-height: 1.05; text-transform: none; }
h2.display { font-size: clamp(34px, 5vw, 56px); }
.h2-sm { font-size: clamp(32px, 4.5vw, 48px) !important; }
.mono { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.lede { font-size: 18px; line-height: 1.55; }
.section { padding-top: 80px; padding-bottom: 80px; }
.light { background: var(--fog); border-top: 0; }
/* cyan belongs to dark surfaces only: light ones (and the light header) take violet instead */
.light, .topbar { --mint: var(--violet); }
.col, .glass, .plan, .dev-cell, .dark .card { --mint: #5de3ff; }

/* section label: a pill badge, not a ruled caps line */
.eyebrow { align-self: flex-start; gap: 8px; padding: 5px 12px; border-radius: 9999px; font-size: 12px; }
.eyebrow .rule { display: none; }
.light .eyebrow { background: var(--mist); color: var(--violet); }
.dark .eyebrow { background: rgba(255,255,255,.06); color: var(--mint); box-shadow: var(--shimmer); }
.badge-soft { align-self: flex-start; display: inline-flex; padding: 4px 10px; border-radius: 9999px; background: var(--mist); color: var(--violet); font-size: 12px; font-weight: 500; }
.dark .badge-soft, .col .badge-soft { background: rgba(255,255,255,.06); color: var(--mint); }
.light .accent { color: var(--violet); }
.dark .accent { background: linear-gradient(90deg, #8b6dff 20%, #5de3ff 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* buttons: violet fill with its glow; secondary is white with a hairline (light) or glass (dark) */
.btn { height: 44px; padding: 0 18px; font-weight: 500; font-size: 15px; transition: background .15s, box-shadow .15s, color .15s, border-color .15s; }
.btn-sm { height: 36px; padding: 0 12px; font-size: 14px; }
.btn-mint { background: var(--violet); border-color: var(--violet); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.btn-mint:hover { background: var(--violet-hover); border-color: var(--violet-hover); color: #fff; }
.btn-line { background: rgba(255,255,255,.06); border-color: transparent; box-shadow: var(--shimmer); color: #fff; }
.btn-line:hover { background: rgba(255,255,255,.1); border-color: transparent; }
.light .btn-line, .topbar .btn-line { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: rgba(0,0,0,.04) 0 1px 2px; }
.light .btn-line:hover, .topbar .btn-line:hover { background: var(--fog); border-color: var(--line); }

/* header: light glass bar */
.topbar { padding: 12px 0; }
.nav { border: 0; border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-card), 0 12px 32px -16px rgba(19,19,22,.18); }
.brand { color: var(--ink); }
.brand-name span { color: var(--violet); font-weight: 500; }
/* stacked logo (PixelHunter over Translate): taller than the old one-line logo so "Translate" stays readable */
.topbar .brand-logo { height: 32px; max-width: none; }
.foot-brand .brand-logo { height: 40px; max-width: none; }
.brand-mark rect:nth-child(-n+15), .hero-mark rect:nth-child(-n+15) { fill: var(--line); }
.brand-mark rect:nth-child(16), .hero-mark rect:nth-child(16) { stroke: var(--muted-dark); }
.topbar .nav-links, .nav-a { color: var(--muted); font-size: 14px; }
.nav-a:hover, .nav-a[aria-current="page"] { color: var(--ink); }
.nav-a::after { display: none; }
.nav-list .sub-menu { border: 0; border-radius: 12px; background: #fff; box-shadow: var(--shadow-deep); }
.nav-list .sub-menu .nav-a:hover, .panel-list a:hover { background: var(--fog); color: var(--ink); }
.m-menu summary { border-color: var(--line); background: #fff; color: var(--ink); }
.m-menu[open] summary { background: var(--ink); border-color: var(--ink); color: #fff; }
.menu-panel { border: 0; background: #fff; box-shadow: var(--shadow-deep); }
.panel-list a { color: var(--muted); }
.panel-list .sub-menu { border-left-color: var(--line); }

/* hero: light, centred, the violet-yellow halo behind it */
/* the first band slides up under the sticky header (--top = its height), so the halo and the band colour start at the very top: no strip of plain page behind the header */
:root { --top: 84px; }
.hero, .page-hero { margin-top: calc(-1 * var(--top)); }
.hero { padding: calc(var(--top) + 48px) 0 0; isolation: isolate; }
.page-hero { padding-top: calc(var(--top) + 48px); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(189.26% 126.1% at 49.27% 0%, rgba(108,71,255,0) 10%, rgba(255,249,99,.15) 34%, rgba(98,72,246,.24) 67.53%, rgba(98,72,246,0) 95.38%); }
.hero-inner { align-items: center; gap: 24px; text-align: center; }
.hero-mark { position: static; width: 96px; opacity: 1; }
.hero .eyebrow { align-self: center; }
.hero h1 { max-width: 15ch; font-size: clamp(42px, 7vw, 76px); color: var(--ink); }
.hero-row { justify-items: center; gap: 28px; padding-top: 0; }
.hero-row p { max-width: 620px; font-size: clamp(17px, 2vw, 19px); color: var(--muted); }
.hero-cta { justify-content: center; }
.marquee { margin-top: 64px; border-color: var(--line); }
.marquee-track { flex: 0 0 auto; min-width: 100%; justify-content: space-around; color: var(--muted); } /* never shorter than the screen: no empty gap on wide monitors */
.flag { box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.motion-toggle { background: var(--fog); border-color: var(--line); color: var(--muted); box-shadow: -20px 0 16px 4px var(--fog); }
.motion-toggle:hover { color: var(--ink); border-color: var(--ink); }

/* cards: one family. Light = white + layered shadow, dark = obsidian + inset shimmer (no border) */
.card { display: flex; flex-direction: column; gap: 10px; min-width: 0; padding: 24px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-card); }
.card h4 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; color: var(--ink); }
.card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.card .code { color: var(--ink); }
.dark .card { background: var(--ink-2); box-shadow: var(--shimmer); }
.dark .card h4, .dark .card .code { color: #fff; }
.dark .card p { color: var(--muted-dark); }
.card-sunk { background: var(--mist); box-shadow: inset 0 0 0 1px rgba(0,0,0,.04); }

/* bento + merged blocks */
.bento { display: grid; gap: 16px; }
/* a block merged into a section: its own space and a hairline, so it never runs into what is above */
.block { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; padding-top: 56px; border-top: 1px solid var(--line); }
.dark .block { border-top-color: rgba(255,255,255,.08); }
/* same grid as the section header (.head): label and title left, text right — one heading level down */
.block-head { display: grid; gap: 14px 48px; align-items: start; }
.block-title { display: flex; flex-direction: column; gap: 14px; }
.block-head p { max-width: 520px; }
.block-head h3 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -.035em; line-height: 1.15; }
.light .block-head h3 { color: var(--ink); } .dark .block-head h3 { color: #fff; }
.block-head p { font-size: 16px; line-height: 1.6; }
.light .block-head p { color: var(--muted); } .dark .block-head p { color: var(--soft-dark); }

/* any WordPress site: site types, what is translated (cards with their demo), works with */
.types { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.types li { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 9999px; background: rgba(255,255,255,.06); box-shadow: var(--shimmer); color: var(--soft-dark); font-size: 14px; }
.types li::before { content: ""; width: 9px; height: 5px; border: solid var(--mint); border-width: 0 0 2px 2px; transform: translateY(-1px) rotate(-45deg); }
.demo, .demo-code { margin: 6px 0 0; border-radius: 12px; background: var(--grid); box-shadow: var(--shimmer); }
.demo { display: flex; flex-direction: column; padding: 4px 18px; list-style: none; }
.demo li { display: flex; align-items: center; gap: 16px; min-height: 54px; border-bottom: 1px solid rgba(255,255,255,.06); }
.demo li:last-child { border-bottom: 0; }
.demo-lang { flex: 0 0 28px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); }
.demo .v { display: flex; flex-wrap: wrap; gap: 6px 20px; flex: 1; min-width: 0; font-size: 17px; color: #fff; }
.demo-menu .v span:first-child { box-shadow: inset 0 -2px var(--mint); }
.demo-button .v span { padding: 7px 14px; border-radius: 6px; background: var(--violet); color: #fff; font-size: 14px; font-weight: 500; }
.demo-path .v { font-family: var(--mono); font-size: 13px; }
.demo-tag { flex: none; padding: 3px 9px; border-radius: 9999px; background: rgba(93,227,255,.12); color: var(--mint); font-size: 12px; font-weight: 500; }
.demo-code { padding: 16px 18px; overflow-x: auto; color: var(--soft-dark); font-family: var(--mono); font-size: 12px; line-height: 1.8; white-space: pre; }
/* each card keeps its demo in view: a slider below desktop, a bento on desktop (see the 1024px block) */
.cover h3 { font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; color: #fff; }
.cover > p { margin-bottom: 6px; }
.works-group ul { margin: 4px 0 0; padding: 0; list-style: none; }
.works-group li { padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.08); font-size: 15px; color: #fff; }
.works-group li:last-child { border-bottom: 0; }
.bridge { font-weight: 500; }

/* stores: features slider + the emails bento */
.feat { gap: 12px; padding: 28px 24px; border: 0; border-radius: 16px; background: #fff; box-shadow: var(--shadow-card); }
.feat h3 { font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; color: var(--ink); }
.slider-nav button { border: 0; background: #fff; color: var(--ink); box-shadow: var(--shadow-card); }
.slider-nav button:hover { background: var(--fog); }
.dark .slider-nav button { background: rgba(255,255,255,.06); color: #fff; box-shadow: var(--shimmer); }
.mails-card { padding: 24px 16px; }
.mail { border-radius: 12px; box-shadow: var(--shadow-card); } /* short shadow: the phone slider clips anything longer */
/* phones: the two emails in a snap slider instead of one long stack */
.mails { flex-direction: row; align-items: flex-start; gap: 12px; overflow-x: auto; padding: 4px; margin: -4px; scroll-padding: 4px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.mails::-webkit-scrollbar { display: none; }
.mail { flex: 0 0 88%; scroll-snap-align: center; }
.pills-card .pills { flex-wrap: wrap; overflow: visible; margin: 4px 0 0; padding: 0; }
.pill { border-color: var(--line); background: #fff; color: var(--muted); font-size: 13px; }
.pill.on { border-color: transparent; background: var(--mist); color: var(--violet); }

/* how it works: the two columns become dark product cards on the light band, cost a white card */
.two { gap: 16px; border-top: 0; }
.col, .col + .col { padding: 28px 24px; border: 0; border-radius: 16px; background: var(--ink-2); box-shadow: var(--shimmer); color: #fff; }
.col-head h3 { font-size: 24px; letter-spacing: -.025em; color: #fff; }
.col-head .mono { padding: 4px 10px; border-radius: 9999px; background: rgba(255,255,255,.06); color: var(--mint); font-size: 12px; }
.row { grid-template-columns: 32px 1fr; border-top-color: rgba(255,255,255,.08); color: var(--muted-dark); font-size: 15px; }
.row .n { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0; line-height: 1.6; }
.cost { border-radius: 12px; background: #fff; color: var(--ink); box-shadow: var(--shadow-card); font-size: 13px; }
.cost b { color: var(--violet); }
/* set-up: each card opens on a small preview of the screen the step happens on; step 3 is the "one button" */
.sstep { gap: 10px; padding: 12px 12px 24px; border-right: 0; }
.sstep > :not(.sv) { margin-left: 12px; margin-right: 12px; }
.sstep.hot { box-shadow: 0 0 0 1.5px var(--violet); }
.sstep-meta { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.step-n { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9999px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 600; }
.sstep.hot .step-n { background: var(--violet); }
.sv { display: flex; flex-wrap: wrap; align-content: center; align-items: center; gap: 8px; height: 132px; padding: 18px; border-radius: 10px; background: var(--fog); box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); overflow: hidden; font-size: 13px; }
.sv .chip, .sv .chip-src { padding: 5px 10px; border-radius: 6px; background: #fff; box-shadow: var(--shadow-card); font-family: var(--mono); color: var(--ink); }
.sv .chip-src { background: var(--ink); color: #fff; box-shadow: none; }
.sv-arrow { color: var(--muted); }
.sv-2 { background: var(--ink-2); box-shadow: var(--shimmer); }
.sv-code { font-family: var(--mono); font-size: 12px; line-height: 1.7; color: var(--soft-dark); white-space: pre; }
.sv-code i { font-style: normal; color: #c792ea; } .sv-code b { font-weight: 400; color: var(--mint); }
.sv-3 { flex-direction: column; flex-wrap: nowrap; align-items: stretch; justify-content: center; background: color-mix(in srgb, var(--violet) 7%, #fff); }
.sv-btn { align-self: flex-start; padding: 8px 14px; border-radius: 8px; background: var(--violet); color: #fff; font-weight: 500; }
.sv-bar { height: 6px; border-radius: 9999px; background: rgba(108,71,255,.15); overflow: hidden; }
.sv-bar i { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--violet); }
.sv-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.sv-4 { flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 6px; }
.sv-row { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 6px; background: #fff; box-shadow: var(--shadow-card); color: var(--ink); }
.sv-row i { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.sv-row i.edit { background: var(--violet); } .sv-row i.miss { background: #f59e0b; }
@media (prefers-reduced-motion: no-preference) {
	.sv-bar i { animation: sv-fill linear both; animation-timeline: view(); animation-range: entry 30% cover 50%; }
	@keyframes sv-fill { from { width: 0; } }
}

/* switcher */
.store { border-radius: 16px; }
.glass { border: 0; border-radius: 16px; background: var(--ink-2); box-shadow: var(--shimmer); }
.tag { border-radius: 6px; background: var(--violet); color: #fff; }

/* pricing: dark obsidian plans, the recommended one a white card */
.plan { border: 0; border-radius: 16px; background: var(--ink-2); box-shadow: var(--shimmer); }
.price { font-size: clamp(48px, 6vw, 60px); }
.plan.pro { background: #fff; color: var(--ink); box-shadow: var(--shadow-deep); --mint: var(--violet); }
.plan.pro .price .period, .plan.pro .per, .plan.pro .feats { color: var(--muted); }
.plan.pro .feats { border-top-color: var(--line); }
.plan.pro .feats div::before { color: var(--violet); }
.plan.pro .badge { background: var(--mist); color: var(--violet); }
.plan .btn { height: 44px; } /* same buttons as the rest of the page: violet on the featured plan, secondary on the others */
.seg { border: 0; box-shadow: var(--shimmer); }
.seg label { font-weight: 500; }
.seg label:has(:checked) { background: #fff; color: var(--ink); }
.seg label:has(:checked) .save { background: var(--mist); color: var(--violet); }

/* faq: separate rounded rows */
.faq-list { gap: 8px; border-top: 0; }
.qa { border: 0; border-radius: 12px; background: #fff; box-shadow: var(--shadow-card); }
.qa summary { grid-template-columns: 1fr 28px; padding: 18px 20px; }
.qa summary .n { display: none; }
.qa summary h3 { font-size: 17px; font-weight: 600; letter-spacing: -.015em; line-height: 1.4; }
.qa summary:hover h3, .qa[open] summary h3 { color: var(--ink); }
.qa summary .x { width: 28px; height: 28px; border: 0; background: var(--mist); color: var(--ink); }
.qa summary:hover .x { background: var(--line); }
.qa[open] summary .x { background: var(--ink); color: #fff; }
.qa p { padding: 0 20px 20px; font-size: 15px; max-width: 70ch; }
.dev::before { background: var(--line); }
.dev h3 { font-size: clamp(24px, 3vw, 32px); }
.dev-cell { box-shadow: var(--shimmer); }

/* cta, footer, inner pages */
.cta h2 { font-size: clamp(40px, 6vw, 64px); }
.foot-col .mono { color: #fff; font-weight: 600; }
.page-hero h1 { font-size: clamp(40px, 6.5vw, 72px); }
.release-head h2 { font-size: clamp(32px, 5vw, 48px); }
.empty h2 { font-size: clamp(32px, 5vw, 48px); }
.prose h2, .prose h3, .prose h4, .prose h5, .prose h6 { font-weight: 700; font-variation-settings: normal; letter-spacing: -.03em; line-height: 1.2; text-transform: none; }
.prose code, .prose kbd { background: var(--mist); border-radius: 6px; }
.post-navigation .nav-title { font-variation-settings: normal; text-transform: none; font-weight: 600; letter-spacing: -.015em; }

@media (min-width: 768px) {
	.section { padding-top: 96px; padding-bottom: 96px; }
	.hero { padding-top: calc(var(--top) + 72px); }
	.page-hero { padding-top: calc(var(--top) + 80px); }
	.hero-row { grid-template-columns: 1fr; }
	.hero-cta { justify-content: center; }
	/* label alone on the first row; title and text start together on the second, so a long text runs down, never above the title */
	.block-head { grid-template-columns: 1.35fr 1fr; }
	.block-title { display: contents; }
	.block-head .eyebrow { grid-column: 1; grid-row: 1; justify-self: start; }
	.block-head h3 { grid-column: 1; grid-row: 2; }
	.block-head p { grid-column: 2; grid-row: 2; margin-top: 6px; }
	.bento-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bento-emails { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.mails-card, .pills-card { grid-column: 1 / -1; }
	.mail { flex: 1 1 0; }
	.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.col, .col + .col { padding: 32px; border-left: 0; }
	.cost { padding: 20px 24px; }
}

@media (min-width: 1024px) {
	:root { --top: 92px; }
	.hero h1 { font-size: clamp(56px, 6vw, 80px); }
	.block-head { column-gap: 64px; }
	.topbar .brand-logo { height: 36px; }
	.bento-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	/* what is translated: 3 small cards, then code + small twice (the array is ordered for this) */
	.covers .track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; overflow: visible; align-items: stretch; }
	.covers .slider-nav { display: none; }
	.cover-code { grid-column: span 2; }
	.cover > .demo, .cover > .demo-code { margin-top: auto; } /* demos line up at the bottom of each bento row */
	/* emails: the demo takes two columns and three rows, the four cards and the statuses fill around it */
	.bento-emails { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.mails-card { grid-column: span 2; grid-row: span 3; padding: 24px; }
	.pills-card { grid-column: span 2; }
	/* the two emails side by side, never overlapping (the base theme stacks them rotated, which hides the prices);
	   the "same order" line runs under both */
	.mails { display: flex; flex-wrap: wrap; height: auto; overflow: visible; }
	.mail, .mail.a, .mail.b { position: static; flex: 1 1 0; width: auto; transform: none; box-shadow: var(--shadow-deep); }
	.mail-link { position: relative; left: auto; top: auto; flex: 0 0 100%; width: 100%; margin: 16px 0 30px; }
	.sstep, .sstep:first-child, .sstep:last-child { padding: 12px 12px 28px; }
	.qa summary { padding: 20px 24px; }
	.qa p { padding: 0 24px 24px; }
}
