/* ============================================================
   ChargedStudios.dev - Design System
   Dark · Cyan neon · Geist grotesk
   ============================================================ */

:root {
  /* Surfaces */
  --bg:          #070709;
  --bg-1:        #0b0b0f;
  --surface:     #101015;
  --surface-2:   #15151c;
  --surface-3:   #1c1c25;
  --line:        rgba(255,255,255,0.07);
  --line-2:      rgba(255,255,255,0.12);

  /* Text */
  --text:        #f4f4f6;
  --text-2:      #b4b4c0;
  --text-3:      #74747f;
  --text-4:      #4a4a55;

  /* Accent */
  --cyan:        #22d3ee;
  --cyan-bright: #5eeaff;
  --cyan-dim:    #0e7490;
  --purple:      #a855f7;
  --blue:        #3b82f6;

  --cyan-glow:   rgba(34,211,238,0.55);
  --cyan-soft:   rgba(34,211,238,0.12);

  /* Type */
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radius / shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow:    0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px -20px rgba(0,0,0,0.7);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,0.85);

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --nav-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: #04141a; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #26262f; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #34343f; }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.04; font-weight: 600; }
.display {
  font-size: clamp(40px, 7.2vw, 92px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.h2 { font-size: clamp(30px, 4.4vw, 54px); font-weight: 600; letter-spacing: -0.035em; }
.lead { font-size: clamp(17px, 1.55vw, 21px); color: var(--text-2); line-height: 1.6; }
.mono { font-family: var(--mono); }
.muted { color: var(--text-3); }
.accent { color: var(--cyan); }

.gradient-text {
  background: linear-gradient(95deg, #fff 18%, var(--cyan-bright) 70%, var(--purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 46px; padding: 0 22px;
  border-radius: 11px;
  font-size: 14.5px; font-weight: 500;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s, border-color .2s, box-shadow .25s, color .2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--cyan);
  color: #04141a;
  font-weight: 560;
  box-shadow: 0 0 0 0 var(--cyan-glow), 0 10px 30px -10px var(--cyan-glow);
}
.btn-primary:hover {
  background: var(--cyan-bright);
  box-shadow: 0 0 28px -2px var(--cyan-glow), 0 14px 40px -12px var(--cyan-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line-2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-bare { background: transparent; color: var(--text-2); padding-inline: 14px; }
.btn-bare:hover { color: var(--text); }

.btn-sm { height: 38px; padding: 0 15px; font-size: 13px; border-radius: 9px; }

/* ============================================================
   Tag / pill
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.02em;
  color: var(--text-2);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,0.02);
}
.cat {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px; font-weight: 500;
}
.cat-internal { color: var(--cyan); background: var(--cyan-soft); border: 1px solid rgba(34,211,238,0.25); }
.cat-product  { color: var(--purple); background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.25); }
.cat-client   { color: #fbbf24; background: rgba(251,191,36,0.09); border: 1px solid rgba(251,191,36,0.22); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
}
.card:hover { border-color: var(--line-2); }

.glow-border::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: radial-gradient(140px circle at var(--mx,50%) var(--my,0%), var(--cyan-glow), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.glow-border:hover::before { opacity: 1; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,7,9,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 16px; letter-spacing: -0.02em; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 9px;
  background: radial-gradient(circle at 30% 25%, var(--cyan-bright), var(--cyan) 40%, var(--cyan-dim) 100%);
  display: grid; place-items: center;
  box-shadow: 0 0 22px -4px var(--cyan-glow), 0 1px 0 rgba(255,255,255,0.4) inset;
  position: relative;
  flex: none;
}
.brand .logo svg { width: 16px; height: 16px; }
.brand .dev { color: var(--text-3); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--text-2); padding: 8px 13px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 880px) {
  .nav-links { display: none; }
}
.nav-burger { display: none; }
@media (max-width: 880px) {
  .nav-burger { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 9px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-1); position: relative; }
.footer .wrap { padding-block: 64px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px 32px; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; font-weight: 500; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer a.flink { color: var(--text-2); font-size: 14px; transition: color .2s; display: inline-flex; align-items: center; gap: 7px; }
.footer a.flink:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.panichost {
  font-family: var(--mono); font-size: 12.5px; color: var(--text-3);
  display: inline-flex; align-items: center; gap: 8px;
}
.panichost b { color: var(--text-2); font-weight: 500; }
.panichost .pulse { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.settled { transition: none !important; opacity: 1 !important; transform: none !important; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

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

/* Cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 9;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.10), transparent 62%);
  pointer-events: none; transform: translate(-50%,-50%);
  mix-blend-mode: screen; transition: opacity .4s; will-change: transform;
}

/* Section divider line */
.hr { height: 1px; background: var(--line); border: 0; }

/* Grid background for sections */
.grid-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 78%);
  mask: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 78%);
  opacity: .5;
}
.section > .wrap { position: relative; z-index: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-canvas-host { position: absolute; inset: 0; z-index: 0; }
#hero-canvas { width: 100%; height: 100%; display: block; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 18%, rgba(34,211,238,0.10), transparent 70%),
    radial-gradient(40% 40% at 82% 88%, rgba(168,85,247,0.08), transparent 70%);
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 36%; z-index: 1; pointer-events: none;
  background: linear-gradient(transparent, var(--bg));
}
.hero-inner { position: relative; z-index: 2; padding-block: 8vh; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--text-2);
  padding: 7px 14px 7px 11px; border-radius: 100px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(8px);
}
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.hero-title { margin-top: 28px; max-width: 16ch; }
.hero-sub { margin-top: 26px; max-width: 56ch; }
.hero-cta { margin-top: 36px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-ecosystem { margin-top: 58px; display: flex; flex-direction: column; gap: 14px; }
.ecosystem-label { font-size: 11px; letter-spacing: 0.18em; color: var(--text-4); }
.ecosystem-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 13.5px; color: var(--text-3); }
.ecosystem-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--text-4); }
.ecosystem-row span { transition: color .2s; }
.ecosystem-row:hover span { color: var(--text-2); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 20px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 7px; border-radius: 4px; background: var(--cyan); animation: cue 1.7s infinite; }
@keyframes cue { 0%{ transform: translateY(0); opacity: 1; } 70%{ transform: translateY(11px); opacity: 0; } 100%{ opacity: 0; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { border-block: 1px solid var(--line); background: var(--bg-1); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 38px 8px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num { font-size: clamp(30px,4vw,46px); font-weight: 600; letter-spacing: -0.04em;
  background: linear-gradient(180deg,#fff,#9fe9f4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 8px; letter-spacing: 0.04em; }
@media (max-width: 680px){ .stats-grid { grid-template-columns: 1fr 1fr; } .stat:nth-child(2){ border-right: 0; } .stat:nth-child(1),.stat:nth-child(2){ border-bottom: 1px solid var(--line);} }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-head-sub { color: var(--text-3); font-size: 15px; max-width: 38ch; line-height: 1.6; }
@media (max-width: 760px){ .section-head { flex-direction: column; align-items: flex-start; gap: 18px; } }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar { display: flex; gap: 8px; margin-bottom: 34px; flex-wrap: wrap; }
.filter {
  height: 38px; padding: 0 16px; border-radius: 9px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  color: var(--text-3); font-size: 13.5px; font-family: var(--sans);
  transition: all .2s;
}
.filter:hover { color: var(--text); border-color: var(--line-2); }
.filter.active { background: var(--text); color: var(--bg); border-color: var(--text); font-weight: 500; }

/* ============================================================
   WORK GRID
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 820px){ .work-grid { grid-template-columns: 1fr; } }

.work-card { display: flex; flex-direction: column; cursor: pointer; text-align: left; }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-card.feat { display: grid; grid-template-columns: 1.05fr 1fr; }
@media (max-width: 820px){ .work-card.feat { grid-template-columns: 1fr; } }

.thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
  background: #0a0a0e;
  border-bottom: 1px solid var(--line);
}
.work-card.feat .thumb { aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--line); min-height: 320px; }
@media (max-width: 820px){ .work-card.feat .thumb { border-right: 0; border-bottom: 1px solid var(--line); min-height: 240px; } }
.thumb-glow { position: absolute; inset: 0; opacity: .9; }
.browser {
  position: absolute; inset: 14px 14px -1px 14px;
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 11px 11px 0 0; border-bottom: 0; overflow: hidden;
  box-shadow: 0 -10px 40px -16px rgba(0,0,0,0.6);
}
.work-card.feat .browser { inset: 30px 30px -1px 30px; }
@media (max-width: 820px){ .work-card.feat .browser { inset: 18px 18px -1px 18px; } }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border-bottom: 1px solid var(--line); background: var(--surface-2); flex: none; }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: #2a2a33; flex: none; }
.browser-url { margin-left: 8px; font-family: var(--mono); font-size: 11px; color: var(--text-3);
  background: var(--bg); padding: 3px 10px; border-radius: 5px; border: 1px solid var(--line); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-shot { position: relative; flex: 1; overflow: hidden; }
.browser-body { position: absolute; inset: 0; padding: 16px; display: flex; flex-direction: column; gap: 11px; z-index: 1; }
.shot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center;
  opacity: 0; z-index: 2; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.browser-shot.loaded .shot-img { opacity: 1; }
.work-card:hover .browser-shot.loaded .shot-img { transform: scale(1.03); }
.sk { border-radius: 6px; }
.sk-hero { height: 46px; border-radius: 8px; }
.sk-row { display: flex; gap: 10px; }
.sk-line { height: 9px; background: var(--line); border-radius: 4px; }
.sk-card { flex: 1; height: 56px; border-radius: 8px; background: rgba(255,255,255,0.025); border: 1px solid var(--line); }

.work-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.work-card.feat .work-body { justify-content: center; padding: 40px; gap: 16px; }
.work-meta { display: flex; align-items: center; gap: 10px; }
.work-meta .year { font-family: var(--mono); font-size: 12px; color: var(--text-4); margin-left: auto; }
.work-title { font-size: 23px; font-weight: 600; letter-spacing: -0.03em; display: flex; align-items: center; gap: 10px; }
.work-card.feat .work-title { font-size: clamp(26px,3vw,34px); }
.work-title .arr { color: var(--text-4); transition: transform .25s, color .25s; }
.work-card:hover .work-title .arr { color: var(--cyan); transform: translate(4px,-4px); }
.work-domain { font-family: var(--mono); font-size: 12.5px; color: var(--text-3); }
.work-summary { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.work-card.feat .work-summary { font-size: 16px; max-width: 44ch; }
.work-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; }
.work-foot { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 4px; }
.work-metric { font-size: 14px; }
.work-metric b { font-weight: 600; color: var(--text); }
.work-metric span { color: var(--text-3); font-size: 12.5px; margin-left: 5px; font-family: var(--mono); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--bg-1); border-block: 1px solid var(--line); }
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
@media (max-width: 820px){ .products-grid { grid-template-columns: 1fr; } }
.product-card { padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.product-card:hover { transform: translateY(-4px); }
.product-top { display: flex; align-items: center; gap: 14px; }
.product-ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  position: relative; color: #04141a; font-weight: 600;
}
.product-ic svg { width: 22px; height: 22px; }
.product-name { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 8px; }
.product-name small { font-family: var(--mono); font-size: 11.5px; color: var(--text-4); font-weight: 400; }
.product-status { margin-left: auto; font-family: var(--mono); font-size: 11px; padding: 4px 9px; border-radius: 6px; letter-spacing: 0.04em; }
.st-live { color: #34d399; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.22); }
.st-beta { color: #fbbf24; background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.22); }
.st-internal { color: var(--cyan); background: var(--cyan-soft); border: 1px solid rgba(34,211,238,0.22); }
.st-soon { color: var(--text-2); background: rgba(255,255,255,0.05); border: 1px solid var(--line-2); }
.product-desc { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.product-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.product-kind { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.product-link { font-size: 13px; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; transition: color .2s, gap .2s; }
.product-card:hover .product-link { color: var(--cyan); gap: 9px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px){ .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-cta { margin-top: 30px; }
.about-right { display: flex; flex-direction: column; gap: 16px; }
.principle { padding: 24px 26px; }
.principle-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--cyan);
  background: var(--cyan-soft); border: 1px solid rgba(34,211,238,0.2); margin-bottom: 14px; }
.principle-ic svg { width: 19px; height: 19px; }
.principle h3 { font-size: 17px; font-weight: 600; }
.principle p { color: var(--text-3); font-size: 14px; line-height: 1.6; margin-top: 8px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band-wrap { padding-block: clamp(40px,6vw,80px); }
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(48px,7vw,90px) 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(34,211,238,0.08), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-1));
}
.cta-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 80%; background: radial-gradient(circle, rgba(34,211,238,0.16), transparent 65%); pointer-events: none; }
.cta-band > * { position: relative; }
