:root {
  --bg: #08090B; --surface: #0F1114; --text: #EDEEF0;
  --muted: #7A8089; --muted-2: #9AA0A8;
  --border: rgba(255,255,255,0.08); --border-2: rgba(255,255,255,0.14);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background:var(--bg); color:var(--text); font-family:'Inter',system-ui,sans-serif; -webkit-font-smoothing:antialiased; line-height:1.5; overflow-x:hidden; }
.kw { font-family:'Instrument Serif',Georgia,serif; font-style:italic; font-weight:400; letter-spacing:0.01em; }
a { color:inherit; text-decoration:none; }
::selection { background:rgba(255,255,255,0.16); }

/* accessibility: skip link + focus states */
.skip-link { position:absolute; left:-9999px; top:0; background:#fff; color:#08090B; padding:10px 18px; z-index:100; border-radius:0 0 8px 0; font-weight:600; font-size:14px; }
.skip-link:focus { left:0; top:0; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .method:focus-visible, .nav-pill a:focus-visible, .nav-cta:focus-visible {
  outline:2px solid #fff; outline-offset:3px; border-radius:8px;
}

/* nav */
.nav { position:fixed; top:0; left:0; right:0; z-index:50; display:flex; align-items:center; justify-content:space-between; padding:20px 32px; }
.logo { font-family:'Instrument Serif',serif; font-size:26px; letter-spacing:0.02em; }
.nav-pill { display:flex; align-items:center; gap:4px; padding:6px; border:1px solid var(--border); border-radius:999px; background:rgba(20,23,27,0.5); backdrop-filter:blur(12px); }
.nav-pill a { padding:8px 16px; font-size:14px; font-weight:500; color:var(--muted-2); border-radius:999px; transition:.2s; }
.nav-pill a:hover { color:var(--text); }
.nav-pill a[aria-current="page"] { color:var(--text); background:rgba(255,255,255,0.06); }
.nav-cta { display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border:1px solid var(--border-2); border-radius:999px; font-size:14px; font-weight:500; background:rgba(20,23,27,0.4); backdrop-filter:blur(12px); transition:.2s; }
.nav-cta:hover { background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.24); }
.nav-right { display:flex; align-items:center; gap:10px; }
.lang-dock { display:flex; align-items:center; gap:2px; padding:4px; border:1px solid var(--border); border-radius:999px; background:rgba(20,23,27,0.5); backdrop-filter:blur(12px); }
.lang-dock a { padding:5px 10px; font-size:11px; font-weight:500; letter-spacing:0.04em; color:var(--muted-2); border-radius:999px; transition:.2s; }
.lang-dock a:hover { color:var(--text); }
.lang-dock a[aria-current="true"] { background:var(--text); color:var(--bg); }

main { position:relative; z-index:1; }
.wrap { max-width:1080px; margin:0 auto; padding:0 32px; }

/* HERO with shader */
.hero { position:relative; height:100vh; overflow:hidden; }
.hero canvas { position:absolute; inset:0; width:100%; height:100%; display:block; }
.hero .overlay { position:absolute; inset:0; background:linear-gradient(180deg,#08090Bcc 0%, #08090B66 45%, #08090B 100%); pointer-events:none; }
.hero .content { position:relative; z-index:2; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:0 24px; }
.hero h1 { font-weight:600; font-size:clamp(44px,8vw,88px); line-height:1.03; letter-spacing:-0.02em; max-width:14ch; text-shadow:0 6px 40px rgba(0,0,0,0.5); }
.hero h1 .kw { font-size:1.05em; }
.hero .sub { margin-top:24px; font-size:clamp(16px,2.2vw,20px); color:var(--muted-2); max-width:540px; text-shadow:0 4px 24px rgba(0,0,0,0.4); }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:40px; }

/* rotating headline */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.hero h1.hero-rotate { max-width:none; font-weight:400; }
.hero .rotate-grid { display:inline-grid; place-items:center; grid-template-areas:"stack"; font-family:'Instrument Serif',Georgia,serif; font-weight:400; font-size:clamp(31px,7.5vw,84px); line-height:1.06; letter-spacing:-0.01em; max-width:100%; }
.rotate-word { grid-area:stack; opacity:0; white-space:nowrap; animation:rotate-crossfade 7.2s infinite; }
@keyframes rotate-crossfade {
  0%   { opacity:0; transform:translateY(8px); }
  4%   { opacity:1; transform:translateY(0); }
  29%  { opacity:1; transform:translateY(0); }
  33%  { opacity:0; transform:translateY(-8px); }
  100% { opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .hero .rotate-grid { display:flex; flex-direction:column; gap:0.12em; }
  .rotate-word { animation:none; opacity:1; transform:none; }
}

.btn { display:inline-flex; align-items:center; gap:10px; padding:15px 26px; border-radius:12px; background:rgba(13,15,18,0.6); border:1px solid var(--border-2); font-weight:600; font-size:15px; backdrop-filter:blur(8px); transition:.18s; box-shadow:inset 0 1px 0 rgba(255,255,255,0.06); }
.btn:hover { background:rgba(20,23,27,0.8); border-color:rgba(255,255,255,0.24); transform:translateY(-1px); }
.btn .arr { transition:transform .2s; }
.btn:hover .arr { transform:translate(2px,-2px); }
.btn-ghost { background:transparent; box-shadow:none; border-color:var(--border); color:var(--muted-2); }
.btn-ghost:hover { color:var(--text); }

.socials { display:flex; align-items:center; gap:24px; margin-top:48px; color:var(--muted); }
.socials a:hover { color:var(--text); }
.socials .divider { width:1px; height:18px; background:var(--border-2); }

/* sections */
section.block { padding:120px 0; border-top:1px solid var(--border); }
.page-hero { padding:200px 0 80px; text-align:center; }
.page-hero .label { font-size:13px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); margin-bottom:20px; }
.page-hero h1 { font-weight:600; font-size:clamp(40px,6.5vw,72px); line-height:1.04; letter-spacing:-0.02em; }
.page-hero p { color:var(--muted-2); font-size:19px; max-width:560px; margin:24px auto 0; }
.lead { font-size:clamp(22px,3vw,30px); line-height:1.5; letter-spacing:-0.01em; max-width:760px; margin:0 auto; text-align:center; font-weight:500; }
.lead .kw { color:#fff; }
.muted-lead { color:var(--muted-2); font-size:clamp(17px,2vw,19px); max-width:640px; margin:32px auto 0; text-align:center; line-height:1.7; }

.grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:72px; }
.card { padding:32px; border:1px solid var(--border); border-radius:16px; background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent); transition:.2s; }
.card:hover { border-color:var(--border-2); transform:translateY(-2px); }
.card .n { font-family:'Instrument Serif',serif; font-style:italic; font-size:30px; color:var(--muted); margin-bottom:18px; }
.card h2 { font-size:19px; font-weight:600; margin-bottom:10px; }
.card p { color:var(--muted-2); font-size:15px; line-height:1.6; }

.stats { display:flex; justify-content:center; gap:48px; margin-top:64px; flex-wrap:wrap; }
.stat { text-align:center; }
.stat .big { font-family:'Instrument Serif',serif; font-style:italic; font-size:40px; }
.stat .cap { color:var(--muted); font-size:14px; margin-top:4px; }

.timeline { max-width:680px; margin:72px auto 0; }
.tl-item { display:grid; grid-template-columns:120px 1fr; gap:32px; padding:32px 0; border-top:1px solid var(--border); }
.tl-item .when { font-family:'Instrument Serif',serif; font-style:italic; font-size:22px; color:var(--muted-2); }
.tl-item h2 { font-size:20px; font-weight:600; margin-bottom:8px; }
.tl-item p { color:var(--muted-2); font-size:15px; line-height:1.65; }

.contact-box { max-width:620px; margin:72px auto 0; }
.contact-methods { display:flex; flex-direction:column; gap:14px; margin-top:40px; }
.method { display:flex; align-items:center; justify-content:space-between; padding:22px 28px; border:1px solid var(--border); border-radius:14px; background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent); transition:.2s; }
.method:hover { border-color:var(--border-2); background:rgba(255,255,255,0.03); }
.method .m-label { color:var(--muted); font-size:13px; letter-spacing:0.08em; text-transform:uppercase; }
.method .m-value { font-size:18px; font-weight:500; margin-top:4px; }
.method .arr { color:var(--muted); }

/* features bento ("What you get") */
.features-head { max-width:640px; margin:0 auto; text-align:center; }
.features-head .label { font-size:13px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); margin-bottom:20px; }
.features-head h2 { font-family:'Instrument Serif',Georgia,serif; font-weight:400; font-size:clamp(36px,5vw,52px); letter-spacing:-0.01em; }
.features-head > p { color:var(--muted-2); margin-top:16px; font-size:16px; }

.bento { display:grid; grid-template-columns:repeat(6,1fr); gap:8px; margin-top:56px; }
.bcard { position:relative; overflow:hidden; grid-column:1/-1; border:1px solid var(--border); border-radius:10px; background:rgba(15,17,20,0.35); backdrop-filter:blur(8px); transition:border-color .3s; }
.bcard:hover { border-color:rgba(255,255,255,0.25); }
.bcard .pad { padding:24px; }
.bcard h3 { font-size:18px; font-weight:500; }
.bcard p { color:var(--muted-2); font-size:14px; line-height:1.6; margin-top:8px; }
.bcard .center { text-align:center; margin-top:24px; }

.ink-06{color:rgba(237,238,240,.06);} .ink-10{color:rgba(237,238,240,.10);}
.ink-15{color:rgba(237,238,240,.15);} .ink-30{color:rgba(237,238,240,.30);}
.ink-50{color:rgba(237,238,240,.50);} .ink-60{color:rgba(237,238,240,.60);}
.ink-80{color:rgba(237,238,240,.80);} .ink-100{color:var(--text);}

.bcard-days { display:flex; }
.bcard-days .inner { margin:auto; width:fit-content; padding:32px 24px 24px; }
.ring-wrap { position:relative; display:flex; align-items:center; height:96px; width:224px; }
.ring-wrap svg { position:absolute; inset:0; width:100%; height:100%; }
.ring-wrap .big-num { font-family:'Instrument Serif',Georgia,serif; font-size:48px; letter-spacing:-0.01em; margin:0 auto; position:relative; }
.bcard-days h3 { margin-top:16px; text-align:center; }

.gauge { display:block; margin:0 auto; width:176px; padding-top:16px; }
.growth { display:block; width:100%; padding-top:24px; }

.chip { position:relative; width:48px; height:48px; border-radius:999px; border:1px solid var(--border); display:flex; flex-shrink:0; }
.chip::before { content:''; position:absolute; inset:-8px; border-radius:999px; border:1px solid rgba(237,238,240,.06); }
.chip svg { margin:auto; }

.bcard-split .pad { display:grid; gap:24px; height:100%; }
.bcard-split .info { position:relative; z-index:1; display:flex; flex-direction:column; justify-content:space-between; gap:40px; }

.browser { position:relative; margin:24px -24px -24px 0; border-top:1px solid var(--border); border-left:1px solid var(--border); border-top-left-radius:12px; padding:32px 24px 24px; }
.browser .dots { position:absolute; top:10px; left:12px; display:flex; gap:4px; }
.browser .dots span { width:8px; height:8px; border-radius:999px; border:1px solid rgba(237,238,240,.15); background:rgba(237,238,240,.10); }
.browser svg { display:block; width:100%; }

.langs { position:relative; margin-top:24px; }
.langs::before { content:''; position:absolute; inset:0; margin:0 auto; width:1px; background:var(--border); }
.langs .rows { position:relative; display:flex; flex-direction:column; justify-content:center; gap:24px; padding:24px 0; height:100%; }
.lang-row { display:flex; align-items:center; gap:8px; }
.lang-row.right { width:calc(50% + 14px); justify-content:flex-end; }
.lang-row.left { margin-left:calc(50% - 16px); }
.lang-dot { display:grid; place-items:center; width:28px; height:28px; border-radius:999px; border:1px solid rgba(237,238,240,.15); background:var(--bg); font-size:10px; font-weight:500; letter-spacing:.05em; color:rgba(237,238,240,.7); box-shadow:0 0 0 4px var(--bg); flex-shrink:0; }
.lang-dot.lg { width:32px; height:32px; }
.lang-tag { border:1px solid var(--border); background:var(--bg); border-radius:6px; padding:4px 8px; font-size:12px; color:var(--muted-2); white-space:nowrap; }

@media (min-width:640px){
  .bcard.sm-3 { grid-column:span 3; }
  .bcard-split .pad { grid-template-columns:1fr 1fr; }
  .browser { margin-left:24px; }
  .browser svg { width:150%; }
  .langs { margin:-24px -24px -24px 0; }
}
@media (min-width:1024px){
  .bcard.lg-2 { grid-column:span 2; }
  .bcard.lg-3 { grid-column:span 3; }
}

/* pricing */
.pricing-grid { display:grid; grid-template-columns:1fr; gap:8px; margin-top:56px; }

.pill { display:inline-flex; align-items:center; border-radius:999px; border:1px solid rgba(237,238,240,.15); color:rgba(237,238,240,.6); padding:2px 10px; font-size:10px; font-weight:500; text-transform:uppercase; letter-spacing:.18em; }
.pill.em { border-color:rgba(237,238,240,.25); color:var(--text); }

.start-btn { display:inline-flex; height:40px; align-items:center; justify-content:center; white-space:nowrap; border-radius:8px; padding:0 16px; font-size:14px; font-weight:500; border:1px solid rgba(237,238,240,.15); transition:background .2s,color .2s; }
.start-btn:hover { background:rgba(237,238,240,.05); }
.start-btn.solid { background:var(--text); color:var(--bg); border-color:transparent; }
.start-btn.solid:hover { background:rgba(237,238,240,.9); }

.pcard-head { position:relative; display:flex; flex-wrap:wrap; align-items:center; gap:12px; padding:20px; }
.pcard-head .right { margin-left:auto; }
.pcard-head .note { margin-left:auto; font-size:12px; color:var(--muted-2); }

.price { font-family:'Instrument Serif',Georgia,serif; font-size:48px; letter-spacing:-0.01em; line-height:1; }
.price.xl { font-size:60px; }
.price-suffix { font-size:14px; color:var(--muted-2); }
.price-row { display:flex; align-items:baseline; gap:8px; padding:4px 20px; }

.feat-list { list-style:none; margin:0; padding:0; display:grid; gap:14px; font-size:14px; color:var(--muted-2); }
.feat-list li { display:flex; align-items:flex-start; gap:12px; line-height:1.6; }
.feat-check { margin-top:2px; flex-shrink:0; display:grid; place-items:center; width:16px; height:16px; border-radius:999px; background:var(--text); color:var(--bg); }
.pcard-feats { padding:20px; }

.pcard-featured .texture { position:absolute; inset:0; pointer-events:none; -webkit-mask-image:linear-gradient(to bottom,#fff,transparent 85%); mask-image:linear-gradient(to bottom,#fff,transparent 85%); }
.pcard-featured .texture::before { content:''; position:absolute; inset:0; background:linear-gradient(to bottom right, rgba(237,238,240,.07), transparent 50%); }
.pcard-featured .texture::after { content:''; position:absolute; inset:0; background-image:linear-gradient(to right, rgba(237,238,240,.05) 1px, transparent 1px); background-size:24px 24px; }
.pcard-body { position:relative; display:flex; flex-direction:column; padding:4px 20px 20px; }
.pcard-body .price-col { display:flex; align-items:baseline; gap:8px; padding-bottom:20px; }

.addon-list { list-style:none; margin:0; padding:0 20px 20px; }
.addon-list li { display:flex; align-items:center; justify-content:space-between; gap:24px; border-bottom:1px solid rgba(237,238,240,.06); padding:10px 0; font-size:14px; }
.addon-list li:last-child { border-bottom:0; }
.addon-name { display:flex; align-items:center; gap:12px; color:var(--muted-2); }
.addon-plus { display:grid; place-items:center; width:16px; height:16px; flex-shrink:0; border-radius:999px; border:1px solid rgba(237,238,240,.2); color:rgba(237,238,240,.6); }
.addon-price { white-space:nowrap; font-variant-numeric:tabular-nums; color:rgba(237,238,240,.8); }

@media (min-width:768px){
  .pricing-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid .bcard { grid-column:span 1; }
  .pricing-grid .md-2 { grid-column:span 2; }
}
@media (min-width:1024px){
  .pricing-grid { grid-template-columns:repeat(8,1fr); }
  .pricing-grid .lg-5 { grid-column:span 5; }
  .pricing-grid .lg-4 { grid-column:span 4; }
  .pricing-grid .lg-3 { grid-column:span 3; }
  .pcard-body { flex-direction:row; gap:32px; }
  .pcard-body .price-col { width:30%; flex-direction:column; align-items:flex-start; gap:4px; padding-bottom:0; }
  .pcard-body .feat-col { width:70%; }
}

footer { border-top:1px solid var(--border); padding:48px 32px; text-align:center; color:var(--muted); font-size:14px; }
footer .logo { margin-bottom:16px; font-size:22px; }

@media (max-width:760px){
  .nav{padding:16px 20px;} .nav-pill{display:none;}
  .nav-right{gap:8px;}
  .lang-dock{padding:3px;} .lang-dock a{padding:5px 8px;}
  .nav-cta{padding:9px 12px;} .nav-cta .cta-label{display:none;}
  .grid{grid-template-columns:1fr;} .tl-item{grid-template-columns:1fr;gap:8px;}
  .wrap{padding:0 20px;}
}
@media (prefers-reduced-motion: reduce){ html { scroll-behavior:auto; } }
