@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --bg-0: #070807;
  --bg-1: #0d0f0d;
  --bg-2: #141814;
  --panel: #111411;
  --panel-soft: #151915;
  --line: #2a3326;
  --line-strong: #3d5036;
  --text: #f4f6f3;
  --text-soft: #b8c2b3;
  --accent: #b7ff00;
  --accent-soft: #d9ffd6;
  --accent-dim: #88b61f;
  --danger: #d95656;
  --shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(183, 255, 0, 0.08), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(183, 255, 0, 0.05), transparent 26%),
    linear-gradient(165deg, var(--bg-0), var(--bg-1) 42%, #090a09);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 7, 0.2);
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 8, 0.92);
  border-color: rgba(183, 255, 0, 0.18);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(183, 255, 0, 0.3);
  background: #111;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.67rem;
  color: var(--text-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav {
  margin-left: auto;
  margin-right: 8px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

.primary-nav a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d8ddd5;
  padding: 10px 2px;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.28s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(183, 255, 0, 0.45);
  background: rgba(15, 18, 15, 0.9);
  border-radius: 8px;
  color: #fff;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(4px);
}

.menu-toggle.open span {
  opacity: 0;
}

.menu-toggle.open::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle.open::after {
  transform: translateY(0) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 24px;
  height: 46px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #abf200, #d1ff4d);
  color: #0a0d05;
  border-color: rgba(183, 255, 0, 0.8);
  box-shadow: 0 0 0 1px rgba(183, 255, 0, 0.25), 0 10px 30px rgba(183, 255, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(183, 255, 0, 0.45), 0 16px 36px rgba(183, 255, 0, 0.26);
}

.btn-ghost {
  border-color: rgba(183, 255, 0, 0.36);
  color: #e7eadf;
  background: rgba(20, 24, 20, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(183, 255, 0, 0.8);
  color: #fff;
}

.btn-small {
  height: 40px;
  padding: 0 18px;
  font-size: 0.72rem;
}

main {
  padding-top: 82px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section .container {
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d5e2ca;
}

.section-label::before {
  content: '';
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(183, 255, 0, 0.9), rgba(183, 255, 0, 0));
}

.section-title {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-intro {
  margin-top: 16px;
  max-width: 760px;
  font-size: 1rem;
}

.hero-section {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: clip;
}

.hero-section::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 12%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 0, 0.6), transparent);
  transform: rotate(-8deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 42px;
  padding: 90px 0 78px;
}

.hero-title {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-copy p {
  margin-top: 22px;
  max-width: 620px;
  font-size: 1.05rem;
}

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

.hero-note {
  margin-top: 30px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-note span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4dbc9;
  padding-left: 12px;
  border-left: 2px solid rgba(183, 255, 0, 0.4);
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.grid-motion {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 255, 0, 0.28);
  background:
    linear-gradient(120deg, rgba(183, 255, 0, 0.08), transparent 52%),
    repeating-linear-gradient(
      to right,
      rgba(183, 255, 0, 0.09),
      rgba(183, 255, 0, 0.09) 1px,
      transparent 1px,
      transparent 44px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(183, 255, 0, 0.08),
      rgba(183, 255, 0, 0.08) 1px,
      transparent 1px,
      transparent 44px
    ),
    radial-gradient(circle at 70% 28%, rgba(183, 255, 0, 0.18), transparent 46%),
    #11160f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grid-motion::before,
.grid-motion::after {
  content: '';
  position: absolute;
  inset: auto -25% 18%;
  height: 200px;
  border-top: 1px solid rgba(183, 255, 0, 0.4);
  transform: rotate(-9deg);
  animation: glidelines 10s linear infinite;
}

.grid-motion::after {
  inset: auto -35% 62%;
  animation-duration: 13s;
  opacity: 0.65;
}

@keyframes glidelines {
  from {
    transform: translateX(-12%) rotate(-9deg);
  }

  to {
    transform: translateX(12%) rotate(-9deg);
  }
}

.metric-window {
  position: absolute;
  border-radius: 12px;
  border: 1px solid rgba(183, 255, 0, 0.44);
  background: rgba(8, 12, 7, 0.88);
  box-shadow: 0 0 0 1px rgba(183, 255, 0, 0.12), 0 18px 38px rgba(0, 0, 0, 0.45);
  padding: 14px 16px;
}

.metric-window strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.metric-window span {
  color: #cfddc4;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-window.one {
  width: 210px;
  top: 20px;
  left: -28px;
  transform: skew(-8deg);
}

.metric-window.two {
  width: 240px;
  bottom: 24px;
  right: -22px;
  transform: skew(-8deg);
}

.metric-window.three {
  width: 195px;
  top: 44%;
  right: 20px;
  transform: skew(-8deg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-card,
.feature-card,
.panel,
.article-card,
.partner-mark,
.system-card,
.contact-card,
.form-shell,
.tier-table,
.compare-box,
.flow-node {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(17, 21, 17, 0.92), rgba(13, 15, 13, 0.92));
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.stat-card::before,
.feature-card::before,
.panel::before,
.article-card::before,
.partner-mark::before,
.system-card::before,
.contact-card::before,
.form-shell::before,
.compare-box::before,
.flow-node::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  background: linear-gradient(145deg, rgba(183, 255, 0, 0.2), transparent 65%);
  pointer-events: none;
}

.stat-card,
.feature-card,
.panel,
.system-card,
.flow-node {
  padding: 24px;
}

.stat-card:hover,
.feature-card:hover,
.article-card:hover,
.partner-mark:hover,
.panel:hover,
.system-card:hover,
.flow-node:hover,
.contact-card:hover,
.compare-box:hover {
  border-color: rgba(183, 255, 0, 0.55);
  transform: translateY(-4px);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stat-head,
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(183, 255, 0, 0.38);
  border-radius: 9px;
  background: rgba(183, 255, 0, 0.05);
  display: grid;
  place-items: center;
}

.icon-box img {
  width: 22px;
  height: 22px;
}

.kicker {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dce7d4;
}

.stat-value {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1;
}

.card-title {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-copy {
  margin-top: 10px;
  font-size: 0.95rem;
}

.slash-divider {
  margin: 84px auto;
  width: min(100%, 1260px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 0, 0.35), transparent);
  transform: skewX(-30deg);
}

.problem-section,
.solution-section,
.dashboard-section,
.partners-strip,
.statement-block {
  background: linear-gradient(160deg, rgba(11, 13, 11, 0.96), rgba(9, 10, 9, 0.96));
}

.problem-layout,
.solution-layout,
.dashboard-layout,
.page-hero-layout,
.contact-layout,
.two-pane,
.market-layout,
.partner-layout,
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.process-track {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(13, 16, 13, 0.9);
  padding: 18px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: rgba(183, 255, 0, 0.45);
}

.process-step:last-child::after {
  display: none;
}

.step-no {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-shell {
  border: 1px solid rgba(183, 255, 0, 0.38);
  border-radius: var(--radius-lg);
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(183, 255, 0, 0.09), rgba(183, 255, 0, 0) 45%),
    linear-gradient(155deg, #0f130f, #0c0f0c);
  box-shadow: var(--shadow);
}

.dash-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.metric-panel {
  border: 1px solid rgba(183, 255, 0, 0.24);
  border-radius: 10px;
  padding: 14px;
  background: rgba(7, 9, 7, 0.75);
}

.metric-panel span {
  display: block;
  color: #bcc8b7;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.metric-panel strong {
  margin-top: 8px;
  display: block;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: 1.46rem;
}

.chart-block {
  border: 1px solid rgba(183, 255, 0, 0.18);
  border-radius: 12px;
  padding: 16px;
  background: rgba(7, 9, 7, 0.82);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
}

.bar {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, rgba(183, 255, 0, 0.95), rgba(111, 154, 25, 0.45));
  border: 1px solid rgba(183, 255, 0, 0.5);
  animation: barPulse 3.6s ease-in-out infinite;
}

.bar:nth-child(2) {
  animation-delay: 0.4s;
}

.bar:nth-child(3) {
  animation-delay: 0.8s;
}

.bar:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

.split-line {
  margin: 14px 0;
  border: 0;
  border-top: 1px solid rgba(183, 255, 0, 0.2);
}

.statement-block {
  padding: 96px 0;
  text-align: center;
}

.statement-block .section-title {
  margin: 0 auto;
  max-width: 960px;
}

.statement-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  padding: 106px 0 72px;
  border-bottom: 1px solid rgba(183, 255, 0, 0.14);
  background:
    linear-gradient(120deg, rgba(183, 255, 0, 0.08), transparent 40%),
    linear-gradient(175deg, #0b0e0b, #0a0b0a);
}

.page-hero-layout {
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero p {
  margin-top: 18px;
  max-width: 700px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  border: 1px solid rgba(183, 255, 0, 0.33);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dce8d4;
}

.story-card,
.market-card,
.tier-table,
.insight-shell,
.quote-box,
.detail-list,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 18, 15, 0.9);
  padding: 24px;
}

.story-card h3,
.market-card h3,
.quote-box h3,
.detail-list h3,
.benefit-card h3,
.compare-box h3,
.flow-node h3,
.system-card h3,
.contact-card h3,
.form-shell h3,
.partner-mark h3,
.article-card h3 {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-card p,
.market-card p,
.quote-box p,
.detail-list p,
.benefit-card p,
.compare-box p,
.flow-node p,
.system-card p,
.contact-card p,
.form-shell p,
.article-card p {
  margin-top: 12px;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 8px;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.compare-box {
  padding: 26px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.compare-table th,
.compare-table td {
  text-align: left;
  border-bottom: 1px solid rgba(183, 255, 0, 0.18);
  padding: 12px 8px;
  font-size: 0.86rem;
  color: #d3ddd0;
}

.compare-table th {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-table {
  overflow: hidden;
  padding: 0;
}

.tier-table table {
  width: 100%;
  border-collapse: collapse;
}

.tier-table th,
.tier-table td {
  border-bottom: 1px solid rgba(183, 255, 0, 0.2);
  padding: 16px 18px;
  text-align: left;
}

.tier-table th {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d5e3cd;
  background: rgba(183, 255, 0, 0.07);
}

.tier-table td {
  color: #d6ded2;
}

.tier-table tr:last-child td {
  border-bottom: 0;
}

.tier-table strong {
  color: #fff;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  letter-spacing: 0.03em;
}

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

.flow-node {
  min-height: 180px;
}

.flow-node .step-no {
  margin-bottom: 12px;
}

.pipeline {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(183, 255, 0, 0.22);
  border-radius: 12px;
  background: rgba(10, 13, 10, 0.75);
}

.pipeline-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pipe {
  border: 1px solid rgba(183, 255, 0, 0.32);
  border-radius: 10px;
  padding: 14px;
  min-height: 108px;
  position: relative;
}

.pipe::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(183, 255, 0, 0.5);
}

.pipe:last-child::after {
  display: none;
}

.pipe h4 {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pipe p {
  margin-top: 8px;
  font-size: 0.84rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-mark {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}

.partner-mark span {
  font-family: 'Rajdhani', 'Sora', sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9e8d2;
}

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

.article-card {
  padding: 22px;
}

.article-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c5d2c0;
  margin-bottom: 14px;
}

.article-card a {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card a:hover {
  color: var(--accent);
}

.contact-layout {
  align-items: start;
}

.form-shell {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4dfcd;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(183, 255, 0, 0.24);
  background: rgba(8, 10, 8, 0.9);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(183, 255, 0, 0.8);
  box-shadow: 0 0 0 3px rgba(183, 255, 0, 0.18);
}

.field-wide {
  grid-column: 1 / -1;
}

.form-status {
  margin-top: 14px;
  font-size: 0.86rem;
  color: #c7d3c2;
}

.form-status.error {
  color: var(--danger);
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 22px;
}

.contact-card a {
  color: var(--accent-soft);
}

.contact-card a:hover {
  color: var(--accent);
}

.site-footer {
  padding: 80px 0 26px;
  border-top: 1px solid rgba(183, 255, 0, 0.16);
  background: linear-gradient(180deg, rgba(8, 10, 8, 0.4), rgba(6, 7, 6, 0.95));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(183, 255, 0, 0.14);
}

.footer-brand p {
  margin-top: 14px;
  max-width: 500px;
}

.newsletter {
  border: 1px solid rgba(183, 255, 0, 0.22);
  border-radius: 12px;
  padding: 18px;
  background: rgba(9, 11, 9, 0.9);
}

.newsletter h4 {
  margin: 0;
  font-family: 'Rajdhani', 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.news-form {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.news-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(183, 255, 0, 0.3);
  background: rgba(7, 8, 7, 0.95);
  color: #fff;
  padding: 0 14px;
}

.news-form input:focus {
  outline: none;
  border-color: rgba(183, 255, 0, 0.8);
}

.footer-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.footer-col h5 {
  margin: 0 0 14px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ecf0e8;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: #c4cec1;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(183, 255, 0, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
  font-size: 0.8rem;
  color: #b3bcb0;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.muted {
  color: var(--text-soft);
}

.highlight {
  color: var(--accent);
}

@media (max-width: 1200px) {
  .hero-grid,
  .problem-layout,
  .solution-layout,
  .dashboard-layout,
  .page-hero-layout,
  .story-layout,
  .market-layout,
  .two-pane,
  .contact-layout,
  .partner-layout {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 420px;
    max-width: 760px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 78px;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(183, 255, 0, 0.3);
    border-radius: 14px;
    background: rgba(8, 10, 8, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track,
  .pipeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step::after,
  .pipe::after {
    display: none;
  }

  .dash-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 84px 0;
  }

  .hero-grid {
    padding-top: 66px;
  }

  .hero-title {
    font-size: clamp(2.05rem, 10.5vw, 3.5rem);
  }

  .hero-copy p,
  .section-intro,
  p {
    font-size: 0.94rem;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .flow-grid,
  .partner-grid,
  .insight-grid,
  .form-grid,
  .process-track,
  .pipeline-track,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-window.one,
  .metric-window.two,
  .metric-window.three {
    position: static;
    transform: none;
    margin-top: 12px;
    width: 100%;
  }

  .hero-art {
    min-height: 350px;
  }

  .statement-actions {
    justify-content: flex-start;
  }

  .news-form {
    flex-direction: column;
  }

  .news-form input,
  .news-form .btn {
    width: 100%;
  }
}
