@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --attos-primary: #0f172a;
  --muted: #5f6f85;
  --soft: #f8faff;
  --line: #dbe4f1;
  --card: #ffffff;
  --accent: #4d5dff;
  --accent-dark: #3b3fcb;
  --brand-violet: #5b2eff;
  --brand-cyan: #1fb6ff;
  --brand-indigo: #4d5dff;
  --brand-magenta: #b43cff;
  --brand-gradient-main: linear-gradient(135deg, var(--brand-violet), var(--brand-cyan));
  --brand-gradient-alt: linear-gradient(135deg, var(--brand-indigo), var(--brand-magenta));
  --brand-soft-violet: #f4efff;
  --brand-soft-blue: #eef7ff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(34, 54, 126, 0.13);
  --attos-accent:  #4d5dff;
  --attos-success: #10B981;
  --attos-bg:      #FFFFFF;
  --attos-dark:    #0F172A;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(77, 93, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(38, 56, 117, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 80px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1.12;
  max-width: 900px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.14;
  max-width: 900px;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
}

p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-text {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: white;
  background: var(--brand-gradient-main);
  box-shadow: 0 16px 36px rgba(63, 71, 219, 0.3);
}

.btn-secondary {
  color: var(--ink);
  background: white;
  border: 1px solid rgba(77, 93, 255, 0.24);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(91, 46, 255, 0.2);
  border-radius: 999px;
  color: #415168;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.95));
  font-size: 13px;
  font-weight: 700;
}

.dashboard-card {
  padding: 22px;
  border: 1px solid rgba(77, 93, 255, 0.2);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.94));
  box-shadow: var(--shadow);
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 4px 20px;
}

.dash-topbar strong,
.panel-header strong {
  display: block;
  font-size: 16px;
}

.dash-topbar span,
.panel-header span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-dark) !important;
  background: #e8efff;
  font-size: 12px !important;
  font-weight: 900;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric,
.work-panel,
.mini-grid div,
.module,
.step,
.benefit-card,
.benefit-list {
  border: 1px solid rgba(77, 93, 255, 0.14);
  background: #fff;
}

.metric {
  padding: 18px;
  border-radius: 22px;
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin: 10px 0 5px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.work-panel {
  margin-top: 14px;
  padding: 20px;
  border-radius: 24px;
}

.panel-header {
  margin-bottom: 20px;
}

.flow-row {
  display: grid;
  grid-template-columns: 132px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-gradient-main);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-grid div {
  padding: 14px 10px;
  border-radius: 18px;
  text-align: center;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.strip {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 90px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.strip span {
  padding: 12px 18px;
  border: 1px solid rgba(77, 93, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(130deg, #ffffff, #f7f9ff);
  color: #334155;
  font-weight: 800;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: start;
}

.section-text p,
.benefit-card p,
.cta p {
  color: #475569;
  font-size: 19px;
  line-height: 1.75;
}

.section-text p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.module {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.module:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(40, 62, 139, 0.12);
}

.module p,
.step p,
.benefit-list span {
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
}

.workflow {
  /* border removed — band bg provides visual separation */
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  padding: 22px;
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(45, 64, 141, 0.11);
}

.step span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--brand-indigo);
  font-size: 13px;
  font-weight: 900;
}

.benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.benefit-card,
.benefit-list {
  border-radius: 34px;
  padding: 36px;
}

.benefit-list {
  display: grid;
  gap: 22px;
}

.benefit-list div {
  display: grid;
  gap: 7px;
}

.benefit-list strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.cta {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 100px;
  padding: 64px 34px;
  text-align: center;
  border-radius: 44px;
  background: var(--brand-gradient-alt);
  color: white;
  box-shadow: 0 28px 46px rgba(76, 65, 197, 0.26);
}

.cta .eyebrow {
  color: #d6f1ff;
}

.cta h2 {
  margin: 0 auto 18px;
  color: white;
}

.cta p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #e6ecff;
}

.cta .btn-primary {
  color: #1f2a68;
  background: linear-gradient(135deg, #ffffff, #eef6ff);
}

.footer-band {
  background: #ffffff;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(77, 93, 255, 0.2);
  color: #64748b;
  font-size: 14px;
}

.footer img {
  height: 30px;
  width: auto;
}

/* ── Section bands (full-bleed backgrounds) ── */
.band {
  width: 100%;
}

.band-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-bottom: 16px;
}

.band-problem {
  background: linear-gradient(180deg, #f7f4ff 0%, #f7fbff 100%);
}

.band-problem .eyebrow {
  color: var(--brand-indigo);
}

.band-problem h2 {
  color: var(--ink);
}

.band-problem .section-text p {
  color: #4a5a71;
}

.band-modules {
  background: #ffffff;
}

.band-workflow {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.band-benefits {
  background: linear-gradient(180deg, #f8fcff 0%, #f5f7ff 100%);
}

.band-cta {
  background: #ffffff;
  padding: 0 0 20px;
}

.band-hero::before,
.band-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.band-hero::before {
  top: -170px;
  right: -130px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 46, 255, 0.16) 0%, rgba(91, 46, 255, 0) 68%);
}

.band-hero::after {
  bottom: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 255, 0.14) 0%, rgba(31, 182, 255, 0) 72%);
}

.hero,
.strip {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

  .hero {
    margin-top: 70px;
  }
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 26px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero {
    margin-top: 58px;
  }

  h1 {
    font-size: clamp(42px, 11vw, 64px);
    line-height: 1.14;
    letter-spacing: -0.008em;
  }

  h2 {
    font-size: clamp(30px, 8vw, 48px);
    line-height: 1.18;
  }

  h3 {
    font-size: 24px;
  }

  p,
  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .metrics-grid,
  .module-grid,
  .steps,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .benefit-card,
  .benefit-list {
    padding: 26px;
  }

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