/* ========================================================================
   DATAKOM — Infrastructure projects
   Design system & styles
   ======================================================================== */

:root {
  /* Palette */
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --ink: #0b1220;
  --ink-2: #344056;
  --muted: #66748c;
  --line: #e6eaf2;
  --line-2: #d7deea;

  --brand: #2563eb;
  --brand-2: #0ea5e9;
  --brand-ink: #1d4ed8;
  --brand-soft: #eef4ff;

  --dark: #0b1220;
  --dark-2: #111a2e;

  --ok: #16a34a;
  --warn: #d97706;
  --info: #2563eb;

  /* Shape & motion */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow: 0 10px 30px rgba(16, 24, 40, .08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --maxw: 1160px;
  --gut: 24px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Sora', var(--font);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid rgba(37, 99, 235, .4); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #fff; }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 14px 0 16px;
}
.section__head p { color: var(--muted); font-size: 1.06rem; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: #aab6cc; }

.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
}
.section--dark .kicker { background: rgba(37, 99, 235, .18); color: #7eb0ff; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 11px; --pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn--lg { --pad-y: 15px; --pad-x: 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 99, 235, .38); }
.btn--ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand-ink); }
.btn--light { background: #fff; color: var(--brand-ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; }
.brand__mark { display: inline-flex; }
.brand__text span { color: var(--brand); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: .94rem; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--brand-ink); background: var(--brand-soft); }
.header__cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(40px, 5vw, 64px); }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(14, 165, 233, .14), transparent 60%),
    radial-gradient(800px 500px at 0% 0%, rgba(37, 99, 235, .12), transparent 55%),
    linear-gradient(180deg, #f7f9fe, #ffffff 70%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(700px 400px at 70% 10%, #000, transparent 70%);
          mask-image: radial-gradient(700px 400px at 70% 10%, #000, transparent 70%);
  opacity: .5;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--brand-ink);
  background: #fff; border: 1px solid var(--line-2); box-shadow: var(--shadow-sm);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(22, 163, 74, .15); }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.06; letter-spacing: -.025em;
  margin: 20px 0 18px;
}
.grad { background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.12rem; color: var(--ink-2); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .92rem; font-weight: 500; }

/* Hero panel */
.hero__panel { perspective: 1200px; }
.panel-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px;
  transform: rotate3d(1, -1, 0, 6deg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: rotate3d(1,-1,0,6deg) translateY(0); } 50% { transform: rotate3d(1,-1,0,6deg) translateY(-10px); } }
.panel-card__head { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; margin-bottom: 16px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(37, 99, 235, .18); }
.panel-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); }
.panel-row b { font-size: .78rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.panel-row b.ok { color: var(--ok); background: rgba(22, 163, 74, .12); }
.panel-row b.run { color: var(--brand-ink); background: var(--brand-soft); }
.panel-row b.wait { color: var(--warn); background: rgba(217, 119, 6, .12); }
.panel-bar { height: 8px; border-radius: 999px; background: var(--line); margin: 16px 0 8px; overflow: hidden; }
.panel-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.panel-foot { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: clamp(40px, 5vw, 64px);
  padding: 26px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.stat { display: flex; flex-direction: column; gap: 6px; padding-inline: 8px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1; color: var(--brand-ink); }
.stat span { font-size: .86rem; color: var(--muted); line-height: 1.35; }

/* ---------- Cards (services) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  color: var(--brand); background: var(--brand-soft); margin-bottom: 18px;
}
.card h3 { font-family: var(--display); font-size: 1.18rem; margin-bottom: 10px; letter-spacing: -.01em; }
.card > p { color: var(--muted); font-size: .95rem; }
.card__list { margin-top: 16px; display: grid; gap: 9px; }
.card__list li { position: relative; padding-left: 24px; font-size: .9rem; color: var(--ink-2); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__num { font-family: var(--display); font-size: 1.6rem; font-weight: 800; color: var(--brand); opacity: .55; }
.step h3 { font-family: var(--display); font-size: 1.08rem; margin: 8px 0 8px; }
.step p { font-size: .9rem; color: var(--muted); }

/* ---------- Engagement model ---------- */
.model { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.model__intro h2 { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; letter-spacing: -.02em; margin: 14px 0 16px; }
.model__intro p { color: var(--muted); margin-bottom: 24px; font-size: 1.04rem; }
.model__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.model__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.model__item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--brand), var(--brand-2)); }
.model__item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.model__item h3 { font-family: var(--display); font-size: 1.06rem; margin-bottom: 8px; }
.model__item p { color: var(--muted); font-size: .92rem; }

/* ---------- Providers ---------- */
.providers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.provider {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius); padding: 30px 26px; backdrop-filter: blur(4px);
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.provider:hover { transform: translateY(-5px); border-color: rgba(126, 176, 255, .5); background: rgba(255, 255, 255, .07); }
.provider__logo { font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; background: linear-gradient(120deg, #fff, #9cc4ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.provider p { color: #aab6cc; font-size: .95rem; }
.providers__note { text-align: center; margin-top: 28px; color: #6b7894; font-size: .85rem; }

/* ---------- Features (why us) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.feature__ic { font-size: 1.7rem; margin-bottom: 14px; }
.feature h3 { font-family: var(--display); font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.accordion { display: grid; gap: 12px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.acc-item.is-open { border-color: var(--brand); box-shadow: var(--shadow); }
.acc-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.acc-icon { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .3s var(--ease); }
.acc-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.acc-item.is-open .acc-icon::after { transform: rotate(90deg); opacity: 0; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-panel p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact__info h2 { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; letter-spacing: -.02em; margin: 14px 0 14px; }
.contact__info > p { color: var(--muted); font-size: 1.04rem; margin-bottom: 28px; }
.contact__list { display: grid; gap: 18px; }
.contact__list li { display: grid; gap: 2px; padding: 16px 18px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact__label { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); }
.contact__list a { font-weight: 600; color: var(--ink); transition: color .2s; }
.contact__list a:hover { color: var(--brand-ink); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px;
  background: #fff; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); }
.field.invalid input, .field.invalid textarea { border-color: #e11d48; box-shadow: 0 0 0 4px rgba(225, 29, 72, .1); }
.error { color: #e11d48; font-size: .8rem; min-height: 0; }
.form-note { margin-top: 14px; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-note.ok { color: var(--ok); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(40px, 5vw, 64px) 0; flex-wrap: wrap; }
.cta h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: -.02em; }
.cta p { color: rgba(255, 255, 255, .9); margin-top: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #aab6cc; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding: clamp(48px, 6vw, 72px) 0 40px; }
.footer__brand .brand { color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: .94rem; max-width: 320px; }
.footer__col h4, .footer__legal h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: .94rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__legal p { font-size: .88rem; padding: 3px 0; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; padding: 22px 0; font-size: .85rem; flex-wrap: wrap; }
.footer__meta { color: #6b7894; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .model { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 12px var(--gut) 20px; margin: 0;
  }
  .nav.is-open a { padding: 12px; font-size: 1rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: 0; }
  .providers { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --gut: 18px; }
  .cards, .steps, .features, .model__grid, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 14px; }
  .stat { border-left: 0; flex-direction: row; align-items: baseline; gap: 12px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__actions .btn { width: 100%; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ========================================================================
   Infrastructure visuals + Hero image + About / Trust
   ======================================================================== */

/* Hero image with floating status card */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero__visual { position: relative; animation: floatY 7s ease-in-out infinite; }
.hero__visual img { width: 100%; height: auto; display: block; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, .6); box-shadow: var(--shadow-lg); }
.panel-card--float { position: absolute; left: -22px; bottom: -26px; width: min(290px, 80%); transform: none; animation: none; padding: 18px; }
.panel-card--float .panel-row:first-of-type { border-top: 0; }

/* Bento image grid */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bento__tile { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 240px; }
.bento__tile--lg { grid-column: span 2; }
.bento__tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.bento__tile:hover img { transform: scale(1.05); }
.bento__tile figcaption { position: absolute; inset: auto 0 0 0; padding: 18px; color: #fff; font-weight: 600; font-size: .98rem; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; background: linear-gradient(to top, rgba(7, 12, 24, .88), rgba(7, 12, 24, 0)); }
.tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: rgba(37, 99, 235, .92); color: #fff; }

/* Tooling section subheads */
.tooling-head { text-align: center; max-width: 660px; margin: 56px auto 28px; }
.tooling-head h3 { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -.02em; margin-bottom: 8px; }
.tooling-head p { color: var(--muted); }

/* Dashboard mockups */
.dashboards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dash { background: linear-gradient(165deg, #0e1729, #0b1220); color: #cdd6e6; border: 1px solid #1c2740; border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.dash__head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: #fff; }
.dash__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .18); }
.dash__live { margin-left: auto; font-size: .7rem; font-weight: 700; color: #7eb0ff; background: rgba(37, 99, 235, .16); padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.dash__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.metric span { font-size: .7rem; color: #8b97ad; text-transform: uppercase; letter-spacing: .05em; }
.metric b { font-family: var(--display); font-size: 1.15rem; color: #fff; }
.metric--ok { color: #4ade80 !important; }
.dash__chart { width: 100%; height: 80px; }
.joblist, .vmlist { display: grid; gap: 8px; margin: 0; }
.joblist li { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .86rem; padding: 9px 11px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); border-radius: 9px; }
.job__name { color: #cdd6e6; }
.badge { font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.badge--ok { color: #4ade80; background: rgba(34, 197, 94, .14); }
.badge--run { color: #7eb0ff; background: rgba(37, 99, 235, .18); }
.dash__foot { display: flex; justify-content: space-between; font-size: .8rem; color: #8b97ad; margin-top: auto; border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 12px; }
.vmlist li { display: flex; align-items: center; gap: 10px; font-size: .88rem; padding: 8px 11px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); border-radius: 9px; color: #e7ecf5; }
.vm__meta { margin-left: auto; font-size: .74rem; color: #8b97ad; }
.vm__state { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px; }
.vm__state--on { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, .18); }
.vm__state--off { background: #64748b; }
.dash__bars { display: grid; gap: 9px; margin-top: auto; }
.barline { display: flex; align-items: center; gap: 10px; font-size: .76rem; color: #8b97ad; }
.barline span { width: 54px; }
.barline i { flex: 1; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.barline b { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #2563eb, #0ea5e9); }

/* Before / after */
.beaft { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.beaft__panel { border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.beaft__panel--before { background: #fff6f6; border-color: #f7d4d4; }
.beaft__panel--after { background: #f1fbf5; border-color: #c2e9d2; }
.beaft__tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.beaft__panel--before .beaft__tag { color: #dc2626; background: #fde2e2; }
.beaft__panel--after .beaft__tag { color: #16a34a; background: #dcfce7; }
.beaft__panel ul { display: grid; gap: 11px; margin: 0; }
.beaft__panel li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink-2); }
.beaft__panel--before li::before { content: "✕"; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.beaft__panel--after li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.beaft__arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--brand); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

/* About / founder / legitimacy */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
.founder { display: flex; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.founder__avatar { flex: 0 0 92px; width: 92px; height: 92px; border-radius: 20px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 2rem; color: #fff; background: linear-gradient(135deg, #2563eb, #0ea5e9); box-shadow: 0 10px 24px rgba(37, 99, 235, .3); }
.founder__role { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }
.founder__body h3 { font-family: var(--display); font-size: 1.4rem; margin: 4px 0 10px; letter-spacing: -.01em; }
.founder__body p { color: var(--muted); font-size: .96rem; }
.founder__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.founder__tags li { font-size: .8rem; font-weight: 600; color: var(--ink-2); background: var(--bg-alt); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.legit { background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.legit h3 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 10px; }
.legit > p { color: #aab6cc; font-size: .94rem; margin-bottom: 20px; }
.legit__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.legit__facts div { display: flex; flex-direction: column; gap: 2px; }
.legit__facts dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #7e8aa3; }
.legit__facts dd { font-weight: 600; color: #fff; font-size: .98rem; }
.legit__link { width: 100%; }

/* Footer registry link */
.footer__reglink { color: #7eb0ff; font-weight: 600; }
.footer__reglink:hover { color: #fff; }

/* Responsive for new blocks */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__tile--lg { grid-column: span 2; }
  .dashboards { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .beaft { grid-template-columns: 1fr; }
  .beaft__arrow { flex-direction: row; }
  .beaft__arrow svg { transform: rotate(90deg); }
  .founder { flex-direction: column; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__tile--lg { grid-column: span 1; }
  .legit__facts { grid-template-columns: 1fr 1fr; }
}
