:root {
  --ink: #17121f;
  --ink-soft: #625b6e;
  --paper: #fbf9ff;
  --white: #ffffff;
  --purple-950: #16002d;
  --purple-900: #240046;
  --purple-800: #35006e;
  --purple-700: #5400a8;
  --purple-600: #7414db;
  --purple-500: #9225ed;
  --magenta: #d219e4;
  --pink: #f04bd5;
  --lilac: #eee3ff;
  --mint: #68f3c2;
  --line: rgba(46, 11, 79, 0.12);
  --shadow-lg: 0 34px 90px rgba(42, 0, 84, 0.2);
  --shadow-md: 0 20px 48px rgba(44, 9, 76, 0.12);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --container: 75rem;
  --header-h: 5.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--purple-900);
  border-radius: 0.65rem;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.site-glow {
  position: fixed;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  opacity: 0.13;
}

.site-glow--one {
  top: 16rem;
  left: -16rem;
  background: var(--magenta);
}

.site-glow--two {
  right: -14rem;
  top: 48rem;
  background: var(--purple-500);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  height: 4.5rem;
  background: rgba(22, 0, 45, 0.88);
  box-shadow: 0 12px 30px rgba(12, 0, 27, 0.16);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.85rem;
  box-shadow: 0 9px 24px rgba(13, 0, 29, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.14rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.91rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.72rem 1.1rem;
  color: var(--purple-950);
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  box-shadow: 0 12px 24px rgba(9, 0, 22, 0.22);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.7rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 28%, rgba(213, 25, 231, 0.5), transparent 27%),
    radial-gradient(circle at 82% 22%, rgba(118, 24, 220, 0.34), transparent 30%),
    linear-gradient(135deg, #27004d 0%, #14002b 54%, #080116 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero::after {
  position: absolute;
  right: -20%;
  bottom: -34%;
  width: 70rem;
  height: 70rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(255, 255, 255, 0.018), 0 0 0 16rem rgba(255, 255, 255, 0.012);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 7rem);
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(25rem, 0.94fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  max-width: 43rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.48rem 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.pulse {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(104, 243, 194, 0.5);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 0.45rem rgba(104, 243, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(104, 243, 194, 0); }
}

.hero h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(3.3rem, 6.1vw, 6.35rem);
  font-weight: 850;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, #fff 5%, #e7b9ff 42%, #fb5fd5 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 3.35rem;
  padding: 0.85rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 760;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg,
.demo-action svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

.button:hover svg,
.demo-action:hover svg {
  transform: translateX(3px);
}

.button--primary {
  color: var(--purple-950);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 0, 17, 0.24);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.15rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust svg {
  width: 1rem;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 39rem;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.orbit--outer {
  width: 36rem;
  height: 36rem;
  animation: orbitFloat 12s ease-in-out infinite alternate;
}

.orbit--inner {
  width: 27rem;
  height: 27rem;
  border-style: dashed;
  animation: orbitSpin 34s linear infinite;
}

@keyframes orbitFloat {
  to { transform: scale(1.04) translateY(-0.8rem); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.product-card {
  position: relative;
  z-index: 2;
  width: min(100%, 26rem);
  padding: 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.9rem;
  box-shadow: 0 42px 90px rgba(5, 0, 15, 0.42), inset 0 1px 0 #fff;
  transform: rotate(1.4deg);
  backdrop-filter: blur(24px);
}

.product-card::before {
  position: absolute;
  z-index: -1;
  inset: -0.55rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2.2rem;
}

.product-card__top,
.transaction-head,
.payment-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-card__top {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.mini-brand img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 0.55rem;
}

.secure-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.6rem;
  color: #087553;
  background: #e3fbf2;
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 750;
}

.secure-pill svg {
  width: 0.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transaction-head {
  margin: 1.2rem 0 1rem;
}

.micro-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 650;
}

.transaction-head h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.party-flow {
  padding: 0.8rem 0.4rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
}

.party {
  display: grid;
  place-items: center;
  gap: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
}

.avatar {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: #5f2a86;
  background: #eee5f5;
  border-radius: 0.8rem;
  font-size: 0.75rem;
  font-weight: 850;
}

.avatar--yerles {
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-600), var(--magenta));
  box-shadow: 0 8px 17px rgba(107, 0, 203, 0.28);
}

.avatar--owner {
  color: #0b6c55;
  background: #def8ee;
}

.flow-line {
  height: 1px;
  overflow: hidden;
  background: #ddd3e7;
}

.flow-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--purple-500);
  animation: flow 2s ease-in-out infinite;
}

@keyframes flow {
  from { transform: translateX(-120%); }
  to { transform: translateX(250%); }
}

.amount-panel {
  padding: 1rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(238, 48, 219, 0.58), transparent 34%),
    linear-gradient(130deg, var(--purple-900), #3c0073);
  border-radius: 1.1rem;
  box-shadow: 0 16px 30px rgba(53, 0, 105, 0.2);
}

.amount-panel > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 650;
}

.amount-panel strong {
  margin: 0.15rem 0 0.35rem;
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.045em;
}

.amount-panel strong small {
  font-size: 0.75rem;
  letter-spacing: 0;
}

.amount-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  line-height: 1.45;
}

.payment-title {
  margin: 1rem 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 750;
}

.payment-title small {
  color: #8d8299;
  font-size: 0.59rem;
}

.payment-options {
  display: grid;
  gap: 0.45rem;
}

.payment-option {
  width: 100%;
  padding: 0.67rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e9e1f0;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.payment-option:hover,
.payment-option.is-active {
  background: #faf6ff;
  border-color: var(--purple-500);
}

.option-radio {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border: 1px solid #c9bdd3;
  border-radius: 50%;
}

.payment-option.is-active .option-radio {
  border: 0.28rem solid var(--purple-600);
}

.payment-option > span:last-child {
  display: grid;
  gap: 0.05rem;
}

.payment-option strong {
  font-size: 0.68rem;
}

.payment-option small {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.demo-action {
  width: 100%;
  min-height: 2.85rem;
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(100deg, var(--purple-700), var(--purple-500));
  border: 0;
  border-radius: 0.9rem;
  box-shadow: 0 12px 24px rgba(103, 0, 199, 0.2);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 760;
}

.provider-note {
  margin: 0.75rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #776c82;
  font-size: 0.56rem;
  text-align: center;
}

.provider-note svg {
  width: 0.85rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--purple-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 0.78rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  box-shadow: 0 16px 42px rgba(5, 0, 18, 0.28);
  backdrop-filter: blur(16px);
  animation: noteFloat 4.5s ease-in-out infinite alternate;
}

.floating-note--top {
  top: 5.8rem;
  right: -1.5rem;
}

.floating-note--bottom {
  bottom: 5.4rem;
  left: -1.7rem;
  animation-delay: -2s;
}

@keyframes noteFloat {
  to { transform: translateY(-0.75rem); }
}

.note-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: #0a7455;
  background: #dcfaef;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 850;
}

.note-icon--purple {
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-600), var(--magenta));
}

.floating-note > span:last-child {
  display: grid;
  line-height: 1.25;
}

.floating-note strong {
  font-size: 0.68rem;
}

.floating-note small {
  color: var(--ink-soft);
  font-size: 0.56rem;
}

.hero-statement {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.hero-statement p,
.hero-statement strong {
  margin: 1.4rem 0 0;
}

.hero-statement strong {
  color: var(--white);
  font-size: 1.08rem;
}

.section-pad {
  padding-block: clamp(5.2rem, 9vw, 8.5rem);
}

.section-intro {
  max-width: 47rem;
  margin-bottom: 3rem;
}

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

.section-intro--center .section-kicker {
  justify-content: center;
}

.section-intro h2,
.roles-copy h2,
.trust-copy h2,
.faq-heading h2,
.closing-card h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  font-weight: 840;
  letter-spacing: -0.057em;
  line-height: 1.04;
}

.section-intro p,
.roles-copy > p,
.faq-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.problem-section {
  position: relative;
  background: var(--paper);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
}

.comparison-card--old {
  color: #39303f;
  background: #efebf2;
  border: 1px solid #e1d9e5;
}

.comparison-card--old::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  content: "";
  border: 3rem solid rgba(90, 78, 99, 0.05);
  border-radius: 50%;
}

.comparison-card--new {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(220, 41, 226, 0.35), transparent 38%),
    linear-gradient(135deg, var(--purple-900), #27004c 58%, #17002e);
  box-shadow: var(--shadow-md);
}

.comparison-label {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.comparison-card--old .comparison-label {
  color: #766a7c;
}

.comparison-card ul {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.comparison-card--old li {
  padding-block: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(63, 50, 70, 0.1);
  font-size: 0.95rem;
  font-weight: 650;
}

.comparison-card--old li:last-child {
  border-bottom: 0;
}

.comparison-card--old li span {
  color: #9a8da1;
  font-size: 0.7rem;
}

.new-flow {
  display: grid;
}

.new-flow__step {
  padding-block: 0.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.new-flow__step > span {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--purple-900);
  background: var(--white);
  border-radius: 0.8rem;
  font-size: 0.75rem;
  font-weight: 850;
}

.new-flow__step > div {
  display: grid;
}

.new-flow__step strong {
  font-size: 0.95rem;
}

.new-flow__step small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
}

.flow-result {
  margin-top: 1.1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #dffdf4;
  background: rgba(104, 243, 194, 0.1);
  border: 1px solid rgba(104, 243, 194, 0.24);
  border-radius: 1rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.flow-result svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.steps-grid::before {
  position: absolute;
  z-index: 0;
  top: 4.15rem;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #d8c6e7 15%, #d8c6e7 85%, transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  border-color: rgba(116, 20, 219, 0.28);
  box-shadow: var(--shadow-md);
  /* transform: translateY(-6px); */
  transition: 0.2s;
}

.step-no,
.feature-index {
  color: #a38bab;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.step-icon,
.feature-symbol {
  width: 3.5rem;
  height: 3.5rem;
  margin: 1.4rem 0 1.2rem;
  display: grid;
  place-items: center;
  color: var(--purple-600);
  background: linear-gradient(145deg, #f5efff, #fceeff);
  border-radius: 1rem;
}

.step-icon svg,
.feature-symbol svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.step-card p,
.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.roles-section {
  background:
    radial-gradient(circle at 8% 80%, rgba(210, 25, 228, 0.08), transparent 25%),
    var(--paper);
}

.roles-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
}

.role-tabs {
  margin-top: 2rem;
  padding: 0.35rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  background: #eee8f2;
  border-radius: 999px;
}

.role-tabs button {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  color: #62576a;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.role-tabs button[aria-selected="true"] {
  color: var(--purple-800);
  background: #fff;
  box-shadow: 0 7px 18px rgba(38, 0, 73, 0.1);
}

.role-panel {
  position: relative;
  min-height: 31rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(230, 54, 223, 0.52), transparent 32%),
    linear-gradient(145deg, #2b0055, #17002e 68%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.role-panel::after {
  position: absolute;
  right: -9rem;
  bottom: -11rem;
  width: 23rem;
  height: 23rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
}

.role-panel__number {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.16);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.role-panel__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2.6rem;
  display: grid;
  place-items: center;
  color: var(--purple-900);
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 16px 30px rgba(5, 0, 20, 0.22);
  font-size: 1.15rem;
  font-weight: 900;
}

.role-panel__eyebrow {
  color: #e1b8ff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-panel h3 {
  max-width: 32rem;
  margin: 0.65rem 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.role-panel > p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.67);
}

.role-panel ul {
  position: relative;
  z-index: 2;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  list-style: none;
}

.role-panel li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 650;
}

.role-panel li::before {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #0d7457;
  content: "✓";
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 900;
}

.role-panel.is-changing > * {
  animation: roleChange 0.32s ease both;
}

@keyframes roleChange {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-section {
  padding-top: 0;
  background: var(--paper);
}

.trust-shell {
  position: relative;
  min-height: 36rem;
  padding: clamp(2.2rem, 5vw, 4.8rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 42%, rgba(175, 26, 234, 0.34), transparent 26%),
    linear-gradient(135deg, #110020, #240044 58%, #17002e);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.trust-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: linear-gradient(90deg, transparent, black);
  opacity: 0.18;
}

.section-kicker--light {
  color: #d7a5ff;
}

.trust-copy {
  position: relative;
  z-index: 2;
}

.trust-copy p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.trust-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-badges span {
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
}

.trust-visual {
  position: relative;
  min-height: 23rem;
  display: grid;
  place-items: center;
}

.shield-core {
  position: relative;
  z-index: 2;
  width: 10rem;
  height: 10rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32), inset 0 0 40px rgba(194, 66, 245, 0.13);
  backdrop-filter: blur(18px);
}

.shield-core img {
  width: 6.3rem;
  height: 6.3rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.7rem;
}

.shield-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.shield-ring--one {
  width: 15rem;
  height: 15rem;
}

.shield-ring--two {
  width: 21rem;
  height: 21rem;
  border-style: dashed;
  animation: orbitSpinCentered 40s linear infinite;
}

@keyframes orbitSpinCentered {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.security-line {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 700;
}

.security-line i {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mint);
}

.security-line--one { top: 1rem; left: 2rem; }
.security-line--two { top: 5.5rem; right: 0; }
.security-line--three { bottom: 2rem; left: 1rem; }

.features-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.feature-card {
  min-height: 19rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-card--large {
  min-height: 24rem;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(210, 25, 228, 0.23), transparent 30%),
    linear-gradient(120deg, #1a0033, #310060);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.feature-card--large .feature-index {
  color: #d4a4fa;
}

.feature-card--large h3 {
  max-width: 28rem;
  margin-top: 1.2rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.feature-card--large p {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
}

.receipt-ui {
  padding: 0.7rem 1.3rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.35rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  transform: rotate(1deg);
}

.receipt-ui div {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed #ded2e8;
}

.receipt-ui div:last-child {
  border-bottom: 0;
}

.receipt-ui span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.receipt-ui strong {
  font-size: 0.83rem;
}

.receipt-ui .receipt-total {
  color: var(--purple-700);
}

.receipt-ui .receipt-total strong {
  padding: 0.35rem 0.6rem;
  color: #097658;
  background: #e0faef;
  border-radius: 999px;
  font-size: 0.68rem;
}

.feature-symbol {
  margin-top: 3rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(2rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 7rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 750;
}

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

.faq-list summary span {
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  background: #eee7f3;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 1.5px;
  content: "";
  background: var(--purple-800);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: -0.6rem 3.6rem 1.7rem 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact-section {
  padding-top: 0;
  background: var(--paper);
}

.contact-shell {
  position: relative;
  min-height: 34rem;
  padding: clamp(2.2rem, 5vw, 4.8rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(19rem, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(222, 35, 228, 0.42), transparent 30%),
    radial-gradient(circle at 92% 92%, rgba(117, 23, 222, 0.32), transparent 32%),
    linear-gradient(135deg, #2b0055, #130027 62%, #090112);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-shell::before {
  position: absolute;
  right: -11rem;
  bottom: -17rem;
  width: 36rem;
  height: 36rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.018), 0 0 0 10rem rgba(255, 255, 255, 0.012);
}

.contact-copy,
.contact-card {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 36rem;
  margin-bottom: 1.2rem;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.contact-copy > p {
  max-width: 37rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.02rem;
}

.contact-audiences {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-audiences span {
  padding: 0.58rem 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.7rem;
  box-shadow: 0 30px 65px rgba(4, 0, 15, 0.35);
  backdrop-filter: blur(20px);
}

.contact-card__top {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-600), var(--magenta));
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(103, 0, 199, 0.24);
}

.contact-icon svg,
.contact-note svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-status {
  padding: 0.46rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b3f05;
  background: #fff3d9;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
}

.contact-status i {
  width: 0.45rem;
  height: 0.45rem;
  background: #e69a24;
  border-radius: 50%;
}

.contact-status--ready {
  color: #087553;
  background: #e3fbf2;
}

.contact-status--ready i {
  background: #18b985;
}

.contact-label {
  color: var(--purple-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

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

.form-field {
  position: relative;
  display: grid;
  gap: 0.38rem;
}

.form-field > span {
  color: #4d4355;
  font-size: 0.7rem;
  font-weight: 750;
}

.form-field > span small {
  color: #93889b;
  font-size: 0.61rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.72rem 0.82rem;
  color: var(--ink);
  background: #f8f5fa;
  border: 1px solid #e5dce9;
  border-radius: 0.8rem;
  font: inherit;
  font-size: 0.78rem;
  outline: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 6.8rem;
  padding-bottom: 1.6rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a095a6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(146, 37, 237, 0.1);
}

.character-count {
  position: absolute;
  right: 0.72rem;
  bottom: 0.48rem;
  color: #9a8fa1;
  font-size: 0.58rem;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #716776;
  cursor: pointer;
  font-size: 0.66rem;
  line-height: 1.5;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.12rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--purple-600);
}

.contact-submit {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.78rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(100deg, var(--purple-700), var(--purple-500));
  border: 0;
  border-radius: 0.9rem;
  box-shadow: 0 14px 28px rgba(103, 0, 199, 0.2);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 760;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.contact-submit:hover {
  box-shadow: 0 17px 34px rgba(103, 0, 199, 0.27);
  transform: translateY(-2px);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contact-submit svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.honey-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-note {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #786d80;
  font-size: 0.68rem;
}

.contact-note svg {
  width: 1rem;
  flex: 0 0 auto;
  color: var(--purple-600);
}

.closing-section {
  padding: 0 0 1.5rem;
  background: var(--paper);
}

.closing-card {
  position: relative;
  min-height: 36rem;
  padding: clamp(3rem, 8vw, 7rem) 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 22% 30%, rgba(223, 21, 224, 0.52), transparent 27%),
    radial-gradient(circle at 82% 72%, rgba(101, 20, 222, 0.42), transparent 27%),
    linear-gradient(140deg, #2c0055, #120025 62%, #080112);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.closing-card::before,
.closing-card::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.closing-card::before {
  top: -20rem;
  left: -10rem;
  width: 40rem;
  height: 40rem;
}

.closing-card::after {
  right: -15rem;
  bottom: -23rem;
  width: 46rem;
  height: 46rem;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.018), 0 0 0 10rem rgba(255, 255, 255, 0.012);
}

.closing-card > * {
  position: relative;
  z-index: 2;
}

.closing-logo {
  width: 5.8rem;
  height: 5.8rem;
  margin-bottom: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.6rem;
  box-shadow: 0 20px 45px rgba(5, 0, 15, 0.35);
}

.closing-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-card h2 {
  max-width: 55rem;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
}

.closing-card p {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.06rem;
}

.button--light {
  color: var(--purple-950);
  background: var(--white);
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #090112;
}

.footer-main {
  min-height: 8rem;
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand--footer {
  color: var(--white);
}

.footer-main > p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-main nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.79rem;
  font-weight: 650;
}

.footer-main nav a:hover {
  color: var(--white);
}

.footer-legal {
  padding-block: 1.3rem;
  display: grid;
  grid-template-columns: auto minmax(0, 43rem);
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.67rem;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:last-child {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(calc(100% - 2.5rem), 19rem);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(63, 8, 103, 0.14);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(23, 0, 45, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(16px);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #087453;
  background: #dcfaef;
  border-radius: 0.65rem;
  font-weight: 900;
}

.toast p {
  margin: 0;
  display: grid;
  line-height: 1.25;
}

.toast strong {
  font-size: 0.72rem;
}

.toast small {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .step-card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (max-width: 67.5rem) {
  .main-nav {
    gap: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 25rem;
    gap: 2.5rem;
  }

  .floating-note--top { right: -0.5rem; }
  .floating-note--bottom { left: -0.5rem; }

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

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-h: 4.7rem;
  }

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

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 4.7rem;
    right: 1rem;
    left: 1rem;
    padding: 1.1rem;
    display: grid;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: rgba(25, 0, 50, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.2rem;
    box-shadow: 0 24px 70px rgba(5, 0, 15, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.8rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.8rem;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    padding-top: calc(var(--header-h) + 4.5rem);
    padding-bottom: 4.5rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 31rem);
    margin-inline: auto;
  }

  .floating-note--top {
    top: 3.8rem;
  }

  .floating-note--bottom {
    bottom: 3.5rem;
  }

  .hero-statement {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero-statement strong {
    margin-top: 0.2rem;
  }

  .comparison-grid,
  .roles-grid,
  .trust-shell,
  .contact-shell,
  .faq-grid,
  .feature-card--large {
    grid-template-columns: 1fr;
  }

  .comparison-card--new {
    order: -1;
  }

  .role-panel {
    min-height: auto;
  }

  .trust-shell {
    gap: 1rem;
    border-radius: 1.8rem;
  }

  .contact-shell {
    border-radius: 1.8rem;
  }

  .trust-visual {
    min-height: 24rem;
  }

  .feature-card--large {
    gap: 2rem;
  }

  .faq-heading {
    position: static;
  }

  .closing-card {
    border-radius: 1.8rem;
  }

  .contact-card__top {
    margin-bottom: 1.5rem;
  }

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

  .footer-main {
    padding-block: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-main nav {
    margin-left: 0;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-legal p:last-child {
    text-align: left;
  }
}

@media (max-width: 37.5rem) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    min-height: 35rem;
  }

  .product-card {
    width: min(100%, 23rem);
    transform: none;
  }

  .orbit--outer {
    width: 30rem;
    height: 30rem;
  }

  .orbit--inner {
    width: 23rem;
    height: 23rem;
  }

  .floating-note {
    display: none;
  }

  .steps-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .feature-card {
    min-height: auto;
  }

  .role-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .role-tabs button {
    padding-inline: 0.4rem;
  }

  .role-panel {
    padding: 1.5rem;
  }

  .role-panel__number {
    top: 1.4rem;
    right: 1.4rem;
    font-size: 3.5rem;
  }

  .role-panel__icon {
    margin-bottom: 2rem;
  }

  .trust-visual {
    transform: scale(0.84);
  }

  .security-line--one { left: -1.5rem; }
  .security-line--two { right: -2rem; }
  .security-line--three { left: -1rem; }

  .receipt-ui div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
  }

  .faq-list summary {
    min-height: 5rem;
    font-size: 0.93rem;
  }

  .closing-card {
    min-height: 32rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
