/* TealBridge — monochrome (black / white / gradient) with elevated luminance */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0b0d12;
  --bg-alt: #12161e;
  --bg-soft: #191e28;
  --surface: #1c212a;
  --fg: #ffffff;
  --fg-soft: #edeff3;
  --muted: #b4bcc9;
  --muted-strong: #d2d7e0;
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.38);
  --grid: rgba(255, 255, 255, 0.06);
  --grid-strong: rgba(255, 255, 255, 0.12);

  --grad: linear-gradient(135deg, #ffffff 0%, #d0d4dc 50%, #6e7687 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(200, 205, 215, 0.7));
  --grad-dark: linear-gradient(135deg, #0b0d12 0%, #1c2230 50%, #060810 100%);

  --glow: 0 0 40px rgba(255, 255, 255, 0.35), 0 0 90px rgba(255, 255, 255, 0.15);
  --glow-strong: 0 0 70px rgba(255, 255, 255, 0.6), 0 0 140px rgba(255, 255, 255, 0.28);
  --glow-soft: 0 0 30px rgba(255, 255, 255, 0.12);

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Fira Code", Menlo, Consolas, monospace;
  --max: 78rem;
}

/* Tech grid overlay */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-strong) 1px, transparent 1px);
  background-size: 224px 224px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-soft);
  background:
    radial-gradient(70% 45% at 50% -10%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(55% 45% at 100% 100%, rgba(255, 255, 255, 0.10), transparent 70%),
    radial-gradient(45% 40% at 0% 50%, rgba(255, 255, 255, 0.07), transparent 70%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 90%);
  opacity: 0.8;
}

main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 18, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}

.logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.5));
}

.nav-main {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

@media (min-width: 900px) { .nav-main { display: flex; } }

.nav-main a {
  position: relative;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-main a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}

.btn-header {
  display: inline-block;
  border-radius: 9999px;
  background: var(--grad);
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 28px rgba(255, 255, 255, 0.35);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-header:hover {
  box-shadow: var(--glow-strong);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(55% 55% at 80% 80%, rgba(255, 255, 255, 0.12), transparent 65%),
    linear-gradient(180deg, #0b0d12 0%, #12161e 100%);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(100%) contrast(1.15) brightness(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(55% 55% at 80% 80%, rgba(255, 255, 255, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.45), rgba(11, 13, 18, 0.78));
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  inset: 1.25rem;
  pointer-events: none;
  z-index: 1;
}
.hero-frame span {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}
.hero-frame span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-frame span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero-frame span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero-frame span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-inner {
  position: relative;
  padding: 6.5rem 0 7.5rem;
}

@media (min-width: 640px) { .hero-inner { padding: 8.5rem 0 9.5rem; } }
@media (min-width: 1024px) { .hero-inner { padding: 10rem 0 11rem; } }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.15);
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.95);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero h1 {
  margin: 1.5rem 0 0;
  max-width: 54rem;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #c8ccd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 90px rgba(255, 255, 255, 0.2);
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 46rem;
  font-size: 1.15rem;
  color: #dadde3;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-block;
  border-radius: 9999px;
  background: var(--grad);
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.9rem;
  box-shadow: var(--glow);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
  box-shadow: var(--glow-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.95rem 1.9rem;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.hero-pills {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-pills li {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-pills li:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.10);
}

/* Stats */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-val {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.3));
  margin: 0;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

/* Section base */
section { scroll-margin-top: 5rem; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.1);
}

.section-kicker::before {
  content: "//";
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.section-title {
  margin: 1rem 0 0;
  max-width: 46rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #fff 0%, #c0c4cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}

.section-lead {
  margin: 1.1rem 0 0;
  max-width: 46rem;
  color: var(--muted);
}

.py-section { padding: 6rem 0; }

/* Services / 9 pillars */
.services {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 10% 0%, rgba(255, 255, 255, 0.08), transparent 70%),
    radial-gradient(50% 50% at 90% 100%, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.services .wrap { position: relative; }

.card-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02));
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
}

.card > * { position: relative; }

.card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.card.popular {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.card-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  margin-bottom: 1.1rem;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: var(--grad);
  color: #000;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

.card p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Chart section */
.chart-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.chart-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 100%, rgba(255, 255, 255, 0.09), transparent 70%);
  pointer-events: none;
}

.chart-section .wrap { position: relative; }

.chart-tabs {
  margin-top: 2rem;
  display: inline-flex;
  padding: 0.35rem;
  gap: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.chart-tab {
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.chart-tab:hover { color: #fff; }

.chart-tab.is-active {
  color: #000;
  background: var(--grad);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.3);
}

.chart-wrap {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .chart-wrap { grid-template-columns: 2fr 1fr; align-items: end; gap: 3rem; }
}

.chart {
  position: relative;
  height: 340px;
  padding: 1.5rem 1.25rem 0;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 1.5rem 1.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.chart-grid span {
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.bars {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.85rem;
}

.bar-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.bar-value {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.bar {
  width: 100%;
  max-width: 60px;
  height: var(--h);
  border-radius: 0.55rem 0.55rem 0.2rem 0.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 55%, #707070 100%);
  box-shadow:
    0 0 26px rgba(255, 255, 255, 0.45),
    0 0 70px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform-origin: bottom;
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.bar-label {
  margin-top: 0.65rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.chart-legend {
  display: grid;
  gap: 1rem;
}

.chart-legend > div {
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.chart-legend > div:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.legend-num {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.3));
}

.legend-label {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* About / Academy */
.about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
}

.about-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(1.05);
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 40% at 85% 15%, rgba(255, 255, 255, 0.12), transparent 70%),
    radial-gradient(35% 35% at 10% 85%, rgba(255, 255, 255, 0.08), transparent 70%);
}

.about .wrap { position: relative; }

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1.15fr 1fr; align-items: start; gap: 4rem; }
}

.feature-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  color: var(--fg-soft);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.feature-list li:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

.feature-list li::before {
  content: "";
  margin-top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.highlight-box {
  padding: 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.box-tag {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.box-quote {
  margin: 0.85rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.box-author {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.box-metrics {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.box-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.box-lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* AI tools */
.ai-tools {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.ai-tools::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.ai-tools .wrap { position: relative; }

.ai-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ai-grid { grid-template-columns: repeat(4, 1fr); } }

.ai-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 1.1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.ai-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.12);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: var(--grad);
  color: #000;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.35);
}

.ai-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.ai-card p {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Why / Marketplace */
.why {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 100% 50%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.why .wrap { position: relative; }

.why-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4.5rem; align-items: start; }
}

.why-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.why-list li + li { margin-top: 1.75rem; }

.why-list h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}

.why-list p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.process-box {
  border-radius: 1.25rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  padding: 2rem;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.08);
}

.process-box > p:first-child {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
}

.steps {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.steps li + li { margin-top: 1.35rem; }

.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--grad);
  color: #000;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

.steps strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.steps span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Roadmap */
.roadmap {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 55% at 50% 0%, rgba(255, 255, 255, 0.09), transparent 70%);
  pointer-events: none;
}

.roadmap .wrap { position: relative; }

.phase-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) { .phase-grid { grid-template-columns: repeat(3, 1fr); } }

.phase {
  position: relative;
  padding: 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
  overflow: hidden;
}

.phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0.9;
}

.phase:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.14);
}

.phase-tag {
  display: inline-block;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.phase h3 {
  margin: 1rem 0 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.phase > p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.phase ul {
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.phase ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--fg-soft);
}

.phase ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Outcomes */
.outcomes {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.outcomes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 45% at 20% 10%, rgba(255, 255, 255, 0.09), transparent 70%),
    radial-gradient(45% 45% at 80% 90%, rgba(255, 255, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.outcomes .wrap { position: relative; }

.outcome-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .outcome-grid { grid-template-columns: repeat(3, 1fr); } }

.outcome {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease, background 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.outcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0.85;
}

.outcome:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: 0 0 55px rgba(255, 255, 255, 0.14);
}

.outcome-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.outcome-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.outcome-time {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.outcome h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.outcome > p {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.outcome-metrics {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.outcome-metrics > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.outcome-num {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  line-height: 1.1;
}

.outcome-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Testimonials */
.testimonials {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 0% 100%, rgba(255, 255, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.testimonials .wrap { position: relative; }

.quote-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }

blockquote {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  left: 1.4rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  font-family: Georgia, serif;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.3));
}

blockquote:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

blockquote p:first-child {
  flex: 1;
  margin: 0;
  padding-top: 1.75rem;
  color: var(--fg-soft);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

blockquote footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

blockquote cite {
  font-style: normal;
  font-weight: 700;
  color: #fff;
}

blockquote .role {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Team */
.team {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.person {
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.person:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 55px rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.avatar {
  margin: 0 auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  background: var(--grad);
  color: #000;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.person .tag {
  margin: 1.25rem 0 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
}

.person h3 {
  margin: 0.5rem 0 0;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}

.person > p:last-child {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Contact */
.contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 55% at 0% 30%, rgba(255, 255, 255, 0.09), transparent 70%),
    radial-gradient(50% 50% at 100% 70%, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.contact .wrap { position: relative; }

.contact-hero {
  margin: 3rem 0 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) { .contact-hero { grid-template-columns: repeat(3, 1fr); } }

.contact-hero-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-hero-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025));
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.14);
}

.contact-hero-card:hover::before { transform: scaleX(1); }

.contact-hero-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-hero-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.contact-hero-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.contact-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.contact-meta { font-size: 0.95rem; color: var(--fg-soft); }

.contact-meta > div + div { margin-top: 1.5rem; }

.office-block {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.07);
}

.office-block strong {
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #fff;
  display: block;
  margin-bottom: 0.35rem;
}

.office-block > span {
  display: block;
  color: var(--fg-soft);
  font-size: 0.95rem;
}

.contact-map {
  margin-top: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
  filter: grayscale(100%) contrast(1.15) brightness(1.05);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.form-panel {
  border-radius: 1.25rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 1.75rem;
  box-shadow: 0 0 55px rgba(255, 255, 255, 0.1);
}

.form-row { margin-bottom: 1rem; }

.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.form-row input,
.form-row textarea {
  margin-top: 0.4rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.95rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--muted); }

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.form-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.btn-submit {
  margin-top: 0.5rem;
  width: 100%;
  border: none;
  border-radius: 9999px;
  background: var(--grad);
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-submit:hover {
  box-shadow: var(--glow-strong);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .btn-submit { width: auto; min-width: 11rem; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #060810;
  color: var(--muted);
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { flex-direction: row; justify-content: space-between; gap: 3rem; }
}

.footer-brand { max-width: 22rem; }

.footer-brand .logo {
  color: #fff;
  font-size: 1.4rem;
}

.footer-brand > p {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-contact a:hover {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.75rem;
  font-size: 0.9rem;
}

.footer-links strong {
  display: block;
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li { margin-top: 0.55rem; }

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.footer-copy {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
  .bar,
  .bar-value {
    transition: none;
  }
}
