/* ============================================================
   YourAPK — Design System & Site Styles
   Independent UK hosting & digital studio
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --brand:        #3B34C9;   /* indigo (grounded) */
  --brand-2:      #7c3aed;   /* violet   */
  --accent:       #14C4E0;   /* cyan     */
  --accent-2:     #22d3ee;   /* light cyan */
  --paper:        #faf9ff;   /* warm off-white surface */
  --grad: linear-gradient(135deg, #3B34C9 0%, #7c3aed 50%, #14C4E0 100%);
  --grad-soft: linear-gradient(135deg, rgba(79,70,229,.12), rgba(6,182,212,.12));

  /* Ink & surfaces (light base) */
  --ink:      #0b1020;
  --ink-2:    #1c2333;
  --muted:    #5b6478;
  --line:     #e7e9f0;
  --line-2:   #eef0f6;
  --bg:       #ffffff;
  --bg-soft:  #f7f8fc;
  --bg-tint:  #f2f3fb;

  /* Dark sections */
  --dark:     #0b1020;
  --dark-2:   #0f1630;
  --dark-line:rgba(255,255,255,.10);
  --dark-muted:#9aa4bf;

  /* Effects */
  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:26px;
  --shadow-sm: 0 1px 2px rgba(11,16,32,.06), 0 2px 8px rgba(11,16,32,.05);
  --shadow:    0 10px 30px -12px rgba(11,16,32,.18);
  --shadow-lg: 0 30px 60px -20px rgba(28,26,90,.35);
  --glow:      0 12px 30px -8px rgba(79,70,229,.55);

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 2rem);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Sora', var(--font);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
  background: var(--grad-soft);
  border: 1px solid rgba(79,70,229,.18);
  padding: .4rem .8rem; border-radius: 999px;
}
.eyebrow.on-dark { color: #c7d0ff; background: rgba(255,255,255,.06); border-color: var(--dark-line); }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: 3rem; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.lead { color: var(--muted); font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .92rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--glow); background-size: 140% 140%; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(79,70,229,.65); background-position: 100% 0; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: #cfd3e6; box-shadow: var(--shadow); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #000; }
.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: var(--dark-line); backdrop-filter: blur(6px); }
.btn--on-dark:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(11,16,32,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; }
.brand .logo-mark { width: 34px; height: 34px; flex: none; }
.brand .wm { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .55rem .85rem; border-radius: 10px; font-weight: 500; font-size: .96rem; color: var(--ink-2);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--bg-tint); color: var(--ink); }
.nav-links a.active { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; z-index: 0; pointer-events: none;
}
.hero::before { width: 620px; height: 620px; background: radial-gradient(circle, #3B34C9, transparent 65%); top: -260px; right: -120px; }
.hero::after { width: 520px; height: 520px; background: radial-gradient(circle, #14C4E0, transparent 65%); bottom: -300px; left: -160px; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); color: #fff; margin-bottom: 1.35rem; }
.hero h1 .grad-text { background: linear-gradient(120deg, #a5b4fc, #67e8f9); -webkit-background-clip: text; background-clip: text; }
.hero p.lead { color: #c4cce0; max-width: 560px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.25rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 1.8rem; color: var(--dark-muted); font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; }

/* faux window / dashboard card in hero */
.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid var(--dark-line); border-radius: var(--radius-lg);
  padding: 1.1rem; box-shadow: var(--shadow-lg); backdrop-filter: blur(8px);
}
.hero-panel .panel-bar { display: flex; align-items: center; gap: .45rem; padding: .3rem .4rem .9rem; }
.hero-panel .dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.2); }
.hero-panel .dot.r{background:#ff5f57}.hero-panel .dot.y{background:#febc2e}.hero-panel .dot.g{background:#28c840}
.hero-panel .panel-url { margin-left: .4rem; font-size: .78rem; color: var(--dark-muted); font-family: ui-monospace, monospace; }
.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: .9rem; }
.hero-stat { background: rgba(255,255,255,.05); border: 1px solid var(--dark-line); border-radius: 14px; padding: .85rem .9rem; }
.hero-stat b { display: block; font-family: var(--display); font-size: 1.35rem; color: #fff; }
.hero-stat small { color: var(--dark-muted); font-size: .74rem; }
.hero-list { display: flex; flex-direction: column; gap: .55rem; }
.hero-list li { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.04); border: 1px solid var(--dark-line); border-radius: 12px; padding: .7rem .85rem; font-size: .88rem; color: #dbe1f2; }
.hero-list .pill { font-size: .72rem; padding: .2rem .6rem; border-radius: 999px; background: rgba(34,211,238,.15); color: #67e8f9; border: 1px solid rgba(34,211,238,.25); }
.hero-list .pill.ok { background: rgba(40,200,64,.14); color: #86efac; border-color: rgba(40,200,64,.25); }

/* ---------- Logo strip ---------- */
.logostrip { border-top: 1px solid var(--dark-line); }
.logostrip .container { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem,5vw,3.5rem); flex-wrap: wrap; padding-block: 1.4rem; }
.logostrip span { color: var(--dark-muted); font-size: .82rem; font-weight: 600; letter-spacing: .06em; opacity: .8; display: inline-flex; align-items: center; gap: .5rem; }
.logostrip svg { width: 18px; height: 18px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dcdfef; }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--brand); margin-bottom: 1.15rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card .card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; color: var(--brand); font-weight: 600; font-size: .92rem; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(3px); }
.card--feature .icon { background: var(--ink); color: #fff; }

/* service detail card with feature list */
.service-detail { padding: 2rem; }
.service-detail ul.ticks { margin-top: 1.1rem; display: grid; gap: .55rem; }
ul.ticks li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-2); font-size: .95rem; }
ul.ticks li svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }
.tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); background: var(--grad-soft); padding: .3rem .6rem; border-radius: 8px; margin-bottom: 1rem; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split .media {
  background: var(--dark); border-radius: var(--radius-lg); padding: 2rem; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 320px;
}
.split .media::after { content:""; position:absolute; width: 320px; height: 320px; background: radial-gradient(circle,#7c3aed,transparent 60%); filter: blur(70px); opacity:.5; bottom:-140px; right:-100px; }
.feature-list { display: grid; gap: 1.3rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-item .fi-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.feature-item .fi-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: .25rem; }
.feature-item p { color: var(--muted); font-size: .95rem; }

/* code-ish panel used in splits */
.code-panel { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85rem; color: #cbd5f5; }
.code-panel .row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--dark-line); }
.code-panel .row:last-child { border-bottom: 0; }
.code-panel .k { color: #8b93b5; }
.code-panel .v { color: #67e8f9; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat { text-align: center; }
.stat b { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.7rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { display: block; color: var(--muted); font-size: .92rem; margin-top: .3rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; position: relative; }
.step .num { width: 40px; height: 40px; border-radius: 12px; background: var(--grad); color: #fff; font-family: var(--display); font-weight: 700; display: grid; place-items: center; margin-bottom: 1rem; }
.step h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Domain search ---------- */
.domain-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow); max-width: 760px; margin-inline: auto; }
.domain-form { display: flex; gap: .6rem; }
.domain-form input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: .95rem 1.3rem; font-size: 1rem; color: var(--ink);
  background: var(--bg-soft); transition: border-color .2s, box-shadow .2s;
}
.domain-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(79,70,229,.12); background: #fff; }
.domain-result { margin-top: 1rem; font-size: .95rem; display: none; }
.domain-result.show { display: block; }
.domain-result .avail { color: #059669; font-weight: 600; }
.tld-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.tld-chip { border: 1px solid var(--line); border-radius: 999px; padding: .4rem .85rem; font-size: .84rem; color: var(--ink-2); background: var(--bg-soft); }
.tld-chip b { color: var(--brand); }

/* ---------- Pricing ---------- */
.pricing-toggle { display: inline-flex; align-items: center; gap: .8rem; background: var(--bg-tint); border: 1px solid var(--line); border-radius: 999px; padding: .35rem; margin-top: 1.4rem; }
.pricing-toggle button { border: none; background: transparent; padding: .5rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--muted); }
.pricing-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.pricing-toggle .save { font-size: .72rem; color: var(--brand); font-weight: 700; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; position: relative; transition: transform .22s, box-shadow .25s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured { border: 1.5px solid transparent; background:
  linear-gradient(#fff,#fff) padding-box,
  var(--grad) border-box;
  box-shadow: var(--shadow-lg); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; }
.plan h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.plan .plan-desc { color: var(--muted); font-size: .9rem; min-height: 2.6em; }
.plan .price { display: flex; align-items: baseline; gap: .3rem; margin: 1.1rem 0 .2rem; }
.plan .price .amt { font-family: var(--display); font-size: 2.6rem; font-weight: 700; letter-spacing: -.02em; }
.plan .price .cur { font-size: 1.3rem; font-weight: 700; color: var(--ink-2); }
.plan .price .per { color: var(--muted); font-size: .9rem; }
.plan .vat { color: var(--muted); font-size: .78rem; margin-bottom: 1.2rem; }
.plan ul.ticks { flex: 1; margin: 1rem 0 1.5rem; }
.plan .btn { margin-top: auto; }

/* ---------- Testimonial / quote ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: #f59e0b; margin-bottom: .8rem; letter-spacing: 2px; }
.quote-card p { font-size: 1rem; color: var(--ink-2); }
.quote-card .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; }
.quote-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); }
.quote-card .who b { display: block; font-size: .92rem; }
.quote-card .who small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.15rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 600; font-size: 1rem; color: var(--ink); font-family: var(--display); }
.faq-q .chev { width: 20px; height: 20px; flex: none; transition: transform .25s ease; color: var(--muted); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--dark); border-radius: clamp(20px, 4vw, 36px); padding: clamp(2.5rem, 6vw, 4.5rem); color: #fff; text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -20%, rgba(124,58,237,.5), transparent 70%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-band p { color: #c4cce0; max-width: 560px; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.cta-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1rem; font-size: 1rem; font-family: inherit; color: var(--ink);
  background: var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(79,70,229,.12); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.info-list { display: grid; gap: 1.2rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; }
.info-item .ii-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.info-item .ii-icon svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 1rem; margin-bottom: .15rem; }
.info-item a, .info-item p { color: var(--muted); font-size: .95rem; }
.info-item a:hover { color: var(--brand); }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.founder-card { background: var(--dark); border-radius: var(--radius-lg); padding: 2rem; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.founder-card::after { content:""; position:absolute; width:300px;height:300px;background:radial-gradient(circle,#14C4E0,transparent 60%);filter:blur(70px);opacity:.4;top:-120px;right:-90px; }
.founder-avatar { width: 96px; height: 96px; border-radius: 24px; background: var(--grad); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 2rem; color: #fff; margin-bottom: 1.2rem; position: relative; z-index: 2; }
.founder-card h3 { color: #fff; font-size: 1.4rem; position: relative; z-index: 2; }
.founder-card .role { color: var(--accent-2); font-weight: 600; font-size: .95rem; position: relative; z-index: 2; margin-bottom: 1.2rem; }
.founder-meta { display: grid; gap: .7rem; position: relative; z-index: 2; }
.founder-meta li { display: flex; align-items: center; gap: .6rem; color: #cbd5f5; font-size: .92rem; }
.founder-meta svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; }
.prose p { color: var(--ink-2); margin-bottom: 1.1rem; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.value { display: flex; gap: .8rem; align-items: flex-start; }
.value .v-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.value .v-icon svg { width: 20px; height: 20px; }
.value h4 { font-size: 1rem; margin-bottom: .2rem; }
.value p { color: var(--muted); font-size: .9rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--dark); color: #fff; position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.page-hero::before { content:""; position:absolute; width: 500px; height:500px; background: radial-gradient(circle,#3B34C9,transparent 65%); filter: blur(90px); opacity:.5; top:-220px; right:-100px; }
.page-hero .container { position: relative; z-index: 2; max-width: 800px; }
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.page-hero p { color: #c4cce0; font-size: 1.12rem; max-width: 620px; }
.breadcrumb { font-size: .85rem; color: var(--dark-muted); margin-bottom: 1.3rem; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--dark-muted); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--dark-line); }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--dark-line); display: grid; place-items: center; color: var(--dark-muted); transition: all .2s; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-family: var(--display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: .85rem; flex-wrap: wrap; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: .5rem; }
.footer-bottom .made svg { width: 16px; height: 16px; color: var(--accent-2); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}

/* ---------- Notice ---------- */
.notice { background: var(--grad-soft); border: 1px solid rgba(79,70,229,.18); border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: .92rem; color: var(--ink-2); display: flex; gap: .7rem; align-items: flex-start; }
.notice svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 1px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .split, .about-hero { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: .2rem;
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    padding: 1rem var(--pad) 1.4rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .site-header.open .nav-links a { padding: .85rem 1rem; border-radius: 10px; }
  .site-header.open .nav-links .btn { display: inline-flex; margin-top: .5rem; }
  .grid-3, .grid-2, .grid-4, .price-grid, .steps, .stats, .values, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.8rem 1rem; }
  .domain-form { flex-direction: column; }
  .domain-form .btn { width: 100%; }
  .hero-stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .hero-stat-row { grid-template-columns: 1fr; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
