:root {
  --bg: #07111f;
  --bg-soft: #0c1930;
  --surface: rgba(10, 22, 42, 0.82);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-3: #edf3ff;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ecf3ff;
  --muted: #9fb0cf;
  --dark-text: #091325;
  --accent: #3ecf8e;
  --accent-2: #6cc3ff;
  --gold: #ffd27a;
  --danger: #f97373;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(108, 195, 255, 0.17), transparent 30%),
    radial-gradient(circle at top right, rgba(62, 207, 142, 0.1), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0a1324 45%, #09101a 100%);
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.4), transparent 92%);
}

.shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-bottom: 80px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(7, 17, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #03111f;
  font-weight: 800;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
}

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

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
  padding: 76px 0 34px;
}

.eyebrow,
.mini-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.showcase-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.hero-text,
.section-head p,
.feature-card p,
.module-card p,
.plan-top p,
.plan-list,
.comparison-row,
.process-grid p,
.faq-answer p,
.contact-copy p,
.trust-strip p,
.addon-box span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #02111e;
  box-shadow: 0 16px 32px rgba(62, 207, 142, 0.18);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #d7e6ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
}

.showcase-card,
.feature-card,
.module-card,
.plan-card,
.comparison-table,
.process-grid article,
.faq-item,
.contact-card,
.trust-strip {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.showcase-card {
  padding: 28px;
  border-radius: 34px;
}

.showcase-top strong {
  display: block;
  margin-top: 14px;
  font-size: 1.55rem;
  line-height: 1.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.stats-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  color: white;
}

.showcase-panel {
  display: grid;
  gap: 20px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.showcase-panel h2 {
  margin-top: 10px;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.showcase-panel ul,
.plan-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-panel li,
.plan-list li {
  position: relative;
  padding-left: 24px;
}

.showcase-panel li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 22px 24px;
  border-radius: 28px;
}

.trust-strip p {
  margin: 12px 0 0;
}

.banner-slider {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.banner-track {
  position: relative;
}

.banner-slide {
  display: none;
  padding: 18px;
}

.banner-slide.active {
  display: block;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  background: #091325;
  border-radius: 24px;
}

.banner-overlay {
  margin-top: 16px;
  max-width: 100%;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.banner-overlay h3 {
  margin: 12px 0 10px;
  font-size: 1.55rem;
  color: white;
}

.banner-overlay p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 0 18px;
}

.banner-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.banner-dot.active {
  width: 38px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.section {
  padding-top: 92px;
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.section-head p {
  margin-top: 14px;
}

.feature-grid,
.module-grid,
.pricing-grid,
.process-grid,
.demo-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

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

.demo-card,
.showcase-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.demo-card img,
.showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  background: #091325;
}

.demo-copy,
.showcase-copy {
  padding: 22px 24px 24px;
}

.demo-copy h3,
.showcase-copy h3 {
  margin: 12px 0 10px;
  font-size: 1.22rem;
}

.demo-copy p,
.showcase-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.demo-actions {
  margin-top: 20px;
}

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

.icon-panel {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(108, 195, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-badge {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.icon-badge-blue {
  background: linear-gradient(135deg, rgba(108, 195, 255, 0.22), rgba(61, 127, 255, 0.16));
}

.icon-badge-green {
  background: linear-gradient(135deg, rgba(62, 207, 142, 0.22), rgba(33, 122, 94, 0.16));
}

.icon-badge-gold {
  background: linear-gradient(135deg, rgba(255, 210, 122, 0.24), rgba(181, 123, 38, 0.16));
}

.icon-phone,
.icon-dashboard,
.icon-layers {
  position: absolute;
  inset: 0;
  margin: auto;
}

.icon-phone {
  width: 40px;
  height: 62px;
  border: 4px solid #eaf3ff;
  border-radius: 12px;
}

.icon-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: #eaf3ff;
  transform: translateX(-50%);
}

.icon-phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #eaf3ff;
  transform: translateX(-50%);
}

.icon-dashboard {
  width: 56px;
  height: 56px;
}

.icon-dashboard::before,
.icon-dashboard::after {
  content: "";
  position: absolute;
  background: #eaf3ff;
  border-radius: 8px;
}

.icon-dashboard::before {
  inset: 0;
  box-shadow:
    0 0 0 0 #eaf3ff,
    30px 0 0 0 #eaf3ff,
    0 30px 0 0 #eaf3ff,
    30px 30px 0 0 #eaf3ff;
  width: 22px;
  height: 22px;
}

.icon-dashboard::after {
  display: none;
}

.icon-layers {
  width: 66px;
  height: 66px;
}

.icon-layers::before,
.icon-layers::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 4px solid #fff6db;
  border-radius: 12px;
  transform: translateX(-50%) rotate(45deg);
}

.icon-layers::before {
  top: 6px;
}

.icon-layers::after {
  top: 20px;
  opacity: 0.75;
}

.feature-card,
.module-card,
.plan-card,
.process-grid article,
.faq-item,
.contact-card {
  padding: 24px;
  border-radius: var(--radius);
}

.feature-card h3,
.module-card h3,
.plan-card h3,
.process-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.alt-section .module-card {
  background: rgba(255, 255, 255, 0.045);
}

.highlight-card {
  background: linear-gradient(135deg, rgba(62, 207, 142, 0.14), rgba(108, 195, 255, 0.14));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.premium-plan {
  background: linear-gradient(180deg, rgba(108, 195, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.service-plan {
  background: linear-gradient(180deg, rgba(62, 207, 142, 0.11), rgba(255, 255, 255, 0.04));
}

.plan-top p {
  margin: 10px 0 0;
}

.price-block {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-block strong {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: white;
}

.price-block span {
  color: var(--gold);
  font-size: 0.94rem;
}

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

.compact strong {
  font-size: 1.7rem;
}

.addon-box {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.addon-box strong {
  color: white;
}

.comparison-table {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 28px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-head {
  color: white;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

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

.process-grid article {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.process-grid strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 14px 0 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
}

.contact-card {
  background: linear-gradient(180deg, #f7fbff, #dde9fb);
  color: var(--dark-text);
}

.contact-card .button-secondary {
  color: var(--dark-text);
  border-color: rgba(9, 19, 37, 0.12);
  background: rgba(9, 19, 37, 0.03);
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(9, 19, 37, 0.12);
}

.contact-line:last-of-type {
  border-bottom: 0;
}

.contact-line span {
  color: #53617b;
}

@media (max-width: 1080px) {
  .feature-grid,
  .module-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .hero,
  .pricing-grid,
  .contact-section,
  .trust-strip,
  .demo-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    border-radius: 30px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

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

  .feature-grid,
  .module-grid,
  .dual-price,
  .process-section .process-grid,
  .stats-grid,
  .comparison-row,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    gap: 8px;
    padding: 18px;
  }

  .comparison-row span:first-child {
    color: white;
    font-weight: 800;
  }

  .hero {
    padding-top: 42px;
  }

  .banner-track,
  .banner-slide img {
    min-height: 0;
    height: auto;
  }

  .banner-overlay {
    padding: 18px;
  }
}
