:root {
  --bg: #d7e7fb;
  --bg-deep: #b8d0f0;
  --surface: #d7e7fb;
  --surface-strong: #e7f1ff;
  --text: #15304f;
  --muted: #55708f;
  --accent: #3f7cff;
  --accent-soft: #73bbff;
  --accent-deep: #2e58d6;
  --shadow-dark: #9eb5d3;
  --shadow-light: #f4f9ff;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --site-width: 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(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(115, 187, 255, 0.55), transparent 18%),
    radial-gradient(circle at 20% 80%, rgba(63, 124, 255, 0.18), transparent 22%),
    linear-gradient(145deg, #deecff, #bed5f3);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 80%);
}

.page-shell {
  width: min(calc(100% - 40px), var(--site-width));
  margin: 24px auto 48px;
}

.clay,
.clay-inset,
.button,
.faq-toggle,
input,
textarea,
select {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.clay {
  background: linear-gradient(145deg, #e3efff, #c4daf6);
  box-shadow:
    16px 16px 32px rgba(145, 170, 205, 0.72),
    -14px -14px 28px rgba(255, 255, 255, 0.92);
}

.clay-inset,
input,
textarea,
select {
  background: linear-gradient(145deg, #cfe0f7, #e6f1ff);
  box-shadow:
    inset 7px 7px 12px rgba(157, 176, 205, 0.8),
    inset -8px -8px 14px rgba(255, 255, 255, 0.9);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-radius: var(--radius-xl);
  position: sticky;
  top: 18px;
  z-index: 10;
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, #e7eff8, #c8d6e6);
  box-shadow:
    12px 12px 22px rgba(174, 186, 201, 0.8),
    -8px -8px 18px rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
}

.brand-mark span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, #7db8ff 45%, #4b70ff 100%);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.5),
    inset 4px 4px 8px rgba(255, 255, 255, 0.4);
}

.brand-name,
.brand-tag,
.eyebrow,
.proof-number,
.step span {
  margin: 0;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.nav a,
.button,
.faq-toggle {
  color: inherit;
  text-decoration: none;
}

.nav a {
  font-weight: 700;
  color: var(--muted);
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-soft));
  color: #f8fbff;
  box-shadow:
    12px 12px 24px rgba(121, 149, 188, 0.6),
    -10px -10px 22px rgba(255, 255, 255, 0.78),
    inset 1px 1px 2px rgba(255, 255, 255, 0.35);
}

.button-secondary {
  background: linear-gradient(145deg, #dceaff, #c8ddf8);
  box-shadow:
    10px 10px 20px rgba(147, 171, 202, 0.7),
    -8px -8px 18px rgba(255, 255, 255, 0.88);
}

main {
  display: grid;
  gap: 34px;
  margin-top: 30px;
}

.hero,
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.proof-card,
.benefit-card,
.step,
.contact {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 22px 8px 22px 4px;
}

.mini-proof {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 22px;
}

.mini-proof span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mini-proof p {
  margin: 10px 0 0;
  color: var(--text);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.1rem, 5vw, 5.5rem);
  line-height: 0.98;
  margin: 22px 0 18px;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.proof-card p,
.benefit-card p,
.step p,
.contact-copy p,
.faq-answer p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.hero-metrics,
.proof-grid,
.benefit-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

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

.metric,
.proof-card,
.benefit-card,
.step {
  padding: 24px;
}

.metric strong,
.proof-card h2,
.benefit-card h3,
.step h3,
.contact-copy h2 {
  display: block;
  margin-bottom: 10px;
}

.metric strong {
  font-size: 1.65rem;
  font-family: "Space Grotesk", sans-serif;
}

.metric span,
.proof-card p,
.benefit-card p,
.step p {
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7fbff, #9ec5ff);
  box-shadow:
    24px 24px 40px rgba(143, 166, 197, 0.72),
    -16px -16px 28px rgba(255, 255, 255, 0.95),
    inset 8px 8px 14px rgba(255, 255, 255, 0.55);
}

.orb-large {
  width: 260px;
  height: 260px;
  right: 44px;
  top: 56px;
}

.orb-small {
  width: 124px;
  height: 124px;
  left: 32px;
  bottom: 62px;
  background: linear-gradient(145deg, #ffffff, #b6cff3);
}

.workflow-card {
  position: absolute;
  left: 36px;
  top: 48px;
  width: min(300px, calc(100% - 72px));
  padding: 22px;
  border-radius: 28px;
}

.workflow-card p {
  margin-bottom: 14px;
  font-weight: 800;
}

.workflow-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.visual-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 22px 24px;
  border-radius: 28px;
}

.visual-panel span,
.proof-number,
.step span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.proof-card,
.benefit-card,
.step,
.faq-item,
.contact {
  position: relative;
}

.proof-number {
  margin-bottom: 20px;
}

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

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 800;
}

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

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  padding: 8px;
}

.faq-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 800;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
}

.faq-toggle::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--muted);
}

.faq-item.open .faq-toggle::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding 220ms ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding: 0 20px 18px;
}

.contact {
  padding: 28px;
}

.contact-copy {
  padding-right: 8px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

.point strong {
  display: block;
  margin-bottom: 6px;
}

.point span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 800;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  outline: none;
  appearance: none;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form label:nth-of-type(4),
.contact-form label:nth-of-type(5),
.contact-form label:nth-of-type(6) {
  grid-column: span 1;
}

.contact-form label:last-of-type,
.form-note,
.contact-form button {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 800;
  color: var(--accent-deep);
}

.form-status.is-error {
  color: #b34747;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow:
    inset 7px 7px 12px rgba(157, 176, 205, 0.8),
    inset -8px -8px 14px rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(63, 124, 255, 0.18);
}

.form-note {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 700;
  background: linear-gradient(145deg, #dceafe, #cddff7);
  box-shadow:
    inset 6px 6px 12px rgba(157, 176, 205, 0.72),
    inset -6px -6px 12px rgba(255, 255, 255, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .nav {
    display: none;
  }

  .hero-metrics,
  .proof-grid,
  .process-steps,
  .benefit-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--site-width));
    margin-top: 12px;
  }

  .site-header,
  .hero-visual,
  .proof-card,
  .benefit-card,
  .step,
  .contact {
    padding: 20px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .workflow-card,
  .visual-panel {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-visual {
    display: grid;
    align-content: end;
    gap: 16px;
  }

  .orb-large {
    width: 180px;
    height: 180px;
    right: 16px;
    top: 16px;
  }

  .orb-small {
    width: 88px;
    height: 88px;
    left: 12px;
    bottom: 12px;
  }
}
