
:root {
  --bg: #050706;
  --bg-soft: #0a0d0b;
  --panel: #0b100d;
  --panel-2: #101612;
  --text: #f4f6f4;
  --muted: #a3aaa5;
  --line: rgba(255,255,255,.12);
  --green: #00f044;
  --green-2: #7cff9a;
  --green-soft: rgba(0,240,68,.12);
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 10%, rgba(0,240,68,.08), transparent 28rem),
    linear-gradient(180deg, #030504 0%, #070a08 45%, #030504 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(3,5,4,.86);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 132px;
  height: 66px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img {
  width: 145px;
  max-width: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c6cbc7;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a:hover { color: white; }

.nav-cta {
  border: 1px solid rgba(0,240,68,.7);
  border-radius: 999px;
  padding: 11px 18px;
  color: white !important;
  box-shadow: inset 0 0 18px rgba(0,240,68,.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: white;
  transition: .25s;
}

.hero {
  min-height: 820px;
  padding: 150px 0 88px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,68,.6), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 850;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  line-height: .98;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 6.6vw, 92px);
  max-width: 780px;
}

h1 span, h2 span { color: var(--green); }

.hero-lead {
  max-width: 680px;
  color: #c5cbc6;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #031006;
  background: var(--green);
  box-shadow: 0 0 32px rgba(0,240,68,.18);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.025);
}

.button.full { width: 100%; }

.market-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  color: #bdc4bf;
  font-size: 14px;
}

.market-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.hero-art {
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 50% center;
  border-radius: 30px;
  opacity: .92;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero-glow {
  position: absolute;
  inset: 12% 0 0 8%;
  border-radius: 50%;
  background: rgba(0,240,68,.12);
  filter: blur(70px);
}

.metric-chip {
  position: absolute;
  min-width: 190px;
  padding: 14px 16px;
  background: rgba(5,9,7,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,240,68,.45);
  border-radius: 14px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}

.metric-chip strong {
  display: block;
  color: var(--green);
  font-size: 14px;
}

.metric-chip span {
  color: #bdc4bf;
  font-size: 12px;
}

.metric-one { top: 19%; left: 0; }
.metric-two { right: -2%; bottom: 17%; }

.section {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid rgba(255,255,255,.065);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.section-heading h2, .audit-copy h2, .ai-copy h2, .about-copy h2, .contact-box h2 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5vw, 70px);
}

.section-heading > p:not(.eyebrow),
.audit-copy > p,
.ai-copy > p,
.about-copy > p,
.contact-box > div:first-child > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  padding-bottom: 8px;
}

.problem-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(0,240,68,.09), transparent 26rem),
    #050706;
}

.fragment-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 900px;
}

.fragment-card {
  min-height: 130px;
  border: 1px solid rgba(0,240,68,.5);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,240,68,.045), rgba(255,255,255,.01));
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 25px rgba(0,240,68,.035);
}

.fragment-card:nth-of-type(n+4) { margin-top: 18px; }

.line-icon, .flow-icon {
  color: var(--green);
  font-size: 32px;
  text-shadow: 0 0 20px rgba(0,240,68,.8);
}

.connector {
  color: #707a73;
  font-size: 28px;
}

.problem-outcomes {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.problem-outcomes span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b8c0ba;
  font-size: 13px;
}

.system-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.system-flow article {
  min-width: 0;
  padding: 24px 18px;
  border: 1px solid rgba(0,240,68,.4);
  border-radius: 18px;
  background: rgba(255,255,255,.018);
}

.system-flow article em, .method-grid em {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.system-flow article h3 {
  margin: 15px 0 10px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.system-flow article p, .method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.system-flow > b {
  display: flex;
  align-items: center;
  color: var(--green);
  font-size: 24px;
}

.method-section {
  background: linear-gradient(180deg, #071009 0%, #050706 100%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.method-grid article {
  padding: 27px 22px;
  border-top: 2px solid var(--green);
  background: linear-gradient(180deg, rgba(0,240,68,.06), rgba(255,255,255,.012));
  border-radius: 0 0 18px 18px;
}

.method-grid h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.audit-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.audit-list {
  border: 1px solid rgba(0,240,68,.32);
  border-radius: 22px;
  background: rgba(0,240,68,.025);
  padding: 20px 28px;
}

.audit-list div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.audit-list div:last-child { border-bottom: 0; }
.audit-list strong { color: white; }
.audit-list span { color: var(--muted); }

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 16px;
  color: var(--green);
  font-weight: 800;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.case-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0d120f, #080b09);
  min-height: 100%;
}

.case-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
}

.case-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.case-large > img {
  height: 100%;
  min-height: 330px;
}

.case-card:not(.case-large) > img {
  height: 310px;
  min-height: 0;
  object-position: center 24%;
}

.case-content {
  padding: 34px;
}

.case-label {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
}

.case-content h3 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
}

.case-content > p:not(.case-label) { color: var(--muted); }

.case-metrics {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.case-metrics span, .stat-stack span {
  padding: 17px;
  border: 1px solid rgba(0,240,68,.28);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
}

.case-metrics strong, .stat-stack strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 24px;
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.big-stat {
  color: var(--green);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.ai-section {
  background:
    radial-gradient(circle at 16% 55%, rgba(0,240,68,.11), transparent 28rem),
    #050706;
}

.ai-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.ai-visual {
  width: min(100%, 500px);
  justify-self: center;
}

.ai-visual img {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(0,240,68,.24);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}

.creative-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  align-items: center;
}

.creative-flow span {
  padding: 11px 13px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #d2d7d3;
  font-size: 12px;
}

.creative-flow b { color: var(--green); }

.ai-note {
  margin-top: 30px;
  padding: 23px;
  border: 1px solid rgba(0,240,68,.44);
  border-radius: 15px;
  background: rgba(0,240,68,.035);
}

.ai-note strong, .ai-note span { display: block; }
.ai-note strong { font-size: 20px; }
.ai-note span { margin-top: 4px; color: var(--green); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.018);
}

.service-card.featured {
  border-color: rgba(0,240,68,.55);
  box-shadow: 0 0 55px rgba(0,240,68,.075);
  transform: translateY(-10px);
}

.service-number {
  color: var(--green);
  font-weight: 900;
  font-size: 15px;
}

.service-card h3 {
  margin: 18px 0 12px;
  font-size: 34px;
}

.service-card > p { color: var(--muted); }

.service-card ul, .contact-panel ul {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.service-card li, .contact-panel li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #c1c7c2;
  font-size: 14px;
}

.service-card li::before, .contact-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.service-meta {
  margin-top: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.about-section { background: #071009; }

.about-grid {
  display: grid;
  grid-template-columns: .58fr .54fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.about-kicker {
  padding: 38px;
  border: 1px solid rgba(0,240,68,.35);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(0,240,68,.09), rgba(255,255,255,.012));
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 28px;
  border: 1px solid rgba(0,240,68,.24);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}

.about-stat {
  color: #b9c0bb;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.05;
}

.about-stat strong {
  color: var(--green);
  font-size: 60px;
}

.contact-section { padding-bottom: 80px; }

.contact-box {
  padding: 52px;
  border: 1px solid rgba(0,240,68,.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 15%, rgba(0,240,68,.12), transparent 19rem),
    linear-gradient(145deg, #0a100c, #050706);
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: center;
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(0,240,68,.42);
  border-radius: 20px;
  background: rgba(3,7,4,.76);
}

.contact-panel h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 6px;
  color: #b9c0bb;
  font-size: 13px;
}

.contact-details strong {
  color: var(--green);
  font-size: 16px;
}

.contact-details a:hover { color: white; }

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: #8f9691;
  font-size: 12px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero-grid, .audit-grid, .ai-grid, .about-grid, .contact-box {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 125px; }
  .hero-art { min-height: 450px; }
  .hero-art img { height: 500px; }

  .system-flow {
    grid-template-columns: repeat(5, 1fr);
  }
  .system-flow > b { display: none; }

  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid article:last-child { grid-column: 1 / -1; }

  .case-large { grid-template-columns: 1fr; }
  .case-large img { max-height: 440px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { height: 74px; }

  .brand { width: 112px; height: 58px; }
  .brand img { width: 122px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 73px;
    left: 14px;
    right: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(3,5,4,.96);
    backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .nav-cta { text-align: center; }

  .hero { min-height: auto; padding: 118px 0 70px; }
  h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-art { min-height: 390px; }
  .hero-art img { height: 420px; -webkit-mask-image: none; mask-image: none; }
  .metric-one { top: 7%; left: 4%; }
  .metric-two { right: 2%; bottom: 7%; }

  .section { padding: 78px 0; }
  .section-heading h2, .audit-copy h2, .ai-copy h2, .about-copy h2, .contact-box h2 {
    font-size: 46px;
  }

  .split-heading { grid-template-columns: 1fr; gap: 0; }

  .fragment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .fragment-grid .connector { display: none; }
  .fragment-card { min-height: 100px; }
  .fragment-card:last-child { grid-column: 1 / -1; }
  .fragment-card:nth-of-type(n+4) { margin-top: 0; }

  .system-flow { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article:last-child { grid-column: auto; }

  .audit-list div { grid-template-columns: 1fr; gap: 4px; }

  .case-grid, .service-grid { grid-template-columns: 1fr; }
  .case-large { grid-column: auto; }
  .case-metrics, .stat-stack { grid-template-columns: 1fr; }


  .case-card:not(.case-large) > img {
    height: 270px;
  }

  .ai-visual {
    width: min(100%, 440px);
  }

  .service-card.featured { transform: none; }

  .about-photo { order: 2; }
  .about-photo img { width: min(100%, 320px); }
  .about-copy { order: 3; }

  .contact-box { padding: 26px; }
  .contact-panel { padding: 23px; }

  .footer-wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
