:root {
  --paper: #f5f1f4;
  --paper-strong: #ffffff;
  --paper-soft: #fbf8fb;
  --ink: #2b2930;
  --muted: #69636c;
  --line: rgba(47, 39, 53, 0.1);
  --line-strong: rgba(47, 39, 53, 0.16);
  --blue: #6668f2;
  --violet: #8859d8;
  --pink: #c56b99;
  --coral: #e6776e;
  --gold: #c48a4c;
  --shadow: 0 24px 60px rgba(58, 41, 63, 0.12);
  --radius: 28px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(102, 104, 242, 0.18), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(197, 107, 153, 0.18), transparent 24%),
    radial-gradient(circle at 20% 78%, rgba(230, 119, 110, 0.12), transparent 22%),
    linear-gradient(180deg, #f7f4f7 0%, #f4eff3 45%, #faf7fa 100%);
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 247, 0.8);
  border-bottom: 1px solid rgba(47, 39, 53, 0.08);
}

.header-row,
.footer-row,
.cta-box,
.two-column {
  display: flex;
  gap: 2rem;
}

.header-row,
.footer-row {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark {
  --mark-size: 72px;
  position: relative;
  width: var(--mark-size);
  height: var(--mark-size);
  flex: 0 0 var(--mark-size);
}

.brand-mark-large {
  --mark-size: 188px;
}

.brand-arm {
  position: absolute;
  width: 18%;
  height: 54%;
  border-radius: 999px;
  opacity: 0.92;
}

.arm-top-left {
  top: 6%;
  left: 17%;
  background: var(--blue);
  transform: rotate(45deg);
}

.arm-top-right {
  top: 6%;
  right: 17%;
  background: var(--pink);
  transform: rotate(-45deg);
}

.arm-bottom-left {
  bottom: 6%;
  left: 17%;
  background: var(--violet);
  transform: rotate(-45deg);
}

.arm-bottom-right {
  right: 17%;
  bottom: 6%;
  background: var(--coral);
  transform: rotate(45deg);
}

.brand-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: var(--paper-strong);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.28);
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-text strong,
.nav a,
h1,
h2,
h3,
.product-flag,
.hero-wordmark strong,
.step span {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-links a:hover,
.doc-link:hover {
  color: var(--ink);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-flag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(102, 104, 242, 0.16), rgba(197, 107, 153, 0.18));
  border: 1px solid rgba(102, 104, 242, 0.18);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 8vw, 6rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-copy,
.section-heading p,
.card p,
.content-block p,
.step p,
.cta-box p,
.legal-card p,
.legal-card li,
.feature-list,
.text-list {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.hero-tags,
.hero-actions,
.doc-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-tags {
  margin-top: 1.5rem;
}

.hero-tags span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(72, 51, 79, 0.05);
  font-size: 0.92rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button,
.doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.doc-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2e2a33, #4d3e59);
  box-shadow: 0 16px 30px rgba(50, 40, 57, 0.18);
}

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

.hero-stage,
.hero-panel,
.card,
.content-block,
.step,
.legal-card,
.cta-box {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stage,
.legal-card,
.cta-box {
  border-radius: calc(var(--radius) + 8px);
}

.hero-stage {
  position: relative;
  padding: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 246, 0.92)),
    linear-gradient(135deg, rgba(102, 104, 242, 0.08), rgba(197, 107, 153, 0.06));
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 104, 242, 0.14), transparent 70%);
}

.hero-stage-top {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.hero-wordmark {
  display: grid;
  gap: 0.35rem;
}

.hero-wordmark strong {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.hero-wordmark span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-panel,
.card,
.content-block,
.step {
  border-radius: var(--radius);
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.84);
}

.hero-panel {
  margin-top: 1.75rem;
}

.panel-label,
.card-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-label {
  color: var(--pink);
}

.card-kicker {
  color: var(--blue);
}

.feature-list,
.text-list {
  margin: 0;
  padding-left: 1.1rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.card-grid,
.steps {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--coral));
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(197, 107, 153, 0.06));
  border-top: 1px solid rgba(47, 39, 53, 0.06);
  border-bottom: 1px solid rgba(47, 39, 53, 0.06);
}

.two-column {
  align-items: stretch;
}

.two-column > * {
  flex: 1 1 0;
}

.doc-link {
  background: linear-gradient(135deg, rgba(102, 104, 242, 0.12), rgba(197, 107, 153, 0.12));
  border: 1px solid rgba(102, 104, 242, 0.14);
}

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

.step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 104, 242, 0.18), rgba(230, 119, 110, 0.16));
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-cta {
  padding-top: 0;
}

.cta-box {
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: linear-gradient(135deg, #2d2a32, #4f405b);
}

.cta-box > * {
  flex: 1 1 0;
}

.section-cta .eyebrow,
.section-cta h2,
.section-cta strong,
.section-cta p {
  color: #ffffff;
}

.section-cta p {
  opacity: 0.84;
}

.contact-list p {
  margin: 0 0 0.75rem;
}

.section-contact {
  padding-top: 0;
}

.contact-card {
  max-width: 780px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.5rem 0 2.6rem;
}

.site-footer p {
  color: var(--muted);
}

.legal-body .section {
  padding-top: 4rem;
}

.legal-layout {
  max-width: 920px;
}

.legal-card {
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.86);
}

.legal-card h2 {
  max-width: none;
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal-card a {
  color: var(--blue);
}

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

.info-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.75);
}

.info-box h2 {
  max-width: none;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.data-request-form {
  margin-top: 1.5rem;
}

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

.field {
  display: grid;
  gap: 0.55rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  outline: none;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(102, 104, 242, 0.5);
  box-shadow: 0 0 0 4px rgba(102, 104, 242, 0.08);
}

.check-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
  color: var(--muted);
}

.check-row input {
  margin-top: 0.2rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.legal-note,
.form-status {
  margin: 1rem 0 0;
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .header-row,
  .footer-row,
  .cta-box,
  .two-column,
  .hero-stage-top {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .steps,
  .info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: none;
  }

  .site-header {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 3.6rem 0;
  }

  .hero-stage,
  .hero-panel,
  .card,
  .content-block,
  .step,
  .legal-card,
  .cta-box {
    padding: 1.3rem;
  }

  .brand-mark {
    --mark-size: 60px;
  }

  .brand-mark-large {
    --mark-size: 132px;
  }

  .nav {
    gap: 0.8rem;
  }
}
