:root {
  --bg: #f6f5fb;
  --bg-soft: #ffffff;
  --bg-muted: #efeaf8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1f1735;
  --muted: #62587a;
  --line: rgba(53, 27, 111, 0.10);
  --brand-blue: #00a0e3;
  --brand-purple: #351b6f;
  --brand-violet: #7f3f97;
  --shadow: 0 16px 50px rgba(53, 27, 111, 0.10);
  --shadow-soft: 0 12px 30px rgba(53, 27, 111, 0.07);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 160, 227, 0.10), transparent 24%),
    radial-gradient(circle at top right, rgba(127, 63, 151, 0.10), transparent 26%),
    linear-gradient(180deg, #faf8fe 0%, #f7f3fb 48%, #f4f7fb 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.glow-left { background: rgba(0, 160, 227, 0.35); left: -120px; top: -120px; }
.glow-right { background: rgba(127, 63, 151, 0.25); right: -140px; top: 80px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(53, 27, 111, 0.08);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo { width: min(260px, 48vw); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-links a {
  color: var(--muted);
  font-weight: 700;
  transition: 0.25s ease;
}
.nav-links a:hover { color: var(--brand-purple); }
.btn-nav {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53,27,111,0.95), rgba(127,63,151,0.92));
  color: #fff !important;
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--brand-purple);
}

.hero { padding: 5rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-violet);
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.hero h1, .section-head h2, .split-copy h2, .cta-box h2, .contact-copy h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}
.hero h1 span {
  color: var(--brand-purple);
  position: relative;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 14px;
  background: rgba(0,160,227,0.18);
  z-index: -1;
  border-radius: 999px;
}
.hero-text,
.section-head p,
.split-copy p,
.cta-box p,
.contact-copy p,
.info-card p,
.module-item p,
.side-panel p,
.faq-list p,
.contact-note {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-violet));
  box-shadow: 0 18px 35px rgba(53, 27, 111, 0.18);
}
.btn-secondary {
  color: var(--brand-purple);
  background: rgba(255,255,255,0.75);
  border-color: rgba(53, 27, 111, 0.12);
  box-shadow: var(--shadow-soft);
}
.btn-full { width: 100%; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-points span {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(53, 27, 111, 0.08);
  border-radius: 999px;
  color: var(--brand-purple);
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,243,252,0.92));
  border: 1px solid rgba(53, 27, 111, 0.10);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,160,227,0.18), rgba(127,63,151,0.28));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}
.symbol-logo { width: 108px; }
.mini-badge {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(53, 27, 111, 0.08);
  color: var(--brand-purple);
  font-weight: 800;
}
.showcase-main {
  margin-bottom: 1rem;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(53,27,111,0.96), rgba(127,63,151,0.92));
  color: white;
}
.showcase-main p { color: rgba(255,255,255,0.86); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.showcase-panel {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(53, 27, 111, 0.08);
  box-shadow: var(--shadow-soft);
}
.showcase-panel small,
.module-item span {
  display: inline-block;
  color: var(--brand-violet);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.showcase-panel strong,
.info-card h3,
.module-item h3,
.side-panel h3,
.faq-list summary {
  display: block;
  font-size: 1.1rem;
}
.showcase-panel.accent {
  background: linear-gradient(135deg, rgba(0,160,227,0.12), rgba(127,63,151,0.12));
}

.trust-strip {
  padding: 0.5rem 0 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-items div {
  text-align: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(53, 27, 111, 0.08);
  color: var(--brand-purple);
  font-weight: 800;
}

.section { padding: 5.5rem 0; }
.soft-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(239,234,248,0.65));
  border-top: 1px solid rgba(53, 27, 111, 0.05);
  border-bottom: 1px solid rgba(53, 27, 111, 0.05);
}
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head.centered { text-align: center; margin-inline: auto; margin-bottom: 2.5rem; }
.section-head h2,
.split-copy h2,
.cta-box h2,
.contact-copy h2 { font-size: clamp(2rem, 4vw, 3.3rem); }

.benefits-grid,
.modules-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.info-card,
.module-item,
.side-panel,
.contact-form,
.contact-note,
.cta-box,
.faq-list details {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(53, 27, 111, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.info-card,
.module-item,
.side-panel { padding: 1.5rem; }
.info-card h3,
.module-item h3,
.side-panel h3 { margin: 0 0 0.6rem; color: var(--brand-purple); }
.module-item span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(53,27,111,0.08);
  margin-bottom: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.split-panels {
  display: grid;
  gap: 1rem;
}

.cta-section { padding-top: 2rem; }
.cta-box {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(241,236,250,0.95));
}
.cta-box .btn { margin-top: 1rem; }

.faq-list {
  display: grid;
  gap: 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.faq-list details { padding: 1.15rem 1.25rem; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  color: var(--brand-purple);
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0.9rem 0 0; }

.contact-section { padding-top: 3rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.contact-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
}
.contact-form {
  padding: 1.6rem;
}
.contact-form label {
  display: block;
  margin: 0.75rem 0 0.45rem;
  font-weight: 700;
  color: var(--brand-purple);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(53, 27, 111, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0,160,227,0.55);
  box-shadow: 0 0 0 4px rgba(0,160,227,0.10);
}
.form-message {
  min-height: 24px;
  margin: 1rem 0 0;
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
}
.footer-wrap {
  text-align: center;
  color: var(--muted);
}
.footer-logo {
  width: min(240px, 58vw);
  margin: 0 auto 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .benefits-grid,
  .modules-wrap,
  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(53, 27, 111, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .nav-links.open { display: flex; }

  .hero,
  .section { padding: 4rem 0; }

  .benefits-grid,
  .modules-wrap,
  .showcase-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .hero-actions { flex-direction: column; }
  .btn,
  .btn-nav { width: 100%; }
  .hero-card { padding: 1.15rem; }
  .cta-box { padding: 2rem 1.2rem; }
}
