/* ============================================================
   GENIOS — Sovereign Intelligent Infrastructure
   Brand tokens + base + components
   ============================================================ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.875rem; --radius-xl: 1.25rem; --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 680px; --content-default: 1040px; --content-wide: 1240px;

  /* Fonts */
  --font-display: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* ---- Brand palette (single dark theme) ---- */
  --navy-950: #08080f;
  --navy-900: #0b0b17;
  --navy-850: #0f0f1e;
  --navy-800: #14142a;
  --navy-750: #1a1a33;
  --navy-700: #22223f;

  --color-bg: var(--navy-950);
  --color-surface: rgba(255, 255, 255, 0.025);
  --color-surface-2: rgba(255, 255, 255, 0.045);
  --color-border: rgba(255, 255, 255, 0.09);
  --color-border-strong: rgba(255, 255, 255, 0.16);

  --color-text: #f4f5fb;
  --color-text-muted: #a6a8bd;
  --color-text-faint: #6d6f86;

  /* Signature gradient stops */
  --grad-magenta: #e63ff0;
  --grad-fuchsia: #c23af5;
  --grad-violet: #7c4dff;
  --grad-blue: #2f8fff;
  --grad-cyan: #35c9ff;

  --accent: #a56bff;              /* mid-violet, primary interactive */
  --accent-cyan: #35c9ff;

  --brand-gradient: linear-gradient(90deg, var(--grad-magenta) 0%, var(--grad-violet) 50%, var(--grad-blue) 100%);
  --brand-gradient-diag: linear-gradient(120deg, var(--grad-magenta) 0%, var(--grad-violet) 48%, var(--grad-blue) 100%);

  --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --glow-violet: 0 0 40px rgba(124, 77, 255, 0.35);
}

/* ---------------- base ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; background: none; border: none; }

::selection { background: rgba(165, 107, 255, 0.35); color: #fff; }

:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 3px; border-radius: var(--radius-sm); }

a, button, [role='button'] {
  transition: color var(--transition-interactive), background var(--transition-interactive),
    border-color var(--transition-interactive), box-shadow var(--transition-interactive),
    transform var(--transition-interactive), opacity var(--transition-interactive);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ---------------- layout helpers ---------------- */
.container { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-6); }
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brand-gradient);
}

.section-head { max-width: 760px; margin-bottom: var(--space-12); }
.section-head h2 { font-size: var(--text-2xl); margin-top: var(--space-4); }
.section-head p { color: var(--color-text-muted); font-size: var(--text-lg); margin-top: var(--space-4); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  line-height: 1;
}
.btn--primary {
  color: #0a0a14;
  background: var(--brand-gradient);
  box-shadow: var(--glow-violet);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(124,77,255,0.55); }
.btn--ghost { color: var(--color-text); border: 1px solid var(--color-border-strong); }
.btn--ghost:hover { border-color: var(--accent-cyan); color: #fff; background: rgba(53,201,255,0.06); }
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn svg { width: 1em; height: 1em; }

/* ---------------- header ---------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 15, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.header--scrolled { border-bottom-color: var(--color-border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.14em; }
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__links { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.nav__links a { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; position: relative; padding-block: var(--space-2); }
.nav__links a:hover, .nav__links a.active { color: var(--color-text); }
.nav__links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brand-gradient); border-radius: 2px;
}
.nav__toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--color-text); }
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(11,11,23,0.98); backdrop-filter: blur(16px);
    padding: var(--space-6); gap: var(--space-4);
    border-bottom: 1px solid var(--color-border);
  }
  .nav .btn { display: none; }
  .nav__links.open + .btn { display: inline-flex; }
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,8,15,0.95) 0%, rgba(8,8,15,0.72) 38%, rgba(8,8,15,0.35) 70%, rgba(8,8,15,0.55) 100%),
    linear-gradient(0deg, rgba(8,8,15,0.9) 0%, rgba(8,8,15,0) 45%);
}
.hero__content { max-width: 780px; padding-block: var(--space-24); }
@media (max-width: 640px) { .hero { min-height: auto; } .hero__content { padding-block: var(--space-16) var(--space-20); } .hero h1 { font-size: var(--text-3xl); } }
.hero h1 {
  font-size: var(--text-hero);
  line-height: 0.98;
  margin: var(--space-6) 0;
  letter-spacing: -0.02em;
}
.hero__lede { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 560px; margin-bottom: var(--space-8); }
.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ---------------- pillars / cards ---------------- */
.grid { display: grid; gap: var(--space-6); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  overflow: hidden;
  transition: border-color var(--transition-interactive), transform var(--transition-interactive), background var(--transition-interactive);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient); opacity: 0; transition: opacity var(--transition-interactive);
}
.card:hover { transform: translateY(-4px); border-color: var(--color-border-strong); background: var(--color-surface-2); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,77,255,0.12); color: var(--accent-cyan);
  margin-bottom: var(--space-5);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); font-size: var(--text-sm); }
.card__kicker { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: var(--space-3); display: block; }
.card ul { list-style: none; margin-top: var(--space-4); display: grid; gap: var(--space-3); }
.card ul li { position: relative; padding-left: var(--space-5); color: var(--color-text-muted); font-size: var(--text-sm); }
.card ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-gradient); }

/* key term chips (edge) */
.keyterms { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.keyterm {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  border: 1px solid var(--color-border-strong);
  background: rgba(255,255,255,0.02);
}
.keyterm.hot {
  border-color: transparent;
  background: linear-gradient(var(--navy-900), var(--navy-900)) padding-box,
    var(--brand-gradient) border-box;
  border: 1px solid transparent;
  color: #fff;
}

/* stat grid */
.stat { text-align: left; }
.stat__num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; line-height: 1; }
.stat__label { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-faint); margin-top: var(--space-3); }
.stat__desc { color: var(--color-text-muted); font-size: var(--text-sm); margin-top: var(--space-2); }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.split--rev .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--space-10); } .split--rev .split__media { order: 0; } }
.split__media { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split h2 { font-size: var(--text-xl); margin: var(--space-4) 0; }
.split p { color: var(--color-text-muted); }
.split .btn { margin-top: var(--space-6); }

/* verticals band on landing */
.vertical-card {
  display: flex; flex-direction: column;
  min-height: 340px;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(124,77,255,0.12), transparent 60%),
    var(--color-surface);
  transition: transform var(--transition-interactive), border-color var(--transition-interactive);
}
.vertical-card:hover { transform: translateY(-6px); border-color: var(--color-border-strong); }
.vertical-card__num { font-family: var(--font-display); font-size: var(--text-xs); letter-spacing: 0.2em; color: var(--color-text-faint); }
.vertical-card h3 { font-size: var(--text-xl); margin: var(--space-5) 0 var(--space-3); }
.vertical-card p { color: var(--color-text-muted); font-size: var(--text-sm); flex-grow: 1; }
.vertical-card__link { margin-top: var(--space-6); font-weight: 600; font-size: var(--text-sm); color: var(--accent-cyan); display: inline-flex; align-items: center; gap: var(--space-2); }
.vertical-card__link svg { width: 1em; height: 1em; transition: transform var(--transition-interactive); }
.vertical-card:hover .vertical-card__link svg { transform: translateX(4px); }

/* banner strip */
.banner {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  background: var(--brand-gradient-diag);
  color: #0a0a14;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
}

/* project rows */
.project-row {
  display: grid; grid-template-columns: 200px 1fr auto; gap: var(--space-6);
  align-items: center; padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
}
.project-row:first-child { border-top: 1px solid var(--color-border); }
.project-row h4 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 600; }
.project-row .loc { font-size: var(--text-sm); color: var(--color-text-muted); }
.project-row .tag { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: var(--space-1) var(--space-4); border-radius: var(--radius-full); }
.tag--live { background: rgba(53,201,255,0.14); color: var(--accent-cyan); }
.tag--prospect { background: rgba(230,63,240,0.14); color: var(--grad-magenta); }
@media (max-width: 720px) { .project-row { grid-template-columns: 1fr; gap: var(--space-2); } .project-row .tag { justify-self: start; } }

/* revenue rows */
.rev-row { display: grid; grid-template-columns: 140px 1fr; gap: var(--space-6); align-items: center; padding: var(--space-6); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); }
.rev-row + .rev-row { margin-top: var(--space-4); }
.rev-badge { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--text-xs); text-align: center; padding: var(--space-3); border-radius: var(--radius-md); color: #0a0a14; }
.rev-badge.fiber { background: linear-gradient(120deg, var(--grad-violet), var(--grad-magenta)); }
.rev-badge.edge { background: linear-gradient(120deg, var(--grad-blue), var(--grad-cyan)); }
.rev-badge.energy { background: linear-gradient(120deg, var(--grad-magenta), var(--grad-violet)); }
.rev-row h4 { color: var(--accent-cyan); font-family: var(--font-body); font-size: var(--text-base); margin-bottom: var(--space-2); }
.rev-row p { color: var(--color-text-muted); font-size: var(--text-sm); }
@media (max-width: 620px) { .rev-row { grid-template-columns: 1fr; } }

/* ---------------- contact form ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); } }
.form { display: grid; gap: var(--space-5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-3) var(--space-4);
  color: var(--color-text); font-size: var(--text-sm); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-cyan); background: rgba(53,201,255,0.04); }
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--navy-850); }
.contact-detail { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-5) 0; border-bottom: 1px solid var(--color-border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(124,77,255,0.12); color: var(--accent-cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail h4 { font-family: var(--font-body); font-size: var(--text-sm); color: var(--color-text-faint); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-detail p, .contact-detail a { font-size: var(--text-base); color: var(--color-text); }
.contact-detail a:hover { color: var(--accent-cyan); }
.form__note { font-size: var(--text-xs); color: var(--color-text-faint); }
.form-success { display: none; padding: var(--space-6); border-radius: var(--radius-lg); border: 1px solid transparent; background: linear-gradient(var(--navy-850), var(--navy-850)) padding-box, var(--brand-gradient) border-box; }
.form-success.show { display: block; }

/* ---------------- footer ---------------- */
.footer { border-top: 1px solid var(--color-border); padding-block: var(--space-16) var(--space-10); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-12); margin-bottom: var(--space-12); }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.footer p { color: var(--color-text-muted); font-size: var(--text-sm); max-width: 34ch; margin-top: var(--space-4); }
.footer h5 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: var(--space-4); }
.footer ul { list-style: none; display: grid; gap: var(--space-3); }
.footer ul a { font-size: var(--text-sm); color: var(--color-text-muted); }
.footer ul a:hover { color: var(--color-text); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-8); border-top: 1px solid var(--color-border); gap: var(--space-4); flex-wrap: wrap; }
.footer__bar p { margin: 0; font-size: var(--text-xs); color: var(--color-text-faint); }
.footer__brands { display: flex; gap: var(--space-4); font-size: var(--text-xs); color: var(--color-text-faint); flex-wrap: wrap; }

/* gradient rule at very bottom (deck signature) */
.grad-strip { height: 5px; background: var(--brand-gradient); }

/* reveal animation — only hidden once JS marks the page ready, so no-JS stays visible */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.js-ready .reveal.in { opacity: 1; transform: none; }

/* section subtle bg alternation */
.band { background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent); border-block: 1px solid var(--color-border); }

/* ===== AI Infrastructure page ===== */
/* stack row: 6 steps with connectors */
.stack-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-3); align-items: stretch; }
.stack-step { position: relative; background: var(--color-surface, rgba(255,255,255,0.02)); border: 1px solid var(--color-border); border-radius: var(--radius, 14px); padding: var(--space-5) var(--space-4); text-align: center; }
.stack-step__icon { width: 44px; height: 44px; margin: 0 auto var(--space-4); color: var(--accent-cyan); }
.stack-step__icon svg { width: 100%; height: 100%; }
.stack-step h4 { font-size: var(--text-base, 1rem); margin-bottom: var(--space-2); }
.stack-step p { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; }
.stack-step:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: calc(var(--space-3) * -1); width: var(--space-3); height: 1px; background: linear-gradient(90deg, var(--accent-cyan), transparent); transform: translateY(-50%); z-index: 1; }
.stack-note { text-align: center; margin-top: var(--space-8); color: var(--color-text-muted); font-size: var(--text-base); }
@media (max-width: 900px) { .stack-row { grid-template-columns: repeat(3, 1fr); } .stack-step:nth-child(3)::after, .stack-step:not(:last-child)::after { display: none; } }
@media (max-width: 560px) { .stack-row { grid-template-columns: 1fr 1fr; } }

/* icon cards for who-we-enable & outcomes */
.icard { display: block; }
.icard__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.icard__icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--accent-cyan); }
.icard__icon svg { width: 100%; height: 100%; }
.icard h4 { font-size: var(--text-base); line-height: 1.25; overflow-wrap: anywhere; }
.icard p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.55; }

/* partnership list */
.pmodel { display: flex; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }
.pmodel:last-child { border-bottom: 0; }
.pmodel__icon { width: 38px; height: 38px; flex-shrink: 0; color: var(--accent-cyan); display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: 10px; }
.pmodel__icon svg { width: 20px; height: 20px; }
.pmodel h4 { font-size: var(--text-base); margin-bottom: 2px; }
.pmodel p { font-size: var(--text-sm); color: var(--color-text-muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: var(--space-10); } }

/* deployment cards */
.deploy-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.deploy-card { border: 1px solid var(--color-border); border-radius: var(--radius, 14px); overflow: hidden; background: rgba(255,255,255,0.02); }
.deploy-card__img { aspect-ratio: 4/3; overflow: hidden; }
.deploy-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deploy-card__body { padding: var(--space-4); }
.deploy-card h4 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.deploy-card p { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; }
@media (max-width: 1000px) { .deploy-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .deploy-grid { grid-template-columns: 1fr 1fr; } }

/* full-width gradient CTA */
.cta-grad { position: relative; border-radius: var(--radius-lg, 20px); overflow: hidden; padding: var(--space-12); background: linear-gradient(115deg, #7c4dff, #2f8fff 60%, #35c9ff); display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); flex-wrap: wrap; }
.cta-grad__text h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.cta-grad__text p { color: rgba(255,255,255,0.85); max-width: 460px; }
.cta-grad .btn { background: #0b0b17; color: #fff; }
.cta-grad .btn:hover { background: #14142a; }
