:root{
 --bg: #f8f7f5;
 --surface: #ffffff;
 --surface2: #f1f0ee;
 --text: #101114;
 --muted: #2a2d34;
 --accent: #d9002a;
 --accent-text: #ffffff;
 --link: #d9002a;
 --border: #101114;
 --shadow: #101114;
 --focus: #0057ff;
 --progress-track: #101114;
 --progress-fill: #d9002a;

 --section-py: 30px;
 --title-pt: 15px;
 --title-pb: 10px;

 --radius: 18px;
 --border-w: 2px;
 --shadow-x: 6px;
 --shadow-y: 6px;

 --container: 1120px;
 --gutter: 20px;

 --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
 --h1: clamp(34px, 5vw, 48px);
 --h2: clamp(24px, 3vw, 30px);
 --h3: 20px;
 --body: 16px;

 --ease-out: cubic-bezier(.16,.84,.44,1);
}

html[data-theme="dark"]{
 --bg: #0b0b10;
 --surface: #14141c;
 --surface2: #1c1c26;
 --text: #f6f7fb;
 --muted: #cfd2dc;
 --accent: #ff2d55;
 --accent-text: #0b0b10;
 --link: #ff2d55;
 --border: #f6f7fb;
 --shadow: #f6f7fb;
 --focus: #7db7ff;
 --progress-track: #f6f7fb;
 --progress-fill: #ff2d55;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
 margin:0;
 font-family:var(--font);
 font-size:var(--body);
 line-height:1.5;
 color:var(--text);
 background: var(--bg);
 -webkit-text-size-adjust:100%;
 text-rendering:optimizeLegibility;
}

img{ max-width:100%; height:auto; }
a{ color:var(--link); text-underline-offset:3px; }
a:hover{ text-decoration-thickness:3px; }
a:focus-visible, button:focus-visible{
 outline: 3px solid var(--focus);
 outline-offset: 3px;
}
:focus:not(:focus-visible){ outline:none; }

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

.container{
 width:min(var(--container), 100% - (var(--gutter) * 2));
 margin-inline:auto;
}

.skip-link{
 position:absolute;
 left: 12px;
 top: 10px;
 padding:10px 12px;
 background:var(--surface);
 color:var(--text);
 border: var(--border-w) solid var(--border);
 border-radius: 12px;
 box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow);
 transform: translateY(-140%);
 transition: transform .2s var(--ease-out);
 z-index: 10000;
}
.skip-link:focus{ transform: translateY(0); }

header{ position:relative; }
.navbar{
 position: sticky;
 top:0;
 z-index: 9999;
 border-bottom: var(--border-w) solid var(--border);
 background: var(--bg);
 isolation: isolate;
}
.navbar::before{
 content:"";
 position:absolute;
 inset:0;
 background: color-mix(in srgb, var(--bg) 92%, transparent);
 -webkit-backdrop-filter: blur(10px);
 backdrop-filter: blur(10px);
 pointer-events:none;
 z-index:-1;
}
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))){
 .navbar::before{
 -webkit-backdrop-filter: none;
 backdrop-filter: none;
 background: var(--bg);
 }
}

.navbar__inner{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 14px;
 padding: 12px 0;
}

.brand{
 display:flex;
 align-items:center;
 gap:10px;
 text-decoration:none;
 color:var(--text);
}
.brand__mark{
 width: 36px;
 height: 36px;
 border-radius: 12px;
 background: var(--surface);
 border: var(--border-w) solid var(--border);
 box-shadow: 4px 4px 0 var(--shadow);
 display:grid;
 place-items:center;
 overflow:hidden;
}
.brand__mark img{ width: 28px; height:auto; display:block; }

.brand__text{
 display:flex;
 flex-direction:column;
 line-height:1.1;
}
.brand__text strong{ font-size: 14px; letter-spacing:.02em; }
.brand__text span{ font-size: 12px; color:var(--muted); }

.navlinks{
 display:flex;
 gap: 14px;
 align-items:center;
 flex-wrap:wrap;
 justify-content:flex-end;
}
.navlinks a{
 font-weight:700;
 text-decoration:none;
 padding:8px 10px;
 border-radius: 12px;
}
.navlinks a:hover{
 background: var(--surface);
 border: 1px dashed var(--border);
}

.actions{
 display:flex;
 align-items:center;
 gap: 10px;
}

.menu-btn{ display:none; }

.drawer{
 position: fixed;
 inset: 0;
 z-index: 10050;
 display: none;
}
.drawer[aria-hidden="false"]{ display: block; }

.drawer__overlay{
 position:absolute;
 inset:0;
 background: color-mix(in srgb, var(--bg) 72%, transparent);
 backdrop-filter: blur(6px);
}

.drawer__panel{
 position:absolute;
 top:0;
 right:0;
 height:100%;
 width: min(92vw, 420px);
 background: var(--bg);
 border-left: var(--border-w) solid var(--border);
 box-shadow: -8px 0 0 var(--shadow);
 padding: 14px;
 display:flex;
 flex-direction:column;
 gap: 12px;
 transform: translateX(110%);
 transition: transform .28s var(--ease-out);
}
.drawer[aria-hidden="false"] .drawer__panel{ transform: translateX(0); }

.drawer__top{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 10px;
}
.drawer__top strong{
 font-size: 14px;
 letter-spacing:.02em;
}
.drawer__close{
 padding: 10px 12px;
 width: auto;
}

.drawer__nav{
 display:flex;
 flex-direction:column;
 gap: 8px;
 padding: 10px 0;
 border-top: 1px dashed var(--border);
 border-bottom: 1px dashed var(--border);
}
.drawer__nav a{
 text-decoration:none;
 color: var(--text);
 font-weight: 900;
 padding: 10px 10px;
 border-radius: 14px;
 border: 1px dashed transparent;
}
.drawer__nav a:hover{
 background: var(--surface);
 border-color: var(--border);
}

.drawer__controls{
 display:flex;
 flex-direction:column;
 gap: 10px;
}
.drawer__controls .iconbtn{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 10px;
 width:100%;
}
.drawer__controls .iconbtn svg{ width:18px; height:18px; }

.lang--drawer .lang__menu{
 position: static;
 right:auto;
 top:auto;
 min-width: unset;
 box-shadow: none;
 margin-top: 10px;
}
.lang--drawer .lang__menu[aria-hidden="true"]{ display:none; }
.lang--drawer .lang__menu[aria-hidden="false"]{ display:block; }

@media (max-width: 980px){
 .actions .lang, .actions #themeBtn{ display:none; }
 .menu-btn{ display:inline-flex; }
 .navlinks{ display:none; }
 .navbar__inner{ align-items:flex-start; }
}

@media (prefers-reduced-motion: reduce){
 .drawer__panel{ transition:none; }
}

.iconbtn{
 background: var(--surface);
 color: var(--text);
 border: var(--border-w) solid var(--border);
 border-radius: 14px;
 box-shadow: 4px 4px 0 var(--shadow);
 padding: 10px 12px;
 cursor:pointer;
 font-weight:800;
 line-height:1;
}
.iconbtn:hover{ transform: translateY(-1px); }
.iconbtn:active{ transform: translateY(1px); box-shadow: 2px 2px 0 var(--shadow); }

.iconbtn svg{ width:18px; height:18px; }

.lang{
 position:relative;
}
.lang__btn{
 display:flex;
 align-items:center;
 gap:8px;
}
.lang__btn svg{ width:18px; height:18px; }
.lang__menu{
 position:absolute;
 right:0;
 top: calc(100% + 10px);
 min-width: 220px;
 padding: 8px;
 background: var(--surface);
 border: var(--border-w) solid var(--border);
 border-radius: 16px;
 box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow);
 display:none;
}
.lang__menu[aria-hidden="false"]{ display:block; }
.lang__menu button{
 width:100%;
 text-align:left;
 background: transparent;
 border: 0;
 padding: 10px 10px;
 border-radius: 12px;
 cursor:pointer;
 color: var(--text);
 font-weight: 800;
}
.lang__menu button:hover{ background: var(--surface2); }
.lang__menu button[aria-current="true"]{
 background: color-mix(in srgb, var(--accent) 18%, var(--surface));
 border: 1px dashed var(--border);
}

.progress{
 height: 8px;
 background: color-mix(in srgb, var(--progress-track) 14%, transparent);
}
.progress__bar{
 display:block;
 height:100%;
 width: 0%;
 background: var(--progress-fill);
}

.hero{
 position:relative;
 overflow:hidden;
 border-bottom: var(--border-w) solid var(--border);
}
.hero::before{
 content:"";
 position:absolute;
 inset:0;
 background:
 linear-gradient(120deg,
 color-mix(in srgb, var(--bg) 84%, transparent),
 color-mix(in srgb, var(--accent) 14%, transparent)
 ),
 url("/assets/bg-bokeh.webp") center/cover no-repeat;
 filter: saturate(1.1) contrast(1.05);
 transform: scale(1.02);
}
.hero::after{
 content:"";
 position:absolute;
 inset:0;
 background:
 radial-gradient(60% 60% at 20% 10%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 60%),
 radial-gradient(70% 60% at 80% 30%, color-mix(in srgb, var(--surface) 25%, transparent), transparent 60%);
 mix-blend-mode: normal;
 pointer-events:none;
}

.hero__inner{
 position:relative;
 padding: 48px 0 40px;
 display:grid;
 grid-template-columns: 1.1fr .9fr;
 gap: 28px;
 align-items:center;
}
.hero__copy{
 background: color-mix(in srgb, var(--surface) 86%, transparent);
 border: var(--border-w) solid var(--border);
 border-radius: calc(var(--radius) + 6px);
 box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow);
 padding: 22px;
}
.hero__copy h1{
 margin:0;
 font-size: var(--h1);
 line-height:1.05;
 letter-spacing: -0.02em;
}
.hero__copy p{
 margin: 10px 0 0;
 color: var(--muted);
 font-size: 18px;
}
.hero__meta{
 margin-top: 14px;
 display:flex;
 flex-wrap:wrap;
 gap: 10px;
 color: var(--text);
 font-weight: 800;
}
.badge{
 display:inline-flex;
 align-items:center;
 gap:8px;
 padding: 8px 10px;
 border-radius: 999px;
 border: 1px dashed var(--border);
 background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.cta-row{
 margin-top: 18px;
 display:flex;
 gap: 12px;
 flex-wrap:wrap;
 align-items:center;
}
.btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 gap: 10px;
 padding: 12px 16px;
 border-radius: 16px;
 border: var(--border-w) solid var(--border);
 font-weight: 900;
 text-decoration:none;
 cursor:pointer;
 box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow);
 transition: transform .14s var(--ease-out), box-shadow .14s var(--ease-out);
 min-height: 46px;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(1px); box-shadow: 3px 3px 0 var(--shadow); }
.btn--primary{
 background: var(--accent);
 color: var(--accent-text);
}
.btn--ghost{
 background: var(--surface);
 color: var(--text);
}
.btn--small{ padding: 10px 14px; border-radius: 14px; }
.btn svg{ width:18px; height:18px; }

.hero__art{
 display:grid;
 place-items:center;
}
.packshot{
 width: min(420px, 100%);
 aspect-ratio: 326 / 462;
 border-radius: calc(var(--radius) + 10px);
 border: var(--border-w) solid var(--border);
 background: color-mix(in srgb, var(--surface) 90%, transparent);
 box-shadow: 10px 10px 0 var(--shadow);
 padding: 18px;
}
.packshot img{
 width:100%;
 height:100%;
 object-fit: contain;
 display:block;
 margin-inline:auto;
}

main{ display:block; }
section{
 padding: var(--section-py) 0;
}
section > .container > h2{
 margin:0;
 padding-top: var(--title-pt);
 padding-bottom: var(--title-pb);
 font-size: var(--h2);
 letter-spacing:-0.01em;
}
.section-lead{
 margin: 0 0 14px;
 color: var(--muted);
 max-width: 72ch;
}

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

.card{
 background: var(--surface);
 border: var(--border-w) solid var(--border);
 border-radius: var(--radius);
 box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow);
 padding: 18px;
}
.card h3{
 margin:0;
 padding-top: var(--title-pt);
 padding-bottom: var(--title-pb);
 font-size: var(--h3);
 letter-spacing:-0.01em;
}
.card p{ margin: 0; color: var(--muted); }
.card p + p{ margin-top: 10px; }

.bullets{
 margin: 16px 0 0;
 padding-left: 18px;
 color: var(--text);
}
.bullets li{ margin: 8px 0; }
.bullets strong{ color: var(--text); }

.callout{
 margin-top: 18px;
 display:flex;
 justify-content:flex-start;
}

.media-row{
 margin-top: 14px;
 display:grid;
 grid-template-columns: 1fr 1fr;
 gap: 18px;
}
.media{
 display:flex;
 align-items:center;
 gap: 14px;
}
.media__thumb{
 width: 68px;
 height: 68px;
 border-radius: 16px;
 border: var(--border-w) solid var(--border);
 background: var(--surface2);
 padding: 10px;
 box-shadow: 4px 4px 0 var(--shadow);
 display:grid;
 place-items:center;
 flex: 0 0 auto;
}
.media__thumb img{
 width:auto;
 height:auto;
 max-width:100%;
 max-height:100%;
 display:block;
}

.stats{
 margin-top: 18px;
 display:grid;
 grid-template-columns: repeat(4, minmax(0,1fr));
 gap: 12px;
}
.stat{
 background: color-mix(in srgb, var(--surface) 86%, transparent);
 border: 1px dashed var(--border);
 border-radius: 16px;
 padding: 12px 12px;
}
.stat strong{ font-size: 22px; display:block; }
.stat span{ color: var(--muted); font-weight: 800; font-size: 13px; }

.pricing-grid{
 margin-top: 16px;
 display:grid;
 grid-template-columns: repeat(4, minmax(0,1fr));
 gap: 14px;
}
.plan{
 display:flex;
 flex-direction:column;
 height:100%;
}
.plan__badge{
 display:inline-flex;
 align-self:flex-start;
 margin-bottom: 10px;
 padding: 6px 10px;
 border-radius: 999px;
 background: var(--surface2);
 border: 1px dashed var(--border);
 font-weight: 900;
}
.plan__img{
 margin-top: 10px;
 width:100%;
 display:block;
 margin-inline:auto;
 height: 160px;
 object-fit: contain;
}
.plan__price{
 margin-top: 12px;
 font-size: 26px;
 font-weight: 1000;
 letter-spacing: -0.02em;
}
.plan__save{
 margin-top: 4px;
 color: var(--muted);
 font-weight: 900;
}
.plan__cta{
 margin-top:auto;
 padding-top: 14px;
 display:flex;
 justify-content:center;
}
.plan__cta a{
 width: min(100%, 340px);
}

.faq{
 margin-top: 16px;
 display:grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
}
.faq-item{
 padding: 0;
}
.faq-item h3{
 margin:0;
 padding-top: var(--title-pt);
 padding-bottom: var(--title-pb);
}
.faq-btn{
 width:100%;
 text-align:left;
 padding: var(--title-pt) 16px var(--title-pb);
 margin: calc(-1 * var(--title-pt)) 0 calc(-1 * var(--title-pb)) 0;
 border: 0;
 background: transparent;
 color: var(--text);
 font-weight: 1000;
 font-size: 16px;
 cursor:pointer;
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 10px;
}
.faq-btn:hover{ background: var(--surface2); }
.faq-panel{
 padding: 0 16px 16px;
 color: var(--muted);
}
.faq-icon{
 width: 22px;
 height: 22px;
 border-radius: 999px;
 border: 1px dashed var(--border);
 display:grid;
 place-items:center;
}

.reveal{
 opacity: 0;
 transform: translateY(14px);
 transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.reveal.in{
 opacity:1;
 transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
 .reveal{ transition:none; opacity:1; transform:none; }
 .btn, .iconbtn{ transition:none; }
 .hero::before{ transform:none; }
}

footer{
 border-top: var(--border-w) solid var(--border);
 padding: 22px 0 28px;
}
.footer__inner{
 display:flex;
 flex-wrap:wrap;
 gap: 12px 16px;
 align-items:flex-start;
 justify-content:space-between;
}
.footer__inner p{ margin:0; color: var(--muted); max-width: 72ch; }
.footer__link{
 font-weight: 1000;
 color: var(--text);
 text-decoration:none;
 border-bottom: 3px solid currentColor;
}
.footer__link:hover{ color: var(--link); }

hr.sep{
 border:0;
 border-top: 1px dashed var(--border);
 margin: 16px 0;
 opacity: .8;
}

@media (max-width: 980px){
 .hero__inner{ grid-template-columns: 1fr; }
 .pricing-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
 .stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px){
 .hero__copy{ text-align:center; }
 .hero__meta{ justify-content:center; }
 .cta-row{ justify-content:center; }
 .callout{ justify-content:center; }
 .bullets{
 text-align:left;
 display:inline-block;
 margin-inline:auto;
 }
 .grid-2, .media-row, .faq{ grid-template-columns: 1fr; }
 .pricing-grid{ grid-template-columns: 1fr; }
 .plan__cta{ justify-content:center; }
 .plan__cta a{ width: min(100%, 360px); }
}

body.menu-open{ overflow:hidden; }
