:root {
  --bg: #07101d;
  --bg-2: #0a1423;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #e7eef8;
  --muted: #9cb0ca;
  --white: #ffffff;
  --primary: #62c7ff;
  --primary-2: #73ead3;
  --success: #67e8a8;
  --warning: #ffd166;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.25);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(98, 199, 255, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(115, 234, 211, 0.14), transparent 18%),
    linear-gradient(180deg, #07101d 0%, #091321 44%, #0a1220 100%);
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 16, 29, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06101b;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(98, 199, 255, 0.22);
}

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text {
  font-size: 1.08rem;
}

.brand-subtext {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

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

.nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06101b;
  box-shadow: 0 16px 34px rgba(98, 199, 255, 0.18);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 5.4rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(98, 199, 255, 0.24);
  background: rgba(98, 199, 255, 0.08);
  color: #c2ebff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  max-width: 11.5ch;
}

.hero-copy h1 span {
  display: block;
  color: #c8fff5;
}

.hero-text {
  margin: 1.4rem 0 0;
  max-width: 61ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.proof-item {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.proof-item strong {
  display: block;
  font-size: 0.94rem;
}

.proof-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.hero-panel {
  width: 100%;
  max-width: 570px;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(6, 14, 25, 0.72);
  box-shadow: var(--shadow-lg);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.1rem 0.1rem 0.85rem;
}

.dots {
  display: flex;
  gap: 0.4rem;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

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

.panel-layout {
  display: grid;
  gap: 1rem;
}

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

.kpi-card,
.panel-card,
.benefit-card,
.module-card,
.manifesto-box,
.cta-box,
.lead-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-md);
}

.kpi-card {
  min-height: 136px;
  padding: 1rem;
  border-radius: 22px;
}

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

.kpi-value {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.kpi-foot {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.positive {
  color: var(--success);
}

.warning {
  color: var(--warning);
}

.neutral {
  color: #d0dbee;
}

.panel-card {
  border-radius: 22px;
  padding: 1rem;
}

.panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-card-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-card-head strong {
  font-size: 0.95rem;
}

.attendance-chart {
  margin-top: 1rem;
  height: 118px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 0.65rem;
}

.attendance-chart span {
  display: block;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
}

.attendance-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  color: var(--muted);
}

.activity-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.85rem;
}

.activity-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.activity-row strong {
  display: block;
  font-size: 0.94rem;
}

.activity-row small {
  color: var(--muted);
  display: block;
  margin-top: 0.12rem;
}

.activity-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-top: 0.4rem;
}

.floating-badge {
  position: absolute;
  min-width: 220px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line-2);
  background: rgba(11, 18, 32, 0.92);
  box-shadow: var(--shadow-lg);
}

.floating-badge span {
  display: block;
  color: #c8fff5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.floating-badge strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.floating-badge small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
}

.floating-a {
  left: -22px;
  bottom: 70px;
}

.floating-b {
  right: -18px;
  top: 68px;
}

.trust-strip {
  padding: 0 0 1.6rem;
}

.trust-strip-inner {
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.trust-title {
  font-weight: 700;
}

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

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: #d8e3f2;
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 5.25rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.narrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.benefits-grid,
.modules-grid {
  display: grid;
  gap: 1.15rem;
}

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

.benefit-card,
.module-card {
  border-radius: 24px;
  padding: 1.45rem;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(98, 199, 255, 0.16), rgba(115, 234, 211, 0.16));
  border: 1px solid var(--line);
  font-weight: 800;
  margin-bottom: 1rem;
}

.benefit-card h3,
.module-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.benefit-card p,
.module-card p {
  margin: 0;
  color: var(--muted);
}

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

.module-card {
  min-height: 176px;
}

.manifesto-box {
  border-radius: 28px;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(98,199,255,0.12), transparent 25%),
    rgba(255,255,255,0.04);
}

.manifesto-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #dce7f6;
  font-size: 0.82rem;
  font-weight: 800;
}

.manifesto-box h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.manifesto-box p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
}

.cta-section {
  padding-top: 4.8rem;
  padding-bottom: 6rem;
}

.cta-box {
  border-radius: 30px;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(98,199,255,0.15), transparent 26%),
    rgba(255,255,255,0.04);
}

.cta-copy {
  padding: 1.2rem;
}

.cta-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.cta-copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.2rem;
  color: #dbe7f6;
  font-size: 0.94rem;
  font-weight: 600;
}

.lead-form {
  border-radius: 24px;
  padding: 1.2rem;
  background: rgba(7, 16, 29, 0.8);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.form-row label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #dce7f8;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #7f95b4;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(98,199,255,0.45);
  box-shadow: 0 0 0 3px rgba(98,199,255,0.12);
}

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

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
}

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

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 1120px) {
  .hero-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 1rem;
  }

  .floating-a,
  .floating-b {
    display: none;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .hero-proof,
  .benefits-grid,
  .modules-grid,
  .panel-kpis {
    grid-template-columns: 1fr;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(7, 16, 29, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .section,
  .cta-section {
    padding: 4rem 0;
  }

  .hero-actions,
  .cta-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-panel,
  .benefit-card,
  .module-card,
  .lead-form,
  .cta-box,
  .manifesto-box {
    border-radius: 20px;
  }

  .kpi-value {
    font-size: 1.6rem;
  }
}
