/* =========================================================
   Hoster by AdituA — design system (multi-pages)
   Zéro dépendance externe. Police système. JS minimal.
   ========================================================= */
:root {
  --bg:        #07111c;
  --bg-soft:   #0d1722;
  --panel:     #101923;
  --panel-2:   #152231;
  --fg:        #eef5ff;
  --muted:     #a7b3c1;
  --muted-2:   #6f8096;
  --border:    rgba(255,255,255,.10);
  --border-2:  rgba(255,255,255,.06);
  --accent:    #27b3b0;
  --accent-2:  #7dd3c7;
  --accent-deep:#1c7f7a;
  --ok:        #34d399;
  --warn:      #fbbf24;
  --danger:    #f87171;
  --radius:    8px;
  --radius-lg: 10px;
  --maxw:      1140px;
  --pad:       clamp(20px, 5vw, 40px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0; color: var(--fg); background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { letter-spacing: 0; line-height: 1.12; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.grad-text {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2);
}
.eyebrow::before { content:""; width: 22px; height: 1px; background: var(--accent); display:inline-block; }
.center { text-align: center; }

/* ===== Decorative background ===== */
.bg, .grid { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg {
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(37,166,230,.16), transparent 70%),
    radial-gradient(720px 520px at 88% 8%, rgba(27,111,168,.12), transparent 70%),
    linear-gradient(180deg, #07111c 0%, #101923 52%, #0c1b22 100%);
}
.grid {
  opacity: .45;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 70%);
}

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); background: rgba(10,17,32,.72);
  border-bottom: 1px solid var(--border-2);
}
.nav { display: flex; align-items: center; gap: 18px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; text-decoration: none; perspective: 900px; }
.brand .logo {
  width: 64px; height: 64px; border-radius: 8px;
  transform-style: preserve-3d; backface-visibility: visible;
  will-change: transform; transform: translateZ(0);  /* couche GPU dédiée */
  /* filtre CONSTANT (hors keyframes) => aucune ré-animation de filtre, donc pas de saccade */
  filter: drop-shadow(0 6px 18px rgba(0,180,255,.30)) drop-shadow(0 2px 7px rgba(130,80,255,.20));
  /* linear = vitesse constante => boucle parfaitement lisse */
  animation: spin3D 5s linear infinite;
}
/* uniquement transform animé (accéléré GPU) ; nombreux paliers => squash continu et fluide */
@keyframes spin3D {
  0%   { transform: rotateY(0deg)    scaleX(1); }
  12.5%{ transform: rotateY(45deg)   scaleX(.72); }
  25%  { transform: rotateY(90deg)   scaleX(.06); }
  37.5%{ transform: rotateY(135deg)  scaleX(.72); }
  50%  { transform: rotateY(180deg)  scaleX(1); }
  62.5%{ transform: rotateY(225deg)  scaleX(.72); }
  75%  { transform: rotateY(270deg)  scaleX(.06); }
  87.5%{ transform: rotateY(315deg)  scaleX(.72); }
  100% { transform: rotateY(360deg)  scaleX(1); }
}
.brand .by { font-size: 12px; font-weight: 500; color: var(--muted); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 13px; border-radius: 9px; font-size: 14.5px; font-weight: 500;
  color: var(--muted); text-decoration: none; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--fg); background: rgba(37,166,230,.12); }
.nav .cta-btn { margin-left: 6px; }
.burger { display: none; margin-left: auto; background: none; border: 1px solid var(--border); color: var(--fg); width: 42px; height: 38px; border-radius: 8px; cursor: pointer; font-size: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 8px;
  font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #06131f; box-shadow: 0 10px 24px -10px rgba(37,166,230,.7); }
.btn-primary:hover { transform: translateY(-2px); background: #4cb8f0; }
.btn-ghost { color: var(--fg); border-color: var(--border); background: rgba(255,255,255,.04); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.24); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
/* bouton démo de la navbar : dégradé propre + halo, mieux intégré */
.cta-btn {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: #06131f; border: 0;
  box-shadow: 0 8px 22px -10px rgba(37,166,230,.75), inset 0 0 0 1px rgba(255,255,255,.18);
}
.cta-btn svg { width: 16px; height: 16px; }
.cta-btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 12px 26px -10px rgba(37,166,230,.85), inset 0 0 0 1px rgba(255,255,255,.25); }

/* ===== Sections ===== */
section { position: relative; z-index: 1; padding-top: clamp(58px, 8vw, 100px); padding-bottom: clamp(58px, 8vw, 100px); }
.section-head { max-width: 700px; margin: 0 auto clamp(34px,5vw,54px); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 14px 0 0; font-weight: 800; }
.section-head p { color: var(--muted); margin: 16px 0 0; font-size: clamp(1rem,2vw,1.12rem); }
.soft { background: linear-gradient(180deg, transparent, rgba(37,166,230,.04), transparent); }

/* ===== Hero (home) ===== */
.hero { padding-top: clamp(42px, 7vw, 78px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.1fr; gap: clamp(28px, 5vw, 52px); align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); font-weight: 800; margin: 18px 0 0; }
.hero .lead { color: #c4d2e3; font-size: clamp(1.05rem, 2.2vw, 1.22rem); margin: 22px 0 0; max-width: 560px; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .micro { margin-top: 20px; font-size: 13.5px; color: var(--muted-2); display:flex; gap:18px; flex-wrap:wrap; }
.hero .micro span { display:inline-flex; align-items:center; gap:7px; }
.hero .micro svg { width:15px; height:15px; color: var(--ok); }

/* ===== Page header (subpages) ===== */
.page-header {
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(58px, 8vw, 100px);
  text-align: center;
}
.page-header .eyebrow { margin-top: 0; }
.page-header h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); font-weight: 800; margin: 18px 0 0; }
.page-header p { color: #c4d2e3; font-size: clamp(1.05rem, 2.2vw, 1.22rem); margin: 22px auto 0; max-width: 560px; }

/* ===== Browser frame ===== */
.frame {
  border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden;
  background: var(--panel); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
}
.frame-bar { display:flex; align-items:center; gap:7px; padding: 12px 15px; border-bottom: 1px solid var(--border-2); background: rgba(255,255,255,.02); }
.frame-bar i { width: 11px; height: 11px; border-radius: 50%; display:inline-block; background:#3a4763; }
.frame-bar i:nth-child(1){ background:#ff5f57; } .frame-bar i:nth-child(2){ background:#febc2e; } .frame-bar i:nth-child(3){ background:#28c840; }
.frame-bar .url { margin-left: 12px; font-size: 12.5px; color: var(--muted-2); overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }
.frame img { width: 100%; display: block; background:#0a1322; }
.frame-video { width: 100%; display: block; background:#0a1322; }
/* recadrage paysage : captures quasi-carrées affichées sans étirer la page (on garde le haut) */
.frame.crop img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.hero-shot { animation: float 8s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

/* grille de vignettes (aperçu console sur l'accueil) */
.shotgrid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shotgrid a { text-decoration:none; display:block; transition: transform .18s ease, box-shadow .18s ease; }
.shotgrid a:hover { transform: translateY(-5px); }
.shotgrid a:hover .frame { box-shadow: 0 26px 56px -28px rgba(37,166,230,.6); border-color: rgba(37,166,230,.45); }
.shotgrid .frame img { aspect-ratio: 16 / 11; object-fit: cover; object-position: top center; }
.shotgrid .lbl { padding: 12px 15px; border-top:1px solid var(--border-2); font-size:13.5px; color:#cfe0f2;
  background:rgba(255,255,255,.02); display:flex; align-items:center; justify-content:space-between; gap:8px; }
.shotgrid .lbl svg { width:15px; height:15px; color: var(--accent-2); flex:none; }

/* ===== Strip ===== */
.strip { padding-block: 28px; border-block: 1px solid var(--border-2); background: rgba(255,255,255,.012); }
.strip-inner { display:flex; align-items:center; justify-content:center; gap: clamp(18px,5vw,52px); flex-wrap:wrap; }
.strip span { color: var(--muted-2); font-size: 13px; letter-spacing: .03em; }
.strip b { color:#cfe0f2; font-weight:600; }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); }
.stat .num { font-size: clamp(1.7rem, 3.8vw, 2.5rem); font-weight: 800; }
.stat .lbl { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

/* ===== Cards / features ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 26px; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(37,166,230,.4); box-shadow: 0 18px 40px -22px rgba(37,166,230,.5); }
.card .ic { width: 46px; height: 46px; border-radius: 8px; display:grid; place-items:center; margin-bottom: 16px;
  background: rgba(37,166,230,.12); border: 1px solid rgba(37,166,230,.3); color: var(--accent-2); }
.card .ic svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.16rem; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* ===== Split (alternating image / text) ===== */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items:center; }
.split + .split { margin-top: clamp(50px,7vw,90px); }
.split.rev .split-media { order: 2; }
.split-media .frame img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
/* captures dont l'info clé est centrée/basse : on cadre au centre plutôt qu'en haut */
img[src*="shot-cluster"], img[src*="shot-host"] { object-position: center center; }
.split-text h3 { font-size: clamp(1.4rem,3vw,1.9rem); margin: 14px 0 0; }
.split-text p { color: var(--muted); margin: 14px 0 0; font-size: 1.02rem; }
.split-text ul { list-style:none; margin: 20px 0 0; padding: 0; }
.split-text li { display:flex; gap:10px; padding: 7px 0; font-size: 14.7px; color:#d6e2f1; }
.split-text li svg { width:18px; height:18px; color: var(--accent-2); flex:none; margin-top:3px; }

/* ===== Gallery tabs (CSS only) ===== */
.gallery input { position:absolute; opacity:0; pointer-events:none; }
.tabs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-bottom: 24px; }
.tabs label { padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border); color: var(--muted); background: rgba(255,255,255,.03); transition: all .15s ease; }
.tabs label:hover { color: var(--fg); border-color: rgba(255,255,255,.2); }
.shot { display:none; }
/* recadrage paysage : captures quasi-carrées sans étirer la page (on garde le haut) */
.shot img { width:100%; display:block; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.shot .cap { padding: 14px 18px; border-top: 1px solid var(--border-2); color: var(--muted); font-size: 13.5px; background: rgba(255,255,255,.02); }
.g1:checked ~ .frame .shot[data-i="1"], .g2:checked ~ .frame .shot[data-i="2"],
.g3:checked ~ .frame .shot[data-i="3"], .g4:checked ~ .frame .shot[data-i="4"],
.g5:checked ~ .frame .shot[data-i="5"], .g6:checked ~ .frame .shot[data-i="6"],
.g7:checked ~ .frame .shot[data-i="7"], .g8:checked ~ .frame .shot[data-i="8"],
.g9:checked ~ .frame .shot[data-i="9"] { display:block; }
.g1:checked ~ .tabs label[for="g1"], .g2:checked ~ .tabs label[for="g2"],
.g3:checked ~ .tabs label[for="g3"], .g4:checked ~ .tabs label[for="g4"],
.g5:checked ~ .tabs label[for="g5"], .g6:checked ~ .tabs label[for="g6"],
.g7:checked ~ .tabs label[for="g7"], .g8:checked ~ .tabs label[for="g8"],
.g9:checked ~ .tabs label[for="g9"] { color:#06131f; background: var(--accent); border-color: var(--accent); }

/* ===== Metrics ===== */
.metrics { display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.metric { padding: 18px; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,.03); }
.metric .k { font-size: 12px; color: var(--muted); letter-spacing: .03em; text-transform:uppercase; display:flex; justify-content:space-between; align-items:center; }
.metric .k .live { display:inline-flex; align-items:center; gap:5px; font-size:10.5px; color: var(--ok); text-transform:none; letter-spacing:0; }
.metric .k .live i { width:7px; height:7px; border-radius:50%; background: var(--ok); animation: pulse 2s infinite; }
.metric .v { font-size: 1.6rem; font-weight: 800; margin-top:8px; }
.metric .v small { font-size: .9rem; color: var(--muted); font-weight:600; }
.metric .bar { height:6px; border-radius:6px; background: rgba(255,255,255,.08); margin-top:12px; overflow:hidden; }
.metric .bar > i { display:block; height:100%; border-radius:6px; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); width:0; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(52,211,153,.5);} 70%{ box-shadow:0 0 0 7px rgba(52,211,153,0);} 100%{ box-shadow:0 0 0 0 rgba(52,211,153,0);} }

/* ===== Comparison ===== */
.cmp { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.cmp .col { border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; background: rgba(255,255,255,.02); }
.cmp .col.hi { border-color: rgba(37,166,230,.5); box-shadow: 0 22px 50px -28px rgba(37,166,230,.6); }
.cmp .col h3 { margin:0; padding:18px 20px; font-size:1.05rem; border-bottom:1px solid var(--border-2); display:flex; align-items:center; gap:10px; }
.cmp .col.hi h3 { background: rgba(37,166,230,.1); }
.cmp ul { list-style:none; margin:0; padding:10px 20px 22px; }
.cmp li { display:flex; gap:10px; padding:9px 0; font-size:14.5px; color:#d6e2f1; border-bottom:1px solid var(--border-2); }
.cmp li:last-child { border-bottom:0; }
.cmp li svg { width:17px; height:17px; flex:none; margin-top:2px; }
.cmp li.no { color: var(--muted-2); }
.ok-i { color: var(--ok); } .no-i { color:#6b7689; }

/* ===== Pricing ===== */
.pricing { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; align-items:stretch; }
.plan { display:flex; flex-direction:column; padding:28px; border-radius: var(--radius-lg); border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); }
.plan.feat { border-color: rgba(37,166,230,.55); box-shadow: 0 26px 60px -30px rgba(37,166,230,.6); position:relative; }
.plan .tag { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--accent); color:#06131f; font-size:12px; font-weight:700; padding:5px 12px; border-radius:999px; }
.plan h3 { margin:0; font-size:1.2rem; }
.plan .price { font-size: 2.1rem; font-weight:800; margin:14px 0 2px; }
.plan .price small { font-size:.92rem; color:var(--muted); font-weight:600; }
.plan .desc { color:var(--muted); font-size:14px; min-height:42px; }
.plan ul { list-style:none; margin:18px 0 24px; padding:0; flex:1; }
.plan li { display:flex; gap:9px; padding:7px 0; font-size:14px; color:#d6e2f1; }
.plan li svg { width:16px; height:16px; color:var(--accent-2); flex:none; margin-top:3px; }

/* ===== Prose / generic ===== */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color:#c4d2e3; }
.tablewrap { overflow-x:auto; border:1px solid var(--border); border-radius: var(--radius); }
table.spec { width:100%; border-collapse: collapse; font-size: 14.5px; }
table.spec th, table.spec td { text-align:left; padding: 13px 16px; border-bottom: 1px solid var(--border-2); }
table.spec th { color: var(--muted-2); font-weight:600; text-transform:uppercase; font-size:12px; letter-spacing:.05em; }
table.spec td:first-child { color:#d6e2f1; }
.pill { display:inline-flex; align-items:center; gap:6px; padding:4px 10px; border-radius:999px; font-size:12px; border:1px solid var(--border); color:var(--muted); background:rgba(255,255,255,.03); }
.pill.ok { color: var(--ok); border-color: rgba(52,211,153,.3); background: rgba(52,211,153,.08); }

/* ===== Contact form ===== */
.contact-grid { display:grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr); gap: clamp(28px,5vw,52px); align-items:start; }
.contact-grid form { align-self: start; width: 100%; }
.contact-side { display: grid; align-content: start; gap: 18px; width: 100%; }
.contact-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(220px, 28vw, 300px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #0a1322;
  box-shadow: 0 24px 52px -34px rgba(0,0,0,.72);
}
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 13px; color: var(--muted); margin-bottom:7px; }
.field input, .field textarea, .field select {
  width:100%; padding: 12px 14px; border-radius: 8px; border:1px solid var(--border);
  background: rgba(255,255,255,.04); color: var(--fg); font: inherit; font-size:14.5px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,166,230,.18); }
.contact-info { border:1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; background: rgba(255,255,255,.02); min-height: 178px; display: grid; align-content: start; }
.contact-info h3 { margin:0 0 6px; } .contact-info a { color: var(--accent-2); text-decoration:none; }

/* ===== CTA band ===== */
.ctaband { text-align:center; }
.ctaband .box { border:1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(34px,5vw,58px);
  background: radial-gradient(700px 300px at 50% 0%, rgba(37,166,230,.16), transparent 70%), rgba(255,255,255,.02); }
.ctaband h2 { font-size: clamp(1.7rem,3.6vw,2.4rem); margin:0; }
.ctaband p { color:var(--muted); max-width:560px; margin:14px auto 0; }
.ctaband .cta { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:28px; }

/* ===== Footer ===== */
footer { position:relative; z-index:1; border-top:1px solid var(--border-2); padding-block: 42px 34px; }
.foot-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.foot-grid h4 { font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted-2); margin:0 0 14px; }
.foot-grid a { display:block; color:var(--muted); text-decoration:none; font-size:14px; padding:5px 0; }
.foot-grid a:hover { color:var(--fg); }
.foot-brand p { color:var(--muted); font-size:14px; max-width:280px; }
.foot-bottom { display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-top:34px; padding-top:22px; border-top:1px solid var(--border-2); color:var(--muted-2); font-size:13px; }

/* ===== Reveal ===== */
.reveal { opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .features, .cmp, .pricing { grid-template-columns: 1fr; }
  .shotgrid { grid-template-columns: 1fr; }
  .stats, .metrics { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display:none; }
  .nav-links.open { display:flex; position:absolute; top:76px; left:0; right:0; flex-direction:column; gap:0;
    background: rgba(10,17,32,.97); border-bottom:1px solid var(--border); padding: 8px; }
  .nav-links.open a { padding:12px 14px; }
  .burger { display:inline-grid; place-items:center; }
  .nav .cta-btn { display:none; }
}

/* ===== Utility classes ===== */
.btn-block { width: 100%; }
.mt-md { margin-top: 30px; }
.cmp-logo { width: 22px; height: 22px; border-radius: 6px; }
.foot-brand .brand { margin-bottom: 14px; }
.faq-card { margin-bottom: 14px; }
.faq-title { font-size: 1.05rem; margin: 0 0 6px; }
.faq-text { margin: 0; color: var(--muted); }
.form-note { font-size: 12.5px; color: var(--muted-2); margin-top: 12px; }
.contact-info p.meta { color: var(--muted); font-size: 14px; margin: 6px 0 16px; }
.contact-info p.item { margin: 0 0 8px; }
.contact-info p.item:last-child { margin: 0; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
}

/* ===== Refinements 2026-05-30 ===== */
:focus-visible { outline: 3px solid rgba(125,211,199,.55); outline-offset: 3px; }
main { position: relative; z-index: 1; }
.brand { min-width: max-content; }
.brand .logo { animation-duration: 10s; }
.btn, .tabs label, .nav-links a { min-height: 40px; }
.hero-grid { align-items: start; }
.hero-shot { margin-top: 6px; }
.stat .num { min-height: 46px; display: grid; place-items: center; }
.card, .plan, .contact-info, .ctaband .box, .cmp .col, .stat, .metric, .tablewrap, .frame { backdrop-filter: blur(10px); }
.card p, .plan .desc, .shot .cap, .faq-text, .form-note { max-width: 68ch; }
.split-text li, .plan li, .cmp li { align-items: flex-start; }
.field input, .field textarea, .field select { min-height: 46px; }
.field textarea { resize: vertical; }
@media (max-width: 920px) {
  .nav { height: 68px; }
  .brand { font-size: 18px; }
  .brand .logo { width: 52px; height: 52px; }
  .nav-links.open { top: 68px; }
  .hero { padding-top: 34px; }
  .page-header { padding-top: 34px; }
  .hero .cta, .ctaband .cta { justify-content: stretch; }
  .hero .cta .btn, .ctaband .cta .btn, .contact-grid .btn { width: 100%; }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .tabs label { white-space: nowrap; flex: 0 0 auto; }
}
@media (max-width: 560px) {
  :root { --pad: 16px; }
  .stats, .metrics { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; gap: 12px 22px; }
  .btn { padding-inline: 16px; }
  .frame-bar .url { max-width: 68vw; }
  table.spec { min-width: 680px; }
}
/* ===== FAQ accordion ===== */
.faq-wrap { max-width: 980px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(125,211,199,.32);
}
.faq-item[open] {
  border-color: rgba(39,179,176,.48);
  box-shadow: 0 20px 44px -34px rgba(39,179,176,.65);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 66px;
  padding: 19px 56px 19px 20px;
  position: relative;
  font-weight: 700;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  display: block;
  line-height: 1.3;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent-2);
  background: rgba(255,255,255,.04);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item[open] summary::after {
  content: "-";
  background: rgba(39,179,176,.16);
  color: var(--fg);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14.5px;
  animation: faqIn .22s ease both;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item summary { min-height: 58px; }
}
