@font-face {
  font-family: "Geist";
  src: url("public/assets/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --violet: #bc9bff;
  --violet-strong: #8f68f2;
  --ink: #2d2b37;
  --ink-deep: #15131a;
  --brown: #2e0504;
  --muted: #696773;
  --soft-muted: #9a98a2;
  --paper: #f7f5f6;
  --paper-warm: #fbf8f8;
  --white: #ffffff;
  --line: rgba(32, 29, 38, 0.1);
  --line-strong: rgba(32, 29, 38, 0.16);
  --blue-soft: #edf5ff;
  --blue: #77a9ff;
  --peach-soft: #fff1e6;
  --peach: #ff8b4a;
  --violet-soft: #f2eaff;
  --green: #24c287;
  --shadow-soft: 0 24px 70px rgba(36, 31, 43, 0.1);
  --shadow-card: 0 18px 40px rgba(38, 33, 45, 0.1), 0 2px 4px rgba(38, 33, 45, 0.05);
  --shadow-tight: 0 8px 18px rgba(38, 33, 45, 0.12), 0 1px 2px rgba(38, 33, 45, 0.08);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 229, 231, 0.9), rgba(255, 255, 255, 0) 34rem),
    var(--paper);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  width: min(100%, 1920px);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100% - 160px, 1620px);
  margin: 0 auto;
  padding: 88px 0 40px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: #292a33;
  font-size: 38px;
  font-weight: 640;
  letter-spacing: -0.05em;
}

.brand-symbol {
  position: relative;
  width: 34px;
  height: 52px;
  border-radius: 2px;
  background: #30323a;
}

.brand-symbol::before {
  content: "";
  position: absolute;
  inset: 6px 8px;
  border-radius: 999px;
  background: var(--paper-warm);
}

.brand-symbol::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 2px;
  background: var(--paper-warm);
  transform: translateX(-1px);
}

.brand-symbol span {
  display: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 4px rgba(26, 23, 31, 0.06),
    0 0 0 5px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
}

.nav-pill a {
  padding: 11px 22px;
  border-radius: 13px;
  color: rgba(45, 43, 55, 0.68);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: background 160ms ease, color 160ms ease;
}

.nav-pill a:hover {
  background: rgba(188, 155, 255, 0.12);
  color: var(--ink);
}

.header-login {
  justify-self: end;
}

.button-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.035em;
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  user-select: none;
}

.button-3d:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.button-3d:active {
  transform: translateY(2px);
}

.button-dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%),
    #2f292d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 18px rgba(0, 0, 0, 0.18),
    0 6px 0 #191518,
    0 24px 28px rgba(34, 28, 31, 0.34);
}

.button-dark:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 18px rgba(0, 0, 0, 0.18),
    0 2px 0 #191518,
    0 14px 18px rgba(34, 28, 31, 0.28);
}

.button-violet {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
    #8667f5;
  border-color: rgba(107, 78, 217, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -10px 18px rgba(92, 62, 214, 0.18),
    0 6px 0 #6546d4,
    0 24px 34px rgba(126, 91, 248, 0.34);
}

.button-peach {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
    #ff8a4b;
  border-color: rgba(222, 108, 47, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -10px 18px rgba(198, 83, 31, 0.22),
    0 6px 0 #dd6833,
    0 24px 34px rgba(255, 130, 69, 0.32);
}

.hero {
  position: relative;
  min-height: 980px;
  padding: 134px 32px 88px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -170px 0 auto;
  height: 860px;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34rem),
    linear-gradient(180deg, rgba(255, 235, 238, 0.68), rgba(255, 255, 255, 0) 90%);
  z-index: -1;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.trust-line {
  width: 86px;
  height: 1px;
  background: rgba(255, 137, 152, 0.58);
}

.trust-pill,
.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 6px 16px;
  border: 1px solid rgba(32, 29, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #292833;
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(32, 28, 38, 0.11);
  backdrop-filter: blur(14px);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack span {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(32, 29, 38, 0.12);
}

.avatar-stack span:first-child {
  margin-left: 0;
  background:
    radial-gradient(circle at 50% 38%, #302d35 0 5px, transparent 6px),
    radial-gradient(circle at 50% 96%, #302d35 0 13px, transparent 14px),
    #f1d7c3;
}

.avatar-stack span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 5px, transparent 6px),
    radial-gradient(circle at 50% 96%, #ffffff 0 13px, transparent 14px),
    #2f3340;
}

.avatar-stack span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 38%, #302d35 0 5px, transparent 6px),
    radial-gradient(circle at 50% 96%, #302d35 0 13px, transparent 14px),
    #cbb6ff;
}

.hero h1 {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  color: #33303b;
  font-size: clamp(58px, 7.1vw, 128px);
  font-weight: 590;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero h1 > span:last-child {
  display: block;
  color: rgba(49, 45, 60, 0.78);
  margin-top: 14px;
}

.floating-tile {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 24px;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 44%),
    #3a3540;
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.18),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22),
    0 7px 0 #222029,
    0 22px 28px rgba(26, 21, 30, 0.38);
  vertical-align: 15px;
  transform: rotate(-4deg);
}

.floating-tile-main {
  top: -8px;
}

.mini-chart {
  position: relative;
  width: 52px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.62);
  border-radius: 7px;
}

.mini-chart::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.mini-chart i {
  position: absolute;
  bottom: 13px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.mini-chart i:nth-child(1) {
  left: 10px;
  height: 13px;
}

.mini-chart i:nth-child(2) {
  left: 21px;
  height: 24px;
}

.mini-chart i:nth-child(3) {
  left: 32px;
  height: 17px;
}

.mini-chart i:nth-child(4) {
  left: 42px;
  height: 31px;
}

.hero-copy {
  max-width: 560px;
  margin: 44px auto 28px;
  color: rgba(45, 43, 55, 0.66);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.hero-cta {
  margin-top: 14px;
}

.hero-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(100% - 32px, 1370px);
  margin: 150px auto 0;
  text-align: left;
}

.intro-card {
  min-height: 560px;
  padding: 12px;
  border: 1px solid rgba(34, 30, 39, 0.13);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.intro-card-blue {
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  border-color: rgba(119, 169, 255, 0.22);
}

.intro-card-violet {
  background: linear-gradient(180deg, #ffffff 0%, #f4eaff 100%);
  border-color: rgba(188, 155, 255, 0.3);
}

.intro-card-peach {
  background: linear-gradient(180deg, #ffffff 0%, #fff0e5 100%);
  border-color: rgba(255, 139, 74, 0.23);
}

.card-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.card-stage::before {
  content: "";
  position: absolute;
  inset: auto 12% -22% 12%;
  height: 42%;
  border-radius: 999px;
  background: rgba(188, 155, 255, 0.1);
  filter: blur(12px);
}

.empty-product,
.empty-ring,
.empty-label,
.empty-badge,
.signal-chip,
.floating-stat,
.deploy-list strong {
  box-shadow: var(--shadow-tight);
}

.product-window {
  position: relative;
  width: 210px;
  height: 170px;
  border: 1px solid rgba(35, 31, 43, 0.08);
  border-radius: 28px;
  background: #fff;
  z-index: 2;
}

.product-window span {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 14px;
  border-radius: 999px;
  background: #eef3fb;
}

.product-window span:first-child {
  top: 42px;
}

.product-window span:nth-child(2) {
  top: 76px;
  right: 68px;
}

.product-window span:nth-child(3) {
  top: 110px;
  right: 96px;
  background: rgba(188, 155, 255, 0.18);
}

.soft-orb {
  position: absolute;
  width: 180px;
  height: 82px;
  bottom: 82px;
  border-radius: 999px;
  border: 10px solid rgba(119, 169, 255, 0.14);
  filter: blur(0.2px);
}

.product-card {
  position: relative;
  width: 280px;
  height: 114px;
  border: 1px solid rgba(35, 31, 43, 0.08);
  border-radius: 19px;
  background: #fff;
  z-index: 2;
}

.product-card span:first-child {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #151319;
}

.product-card span:nth-child(2),
.product-card small {
  position: absolute;
  left: 88px;
  height: 12px;
  border-radius: 999px;
  background: #eef0f5;
}

.product-card span:nth-child(2) {
  top: 34px;
  width: 145px;
}

.product-card small {
  top: 60px;
  width: 104px;
}

.empty-badge {
  position: absolute;
  left: 50%;
  bottom: 64px;
  width: 180px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
}

.empty-badge::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
}

.empty-ring {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 999px;
  background:
    conic-gradient(from -25deg, var(--peach) 0 26%, #dce1ea 26% 100%);
  z-index: 2;
}

.empty-ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  background: #d6dbe4;
  box-shadow: inset 0 12px 20px rgba(68, 75, 89, 0.1);
}

.empty-ring span {
  position: absolute;
  inset: 58px;
  border-radius: inherit;
  background: #eef1f5;
  z-index: 1;
}

.empty-label {
  position: absolute;
  top: 62px;
  width: 182px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.intro-card-copy {
  padding: 34px 24px 18px;
}

.intro-card-copy h2 {
  display: inline;
  margin: 0;
  color: #2c2d38;
  font-size: 28px;
  font-weight: 620;
  letter-spacing: -0.055em;
}

.intro-card-copy p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(45, 43, 55, 0.62);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 650;
  background: var(--violet);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  vertical-align: 3px;
}

.intro-card-blue .card-index {
  background: #78aaff;
}

.intro-card-peach .card-index {
  background: #ffb083;
}

.section-heading {
  width: min(100% - 48px, 820px);
  margin: 120px auto 72px;
  text-align: center;
}

.section-heading-spaced {
  margin-top: 170px;
}

.section-pill {
  min-height: 48px;
  padding: 8px 22px;
  color: #f2a7a8;
  font-size: 20px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.section-heading p {
  max-width: 650px;
  margin: 28px auto 0;
  color: rgba(45, 43, 55, 0.62);
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 116px;
  width: min(100% - 210px, 1500px);
  margin: 0 auto 120px;
}

.feature-row-reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
}

.feature-visual {
  position: relative;
  min-height: 610px;
  border-radius: 40px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(34, 30, 39, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.visual-blue {
  background: linear-gradient(135deg, #ffffff 0%, #e8f2ff 100%);
}

.visual-violet {
  background: linear-gradient(135deg, #ffffff 0%, #eee7ff 100%);
}

.visual-peach {
  background: linear-gradient(135deg, #ffffff 0%, #ffe7d5 100%);
}

.visual-frame {
  position: absolute;
  inset: 92px auto auto 50%;
  width: min(72%, 430px);
  min-height: 440px;
  padding: 28px;
  border: 1px solid rgba(34, 30, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 46px rgba(48, 42, 57, 0.11);
  transform: translateX(-50%);
}

.queue-card {
  display: grid;
  gap: 18px;
}

.queue-header {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #82adff;
  font-size: 16px;
}

.queue-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #82adff;
  box-shadow: 0 0 18px rgba(130, 173, 255, 0.8);
}

.queue-header strong {
  font-weight: 620;
}

.queue-header small {
  margin-left: auto;
  color: rgba(59, 64, 78, 0.45);
  font-weight: 560;
}

.queue-item {
  display: grid;
  grid-template-columns: 46px 1fr 58px;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(38, 33, 45, 0.08);
}

.queue-item i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #82adff;
}

.queue-item span,
.queue-item em {
  height: 12px;
  border-radius: 999px;
  background: #e9eef7;
}

.queue-item em {
  height: 10px;
  opacity: 0.75;
}

.feature-copy h3 {
  margin: 0;
  color: #121827;
  font-size: clamp(48px, 4.6vw, 76px);
  font-weight: 570;
  line-height: 1.04;
  letter-spacing: -0.078em;
}

.feature-copy h3 span {
  color: var(--violet-strong);
}

.feature-copy p {
  max-width: 620px;
  margin: 28px 0 36px;
  color: rgba(45, 43, 55, 0.62);
  font-size: 27px;
  line-height: 1.44;
  letter-spacing: -0.05em;
}

.storefront-frame {
  inset: 82px 56px auto 56px;
  width: auto;
  min-height: 450px;
  transform: none;
}

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

.store-grid span {
  min-height: 160px;
  border: 1px solid rgba(188, 155, 255, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(188, 155, 255, 0.3), rgba(255, 255, 255, 0.82)),
    #fff;
  box-shadow: 0 14px 24px rgba(98, 80, 130, 0.08);
}

.store-grid span:nth-child(4) {
  background: var(--violet);
}

.signal-frame {
  inset: 112px auto auto 50%;
  min-height: 350px;
}

.signal-chip {
  position: absolute;
  top: -18px;
  left: 50%;
  padding: 9px 18px;
  border-radius: 999px;
  color: #955235;
  background: #fff;
  transform: translateX(-50%);
  font-weight: 570;
}

.signal-card {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 150px;
  height: 150px;
  border-radius: 32px;
  background: #ff8845;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 24px 36px rgba(255, 120, 60, 0.28);
  transform: translate(-50%, -50%);
}

.signal-card::before,
.signal-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 2px;
  background: rgba(255, 139, 74, 0.28);
}

.signal-card::before {
  right: 100%;
}

.signal-card::after {
  left: 100%;
}

.signal-card span {
  position: absolute;
  inset: 44px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-bottom-color: transparent;
  border-radius: 999px;
}

.process-frame,
.testimonial-frame {
  position: relative;
  display: grid;
  width: min(100% - 160px, 1720px);
  margin: 0 auto;
  border: 1px solid rgba(34, 30, 39, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.46),
    var(--shadow-soft);
}

.process-frame {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 32px;
}

.screw {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(34, 30, 39, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 35%, #fff, #d9dce2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 1px 1px rgba(33, 30, 39, 0.14);
}

.screw-tl {
  top: 13px;
  left: 13px;
}

.screw-tr {
  top: 13px;
  right: 13px;
}

.screw-bl {
  bottom: 13px;
  left: 13px;
}

.screw-br {
  bottom: 13px;
  right: 13px;
}

.process-card {
  min-height: 620px;
  padding: 28px 36px 46px;
  border: 1px solid rgba(34, 30, 39, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(38, 33, 45, 0.06);
}

.process-card:first-of-type {
  border-radius: 28px 0 0 28px;
}

.process-card:last-of-type {
  border-radius: 0 28px 28px 0;
}

.process-violet {
  background: linear-gradient(180deg, #fff 0%, #f2ecff 100%);
}

.process-peach {
  background: linear-gradient(180deg, #fff 0%, #fff3ea 100%);
}

.process-blue {
  background: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
}

.process-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 340px;
  margin-bottom: 42px;
  border: 1px solid rgba(34, 30, 39, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.node-icon {
  width: 118px;
  height: 118px;
  border-radius: 25px;
  background: #8c86e9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 18px 24px rgba(112, 94, 220, 0.3);
}

.node-icon::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 52px;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.node-icon::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: #8c86e9;
  transform: translate(-8%, -50%);
}

.node-grid {
  position: absolute;
  left: 50%;
  bottom: 52px;
  display: flex;
  gap: 54px;
  transform: translateX(-50%);
}

.node-grid i {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-tight);
}

.arc-meter {
  position: absolute;
  bottom: -40px;
  width: 350px;
  height: 180px;
  border-radius: 350px 350px 0 0;
  border: 28px solid rgba(188, 155, 255, 0.18);
  border-bottom: 0;
}

.arc-meter span {
  position: absolute;
  inset: -28px;
  border-radius: inherit;
  border: 28px solid transparent;
  border-bottom: 0;
}

.arc-meter span:nth-child(1) {
  border-left-color: rgba(188, 155, 255, 0.52);
}

.arc-meter span:nth-child(2) {
  border-top-color: rgba(255, 139, 74, 0.5);
}

.arc-meter span:nth-child(3) {
  border-right-color: rgba(119, 169, 255, 0.46);
}

.floating-stat {
  position: absolute;
  top: 46px;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 44px;
  min-width: 300px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #fff;
  transform: translateX(-50%);
}

.floating-stat strong {
  color: var(--peach);
  font-size: 32px;
  font-weight: 600;
}

.floating-stat small {
  color: rgba(45, 43, 55, 0.45);
}

.deploy-list {
  display: grid;
  gap: 18px;
  width: 330px;
}

.deploy-list span {
  height: 78px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 20px rgba(38, 33, 45, 0.08);
}

.deploy-list strong {
  display: flex;
  align-items: center;
  height: 88px;
  padding: 0 28px;
  border-radius: 18px;
  color: #fff;
  background: #37c69d;
  font-size: 32px;
  font-weight: 650;
}

.process-card h3 {
  margin: 0 0 24px;
  color: #111827;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.process-card p {
  margin: 0;
  color: rgba(52, 60, 78, 0.62);
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.testimonial-frame {
  grid-template-columns: minmax(0, 2.3fr) minmax(320px, 0.96fr);
  gap: 14px;
  padding: 28px;
}

.main-testimonial,
.portrait-placeholder {
  min-height: 640px;
  border: 1px solid rgba(34, 30, 39, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(38, 33, 45, 0.08);
}

.main-testimonial {
  padding: 58px 64px;
}

.quote-mark {
  display: block;
  color: rgba(45, 43, 55, 0.14);
  font-size: 120px;
  line-height: 0.8;
  font-weight: 500;
}

.testimonial-placeholder {
  display: grid;
  gap: 22px;
  width: 78%;
  margin-top: 92px;
}

.testimonial-placeholder span {
  height: 28px;
  border-radius: 999px;
  background: #eceff5;
}

.testimonial-placeholder span:nth-child(2) {
  width: 88%;
}

.testimonial-placeholder span:nth-child(3) {
  width: 52%;
}

.testimonial-progress {
  width: 200px;
  height: 6px;
  margin-top: 130px;
  border-radius: 999px;
  background: #e5e5e8;
}

.testimonial-progress span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: #2c2a2f;
}

.portrait-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(188, 155, 255, 0.1), rgba(255, 139, 74, 0.12)),
    #eee;
}

.portrait-placeholder span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 30px 48px rgba(36, 31, 43, 0.13);
  transform: translate(-50%, -50%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: min(100% - 160px, 1720px);
  margin: 42px auto 0;
}

.review-card {
  min-height: 300px;
  padding: 40px 44px;
  border: 1px solid rgba(34, 30, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.review-card-soft {
  background: rgba(249, 247, 255, 0.88);
}

.review-card-tall {
  min-height: 420px;
}

.stars {
  color: #ffad1d;
  font-size: 32px;
  letter-spacing: 0.06em;
}

.review-card p {
  margin: 32px 0 34px;
  color: rgba(45, 43, 55, 0.78);
  font-size: 22px;
  line-height: 1.56;
  letter-spacing: -0.035em;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-person span {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #e7ecf4;
  box-shadow: var(--shadow-tight);
}

.review-person strong {
  display: block;
  color: #282832;
  font-size: 18px;
  font-weight: 620;
}

.review-person small {
  color: rgba(45, 43, 55, 0.55);
  font-size: 16px;
}

.faq-section {
  padding: 40px 0 150px;
}

.faq-list {
  display: grid;
  gap: 30px;
  width: min(100% - 160px, 1080px);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(34, 30, 39, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  color: #111827;
  font-size: 30px;
  font-weight: 560;
  letter-spacing: -0.055em;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #111827;
  font-size: 44px;
  font-weight: 420;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: -12px 40px 38px;
  max-width: 800px;
  color: #748097;
  font-size: 25px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.final-cta {
  position: relative;
  min-height: 680px;
  padding: 130px 32px 250px;
  text-align: center;
  background:
    radial-gradient(circle at 24% 70%, rgba(188, 155, 255, 0.36), rgba(188, 155, 255, 0) 28rem),
    radial-gradient(circle at 74% 62%, rgba(119, 169, 255, 0.35), rgba(119, 169, 255, 0) 29rem),
    linear-gradient(120deg, rgba(188, 155, 255, 0.22), rgba(255, 232, 220, 0.18) 48%, rgba(119, 169, 255, 0.22));
}

.final-cta h2 {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(46, 43, 57, 0.88);
  font-size: clamp(58px, 6.4vw, 112px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.08em;
}

.final-cta p {
  max-width: 540px;
  margin: 32px auto 36px;
  color: rgba(45, 43, 55, 0.62);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.cta-tile-left,
.cta-tile-right {
  position: absolute;
  margin: 0;
}

.cta-tile-left {
  left: 14%;
  top: 160px;
  transform: rotate(-7deg);
}

.cta-tile-right {
  right: 14%;
  top: 160px;
  transform: rotate(8deg);
}

.mini-route {
  width: 50px;
  height: 40px;
  border-radius: 10px;
  border: 3px solid transparent;
  border-left-color: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.72);
  transform: rotate(-24deg);
}

.mini-route::before,
.mini-route::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.mini-route::before {
  top: -8px;
  left: -10px;
}

.mini-route::after {
  bottom: -9px;
  right: -10px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(640px, 1.4fr);
  gap: 100px;
  width: calc(100% - 100px);
  min-height: 520px;
  margin: -190px auto 52px;
  padding: 76px 74px 0;
  border-radius: 92px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 -1px 0 rgba(255, 255, 255, 0.74),
    0 26px 70px rgba(38, 33, 45, 0.08);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.footer-brand p {
  max-width: 370px;
  margin: 34px 0 0;
  color: rgba(45, 43, 55, 0.64);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;
}

.footer-links h3 {
  margin: 0 0 26px;
  color: #151620;
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.05em;
}

.footer-links a {
  display: block;
  margin: 0 0 18px;
  color: rgba(45, 43, 55, 0.42);
  font-size: 19px;
  font-weight: 520;
  letter-spacing: -0.035em;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: rgba(45, 43, 55, 0.78);
}

.footer-word {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: -180px;
  display: block;
  color: var(--brown);
  font-size: clamp(190px, 31vw, 620px);
  font-weight: 780;
  line-height: 0.8;
  letter-spacing: -0.12em;
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .site-header {
    width: min(100% - 64px, 1120px);
    padding-top: 48px;
  }

  .brand-mark {
    font-size: 30px;
  }

  .nav-pill a {
    padding: 10px 15px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-bento,
  .feature-row,
  .process-frame,
  .testimonial-frame,
  .review-grid,
  .faq-list {
    width: min(100% - 56px, 1120px);
  }

  .feature-row,
  .feature-row-reverse {
    gap: 60px;
  }

  .site-footer {
    width: calc(100% - 56px);
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-pill {
    order: 3;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .hero {
    padding-inline: 20px;
  }

  .floating-tile {
    width: 64px;
    height: 64px;
    margin: 0 10px;
    border-radius: 16px;
    vertical-align: 8px;
  }

  .mini-chart {
    width: 38px;
    height: 32px;
    border-width: 2px;
  }

  .hero-bento,
  .feature-row,
  .feature-row-reverse,
  .process-frame,
  .testimonial-frame,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-card {
    min-height: 480px;
  }

  .feature-row,
  .feature-row-reverse {
    width: min(100% - 40px, 720px);
    margin-bottom: 80px;
  }

  .feature-visual {
    min-height: 520px;
  }

  .process-card:first-of-type,
  .process-card:last-of-type {
    border-radius: 28px;
  }

  .process-card {
    border-radius: 28px;
    min-height: 520px;
  }

  .main-testimonial,
  .portrait-placeholder {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  body {
    background: var(--paper);
  }

  .site-header {
    width: min(100% - 28px, 520px);
    padding-top: 26px;
  }

  .brand-mark {
    gap: 10px;
    font-size: 26px;
  }

  .brand-symbol {
    width: 26px;
    height: 40px;
  }

  .header-login {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 15px;
  }

  .nav-pill {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-pill a {
    white-space: nowrap;
  }

  .hero {
    padding: 70px 14px 54px;
  }

  .trust-line {
    display: none;
  }

  .trust-pill {
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-bento,
  .feature-row,
  .feature-row-reverse,
  .process-frame,
  .testimonial-frame,
  .review-grid,
  .faq-list {
    width: min(100% - 28px, 520px);
  }

  .intro-card,
  .feature-visual,
  .process-card,
  .main-testimonial,
  .portrait-placeholder,
  .review-card,
  .faq-item {
    border-radius: 24px;
  }

  .intro-card {
    min-height: 420px;
  }

  .card-stage {
    min-height: 270px;
  }

  .section-heading {
    width: min(100% - 28px, 520px);
    margin-top: 80px;
  }

  .section-heading h2,
  .feature-copy h3 {
    letter-spacing: -0.065em;
  }

  .section-heading p,
  .feature-copy p,
  .process-card p,
  .faq-item p {
    font-size: 19px;
  }

  .feature-visual {
    min-height: 420px;
  }

  .visual-frame,
  .storefront-frame,
  .signal-frame {
    inset: 48px 24px auto;
    width: auto;
    min-height: 320px;
    transform: none;
  }

  .process-frame,
  .testimonial-frame {
    padding: 18px;
  }

  .process-card {
    min-height: 420px;
    padding: 22px;
  }

  .process-visual {
    height: 250px;
  }

  .testimonial-placeholder {
    width: 100%;
    margin-top: 40px;
  }

  .main-testimonial {
    padding: 34px 28px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 26px 26px;
    font-size: 22px;
  }

  .faq-item p {
    margin: -8px 26px 28px;
  }

  .final-cta {
    padding-top: 90px;
  }

  .cta-tile-left,
  .cta-tile-right {
    display: none;
  }

  .site-footer {
    width: calc(100% - 28px);
    margin-bottom: 24px;
    padding: 42px 28px 0;
    border-radius: 42px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-word {
    bottom: -58px;
  }
}

/* Compact marketing structure, closer to Aside's restraint */
:root {
  --rail-width: min(1180px, calc(100% - 72px));
  --rail-x: max(36px, calc((100% - 1180px) / 2));
}

.site-header {
  padding-top: 58px;
  padding-bottom: 28px;
}

.brand-mark {
  font-size: 31px;
}

.brand-symbol {
  width: 28px;
  height: 43px;
}

.nav-pill {
  padding: 6px;
  border-radius: 16px;
}

.nav-pill a {
  padding: 9px 17px;
  border-radius: 11px;
  font-size: 16px;
}

.button-3d {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 15px;
  font-size: 16px;
}

.button-dark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -8px 14px rgba(0, 0, 0, 0.16),
    0 5px 0 #191518,
    0 18px 22px rgba(34, 28, 31, 0.25);
}

.hero {
  min-height: 720px;
  padding: 96px 32px 58px;
}

.hero::before {
  height: 600px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 28rem),
    linear-gradient(180deg, rgba(255, 246, 247, 0.58), rgba(255, 255, 255, 0) 88%);
}

.trust-row {
  margin-bottom: 34px;
}

.trust-pill,
.section-pill {
  min-height: 36px;
  padding: 5px 13px;
  font-size: 14px;
}

.trust-line {
  width: 72px;
  opacity: 0.65;
}

.avatar-stack span {
  width: 22px;
  height: 22px;
}

.hero h1 {
  max-width: 890px;
  font-size: clamp(46px, 5.05vw, 86px);
  font-weight: 470;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.floating-tile {
  width: 66px;
  height: 66px;
  margin: 0 17px;
  border-radius: 17px;
  vertical-align: 10px;
}

.mini-chart {
  width: 39px;
  height: 33px;
  border-width: 2px;
}

.hero-copy {
  max-width: 520px;
  margin-top: 30px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.52;
}

.hero-bento {
  gap: 22px;
  margin-top: 92px;
}

.intro-card {
  min-height: 405px;
  padding: 10px;
  border-radius: 24px;
}

.card-stage {
  min-height: 245px;
  border-radius: 18px;
}

.intro-card-copy {
  padding: 24px 20px 12px;
}

.intro-card-copy h2 {
  font-size: 22px;
  font-weight: 520;
}

.intro-card-copy p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.card-index {
  width: 28px;
  height: 28px;
  margin-right: 9px;
  border-radius: 8px;
  font-size: 16px;
}

.product-window {
  width: 160px;
  height: 130px;
  border-radius: 21px;
}

.product-window span {
  left: 22px;
  right: 22px;
  height: 10px;
}

.product-window span:first-child {
  top: 32px;
}

.product-window span:nth-child(2) {
  top: 58px;
  right: 52px;
}

.product-window span:nth-child(3) {
  top: 84px;
  right: 74px;
}

.product-card {
  width: 215px;
  height: 90px;
  border-radius: 16px;
}

.product-card span:first-child {
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.product-card span:nth-child(2),
.product-card small {
  left: 70px;
}

.product-card span:nth-child(2) {
  top: 27px;
  width: 112px;
}

.product-card small {
  top: 50px;
  width: 78px;
}

.empty-ring {
  width: 132px;
  height: 132px;
}

.empty-ring::before {
  inset: 17px;
}

.empty-ring span {
  inset: 45px;
}

.intro-statement {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 72px;
  width: var(--rail-width);
  margin: 20px auto 0;
  padding: 86px 0 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-link {
  align-self: start;
  width: max-content;
  color: rgba(45, 43, 55, 0.48);
  font-size: 15px;
  font-weight: 460;
  letter-spacing: -0.02em;
}

.intro-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--violet);
}

.intro-text {
  display: grid;
  gap: 26px;
  max-width: 830px;
}

.intro-text p {
  margin: 0;
  color: rgba(45, 43, 55, 0.78);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 430;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.intro-text p + p {
  color: rgba(45, 43, 55, 0.54);
}

.advantage-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: var(--rail-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.advantage-strip article {
  min-height: 210px;
  padding: 34px 34px 38px;
  border-left: 1px solid var(--line);
}

.advantage-strip article:last-child {
  border-right: 1px solid var(--line);
}

.advantage-strip span {
  display: block;
  margin-bottom: 30px;
  color: rgba(188, 155, 255, 0.96);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.advantage-strip h2 {
  max-width: 270px;
  margin: 0 0 12px;
  color: #2e2b35;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.052em;
}

.advantage-strip p {
  max-width: 285px;
  margin: 0;
  color: rgba(45, 43, 55, 0.52);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.section-heading {
  margin-top: 92px;
  margin-bottom: 56px;
}

.section-heading-spaced {
  margin-top: 118px;
}

.section-pill {
  margin-bottom: 26px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(34px, 3.35vw, 54px);
  line-height: 1.08;
}

.section-heading p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.42;
}

.feature-row,
.feature-row-reverse {
  gap: 70px;
  margin-bottom: 82px;
}

.feature-row {
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.82fr);
}

.feature-row-reverse {
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 0.98fr);
}

.feature-visual {
  min-height: 440px;
  border-radius: 30px;
}

.visual-frame {
  inset: 62px auto auto 50%;
  width: min(68%, 340px);
  min-height: 310px;
  padding: 22px;
  border-radius: 22px;
}

.queue-item {
  min-height: 58px;
  grid-template-columns: 36px 1fr 42px;
  gap: 12px;
  padding: 11px;
  border-radius: 15px;
}

.queue-item i {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.feature-copy h3 {
  font-size: clamp(34px, 3.45vw, 54px);
  line-height: 1.08;
}

.feature-copy p {
  max-width: 470px;
  margin: 22px 0 28px;
  font-size: 19px;
  line-height: 1.45;
}

.storefront-frame {
  inset: 54px 46px auto;
  min-height: 320px;
}

.store-grid {
  gap: 14px;
}

.store-grid span {
  min-height: 112px;
  border-radius: 16px;
}

.signal-frame {
  inset: 66px auto auto 50%;
  min-height: 280px;
}

.signal-card {
  width: 118px;
  height: 118px;
  border-radius: 26px;
}

.process-frame {
  padding: 22px;
}

.process-card {
  min-height: 430px;
  padding: 22px 26px 34px;
}

.process-visual {
  height: 230px;
  margin-bottom: 30px;
}

.process-card h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.process-card p {
  font-size: 18px;
}

.testimonial-frame {
  padding: 22px;
}

.main-testimonial,
.portrait-placeholder {
  min-height: 440px;
  border-radius: 24px;
}

.main-testimonial {
  padding: 40px 46px;
}

.quote-mark {
  font-size: 86px;
}

.testimonial-placeholder {
  margin-top: 56px;
}

.testimonial-placeholder span {
  height: 20px;
}

.testimonial-progress {
  margin-top: 78px;
}

.review-grid {
  gap: 22px;
  margin-top: 30px;
}

.review-card {
  min-height: 230px;
  padding: 30px 34px;
  border-radius: 22px;
}

.review-card-tall {
  min-height: 330px;
}

.stars {
  font-size: 24px;
}

.review-card p {
  margin: 24px 0 26px;
  font-size: 18px;
}

.faq-section {
  padding-bottom: 112px;
}

.faq-list {
  gap: 18px;
}

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

.faq-item summary {
  padding: 28px 34px;
  font-size: 24px;
}

.faq-item p {
  margin: -8px 34px 30px;
  font-size: 19px;
}

.final-cta {
  min-height: 520px;
  padding: 104px 32px 210px;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(44px, 4.8vw, 82px);
}

.site-footer {
  min-height: 410px;
  margin-top: -160px;
  padding: 58px 58px 0;
  border-radius: 64px;
}

.footer-word {
  bottom: -136px;
}

@media (max-width: 1280px) {
  :root {
    --rail-width: min(100% - 64px, 1080px);
    --rail-x: max(32px, calc((100% - 1080px) / 2));
  }
}

@media (max-width: 980px) {
  :root {
    --rail-width: min(100% - 40px, 720px);
    --rail-x: 20px;
  }

  .intro-statement,
  .advantage-strip {
    grid-template-columns: 1fr;
  }

  .intro-statement {
    gap: 28px;
    padding: 56px 0;
  }

  .advantage-strip article {
    min-height: auto;
    border-right: 1px solid var(--line);
  }

  .hero-bento {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --rail-width: min(100% - 28px, 520px);
    --rail-x: 14px;
  }

  .site-header {
    padding-top: 24px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

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

  .intro-text p {
    font-size: 24px;
    letter-spacing: -0.045em;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-visual {
    min-height: 360px;
  }
}

/* Top use-cases: compact Aside-style cards with Corya visuals */
:root {
  --frame-width: min(1460px, calc(100% - 56px));
  --rail-width: min(1120px, calc(100% - 180px));
  --rail-x: max(28px, calc((100% - 1460px) / 2));
}

.site-header,
.hero-bento,
.intro-statement,
.advantage-strip,
.feature-row,
.feature-row-reverse,
.process-frame,
.testimonial-frame,
.review-grid,
.faq-list {
  width: var(--rail-width);
}

.site-footer {
  width: calc(var(--rail-width) + 4px);
}

.hero {
  padding-bottom: 42px;
}

.usecase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 118px;
  text-align: left;
}

.usecase-card {
  min-width: 0;
}

.usecase-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: none;
}

.usecase-card p {
  max-width: 92%;
  margin: 24px 0 0;
  color: rgba(45, 43, 55, 0.52);
  font-size: 22px;
  font-weight: 390;
  line-height: 1.34;
  letter-spacing: -0.045em;
}

.usecase-card strong {
  color: #17161c;
  font-weight: 540;
}

.intro-statement {
  margin-top: 64px;
}

@media (max-width: 1280px) {
  :root {
    --frame-width: min(100% - 48px, 1240px);
    --rail-width: min(100% - 110px, 1040px);
    --rail-x: max(24px, calc((100% - 1240px) / 2));
  }

  .usecase-card p {
    font-size: 20px;
  }
}

@media (max-width: 980px) {
  :root {
    --frame-width: min(100% - 32px, 840px);
    --rail-width: min(100% - 64px, 720px);
    --rail-x: 16px;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .usecase-image {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 640px) {
  :root {
    --frame-width: min(100% - 20px, 560px);
    --rail-width: min(100% - 44px, 520px);
    --rail-x: 10px;
  }

  .usecase-grid {
    margin-top: 76px;
  }

  .usecase-card p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 18px;
  }
}

/* Text color discipline: keep copy neutral, reserve violet for interface accents */
.feature-copy h3 span,
.section-heading h2 span,
.final-cta h2 span {
  color: inherit;
}

.section-pill,
.intro-link,
.intro-link::after,
.advantage-strip span,
.queue-header {
  color: rgba(45, 43, 55, 0.52);
}

.queue-header span {
  background: rgba(45, 43, 55, 0.28);
  box-shadow: none;
}

/* Hero atmosphere: soft Corya violet/pink wash, not flashy */
.site-shell {
  background:
    linear-gradient(90deg, transparent 0 calc(var(--rail-x) - 1px), rgba(34, 31, 40, 0.07) calc(var(--rail-x) - 1px) var(--rail-x), transparent var(--rail-x) calc(100% - var(--rail-x)), rgba(34, 31, 40, 0.07) calc(100% - var(--rail-x)) calc(100% - var(--rail-x) + 1px), transparent calc(100% - var(--rail-x) + 1px)),
    radial-gradient(ellipse at 50% 0%, rgba(188, 155, 255, 0.18), rgba(188, 155, 255, 0) 36rem),
    radial-gradient(ellipse at 24% 8%, rgba(255, 202, 226, 0.32), rgba(255, 202, 226, 0) 28rem),
    radial-gradient(ellipse at 78% 12%, rgba(241, 210, 255, 0.28), rgba(241, 210, 255, 0) 30rem),
    #fbfaf9;
}

.hero::before {
  inset: -260px var(--rail-x) auto;
  height: 950px;
  border-radius: 0 0 84px 84px;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 27rem),
    radial-gradient(ellipse at 50% 8%, rgba(188, 155, 255, 0.24), rgba(188, 155, 255, 0) 34rem),
    radial-gradient(ellipse at 28% 22%, rgba(255, 194, 223, 0.34), rgba(255, 194, 223, 0) 30rem),
    radial-gradient(ellipse at 74% 24%, rgba(221, 202, 255, 0.34), rgba(221, 202, 255, 0) 31rem),
    linear-gradient(180deg, rgba(255, 246, 250, 0.92), rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: var(--rail-x);
  right: var(--rail-x);
  height: 760px;
  pointer-events: none;
  background-image: radial-gradient(rgba(42, 35, 48, 0.055) 0.75px, transparent 0.75px);
  background-size: 11px 11px;
  mask-image: radial-gradient(ellipse at 50% 28%, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0) 68%);
  opacity: 0.42;
  z-index: -1;
}

.site-header {
  color: #211d24;
}

.brand-mark {
  color: rgba(32, 27, 32, 0.86);
}

.nav-pill {
  background: rgba(255, 255, 255, 0.62);
}

/* Absolute final override: the gradient lives only inside the main hero panel */
.hero {
  min-height: auto;
  padding: 38px 0 42px;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero-panel {
  position: relative;
  width: var(--rail-width);
  min-height: 655px;
  margin: 52px auto 0;
  padding: 118px 48px 88px;
  border: 1px solid rgba(34, 31, 40, 0.055);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 118%, rgba(188, 155, 255, 0.82), rgba(188, 155, 255, 0.34) 28%, rgba(188, 155, 255, 0.08) 48%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse at 26% 72%, rgba(255, 199, 226, 0.35), rgba(255, 199, 226, 0) 46%),
    radial-gradient(ellipse at 75% 72%, rgba(210, 190, 255, 0.36), rgba(210, 190, 255, 0) 46%),
    linear-gradient(180deg, #fff 0%, #fffafd 34%, #f7efff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 42px rgba(55, 43, 74, 0.04);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -38%;
  height: 72%;
  background: radial-gradient(ellipse at 50% 62%, rgba(188, 155, 255, 0.64), rgba(188, 155, 255, 0.2) 35%, rgba(188, 155, 255, 0) 70%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at 50% 74%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 72%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.hero-panel .trust-row {
  margin-bottom: 34px;
}

.hero-panel h1 {
  max-width: 900px;
}

.hero-panel .hero-copy {
  margin-bottom: 26px;
}

.usecase-grid {
  margin-top: 74px;
}

@media (max-width: 980px) {
  .hero-panel {
    min-height: 580px;
    padding: 90px 28px 70px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 20px;
  }

  .hero-panel {
    width: var(--rail-width);
    min-height: 520px;
    margin-top: 34px;
    padding: 72px 20px 58px;
    border-radius: 24px;
  }
}

/* Final gutters, after every other width rule */
:root {
  --frame-width: min(1460px, calc(100% - 56px));
  --rail-width: min(1120px, calc(100% - 220px));
  --rail-x: max(28px, calc((100% - 1460px) / 2));
}

.site-header,
.hero-panel,
.hero-bento,
.intro-statement,
.advantage-strip,
.feature-row,
.feature-row-reverse,
.process-frame,
.testimonial-frame,
.review-grid,
.faq-list,
.site-footer {
  width: var(--rail-width);
}

@media (max-width: 1280px) {
  :root {
    --frame-width: min(100% - 48px, 1240px);
    --rail-width: min(100% - 128px, 1040px);
    --rail-x: max(24px, calc((100% - 1240px) / 2));
  }
}

@media (max-width: 980px) {
  :root {
    --frame-width: min(100% - 32px, 840px);
    --rail-width: min(100% - 72px, 720px);
    --rail-x: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --frame-width: min(100% - 20px, 560px);
    --rail-width: min(100% - 36px, 520px);
    --rail-x: 10px;
  }
}

/* Final gutters: rails are the frame, content sits comfortably inside */
:root {
  --frame-width: min(1460px, calc(100% - 56px));
  --rail-width: min(1120px, calc(100% - 220px));
  --rail-x: max(28px, calc((100% - 1460px) / 2));
}

.site-header,
.hero-panel,
.hero-bento,
.intro-statement,
.advantage-strip,
.feature-row,
.feature-row-reverse,
.process-frame,
.testimonial-frame,
.review-grid,
.faq-list {
  width: var(--rail-width);
}

.site-footer {
  width: var(--rail-width);
}

@media (max-width: 1280px) {
  :root {
    --frame-width: min(100% - 48px, 1240px);
    --rail-width: min(100% - 128px, 1040px);
    --rail-x: max(24px, calc((100% - 1240px) / 2));
  }
}

@media (max-width: 980px) {
  :root {
    --frame-width: min(100% - 32px, 840px);
    --rail-width: min(100% - 72px, 720px);
    --rail-x: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --frame-width: min(100% - 20px, 560px);
    --rail-width: min(100% - 36px, 520px);
    --rail-x: 10px;
  }
}

/* Hero gradient panel only: matches the requested top title area */
.hero {
  min-height: auto;
  padding: 38px 0 42px;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-panel {
  position: relative;
  width: var(--rail-width);
  min-height: 655px;
  margin: 52px auto 0;
  padding: 118px 48px 88px;
  border: 1px solid rgba(34, 31, 40, 0.055);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 118%, rgba(188, 155, 255, 0.82), rgba(188, 155, 255, 0.34) 28%, rgba(188, 155, 255, 0.08) 48%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse at 26% 72%, rgba(255, 199, 226, 0.35), rgba(255, 199, 226, 0) 46%),
    radial-gradient(ellipse at 75% 72%, rgba(210, 190, 255, 0.36), rgba(210, 190, 255, 0) 46%),
    linear-gradient(180deg, #fff 0%, #fffafd 34%, #f7efff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 42px rgba(55, 43, 74, 0.04);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -38%;
  height: 72%;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(188, 155, 255, 0.64), rgba(188, 155, 255, 0.2) 35%, rgba(188, 155, 255, 0) 70%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at 50% 74%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 72%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.hero-panel .trust-row {
  margin-bottom: 34px;
}

.hero-panel h1 {
  max-width: 900px;
}

.hero-panel .hero-copy {
  margin-bottom: 26px;
}

.usecase-grid {
  margin-top: 74px;
}

@media (max-width: 980px) {
  .hero-panel {
    min-height: 580px;
    padding: 90px 28px 70px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 20px;
  }

  .hero-panel {
    width: var(--rail-width);
    min-height: 520px;
    margin-top: 34px;
    padding: 72px 20px 58px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .hero::before,
  .hero::after {
    left: var(--rail-x);
    right: var(--rail-x);
  }
}

.feature-copy h3 {
  color: #201b20;
}

/* Aside-like refinement: calmer rails, lighter typography, cleaner surface */
:root {
  --rail-width: min(1360px, calc(100% - 56px));
  --rail-x: max(28px, calc((100% - 1360px) / 2));
  --paper: #fbfaf9;
  --paper-warm: #fbfaf9;
  --brown: #231719;
  --ink: #2d2b34;
  --line: rgba(34, 31, 40, 0.085);
  --line-strong: rgba(34, 31, 40, 0.13);
  --shadow-soft: 0 18px 48px rgba(36, 31, 43, 0.07);
  --shadow-card: 0 12px 30px rgba(38, 33, 45, 0.075), 0 1px 2px rgba(38, 33, 45, 0.045);
  --shadow-tight: 0 7px 16px rgba(38, 33, 45, 0.095), 0 1px 2px rgba(38, 33, 45, 0.055);
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(188, 155, 255, 0.055), rgba(255, 255, 255, 0) 32rem),
    #fbfaf9;
}

.site-shell {
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 0 calc(var(--rail-x) - 1px), rgba(34, 31, 40, 0.07) calc(var(--rail-x) - 1px) var(--rail-x), transparent var(--rail-x) calc(100% - var(--rail-x)), rgba(34, 31, 40, 0.07) calc(100% - var(--rail-x)) calc(100% - var(--rail-x) + 1px), transparent calc(100% - var(--rail-x) + 1px)),
    #fbfaf9;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  left: calc(var(--rail-x) + 1px);
}

.site-shell::after {
  right: calc(var(--rail-x) + 1px);
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.site-header,
.hero-bento,
.feature-row,
.feature-row-reverse,
.process-frame,
.testimonial-frame,
.review-grid,
.faq-list {
  width: var(--rail-width);
}

.site-header {
  padding-top: 78px;
}

.brand-mark {
  font-weight: 560;
  letter-spacing: -0.045em;
}

.nav-pill {
  border-color: rgba(34, 31, 40, 0.11);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 1px 2px rgba(26, 23, 31, 0.06),
    0 0 0 4px rgba(255, 255, 255, 0.42);
}

.nav-pill a {
  color: rgba(45, 43, 55, 0.62);
  font-weight: 430;
}

.button-3d {
  font-weight: 540;
  letter-spacing: -0.028em;
}

.hero {
  min-height: 920px;
  padding-top: 116px;
}

.hero::before {
  height: 760px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 32rem),
    linear-gradient(180deg, rgba(255, 244, 245, 0.62), rgba(255, 255, 255, 0) 88%);
}

.trust-row {
  margin-bottom: 42px;
}

.trust-pill,
.section-pill {
  font-weight: 470;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 7px 15px rgba(32, 28, 38, 0.08);
}

.hero h1 {
  max-width: 1060px;
  color: #312f38;
  font-size: clamp(54px, 6.35vw, 112px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.062em;
}

.hero h1 > span:last-child {
  color: rgba(49, 45, 60, 0.76);
}

.hero-copy {
  max-width: 545px;
  margin-top: 38px;
  color: rgba(45, 43, 55, 0.6);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.floating-tile {
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.16),
    inset 0 -9px 16px rgba(0, 0, 0, 0.18),
    0 6px 0 #242129,
    0 20px 24px rgba(26, 21, 30, 0.28);
}

.hero-bento {
  margin-top: 128px;
}

.intro-card,
.feature-visual,
.process-card,
.main-testimonial,
.portrait-placeholder,
.review-card,
.faq-item,
.site-footer {
  border-color: rgba(34, 31, 40, 0.085);
}

.intro-card-copy h2,
.process-card h3,
.review-person strong,
.footer-links h3 {
  font-weight: 540;
}

.section-heading {
  margin-top: 112px;
}

.section-heading h2,
.feature-copy h3,
.final-cta h2 {
  font-weight: 500;
  letter-spacing: -0.058em;
}

.section-heading h2 {
  color: #27191b;
  font-size: clamp(40px, 4.15vw, 66px);
}

.section-heading p {
  color: rgba(45, 43, 55, 0.58);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.feature-copy h3 {
  color: #171a22;
  font-size: clamp(44px, 4.25vw, 68px);
}

.feature-copy p {
  color: rgba(45, 43, 55, 0.58);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.process-card p,
.review-card p,
.faq-item p,
.footer-brand p,
.footer-links a {
  color: rgba(45, 43, 55, 0.58);
}

.faq-item summary {
  font-weight: 500;
  letter-spacing: -0.045em;
}

.final-cta {
  background:
    radial-gradient(circle at 22% 70%, rgba(188, 155, 255, 0.18), rgba(188, 155, 255, 0) 28rem),
    radial-gradient(circle at 76% 62%, rgba(119, 169, 255, 0.16), rgba(119, 169, 255, 0) 29rem),
    #fbfaf9;
}

.site-footer {
  width: calc(var(--rail-width) + 4px);
  background: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1280px) {
  :root {
    --rail-width: min(100% - 64px, 1120px);
    --rail-x: max(24px, calc((100% - 1120px) / 2));
  }
}

@media (max-width: 980px) {
  :root {
    --rail-width: min(100% - 40px, 720px);
    --rail-x: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --rail-width: min(100% - 28px, 520px);
    --rail-x: 14px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 66px);
    font-weight: 500;
    letter-spacing: -0.056em;
  }

  .section-heading h2,
  .feature-copy h3,
  .final-cta h2 {
    font-weight: 500;
    letter-spacing: -0.052em;
  }
}

/* Final text color pass: no colored words inside headlines */
.feature-copy h3,
.feature-copy h3 span,
.section-heading h2,
.section-heading h2 span,
.final-cta h2,
.final-cta h2 span {
  color: #201b20;
}

.section-pill,
.intro-link,
.intro-link::after,
.advantage-strip span,
.queue-header {
  color: rgba(45, 43, 55, 0.52);
}

.queue-header span {
  background: rgba(45, 43, 55, 0.28);
  box-shadow: none;
}

/* Final hero atmosphere pass: visible Corya wash at the top */
.site-shell {
  background:
    linear-gradient(90deg, transparent 0 calc(var(--rail-x) - 1px), rgba(34, 31, 40, 0.07) calc(var(--rail-x) - 1px) var(--rail-x), transparent var(--rail-x) calc(100% - var(--rail-x)), rgba(34, 31, 40, 0.07) calc(100% - var(--rail-x)) calc(100% - var(--rail-x) + 1px), transparent calc(100% - var(--rail-x) + 1px)),
    #fbfaf9;
}

.hero::before {
  inset: 158px var(--rail-x) auto;
  height: 620px;
  border-radius: 46px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.14) 48%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse at 31% 38%, rgba(255, 194, 223, 0.32), rgba(255, 194, 223, 0) 42%),
    radial-gradient(ellipse at 70% 34%, rgba(188, 155, 255, 0.24), rgba(188, 155, 255, 0) 45%),
    linear-gradient(180deg, rgba(255, 246, 250, 0.46), rgba(255, 255, 255, 0));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 180px;
  left: calc(var(--rail-x) + 80px);
  right: calc(var(--rail-x) + 80px);
  height: 500px;
  pointer-events: none;
  background-image: radial-gradient(rgba(42, 35, 48, 0.055) 0.75px, transparent 0.75px);
  background-size: 11px 11px;
  mask-image: radial-gradient(ellipse at 50% 42%, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0) 70%);
  opacity: 0.28;
  z-index: -1;
}

.brand-mark {
  color: rgba(32, 27, 32, 0.86);
}

.nav-pill {
  background: rgba(255, 255, 255, 0.62);
}

/* Absolute final override: gradient panel only around the main title and CTA */
.hero {
  min-height: auto;
  padding: 38px 0 42px;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero-panel {
  position: relative;
  width: var(--rail-width);
  min-height: 655px;
  margin: 52px auto 0;
  padding: 118px 48px 88px;
  border: 1px solid rgba(34, 31, 40, 0.055);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 118%, rgba(188, 155, 255, 0.82), rgba(188, 155, 255, 0.34) 28%, rgba(188, 155, 255, 0.08) 48%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse at 26% 72%, rgba(255, 199, 226, 0.35), rgba(255, 199, 226, 0) 46%),
    radial-gradient(ellipse at 75% 72%, rgba(210, 190, 255, 0.36), rgba(210, 190, 255, 0) 46%),
    linear-gradient(180deg, #fff 0%, #fffafd 34%, #f7efff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 42px rgba(55, 43, 74, 0.04);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -38%;
  height: 72%;
  background: radial-gradient(ellipse at 50% 62%, rgba(188, 155, 255, 0.64), rgba(188, 155, 255, 0.2) 35%, rgba(188, 155, 255, 0) 70%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at 50% 74%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 72%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.hero-panel .trust-row {
  margin-bottom: 34px;
}

.hero-panel h1 {
  max-width: 900px;
}

.hero-panel .hero-copy {
  margin-bottom: 26px;
}

.usecase-grid {
  margin-top: 74px;
}

@media (max-width: 980px) {
  .hero-panel {
    min-height: 580px;
    padding: 90px 28px 70px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 20px;
  }

  .hero-panel {
    width: var(--rail-width);
    min-height: 520px;
    margin-top: 34px;
    padding: 72px 20px 58px;
    border-radius: 24px;
  }
}
