:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --ink: #122033;
  --muted: #5f6f85;
  --line: #dfe7f2;
  --primary: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --primary-soft: #e8f1ff;
  --accent: #2563eb;
  --accent-soft: #eaf2ff;
  --warning: #b86b00;
  --shadow: 0 24px 70px rgba(18, 32, 51, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 231, 242, 0.8);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav__inner {
  width: min(var(--max), calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 132px;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav__links a:hover {
  color: var(--primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

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

.btn--primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(23, 105, 224, 0.24);
}

.btn--primary:hover {
  background: #0f5fce;
}

.btn--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.24);
}

.btn--large {
  min-height: 52px;
  padding-inline: 24px;
}

.btn--pulse {
  animation: softPulse 2.6s ease-in-out infinite;
}

.btn--ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn--dark {
  color: #fff;
  background: #13243a;
}

.section {
  padding: 92px 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 112px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(96, 165, 250, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.hero--partner {
  background:
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(29, 78, 216, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.hero--affiliate {
  background:
    radial-gradient(circle at 14% 12%, rgba(59, 130, 246, 0.2), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(255, 149, 41, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(23, 105, 224, 0.18);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(18, 32, 51, 0.06);
}

.eyebrow--accent {
  color: var(--primary-dark);
  border-color: rgba(59, 130, 246, 0.22);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

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

.hero h1 {
  margin-top: 22px;
  max-width: 680px;
  font-size: clamp(40px, 3.65vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__copy {
  margin-top: 20px;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 21px);
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__note {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.lead-card,
.roi-box {
  margin-top: 28px;
  max-width: 640px;
  padding: 20px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.09);
}

.math-box {
  margin-top: 22px;
  max-width: 610px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 105, 224, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.08);
}

.math-box strong {
  display: block;
  color: var(--primary-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.math-calc {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(19px, 1.9vw, 26px);
  font-weight: 920;
  line-height: 1.2;
}

.math-calc span {
  color: var(--primary);
  white-space: nowrap;
}

.math-note {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.trust-strip {
  margin-top: 20px;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: 14px;
  color: #18314f;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(18, 32, 51, 0.05);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 780;
}

.lead-card strong,
.roi-box strong {
  display: block;
  color: var(--primary-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lead-card span,
.roi-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.roi-calc {
  margin-top: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.highlight-big {
  color: var(--primary-dark);
  font-weight: 950;
}

.hero__urgency {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.device-stack {
  position: relative;
  min-height: 500px;
  transform-style: preserve-3d;
  will-change: transform;
}

.browser-frame,
.phone-frame {
  border: 1px solid rgba(223, 231, 242, 0.92);
  background: #fff;
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  will-change: transform;
}

.browser-frame {
  position: absolute;
  top: 26px;
  right: 0;
  width: min(680px, 100%);
  border-radius: 24px;
  overflow: hidden;
}

.browser-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f9fbff;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7dfeb;
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.phone-frame {
  position: absolute;
  left: -14px;
  bottom: 4px;
  width: 214px;
  padding: 10px;
  border-radius: 30px;
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  border-radius: 22px;
}

.photo-panel {
  position: absolute;
  inset: 10px 18px auto auto;
  width: min(390px, 84%);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 242, 0.9);
  background: #fff;
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  will-change: transform;
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 535 / 778;
  object-fit: cover;
}

.mini-screen {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(330px, 66%);
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(223, 231, 242, 0.9);
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 32, 51, 0.14);
  backface-visibility: hidden;
  will-change: transform;
}

.mini-screen img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  right: 16px;
  bottom: 78px;
  max-width: 220px;
  padding: 16px;
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.14);
  backface-visibility: hidden;
  will-change: transform;
}

.floating-card strong {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.floating-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.code-preview-card {
  position: absolute;
  top: 42px;
  right: 0;
  width: min(480px, 100%);
  padding: 30px;
  border: 1px solid rgba(223, 231, 242, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(240,246,255,0.96)),
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.18), transparent 34%);
  box-shadow: var(--shadow);
}

.code-preview-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 18px;
}

.code-sample {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed rgba(59, 130, 246, 0.5);
  border-radius: 18px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.benefits-mini {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

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

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker--accent {
  color: var(--accent);
}

.section-title {
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(18, 32, 51, 0.06);
}

.card h3 {
  margin-top: 14px;
  font-size: 21px;
  letter-spacing: 0;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--primary);
  background: var(--primary-soft);
}

.icon--accent {
  color: var(--accent);
  background: var(--accent-soft);
}

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

.metric {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.metric strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.band {
  background: #13243a;
  color: #fff;
}

.band .section-copy,
.band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.band .card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.band--accent {
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.section-kicker--dark {
  color: #0b2a55;
}

.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

.timeline__item p {
  margin-top: 4px;
  color: var(--muted);
}

.timeline__item strong {
  color: var(--ink);
}

.timeline__number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  font-weight: 850;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.plan {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 32, 51, 0.06);
}

.plan--featured {
  border-color: rgba(23, 105, 224, 0.36);
  box-shadow: 0 24px 64px rgba(23, 105, 224, 0.13);
}

.plan--enterprise {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1fr) auto;
  column-gap: 24px;
  align-items: center;
}

.plan--enterprise small,
.plan--enterprise h3,
.plan--enterprise .plan-note {
  grid-column: 1;
}

.plan--enterprise .enterprise-box {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin-top: 0;
}

.plan--enterprise > .btn {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  min-width: 220px;
  margin-top: 0;
}

.plan small {
  color: var(--muted);
  font-weight: 700;
}

.plan h3 {
  margin-top: 8px;
  font-size: 24px;
}

.plan-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.price {
  margin-top: 18px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.billing-options {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.billing-option {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.82);
}

.billing-option--featured {
  border-color: rgba(23, 105, 224, 0.28);
  background: rgba(23, 105, 224, 0.06);
}

.billing-option span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.billing-option strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.billing-option small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.billing-option em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.billing-option b {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
}

.billing-option .btn {
  margin-top: 4px;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding-inline: 14px;
}

.enterprise-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.82);
}

.enterprise-box strong {
  color: var(--ink);
  font-size: 28px;
}

.enterprise-box span {
  color: var(--muted);
  font-size: 14px;
}

.enterprise-box + .btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.plan ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.plan li,
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan--enterprise {
    grid-template-columns: 1fr;
  }

  .plan--enterprise small,
  .plan--enterprise h3,
  .plan--enterprise .plan-note,
  .plan--enterprise .enterprise-box,
  .plan--enterprise > .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .plan--enterprise .enterprise-box {
    margin-top: 18px;
  }

  .plan--enterprise > .btn {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }
}

.plan li::before,
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 5px var(--primary);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  align-items: start;
}

.section--form-intro {
  padding-top: 76px;
  background:
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 42%),
    radial-gradient(circle at 12% 18%, rgba(59, 130, 246, 0.12), transparent 26%);
}

.partner-terms {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.partner-terms div {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(18, 32, 51, 0.05);
}

.partner-terms strong {
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.partner-terms span {
  color: var(--muted);
  font-weight: 760;
}

.form-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: #2e3d52;
  font-size: 13px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(23, 105, 224, 0.75);
  box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.1);
}

.status-message {
  min-height: 22px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.status-message[hidden] {
  display: none;
}

.status-message--success,
.status-message--error,
.status-message--loading {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.status-message--success {
  color: #075985;
  border: 1px solid rgba(14, 165, 233, 0.28);
  background: #e0f2fe;
}

.status-message--error {
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: #fee2e2;
}

.status-message--loading {
  color: #1e3a8a;
  border: 1px solid rgba(59, 130, 246, 0.24);
  background: #eff6ff;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.field--checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
}

.field--checkbox label {
  color: var(--muted);
  line-height: 1.45;
}

.field--checkbox a {
  color: var(--primary-dark);
  font-weight: 800;
}

.footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #101d30;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer img {
  width: 120px;
}

.footer a {
  color: #fff;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

.partner-split > .commission:only-child {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
}

.commission {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 52px rgba(18, 32, 51, 0.08);
}

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

.profile-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96)),
    radial-gradient(circle at 86% 0%, rgba(59, 130, 246, 0.14), transparent 34%);
  box-shadow: 0 16px 42px rgba(18, 32, 51, 0.07);
}

.profile-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 950;
}

.profile-card h3 {
  margin-top: 20px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.profile-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.commission--wide {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff, #f7faff),
    radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.16), transparent 32%);
}

.commission--wide h3 {
  margin-top: 14px;
}

.commission--wide p {
  margin-top: 10px;
  color: var(--muted);
}

.commission--wide .check-list {
  margin-top: 0;
}

.commission__tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 850;
}

.commission--accent .commission__tag {
  color: var(--accent);
  background: var(--accent-soft);
}

.commission h3 {
  margin-top: 18px;
  font-size: 28px;
}

.commission .rate {
  margin-top: 16px;
  color: var(--primary);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.commission--accent .rate {
  color: var(--accent);
}

.code-preview {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(59, 130, 246, 0.46);
  background: var(--accent-soft);
  font-weight: 850;
  color: var(--primary-dark);
}

.testimonial-card,
.guarantee-box,
.urgency-banner {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.1);
}

.testimonial-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.16);
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.28;
  font-weight: 850;
}

.testimonial-card div {
  color: var(--muted);
  font-weight: 700;
}

.guarantee-box {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
}

.guarantee-box > strong {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(24px, 3vw, 34px);
}

.guarantee-box ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.guarantee-box li {
  margin: 8px 0;
}

.guarantee-box p {
  margin: 18px 0 0;
  color: var(--primary-dark);
  font-weight: 900;
}

.urgency-banner {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: none;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 750;
}

.urgency-banner strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.roi-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.roi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
}

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

.roi-row--header {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 850;
}

.roi-row--highlight {
  background: rgba(59, 130, 246, 0.18);
}

.loss-banner,
.urgency-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 32, 51, 0.08);
}

.band .loss-banner {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.partner-math,
.layers-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.math-card,
.layer,
.example-box,
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 32, 51, 0.06);
}

.math-card small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.math-card strong {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
}

.math-card span,
.layer p,
.example-box li,
.faq-item p {
  color: var(--muted);
}

.layer-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--primary);
  font-weight: 950;
}

.layer strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.layer p {
  margin-top: 8px;
}

.example-box {
  margin-top: 22px;
}

.example-box strong {
  display: block;
  margin-bottom: 12px;
}

.example-box ul {
  margin: 0;
  padding-left: 20px;
}

.example-box--dark {
  color: #fff;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.example-box--dark li {
  color: rgba(255,255,255,.76);
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-item p {
  margin-top: 12px;
}

.faq-list--dark .faq-item {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.faq-list--dark .faq-item summary {
  color: #fff;
}

.faq-list--dark .faq-item p {
  color: rgba(255,255,255,.72);
}

.material-wall--light .material-card {
  border-color: var(--line);
  background:
    linear-gradient(135deg, #ffffff, #f3f7ff),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.18), transparent 32%);
  box-shadow: 0 16px 42px rgba(18, 32, 51, 0.06);
}

.material-wall--light .material-card strong {
  color: var(--ink);
}

.material-wall--light .material-card span {
  color: var(--muted);
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 16px 34px rgba(59, 130, 246, 0.24);
  }
  50% {
    box-shadow: 0 18px 48px rgba(59, 130, 246, 0.38);
  }
}

.material-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.material-card {
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.24), transparent 32%);
}

.material-card strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.material-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .nav__links {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(40px, 7vw, 54px);
  }

  .hero__copy {
    font-size: 20px;
  }

  .section-title {
    font-size: 44px;
  }

  .metric strong {
    font-size: 40px;
  }

  .hero__grid,
  .workflow,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .device-stack {
    min-height: 390px;
  }

  .hero__visual {
    margin-top: 24px;
  }

  .phone-frame {
    left: 0;
    width: 174px;
  }

  .photo-panel {
    width: min(360px, 76%);
  }

  .mini-screen {
    width: min(310px, 66%);
  }

  .floating-card {
    bottom: 54px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .plans,
  .metrics,
  .grid-3,
  .partner-math,
  .partner-audience-grid,
  .layers-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commission--wide {
    grid-template-columns: 1fr;
  }

  .plan--enterprise {
    grid-template-columns: 1fr;
  }

  .plan--enterprise small,
  .plan--enterprise h3,
  .plan--enterprise .plan-note,
  .plan--enterprise .enterprise-box,
  .plan--enterprise > .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .plan--enterprise .enterprise-box {
    margin-top: 18px;
  }

  .plan--enterprise > .btn {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }

  .roi-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav__inner,
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav__inner {
    height: 68px;
  }

  .brand img {
    width: 104px;
  }

  .nav__actions .btn--ghost {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__copy {
    font-size: 18px;
  }

  .section-title {
    font-size: 34px;
  }

  .metric strong {
    font-size: 34px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual,
  .device-stack {
    min-height: 0;
  }

  .hero__visual {
    margin-top: 32px;
  }

  .browser-frame {
    top: 16px;
  }

  .phone-frame {
    width: 130px;
  }

  .floating-card {
    right: 8px;
    bottom: 20px;
    max-width: 178px;
  }

  .photo-panel {
    position: relative;
    inset: auto;
    width: min(330px, 88%);
    margin-left: auto;
  }

  .mini-screen {
    left: 0;
    bottom: 18px;
    width: min(220px, 66%);
  }

  .mini-screen img {
    max-height: 250px;
  }

    .grid-2,
    .grid-3,
    .metrics,
    .plans,
    .partner-split,
    .partner-audience-grid,
    .form-grid,
    .material-wall,
    .partner-math,
    .layers-visual,
    .roi-row {
    grid-template-columns: 1fr;
  }

  .partner-terms div {
    grid-template-columns: 1fr;
  }

  .code-preview-card {
    position: relative;
    top: auto;
    right: auto;
  }

  .section {
    padding: 68px 0;
  }

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