/* ===========================================================
   Launched — Stylesheet
   Modern & bold, professional. Single shared stylesheet.
   =========================================================== */

:root {
  --bg:        #0f0a1f;
  --bg-soft:   #1a1533;
  --surface:   #221c40;
  --surface-2: #2a254d;
  --line:      #3a3558;
  --text:      #f0e6ff;
  --muted:     #b8a9d4;
  --accent:    #c026d3;
  --accent-2:  #ff2e63;
  --accent-grad: linear-gradient(120deg, #c026d3 0%, #ff2e63 100%);
  --danger:    #ff4757;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 20px 50px -20px rgba(0,0,0,.6);
  --maxw:      1140px;
  --pad:       clamp(1.1rem, 4vw, 2rem);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--muted); }
a  { color: var(--accent); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent-grad); color: #04111f; box-shadow: 0 12px 30px -10px rgba(91,140,255,.6); }
.btn-ghost   { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,15,26,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.2rem; color: var(--text); letter-spacing: -.02em; }
.brand .logo {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--accent-grad);
  display: grid; place-items: center;
  color: #04111f; font-weight: 900; font-size: 1.05rem;
  box-shadow: 0 6px 18px -6px rgba(24,211,200,.7);
}
.brand .logo svg { width: 26px; height: 26px; display: block; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--muted); font-weight: 600; font-size: .96rem;
  padding: .5rem .85rem; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); }
.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); width: 42px; height: 42px; border-radius: 10px;
  cursor: pointer; font-size: 1.3rem; line-height: 1;
}

@media (max-width: 820px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--line);
    padding: .6rem var(--pad) 1.1rem;
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
    padding-block: 0;
  }
  .nav-links.open { max-height: 420px; padding-block: .6rem 1.1rem; }
  .nav-links a { padding: .9rem .6rem; border-radius: 8px; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Sections ---------- */
section { padding-block: clamp(3.5rem, 9vw, 6.5rem); position: relative; }
.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: .8rem;
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 8vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.4rem; color: var(--muted); font-size: .9rem; }
.hero-trust span { display: flex; align-items: center; gap: .45rem; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }

.hero-visual { position: relative; }
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: .4rem; padding: .7rem 1rem; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a4569; display: inline-block; flex: none; }
.mock-bar i:nth-child(1){ background:#c026d3; } .mock-bar i:nth-child(2){ background:#ff9d3d; } .mock-bar i:nth-child(3){ background:#ff2e63; }
.mock-url {
  margin-left: .7rem; flex: 1; background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: .25rem .75rem; font-size: .72rem; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---- Mini website rendered inside the browser frame ---- */
.mock-site { padding: 0; background: var(--bg-soft); }

.ms-nav {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem; border-bottom: 1px solid var(--line); background: var(--surface);
}
.ms-brand { display: flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 800; color: var(--text); }
.ms-logo { width: 16px; height: 16px; border-radius: 5px; background: var(--accent-grad); display: inline-block; }
.ms-links { display: flex; gap: .5rem; margin-left: auto; }
.ms-links b { width: 26px; height: 7px; border-radius: 4px; background: var(--surface-2); display: inline-block; }
.ms-btn { font-size: .66rem; font-weight: 700; color: #04111f; background: var(--accent-2); border-radius: 999px; padding: .25rem .6rem; }

.ms-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items: center; padding: 1.2rem 1rem; }
.ms-hero-text { display: grid; gap: .5rem; }
.ms-h1 { height: 13px; border-radius: 5px; background: linear-gradient(90deg,var(--text),var(--muted)); opacity: .9; }
.ms-h1.short { width: 60%; }
.ms-p { height: 7px; border-radius: 4px; background: var(--surface-2); }
.ms-p.short { width: 70%; }
.ms-cta { justify-self: start; margin-top: .35rem; font-size: .66rem; font-weight: 700; color: #04111f; background: var(--accent-grad); border-radius: 999px; padding: .3rem .7rem; }
.ms-hero-img { height: 92px; border-radius: 10px; background: var(--accent-grad); opacity: .92; box-shadow: 0 10px 24px -12px rgba(24,211,200,.6); }

.ms-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; padding: 0 1rem 1.2rem; }
.ms-card { background: var(--surface); border: 1px solid var(--line); border-radius: 9px; padding: .7rem; display: grid; gap: .4rem; }
.ms-card .ms-ico { width: 20px; height: 20px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line); }
.ms-card b { height: 6px; border-radius: 3px; background: var(--surface-2); display: block; }
.ms-card b.short { width: 65%; }

.hero-glow { position: absolute; inset: -40% -20% auto auto; width: 420px; height: 420px; background: radial-gradient(circle, rgba(91,140,255,.35), transparent 65%); filter: blur(20px); z-index: -1; }

/* ---- Full Project Intake form ---- */
.intake-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
}
.intake-head .intake-badge {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: .5rem;
}
.intake-head p { margin: 0; font-size: .86rem; line-height: 1.45; }

.intake-sec { border: 0; margin: 0; padding: 0; min-width: 0; }
.intake-sec legend {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 800; color: var(--text); padding: 0; margin-bottom: .65rem;
}

.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem .8rem; }
.intake-grid .full { grid-column: 1 / -1; }
.intake-grid label {
  display: flex; flex-direction: column; gap: .3rem;
  font-size: .72rem; font-weight: 600; color: var(--muted); min-width: 0;
}
.intake-grid input, .intake-grid select, .intake-grid textarea {
  font: inherit; font-size: .85rem; width: 100%;
  padding: .5rem .6rem; border-radius: 8px;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.intake-grid input::placeholder, .intake-grid textarea::placeholder { color: #5d6a8a; }
.intake-grid input:focus, .intake-grid select:focus, .intake-grid textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,140,255,.18);
}
.intake-grid textarea { resize: vertical; min-height: 54px; }

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

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 0; }
  .hero .lead { max-width: none; }
}

/* ---------- Stats strip ---------- */
.stats { border-block: 1px solid var(--line); background: var(--bg-soft); padding-block: 2.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.stat .label { color: var(--muted); font-size: .9rem; }
@media (max-width: 620px){ .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; } }

/* ---------- Cards / Services ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); font-size: 1.4rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: .35rem; }
.card p { margin: 0; font-size: .96rem; }

/* ---------- Process / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.2rem; counter-reset: step; }
.step { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: relative; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-weight: 800; font-size: 1.1rem; color: var(--accent-2);
  display: inline-block; margin-bottom: .8rem; letter-spacing: .05em;
}
.step h3 { font-size: 1.1rem; }
.step p { margin: 0; font-size: .94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent-grad); border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center; color: #04111f;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #04111f; }
.cta-band p { color: #082033; opacity: .85; max-width: 50ch; margin-inline: auto; }
.cta-band .btn-primary { background: #061425; color: #fff; box-shadow: none; }
.cta-band .actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }
.values { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.2rem; }
.value { display: flex; gap: .9rem; }
.value .ico { font-size: 1.5rem; flex: none; }
.value h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.value p { margin: 0; font-size: .94rem; }

.about-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
}
.about-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.about-card li { margin-bottom: .6rem; }

/* ---------- Meet the owners ---------- */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 760px){ .team { grid-template-columns: 1fr; } }
.owner {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.owner:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.owner .avatar {
  flex: none; width: 84px; height: 84px; border-radius: 50%;
  background: var(--accent-grad); display: grid; place-items: center;
  font-weight: 800; font-size: 1.6rem; color: #04111f; letter-spacing: .02em;
}
.owner .owner-body { min-width: 0; }
.owner h3 { margin-bottom: .12rem; }
.owner .role { display: block; color: var(--accent-2); font-weight: 600; font-size: .88rem; margin-bottom: .55rem; }
.owner p { font-size: .95rem; margin: 0 0 .7rem; }
.owner .tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.owner .tags span { font-size: .72rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .22rem .6rem; color: var(--muted); }
.team-note { text-align: center; max-width: 62ch; margin: 2.2rem auto 0; color: var(--muted); font-size: .98rem; }
@media (max-width: 480px){ .owner { flex-direction: column; gap: .9rem; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: grid; gap: 1rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem;
  transition: border-color .2s, transform .2s;
}
.contact-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-item .ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-grad); color: #04111f; font-size: 1.3rem;
}
.contact-item h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-item a { display: block; width: fit-content; color: var(--text); font-weight: 700; font-size: 1.05rem; }
.contact-item a:hover { color: var(--accent); }
.contact-item small { color: var(--muted); display: block; margin-top: .15rem; }
.tag { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--accent-2); border:1px solid var(--line); border-radius:999px; padding:.15rem .55rem; margin-left:.4rem; }

/* ---------- Form ---------- */
form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border-radius: var(--radius-sm);
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--text);
  font: inherit; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,140,255,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); margin: .6rem 0 0; }
.form-success {
  display: none; margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: rgba(57,217,138,.12); border: 1px solid rgba(57,217,138,.4); color: #8af0b8; font-size: .95rem;
}
.form-success.show { display: block; }
.form-success.is-error { background: rgba(255,107,107,.12); border-color: rgba(255,107,107,.45); color: #ffb3b3; }

/* ---------- Work / Portfolio gallery ---------- */
.work-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.filter-btn {
  font: inherit; font-size: .9rem; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.05rem; cursor: pointer; transition: color .15s, background .15s, border-color .15s, transform .15s;
}
.filter-btn:hover { color: var(--text); border-color: var(--accent); transform: translateY(-1px); }
.filter-btn.active { color: #04111f; background: var(--accent-grad); border-color: transparent; }

.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.4rem; }
.work-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow); }
.work-card.hide { display: none; }

/* --- website preview thumbnail --- */
.thumb-link { display: block; }
.thumb { position: relative; background: #0c1120; border-bottom: 1px solid var(--line); overflow: hidden; }
.t-cat {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: #04111f; background: rgba(255,255,255,.92); border-radius: 999px; padding: .2rem .55rem;
}
.t-bar { display: flex; align-items: center; gap: .3rem; padding: .45rem .6rem; background: #161d31; border-bottom: 1px solid var(--line); }
.t-bar i { width: 7px; height: 7px; border-radius: 50%; background: #3a4569; flex: none; }
.t-bar i:nth-child(1){ background:#c026d3; } .t-bar i:nth-child(2){ background:#ff9d3d; } .t-bar i:nth-child(3){ background:#ff2e63; }
.t-bar u {
  flex: 1; text-decoration: none; margin-left: .4rem; background: #0c1120; border-radius: 999px;
  font-size: .56rem; color: #7c89ad; padding: .12rem .5rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

.t-body { background: #0e1426; padding: .75rem; }
.t-nav { display: flex; align-items: center; gap: .35rem; margin-bottom: .6rem; }
.t-logo { width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(120deg, var(--ta), var(--tb)); flex: none; }
.t-name { width: 42px; height: 6px; border-radius: 3px; background: #2a3350; }
.t-links { display: flex; gap: .25rem; margin-left: auto; }
.t-links b { width: 16px; height: 5px; border-radius: 3px; background: #222b45; }
.t-cta { width: 30px; height: 12px; border-radius: 999px; background: var(--ta); margin-left: .3rem; flex: none; }

.t-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: .5rem; align-items: center; }
.t-htxt { display: grid; gap: .3rem; }
.t-h { height: 8px; border-radius: 3px; background: linear-gradient(90deg, #e8ecf6, #9aa6c4); }
.t-h.s { width: 60%; }
.t-p { height: 5px; width: 80%; border-radius: 3px; background: #222b45; }
.t-go { width: 38px; height: 13px; border-radius: 999px; background: linear-gradient(120deg, var(--ta), var(--tb)); margin-top: .15rem; }
.t-img { aspect-ratio: 1 / .82; border-radius: 7px; background: linear-gradient(135deg, var(--ta), var(--tb)); display: grid; place-items: center; font-size: 1.4rem; }

.t-banner { position: relative; border-radius: 8px; overflow: hidden; display: grid; place-items: center; min-height: 74px; background: linear-gradient(135deg, var(--ta), var(--tb)); font-size: 1.9rem; }
.t-bov { position: absolute; left: .55rem; right: .55rem; bottom: .5rem; display: grid; gap: .3rem; }
.t-banner .t-h { background: linear-gradient(90deg, #fff, rgba(255,255,255,.65)); }

.t-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; margin-top: .6rem; }
.t-row span { height: 24px; border-radius: 6px; background: #161d31; border: 1px solid var(--line); }

.work-meta { padding: 1.2rem 1.3rem 1.4rem; }
.work-meta h3 { margin-bottom: .2rem; font-size: 1.15rem; }
.work-tag { display: block; font-size: .8rem; color: var(--accent-2); font-weight: 600; margin-bottom: .65rem; }
.work-meta p { font-size: .92rem; margin: 0 0 .9rem; }
.work-link { font-weight: 700; font-size: .9rem; }
.work-note { text-align: center; color: var(--muted); margin-top: 2.5rem; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: .8rem; }
details.qa { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.2rem; }
details.qa summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after { content: "+"; color: var(--accent-2); font-size: 1.4rem; font-weight: 400; transition: transform .2s; }
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa p { padding-bottom: 1.1rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding-block: 3rem 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid p { font-size: .94rem; }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 0 0 .9rem; }
.footer-col a { display: block; color: var(--muted); padding: .25rem 0; font-size: .95rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .85rem; }
@media (max-width: 720px){ .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Launched emblem band ---------- */
.emblem-band {
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(120% 150% at 50% -30%, #16223f 0%, var(--bg) 65%);
  border-block: 1px solid var(--line);
}
.emblem-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .7;
  background-image:
    radial-gradient(2px 2px at 18% 28%, rgba(255,255,255,.55), transparent),
    radial-gradient(2px 2px at 72% 22%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.6px 1.6px at 40% 68%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.6px 1.6px at 86% 62%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.4px 1.4px at 30% 85%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.4px 1.4px at 60% 40%, rgba(91,140,255,.5), transparent);
}
.emblem {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: clamp(2rem, 5vw, 2.9rem) clamp(2.6rem, 8vw, 5.5rem);
  border-radius: 220px;
  background: linear-gradient(180deg, rgba(18,24,41,.65), rgba(11,15,26,.4));
  box-shadow: inset 0 0 0 2px rgba(91,140,255,.55), 0 30px 80px -34px rgba(91,140,255,.55);
}
.emblem::after {
  content: ""; position: absolute; inset: 7px; border-radius: 220px;
  box-shadow: inset 0 0 0 1px rgba(24,211,200,.28); pointer-events: none;
}
.emblem-side {
  position: absolute; left: clamp(.8rem, 2.5vw, 1.8rem); top: 50%;
  transform: translateY(-50%) rotate(-90deg); transform-origin: center;
  font-size: .7rem; font-weight: 800; letter-spacing: .35em; color: var(--muted);
}
.rocket-wrap { position: relative; }
.rocket-emb { width: clamp(56px, 12vw, 86px); height: auto; display: block; animation: emb-bob 3.2s ease-in-out infinite; }
.rocket-emb .flame { transform-origin: 40px 78px; animation: emb-flick .45s ease-in-out infinite; }
.rocket-wrap::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 16px; height: 54px; border-radius: 50%; filter: blur(9px); opacity: .75;
  background: linear-gradient(180deg, #ff9d3d, rgba(255,61,61,0));
  animation: emb-flick .45s ease-in-out infinite;
}
.b26 {
  position: absolute; top: -4px; right: -12px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: #0b0f1a; font-size: .72rem; font-weight: 800;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,.45);
}
.emblem-word {
  font-size: clamp(2.3rem, 7vw, 4.4rem); font-weight: 900; letter-spacing: .015em; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--accent); text-shadow: 0 0 34px rgba(91,140,255,.45);
}
.emblem-est { display: flex; align-items: center; gap: .75rem; color: var(--accent-2); font-weight: 700; letter-spacing: .34em; font-size: .8rem; }
.emblem-est i { display: block; height: 2px; width: clamp(18px, 6vw, 46px); background: linear-gradient(90deg, transparent, var(--accent-2)); }
.emblem-est i:last-child { transform: scaleX(-1); }
.emblem-tag { margin: 1.7rem 0 0; color: var(--muted); font-weight: 600; }
@keyframes emb-bob { 50% { transform: translateY(-9px); } }
@keyframes emb-flick { 50% { opacity: .55; transform: translateX(-50%) scaleY(.82); } }
.rocket-emb .flame { animation-name: emb-flick-simple; }
@keyframes emb-flick-simple { 50% { opacity: .55; transform: scaleY(.82); } }
@media (prefers-reduced-motion: reduce){
  .rocket-emb, .rocket-emb .flame, .rocket-wrap::after { animation: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ============================================================
   Interactive particle network (cursor-linked) backgrounds
   ============================================================ */
.has-particles { position: relative; }
.has-particles { overflow: hidden; }
.particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.has-particles > *:not(.particle-canvas) { position: relative; z-index: 1; }

/* ============================================================
   Interactive sidebar navigation
   ============================================================ */
:root { --sb-w: 252px; --sb-cw: 76px; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--sb-w); z-index: 60;
  display: flex; flex-direction: column; gap: .3rem; padding: 0.8rem .75rem;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-right: 1px solid var(--line);
  transition: width .25s ease, transform .3s cubic-bezier(.4,0,.2,1), box-shadow .25s ease;
}
.sb-head { padding: .35rem .45rem 0.6rem; }
.sb-brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.3rem; color: var(--text); letter-spacing: -.02em; }
.sb-logo { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--accent-grad); display: grid; place-items: center; box-shadow: 0 6px 18px -6px rgba(24,211,200,.7); }
.sb-logo svg { width: 28px; height: 28px; display: block; }
.sb-name { transition: opacity .2s ease; }

.sb-nav { display: flex; flex-direction: column; gap: .3rem; flex: 1; overflow-y: visible; overflow-x: hidden; padding-top: .35rem; scrollbar-width: none; }
.sb-nav::-webkit-scrollbar { display: none; }
.sb-link, .sb-cta, .sb-contact a, .sb-collapse {
  position: relative; display: flex; align-items: center; gap: .85rem;
  padding: .6rem .8rem; border-radius: 11px; color: var(--muted);
  font-weight: 600; font-size: 1.08rem; font-family: inherit; white-space: nowrap;
  cursor: pointer; border: 0; background: transparent; width: 100%; text-align: left; text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.sb-ico { width: 28px; flex: none; text-align: center; font-size: 1.25rem; transition: transform .18s ease; }
.sb-label { transition: opacity .2s ease; }
.sb-link::before {
  content: ""; position: absolute; left: -.05rem; top: 50%;
  transform: translateY(-50%) scaleY(0); transform-origin: center;
  width: 3px; height: 62%; border-radius: 3px; background: var(--accent-grad); transition: transform .2s ease;
}
.sb-link:hover, .sb-contact a:hover, .sb-collapse:hover { background: var(--surface); color: var(--text); transform: translateX(3px); }
.sb-link:hover .sb-ico { transform: scale(1.18); }
.sb-link:hover::before { transform: translateY(-50%) scaleY(1); }
.sb-link.active { background: var(--surface); color: var(--text); }
.sb-link.active::before { transform: translateY(-50%) scaleY(1); }
.sb-link.active .sb-ico { filter: drop-shadow(0 0 6px rgba(91,140,255,.65)); }

.sb-foot { display: flex; flex-direction: column; gap: .25rem; padding-top: .55rem; margin-top: .45rem; border-top: 1px solid var(--line); }
.sb-cta { background: var(--accent-grad); color: #04111f; font-weight: 800; box-shadow: 0 10px 24px -10px rgba(91,140,255,.6); }
.sb-cta:hover { transform: translateX(3px); color: #04111f; }
.sb-cta .sb-ico { transition: transform .25s ease; }
.sb-cta:hover .sb-ico { transform: translateY(-2px) rotate(8deg); }
.sb-contact { display: flex; flex-direction: column; gap: .08rem; margin-top: .25rem; }
.sb-contact a { font-size: .95rem; padding: .4rem .7rem; }
.sb-collapse { color: var(--muted); font-size: .95rem; margin-top: .12rem; }
.sb-collapse .sb-ico { transition: transform .25s ease; }

/* Collapsed rail (desktop) */
body.sb-collapsed .sidebar { width: var(--sb-cw); }
body.sb-collapsed .sb-label, body.sb-collapsed .sb-name { opacity: 0; }
body.sb-collapsed .sb-collapse .sb-ico { transform: rotate(180deg); }
body.sb-collapsed .sidebar:hover { width: var(--sb-w); box-shadow: 24px 0 60px -28px rgba(0,0,0,.75); }
body.sb-collapsed .sidebar:hover .sb-label, body.sb-collapsed .sidebar:hover .sb-name { opacity: 1; }
body.sb-collapsed .sidebar:hover .sb-collapse .sb-ico { transform: rotate(0deg); }

/* Mobile top bar + hamburger */
.mobile-bar { display: none; }
.sb-burger { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); display: grid; place-content: center; gap: 5px; cursor: pointer; }
.sb-burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.mb-brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.mb-brand .sb-logo { width: 36px; height: 36px; }
.mb-brand .sb-logo svg { width: 22px; height: 22px; }
body.sb-open .sb-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.sb-open .sb-burger span:nth-child(2) { opacity: 0; }
body.sb-open .sb-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop: shift content right for the sidebar */
@media (min-width: 921px) {
  body.has-sidebar { padding-left: var(--sb-w); transition: padding-left .25s ease; }
  body.has-sidebar.sb-collapsed { padding-left: var(--sb-cw); }
  .mobile-bar, .sb-backdrop { display: none !important; }
}

/* Mobile: off-canvas drawer */
@media (max-width: 920px) {
  body.has-sidebar .sidebar { transform: translateX(-100%); width: var(--sb-w); box-shadow: 24px 0 60px -18px rgba(0,0,0,.7); }
  body.has-sidebar.sb-open .sidebar { transform: none; }
  body.sb-collapsed .sidebar { width: var(--sb-w); }
  body.sb-collapsed .sb-label, body.sb-collapsed .sb-name { opacity: 1; }
  .sb-collapse { display: none; }
  .mobile-bar { display: flex; align-items: center; gap: .8rem; position: sticky; top: 0; z-index: 50;
    height: 62px; padding-inline: var(--pad); background: rgba(11,15,26,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
  .sb-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(4,8,16,.62); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
  body.sb-open .sb-backdrop { opacity: 1; visibility: visible; }
}

/* ============================================================
   Work page "these are demos" callout
   ============================================================ */
.work-disclaimer {
  display: flex; gap: 1rem; align-items: flex-start; max-width: 780px; margin: 0 auto 2.2rem;
  padding: 1.1rem 1.4rem; border: 1px solid var(--line); border-left: 4px solid var(--accent-2);
  border-radius: 12px; background: var(--bg-soft); color: var(--muted); font-size: .96rem; line-height: 1.55;
}
.work-disclaimer .di { font-size: 1.5rem; line-height: 1; flex: none; }
.work-disclaimer strong { color: var(--text); }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; } }
.price-card {
  display: flex; flex-direction: column; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.price-card.feat { border-color: var(--accent); box-shadow: 0 24px 52px -26px rgba(91,140,255,.5); }
.price-card.feat::before {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent-grad); color: #04111f; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: .3rem .9rem; border-radius: 999px; white-space: nowrap;
}
.price-name { font-size: 1.25rem; font-weight: 800; }
.price-amt { font-size: 2.7rem; font-weight: 900; letter-spacing: -.02em; margin: .15rem 0 .1rem; }
.price-amt span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .6rem; }
.price-card li { display: flex; gap: .55rem; font-size: .94rem; color: var(--text); }
.price-card li::before { content: "✓"; color: var(--accent-2); font-weight: 800; flex: none; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 1.6rem; }
