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

:root {
  --bg: #07111f;
  --bg-soft: #0c1728;
  --bg-card: rgba(255,255,255,0.05);
  --text: #edf2ff;
  --muted: #aab7cf;
  --line: rgba(255,255,255,0.10);
  --primary: #2fd089;
  --primary-dark: #22b774;
  --secondary: #7fd6ff;
  --shadow: 0 20px 60px rgba(0,0,0,0.28);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(47,208,137,0.18), transparent 26%),
    radial-gradient(circle at left, rgba(84,159,255,0.12), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #091423 42%, #07111f 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #7de0ff);
  color: #07111f;
  font-weight: 800;
  box-shadow: var(--shadow);
}

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

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.2s;
}

.nav a:hover {
  color: #fff;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.hero {
  padding: 72px 0 44px;
}

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

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: #bdeed7;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.04;
  margin-top: 18px;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-copy p {
  margin-top: 22px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: var(--primary);
  color: #06101d;
  box-shadow: 0 14px 30px rgba(47,208,137,0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: var(--line);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 32px;
}

.badge-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  font-size: 0.96rem;
  color: #fff;
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 220px 160px;
  gap: 12px;
}

.hero-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hero-image-grid img:first-child {
  grid-row: span 2;
}

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

.stat {
  border: 1px solid var(--line);
  background: rgba(8, 18, 34, 0.72);
  border-radius: 20px;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

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

.section {
  padding: 42px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card-large {
  min-height: 100%;
}

.card h2,
.card h3 {
  margin-top: 12px;
  line-height: 1.1;
}

.card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.card h3 {
  font-size: 1.45rem;
}

.card p {
  margin-top: 16px;
  color: var(--muted);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.check-list li {
  color: #e6eefc;
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.module-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: 26px;
  transition: 0.25s ease;
  box-shadow: var(--shadow);
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,208,137,0.35);
  background: rgba(255,255,255,0.07);
}

.module-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(47,208,137,0.12);
  color: #9af2c7;
  font-size: 1.35rem;
}

.module-card h3 {
  margin-top: 18px;
  font-size: 1.2rem;
}

.module-card p {
  margin-top: 12px;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-copy h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-copy p {
  margin-top: 16px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-list span,
.footer-links a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 10px 14px;
  color: #e6eefc;
  font-size: 0.92rem;
}

.highlight-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(47,208,137,0.20);
  background: rgba(47,208,137,0.10);
  color: #dff8ea;
}

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

.cta-section {
  padding-bottom: 74px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(47,208,137,0.14), rgba(127,214,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.cta-copy p {
  margin-top: 16px;
  color: #d0dbef;
  max-width: 660px;
}

.lead-form {
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.72);
  border-radius: 28px;
  padding: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #dce7fb;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  color: #fff;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(127,214,255,0.55);
  box-shadow: 0 0 0 4px rgba(127,214,255,0.08);
}

.form-note {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(5, 12, 23, 0.8);
}

.footer-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .split-feature,
  .feature-grid-3,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-visual img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.96);
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-badges,
  .stats,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .hero-image-grid img:first-child {
    grid-row: auto;
  }

  .card,
  .module-card,
  .lead-form,
  .cta-grid {
    padding: 22px;
  }

  .container {
    width: min(1180px, calc(100% - 22px));
  }
}
