:root {
  --bg: #f6f9fc;
  --paper: #ffffff;
  --ink: #0a2540;
  --muted: #53657d;
  --soft: #e7edf6;
  --line: rgba(10, 37, 64, 0.12);
  --blue: #635bff;
  --sky: #00d4ff;
  --teal: #00c6a7;
  --violet: #8d6bff;
  --rose: #ff5f8f;
  --amber: #ffb445;
  --green: #24b47e;
  --shadow: 0 24px 80px rgba(10, 37, 64, 0.14);
  --shadow-soft: 0 16px 44px rgba(10, 37, 64, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(99, 91, 255, 0.1), transparent 38%),
    linear-gradient(18deg, rgba(0, 212, 255, 0.1), transparent 42%),
    var(--bg);
}

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

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

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--teal));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 50px rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: linear-gradient(145deg, #fff, #e9f2ff);
  box-shadow: inset 0 0 0 1px rgba(99, 91, 255, 0.18), 0 10px 24px rgba(99, 91, 255, 0.18);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #41546d;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: #fff;
  background: #0a2540;
  box-shadow: 0 16px 34px rgba(10, 37, 64, 0.22);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), #2746ff 42%, #0a2540);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.button-primary:hover::before {
  opacity: 1;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.11);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  gap: 42px;
  min-height: 860px;
  padding: 92px 0 72px;
}

.hero-shutters {
  position: absolute;
  inset: -110px -18vw auto -18vw;
  z-index: -1;
  height: 620px;
  overflow: hidden;
  pointer-events: none;
}

.shutter {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: saturate(1.12);
  transform: skewY(-11deg) translateZ(0);
  transform-origin: center;
}

.shutter-one {
  top: 48px;
  left: -4vw;
  width: 73vw;
  height: 150px;
  background: linear-gradient(90deg, #00d4ff, #635bff 48%, #ff5f8f);
}

.shutter-two {
  top: 196px;
  right: -8vw;
  width: 65vw;
  height: 124px;
  background: linear-gradient(90deg, #24b47e, #00d4ff 42%, #8d6bff);
  opacity: 0.78;
}

.shutter-three {
  top: 338px;
  left: 20vw;
  width: 42vw;
  height: 86px;
  background: linear-gradient(90deg, #ffb445, #ff5f8f);
  opacity: 0.74;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding-top: 42px;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.no-break {
  display: inline-block;
  white-space: nowrap;
}

h2 {
  max-width: 840px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  font-size: 23px;
  line-height: 1.15;
  font-weight: 800;
}

.hero-lead {
  max-width: 680px;
  margin-top: 28px;
  color: #42526a;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.mobile-br {
  display: none;
}

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

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: #31445e;
  font-size: 15px;
  font-weight: 650;
}

.hero-bullets li {
  position: relative;
  padding-left: 22px;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 760px;
  margin-top: 24px;
}

.hero-proof span,
.hero-proof strong {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.05);
  font-size: 13px;
  line-height: 1.2;
}

.hero-proof span {
  color: var(--blue);
  font-weight: 900;
}

.hero-proof strong {
  color: #31445e;
  font-weight: 800;
}

.hero-product {
  position: relative;
  min-width: 0;
  align-self: center;
  min-height: 620px;
  perspective: 1200px;
}

.phone-stage {
  position: absolute;
  top: 10px;
  right: 42px;
  width: 330px;
}

.phone {
  position: relative;
  width: 100%;
  min-height: 652px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(145deg, #071a2e, #203b5b);
  box-shadow: 0 42px 100px rgba(10, 37, 64, 0.28);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(44, 84, 120, 0.78) 0 3px, transparent 4px),
    #06182a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(7, 26, 46, 0.28);
  transform: translateX(-50%);
  pointer-events: none;
}

.phone::after {
  content: "";
  position: absolute;
  top: 104px;
  right: -4px;
  width: 4px;
  height: 74px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #102d4d, #071a2e);
  opacity: 0.86;
}

.phone-top {
  display: none;
}

.app-screen {
  min-height: 628px;
  padding: 58px 18px 18px;
  border-radius: 38px;
  background:
    linear-gradient(155deg, rgba(99, 91, 255, 0.24), transparent 38%),
    linear-gradient(20deg, rgba(0, 212, 255, 0.18), transparent 36%),
    #f8fbff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.app-bar,
.app-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-bar {
  color: #5f6f87;
  font-size: 13px;
  font-weight: 800;
}

.app-dot {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.balance-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #635bff, #0a2540);
  box-shadow: 0 24px 50px rgba(99, 91, 255, 0.26);
}

.balance-card span,
.balance-card small {
  display: block;
}

.balance-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.balance-card strong {
  display: block;
  margin-top: 8px;
  font-size: 38px;
  line-height: 1;
}

.balance-card small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.balance-card button {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  color: #0a2540;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.app-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.app-list > div {
  justify-content: flex-start;
  gap: 12px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(10, 37, 64, 0.06);
}

.mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.mini-icon.teal {
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.mini-icon.violet {
  background: linear-gradient(135deg, var(--violet), var(--rose));
}

.mini-icon.amber {
  background: linear-gradient(135deg, var(--amber), #ff7a59);
}

.app-list strong,
.app-list small {
  display: block;
}

.app-list strong {
  font-size: 14px;
}

.app-list small {
  color: var(--muted);
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 200px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  will-change: transform;
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-card strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.float-one {
  top: 120px;
  left: 6px;
}

.float-two {
  right: 0;
  bottom: 74px;
  width: 230px;
}

.lead-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 14px;
  margin-top: -12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.lead-card h2 {
  grid-column: 1 / -1;
  font-size: 26px;
}

.lead-card > p:not(.form-note) {
  grid-column: 1 / -1;
  max-width: 760px;
  color: var(--muted);
}

.lead-card label {
  display: grid;
  gap: 7px;
  color: #3c4d63;
  font-size: 13px;
  font-weight: 800;
}

.lead-card input[type="text"],
.lead-card input[type="tel"],
.questionnaire-form input,
.questionnaire-form select,
.questionnaire-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 37, 64, 0.14);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-card input[type="text"],
.lead-card input[type="tel"],
.questionnaire-form input,
.questionnaire-form select {
  height: 52px;
  padding: 0 16px;
}

.questionnaire-form textarea {
  min-height: 112px;
  padding: 14px 16px;
  resize: vertical;
}

.lead-card input:focus,
.questionnaire-form input:focus,
.questionnaire-form select:focus,
.questionnaire-form textarea:focus {
  border-color: rgba(99, 91, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.14);
}

.lead-card .consent {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.form-note.is-error {
  color: #c2364f;
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.questionnaire-page {
  min-height: 100vh;
}

.questionnaire-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.questionnaire-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.questionnaire-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 72px);
}

.questionnaire-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.questionnaire-form,
.success-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.questionnaire-form label {
  display: grid;
  gap: 8px;
  color: #3c4d63;
  font-size: 13px;
  font-weight: 800;
}

.questionnaire-form .wide {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  margin-top: 18px;
  color: var(--muted) !important;
  font-weight: 650 !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.success-panel {
  display: grid;
  gap: 18px;
}

.success-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.success-panel p {
  color: var(--muted);
  font-size: 18px;
}

.band {
  position: relative;
  margin-top: 42px;
  padding: 90px 56px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), var(--shadow-soft);
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 74%;
  height: 260px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), rgba(99, 91, 255, 0.15), rgba(255, 95, 143, 0.12));
  transform: skewY(-10deg);
  pointer-events: none;
}

.section-heading {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.section-number {
  display: inline-flex;
  width: max-content;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.metric-grid,
.duties-grid,
.payout-grid,
.material-grid,
.case-grid,
.trust-metrics,
.rules-grid,
.app-feature-grid {
  display: grid;
  gap: 16px;
}

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

.metric-grid article,
.payout-card,
.material-grid article,
.case-grid article,
.trust-metrics article,
.rules-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(10, 37, 64, 0.06);
}

.metric-grid article {
  padding: 22px;
}

.metric-grid strong,
.trust-metrics strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.metric-grid span,
.trust-metrics span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.fit,
.duties,
.payouts,
.source-partners,
.materials,
.cases,
.rules,
.final-cta {
  padding-top: 106px;
}

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

.audience-card {
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.audience-card.accent {
  background:
    linear-gradient(150deg, rgba(99, 91, 255, 0.12), transparent 44%),
    linear-gradient(20deg, rgba(0, 212, 255, 0.12), transparent 42%),
    #fff;
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 16px 32px rgba(99, 91, 255, 0.22);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

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

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag-cloud span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #38506b;
  background: #edf3fb;
  font-size: 13px;
  font-weight: 750;
}

.timeline-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 190px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  font-weight: 900;
}

.steps strong {
  font-size: 18px;
}

.steps p,
.stat-card p {
  color: var(--muted);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(135deg, #0a2540, #392f9b 62%, #635bff);
  box-shadow: 0 22px 54px rgba(10, 37, 64, 0.18);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.05;
}

.stat-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

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

.duties-grid article {
  min-height: 282px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(99, 91, 255, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(10, 37, 64, 0.06);
}

.duties-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.duties-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.14;
}

.duties-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.duties-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(99, 91, 255, 0.22);
  border-radius: 18px;
  color: #24326b;
  background: rgba(99, 91, 255, 0.08);
}

.duties-note strong {
  flex: 0 0 auto;
}

.safety-grid,
.payout-clarity,
.material-examples {
  display: grid;
  gap: 14px;
}

.safety-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.safety-grid article,
.payout-clarity article,
.material-examples article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(10, 37, 64, 0.06);
}

.safety-grid article {
  min-height: 210px;
  padding: 24px;
}

.safety-grid strong,
.payout-clarity span,
.material-examples span {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.safety-grid strong {
  font-size: 21px;
  line-height: 1.15;
}

.safety-grid p,
.payout-clarity p,
.material-examples p {
  margin-top: 12px;
  color: var(--muted);
}

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

.payout-card {
  min-height: 260px;
  padding: 28px;
}

.payout-card.main {
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, var(--blue), #0a2540);
  box-shadow: 0 24px 70px rgba(99, 91, 255, 0.22);
}

.payout-card span,
.payout-card p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.payout-card.main span,
.payout-card.main p {
  color: rgba(255, 255, 255, 0.78);
}

.payout-card strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.payout-card strong.fit-word {
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.05;
  white-space: nowrap;
}

.payout-card p {
  margin-top: 16px;
  font-weight: 600;
}

.ethics-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 180, 126, 0.25);
  border-radius: 18px;
  color: #126146;
  background: rgba(36, 180, 126, 0.1);
}

.ethics-note strong {
  flex: 0 0 auto;
}

.payout-clarity {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.payout-clarity article {
  min-height: 156px;
  padding: 20px;
}

.payout-clarity span {
  color: var(--blue);
  font-size: 14px;
}

.payout-clarity p {
  font-size: 14px;
}

.app-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
}

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

.app-feature-grid div {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.app-feature-grid strong,
.app-feature-grid span {
  display: block;
}

.app-feature-grid strong {
  font-size: 18px;
}

.app-feature-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.status-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
}

.status-rail span {
  min-height: 58px;
  padding: 12px;
  border-radius: 16px;
  color: #33465f;
  background: #edf4fb;
  font-size: 13px;
  font-weight: 800;
}

.source-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(36, 180, 126, 0.12), transparent 42%),
    linear-gradient(22deg, rgba(0, 212, 255, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.source-panel h2 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.source-panel p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.source-list span {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #31445e;
  font-size: 14px;
  font-weight: 800;
}

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

.material-grid article,
.case-grid article,
.rules-grid article {
  padding: 24px;
}

.material-grid article span,
.case-grid article span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.material-grid strong,
.case-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.18;
}

.material-grid p,
.case-grid p,
.rules-grid p,
.rules-grid li {
  margin-top: 12px;
  color: var(--muted);
}

.material-examples {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.material-examples article {
  min-height: 190px;
  padding: 22px;
}

.material-examples span {
  color: var(--teal);
  font-size: 13px;
  text-transform: uppercase;
}

.material-examples p {
  color: #31445e;
  font-size: 15px;
  font-weight: 650;
}

.training-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.training-card p {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.training-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-card li {
  position: relative;
  padding: 18px 18px 18px 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.training-card li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 20px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
}

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

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.trust-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 850;
}

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

.trust-metrics article {
  min-height: 150px;
  padding: 26px;
}

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

.rules-grid ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.faq-list {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 940px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 68px;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(135deg, #0a2540, #28208e 55%, #635bff);
  box-shadow: 0 28px 80px rgba(10, 37, 64, 0.2);
  overflow: hidden;
}

.final-panel::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 70%;
  height: 210px;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--rose));
  transform: skewY(-12deg);
  opacity: 0.7;
}

.final-panel h2,
.final-panel p,
.final-panel .button {
  position: relative;
}

.final-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.final-panel .button {
  width: max-content;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 54px auto 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand .brand-mark {
  box-shadow: inset 0 0 0 1px rgba(99, 91, 255, 0.18);
}

.reveal-section {
  opacity: 1;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-product {
    min-height: 620px;
  }

  .phone-stage {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .float-one {
    left: calc(50% - 270px);
  }

  .float-two {
    right: calc(50% - 280px);
  }

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

  .lead-card button {
    grid-column: 1 / -1;
  }

  .metric-grid,
  .duties-grid,
  .material-grid,
  .payout-grid,
  .safety-grid,
  .payout-clarity,
  .material-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-panel,
  .app-layout,
  .source-panel,
  .training-card,
  .trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
    border-radius: 22px;
  }

  .site-header .button {
    display: none;
  }

  .section-shell,
  .band,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding: 48px 0 40px;
  }

  .hero-copy {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(29px, 8.1vw, 32px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .mobile-br {
    display: block;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-lead,
  .section-heading p,
  .training-card p,
  .final-panel p {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 330px;
  }

  .hero-bullets,
  .two-column,
  .metric-grid,
  .duties-grid,
  .material-grid,
  .payout-grid,
  .case-grid,
  .trust-metrics,
  .rules-grid,
  .app-feature-grid,
  .status-rail {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 540px;
    transform: scale(0.84);
    transform-origin: top center;
  }

  .phone-stage {
    width: min(330px, 100%);
  }

  .floating-card {
    display: none;
  }

  .lead-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 20px;
  }

  .lead-card .button {
    width: 100%;
  }

  .lead-card .consent {
    grid-column: auto;
  }

  .band {
    margin-top: 24px;
    padding: 58px 18px;
    border-radius: 24px;
  }

  .fit,
  .duties,
  .payouts,
  .source-partners,
  .materials,
  .cases,
  .rules,
  .final-cta {
    padding-top: 66px;
  }

  .audience-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .steps li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .steps p {
    grid-column: 2;
  }

  .ethics-note,
  .duties-note,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .safety-grid,
  .payout-clarity,
  .material-examples,
  .source-list {
    grid-template-columns: 1fr;
  }

  .source-panel {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .final-panel {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .questionnaire-shell {
    width: calc(100% - 24px);
    padding-top: 48px;
  }

  .questionnaire-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .questionnaire-form,
  .success-panel {
    padding: 18px;
    border-radius: 20px;
  }

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

  .form-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-section {
    opacity: 1;
  }
}
