@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Oxanium:wght@500;600;700&display=swap');

:root {
  --bg-black: #050505;
  --bg-charcoal: #0d0d0d;
  --surface: rgba(17, 17, 17, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text-main: #f4f4f4;
  --text-muted: #a6a6a6;
  --orange: #ff7a18;
  --gold: #ffd36b;
  --accent-gradient: linear-gradient(120deg, #ff7a18, #ffd36b);
  --border: rgba(255, 176, 80, 0.28);
  --glow: 0 0 0.8rem rgba(255, 122, 24, 0.42), 0 0 2rem rgba(255, 211, 107, 0.28);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 24, 0.16), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(255, 211, 107, 0.12), transparent 26%),
    radial-gradient(circle at 74% 58%, rgba(255, 122, 24, 0.08), transparent 36%),
    linear-gradient(160deg, #050505 0%, #0d0d0d 42%, #080808 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 56px,
      rgba(255, 211, 107, 0.02) 56px,
      rgba(255, 211, 107, 0.02) 57px
    );
}

body::after {
  background:
    radial-gradient(circle at 22% 82%, rgba(255, 122, 24, 0.12), transparent 34%),
    radial-gradient(circle at 72% 24%, rgba(255, 211, 107, 0.06), transparent 44%);
  animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-tight {
  padding: 4rem 0;
}

.section-title {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 750px;
  margin-bottom: 2.4rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  color: #ffdca2;
  padding: 0.42rem 0.88rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 122, 24, 0.08);
  margin-bottom: 1.15rem;
}

.kicker::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: var(--glow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.75);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.96);
  border-color: rgba(255, 122, 24, 0.24);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 220px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--glow);
}

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

.brand-name {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  font-size: 0.92rem;
  color: #e6e6e6;
  padding: 0.3rem 0.45rem;
  border-radius: 0.35rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff3cd;
  background: rgba(255, 122, 24, 0.12);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 0.7rem;
  padding: 0.7rem 1.05rem;
  background: var(--accent-gradient);
  color: #131313;
  box-shadow: var(--glow);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 122, 24, 0.08);
  color: #ffe4b5;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.hero {
  padding: 6.5rem 0 5.2rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.hero p {
  color: #d2d2d2;
  max-width: 62ch;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.btn-primary {
  padding: 0.84rem 1.3rem;
  background: var(--accent-gradient);
  color: #151515;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 1rem rgba(255, 122, 24, 0.55), 0 0 2.5rem rgba(255, 211, 107, 0.42);
}

.btn-secondary {
  padding: 0.84rem 1.3rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: #f5f5f5;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 211, 107, 0.55);
}

.btn-ghost {
  padding: 0.74rem 1.18rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 211, 107, 0.5);
}

.hero-aside {
  position: relative;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.32));
  box-shadow: var(--shadow-soft);
}

.hero-aside::before,
.hero-aside::after {
  content: '';
  position: absolute;
  filter: blur(16px);
  z-index: -1;
}

.hero-aside::before {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -32px;
  right: -20px;
  background: rgba(255, 122, 24, 0.42);
}

.hero-aside::after {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  bottom: -36px;
  left: -28px;
  background: rgba(255, 211, 107, 0.32);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  padding: 0.9rem;
  background: rgba(6, 6, 6, 0.64);
}

.stat-card strong {
  display: block;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.3rem;
  color: #ffeec4;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.lightning-track {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.lightning-track span {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 211, 107, 0), rgba(255, 211, 107, 0.95), rgba(255, 122, 24, 0));
  filter: drop-shadow(0 0 6px rgba(255, 211, 107, 0.8));
  opacity: 0.5;
  animation: boltTravel 5s linear infinite;
}

.lightning-track span:nth-child(1) {
  left: 18%;
  animation-delay: 0s;
}

.lightning-track span:nth-child(2) {
  left: 47%;
  animation-delay: 1.4s;
}

.lightning-track span:nth-child(3) {
  left: 82%;
  animation-delay: 2.8s;
}

@keyframes boltTravel {
  0% {
    transform: translateY(-140%);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(120vh);
    opacity: 0;
  }
}

.metrics-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metrics-strip .metric {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.metric-value {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff1cf;
  margin-bottom: 0.4rem;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.2rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(10, 10, 10, 0.82));
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 107, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 1.2rem rgba(255, 122, 24, 0.28);
}

.card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}

.card p {
  color: #cfcfcf;
  font-size: 0.95rem;
}

.icon-chip {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 122, 24, 0.1);
  color: #ffe7bb;
  box-shadow: var(--glow);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.text-stack p + p {
  margin-top: 1rem;
}

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

.list-clean {
  display: grid;
  gap: 0.75rem;
}

.list-clean li {
  border-left: 2px solid rgba(255, 211, 107, 0.4);
  padding-left: 0.8rem;
  color: #dbdbdb;
}

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

.product-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 1.3rem;
  background: linear-gradient(155deg, rgba(255, 211, 107, 0.06), rgba(8, 8, 8, 0.84));
}

.product-card h3 {
  font-family: 'Oxanium', sans-serif;
  margin-bottom: 0.55rem;
}

.product-card p {
  color: #d5d5d5;
  margin-bottom: 0.75rem;
}

.feature-list {
  display: grid;
  gap: 0.45rem;
}

.feature-list li {
  color: #e3e3e3;
  font-size: 0.92rem;
}

.feature-list li::before {
  content: '\26A1';
  color: #ffd36b;
  margin-right: 0.42rem;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.client-tile {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.client-tile h4 {
  margin-bottom: 0.4rem;
  font-family: 'Oxanium', sans-serif;
  font-size: 1rem;
}

.client-tile p {
  color: var(--text-muted);
  font-size: 0.89rem;
}

.chart-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
  padding: 1rem;
  background: rgba(4, 4, 4, 0.78);
  box-shadow: var(--shadow-soft);
}

canvas {
  width: 100%;
  height: 280px;
  display: block;
}

.chart-controls {
  display: flex;
  gap: 0.6rem;
  margin: 0.8rem 0 1rem;
  flex-wrap: wrap;
}

.chart-controls button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #ececec;
  border-radius: 0.6rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.chart-controls button:hover,
.chart-controls button.active {
  border-color: rgba(255, 211, 107, 0.55);
  background: rgba(255, 122, 24, 0.14);
}

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

.blog-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(7, 7, 7, 0.88);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 107, 0.45);
}

.blog-content {
  padding: 1rem;
}

.blog-meta {
  color: #b7b7b7;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-content h3 {
  font-family: 'Oxanium', sans-serif;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.blog-content p {
  color: #d5d5d5;
  font-size: 0.92rem;
}

.blog-content .read-more {
  display: inline-flex;
  margin-top: 0.9rem;
  color: #ffdca5;
  font-size: 0.87rem;
}

.cta-panel {
  border-radius: 1.1rem;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(255, 211, 107, 0.08));
  padding: 2rem;
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.cta-panel h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.cta-panel p {
  color: #f2dfbe;
  max-width: 70ch;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.4rem 0;
  background: rgba(4, 4, 4, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.8rem;
  max-width: 48ch;
}

.footer-col h4 {
  font-family: 'Oxanium', sans-serif;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: #d6d6d6;
  font-size: 0.9rem;
}

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

.footer-bottom {
  margin-top: 1.2rem;
  color: #9e9e9e;
  font-size: 0.82rem;
}

.sub-hero {
  padding: 4.7rem 0 3.7rem;
}

.sub-hero h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.16;
  margin-bottom: 1rem;
}

.sub-hero p {
  color: #d4d4d4;
  max-width: 72ch;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.timeline-item strong {
  color: #ffe9c0;
  display: inline-block;
  margin-bottom: 0.42rem;
}

.diagram {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.1rem;
  background: rgba(8, 8, 8, 0.88);
}

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

.diagram-node {
  border: 1px solid rgba(255, 211, 107, 0.3);
  border-radius: 0.8rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  font-size: 0.86rem;
}

.diagram-connector {
  text-align: center;
  color: #ffcf87;
  font-size: 0.8rem;
  margin: 0.35rem 0;
  letter-spacing: 0.08em;
}

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

.matrix-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.matrix-card h3 {
  font-family: 'Oxanium', sans-serif;
  margin-bottom: 0.55rem;
}

.matrix-card p {
  color: #d8d8d8;
  margin-bottom: 0.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(8, 8, 8, 0.85);
}

.field {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.86rem;
}

.field label {
  font-size: 0.84rem;
  color: #e5d0a9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field textarea {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  color: #f7f7f7;
  padding: 0.72rem 0.82rem;
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 211, 107, 0.6);
  box-shadow: 0 0 0 0.22rem rgba(255, 122, 24, 0.15);
}

.form-status {
  margin-top: 0.6rem;
  color: #ffdca5;
  font-size: 0.9rem;
  min-height: 1.35rem;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
}

.contact-panel h3 {
  font-family: 'Oxanium', sans-serif;
  margin-bottom: 0.5rem;
}

.contact-panel p {
  color: #d7d7d7;
  margin-bottom: 0.65rem;
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .blog-grid,
  .client-grid,
  .product-grid,
  .solutions-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.9rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .nav-links.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }
}

@media (max-width: 660px) {
  .section {
    padding: 4.8rem 0;
  }

  .hero {
    padding: 4.9rem 0 3.8rem;
  }

  .card-grid,
  .blog-grid,
  .client-grid,
  .product-grid,
  .solutions-matrix,
  .footer-grid,
  .metrics-strip,
  .diagram-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    padding: 1.2rem;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
}
