/* ═══════════════════════════════════════════════════════════
   AKINT.AI — Growth Pack shared layer
   Dark · magenta #FF2D92 · Outfit + JetBrains Mono · HUD system
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

:root {
  --c: #FF2D92;
  --c2: #FF80C0;
  --green: #3df0a4;
  --amber: #ffb547;
  --glow: rgba(255,45,146,0.45);
  --soft: rgba(255,45,146,0.16);
  --bg: #060608;
  --bg-card: rgba(14,14,18,0.6);
  --glass: rgba(255,255,255,0.045);
  --border: rgba(255,255,255,0.1);
  --border-2: rgba(255,255,255,0.16);
  --grid-line: rgba(255,255,255,0.032);
  --txt: #f1f1f3;
  --txt-mut: rgba(255,255,255,0.6);
  --txt-dim: rgba(255,255,255,0.4);
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'Outfit', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--txt);
  font-family: var(--sans); -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ambient grid + glow */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.ambient .grid {
  position: absolute; inset: -10%;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 25%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 30%, black 25%, transparent 80%);
  animation: drift 70s linear infinite;
}
@keyframes drift { to { transform: translate(-84px,-84px); } }
.ambient .blob1 { position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--soft), transparent 60%); }
.ambient .blob2 { position: absolute; bottom: -15%; left: -10%; width: 45vw; height: 45vw; background: radial-gradient(circle, rgba(255,255,255,0.022), transparent 60%); }
.ambient .vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 45%, rgba(0,0,0,0.55) 100%); }

/* HUD corner labels */
.hud { position: fixed; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--txt-dim); pointer-events: none; z-index: 20; line-height: 1.8; }
.hud.tl { top: 22px; left: 26px; } .hud.tr { top: 22px; right: 26px; text-align: right; }
.hud.bl { bottom: 18px; left: 26px; } .hud.br { bottom: 18px; right: 26px; text-align: right; }
.hud b { color: var(--c); font-weight: 500; }
.hud .live::before { content:''; display:inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px var(--c); margin-right: 8px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
@media (max-width: 1100px) { .hud { display: none; } }

/* content wrapper */
.wrap { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

/* top bar */
.topbar { position: relative; z-index: 30; display: flex; justify-content: space-between; align-items: center; padding: 22px 32px; border-bottom: 1px solid var(--border); background: rgba(6,6,8,0.8); backdrop-filter: blur(14px); position: sticky; top: 0; }
.brand { font-size: 22px; font-weight: 800; letter-spacing: 0.02em; text-decoration: none; color: var(--txt); white-space: nowrap; }
.brand .d { color: var(--c); } .brand .u { color: var(--c); }
.brand .crumb { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: 0.12em; color: var(--txt-dim); margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--border-2); text-transform: uppercase; }
@media (max-width: 600px) { .brand .crumb { display: none; } }

/* language toggle */
.lang { display: flex; gap: 3px; background: var(--glass); border: 1px solid var(--border); border-radius: 6px; padding: 3px; }
.lang button { background: none; border: none; color: var(--txt-mut); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 4px; cursor: pointer; transition: .15s; }
.lang button:hover { color: #fff; }
.lang button.active { background: var(--c); color: #060608; font-weight: 600; }

/* eyebrow */
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--c); text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; }
.eyebrow .bar { width: 28px; height: 1px; background: var(--c); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 8px; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: .2s; }
.btn-primary { background: var(--c); color: #060608; }
.btn-primary:hover { box-shadow: 0 0 30px var(--glow); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--txt); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--c); color: var(--c); }

/* section primitives */
.section { padding: 90px 0; }
.sec-head { margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; margin: 14px 0 0; line-height: 1.08; }
.sec-head h2 em { font-style: normal; color: var(--c); }
.sec-head p { color: var(--txt-mut); font-size: 1.05rem; max-width: 640px; margin: 16px 0 0; font-weight: 300; line-height: 1.6; }

/* generic card */
.card { position: relative; background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.01)), var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; overflow: hidden; }
.card .ct, .card .cb { position: absolute; width: 12px; height: 12px; border-color: var(--c); border-style: solid; border-width: 0; opacity: .5; }
.card .ct { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.card .cb { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }

/* footer */
.foot { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 40px 32px; text-align: center; color: var(--txt-dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.foot a { color: var(--c); text-decoration: none; }

/* utility */
.mono { font-family: var(--mono); }
.hidden { display: none !important; }
