/* NeWave Pay — editorial fintech system
   Display: Bebas Neue · Body: Open Sans */

:root {
  --accent: #58d5df;
  --accent-deep: #1c9daa;
  --night: #071014;
  --night-soft: #0b181d;
  --night-raised: #102127;
  --paper: #f3f6f2;
  --white: #fff;
  --ink: #eaf2ef;
  --muted: #96a9aa;
  --graphite: #172126;
  --gray: #667477;
  --line: rgba(213, 232, 230, .14);
  --line-dark: rgba(23, 33, 38, .16);
  --error: #c94f59;
  --success: #1f9a73;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

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

::selection {
  color: var(--night);
  background: var(--accent);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.field input:focus-visible,
.field select:focus-visible {
  outline: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--night);
  background: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 32px;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color .3s var(--ease),
    background-color .3s var(--ease),
    border-color .3s var(--ease),
    transform .3s var(--ease);
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, .18);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn:active {
  transform: translateY(1px) scale(.985);
}

.btn-primary {
  color: var(--night);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  color: var(--night);
  background: #73e1e7;
  border-color: #73e1e7;
}

.btn-dark {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.btn-dark:hover {
  background: var(--night);
  border-color: var(--night);
}

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

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
}

.btn.loading {
  color: transparent !important;
  pointer-events: none;
}

.btn.loading::after {
  position: absolute;
  width: 72px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  color: var(--night);
  animation: loading-line 1s var(--ease) infinite;
}

.btn-dark.loading::after {
  color: var(--white);
}

@keyframes loading-line {
  0% { transform: translateX(-70px); opacity: .35; }
  50% { opacity: 1; }
  100% { transform: translateX(70px); opacity: .35; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 16, 20, .84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color .3s ease, border-color .3s ease;
}

.header.scrolled {
  background: rgba(7, 16, 20, .96);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  display: inline-flex;
  align-items: center;
}

.header .logo img {
  width: auto;
  height: 38px;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header nav a:not(.btn) {
  position: relative;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}

.header nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.header nav a:not(.btn):hover {
  color: var(--ink);
}

.header nav a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header .btn {
  min-height: 42px;
  padding: 10px 22px;
  font-size: .74rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 76px);
  overflow: hidden;
  background:
    linear-gradient(rgba(88, 213, 223, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 213, 223, .055) 1px, transparent 1px),
    var(--night);
  background-size: 56px 56px;
}

.brand-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(92px);
  pointer-events: none;
}

.brand-glow-hero {
  top: 5%;
  right: -8%;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 32% 38%, rgba(0, 207, 239, .72) 0, rgba(0, 207, 239, .27) 31%, transparent 66%),
    radial-gradient(circle at 70% 64%, rgba(4, 91, 207, .64) 0, rgba(4, 91, 207, .22) 34%, transparent 69%);
  opacity: .52;
  transform: rotate(-12deg);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - var(--container)) / 2));
  width: 1px;
  content: "";
  background: var(--accent);
  opacity: .45;
}

.hero::after {
  position: absolute;
  top: 11%;
  right: -10%;
  width: 50vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(88, 213, 223, .12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 9vw var(--night),
    inset 0 0 0 calc(9vw + 1px) rgba(88, 213, 223, .08);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100dvh - 76px);
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .78fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
  padding-top: clamp(48px, 6vh, 64px);
  padding-bottom: 84px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(20px, 4vw, 64px);
}

.hero-badge,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-badge {
  margin-bottom: 24px;
  padding: 7px 0;
}

.hero-badge svg {
  flex: 0 0 auto;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.1vw, 7.15rem);
  font-weight: 400;
  letter-spacing: .012em;
  line-height: .86;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero .subtitle {
  max-width: 570px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  line-height: 1.75;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid rgba(234, 242, 239, .42);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s ease, border-color .3s ease;
}

.hero-link svg {
  transition: transform .35s var(--ease);
}

.hero-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-link:hover svg {
  transform: translateX(5px);
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  min-width: 0;
  padding: 19px 18px 0 0;
}

.hero-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.hero-form-col {
  position: relative;
  z-index: 3;
}

.form-number {
  position: absolute;
  top: -30px;
  right: 0;
  color: rgba(234, 242, 239, .48);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-chips {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 216px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(11, 24, 29, .94);
  border: 1px solid rgba(88, 213, 223, .25);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  font-size: .76rem;
  font-weight: 700;
  animation: float 5.5s var(--ease) infinite;
}

.chip .dot {
  display: flex;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--night);
  background: var(--accent);
  border-radius: 50%;
}

.chip small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 400;
  line-height: 1.35;
}

.chip-1 {
  top: -18px;
  left: -42px;
}

.chip-2 {
  right: -28px;
  bottom: -58px;
  animation-delay: -2.7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-wordmark {
  position: absolute;
  right: -1vw;
  bottom: -4.5vw;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  letter-spacing: .03em;
  line-height: .72;
  -webkit-text-stroke: 1px rgba(88, 213, 223, .08);
  pointer-events: none;
}

/* Hero lead form */
.form-card {
  position: relative;
  padding: 38px 36px 34px;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 2px;
  box-shadow: 20px 20px 0 rgba(88, 213, 223, .09);
}

.form-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 4px;
  content: "";
  background: var(--accent-deep);
}

.form-card h2 {
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.form-card > p {
  margin-bottom: 25px;
  color: var(--gray);
  font-size: .86rem;
}

/* Fields — visible labels above each control */
.field {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 17px;
}

.field label {
  order: -1;
  margin: 0 0 7px;
  color: #435157;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--graphite);
  background: rgba(255, 255, 255, .62);
  border: 1px solid #cbd5d3;
  border-radius: 2px;
  outline: 0;
  appearance: none;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.field input:hover,
.field select:hover {
  border-color: #9dafaf;
}

.field input:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(28, 157, 170, .11);
}

.field.invalid input,
.field.invalid select {
  background: #fff8f8;
  border-color: var(--error);
}

.field .error-msg {
  display: none;
  margin: 5px 0 0;
  color: var(--error);
  font-size: .73rem;
  font-weight: 600;
}

.field.invalid .error-msg {
  display: block;
}

.field .select-arrow {
  position: absolute;
  top: 43px;
  right: 16px;
  color: var(--gray);
  pointer-events: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 3px 0 20px;
  color: var(--gray);
  font-size: .77rem;
  line-height: 1.5;
}

.checkbox-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--accent-deep);
  cursor: pointer;
}

.checkbox-row a {
  color: var(--graphite);
  font-weight: 700;
}

.checkbox-row.invalid,
.checkbox-row.invalid a {
  color: var(--error);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--gray);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.secure-note svg {
  color: var(--success);
}

/* Moving signal band */
.signal-strip {
  overflow: hidden;
  color: var(--night);
  background: var(--accent);
  border-block: 1px solid var(--accent);
}

.signal-track {
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: .075em;
  line-height: 1;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.signal-group {
  display: flex;
  width: max(100vw, 720px);
  min-height: 44px;
  flex: none;
  align-items: center;
  justify-content: space-around;
  padding-inline: clamp(12px, 2vw, 32px);
}

.signal-group span {
  flex: none;
  white-space: nowrap;
}

.signal-group i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: var(--night);
  border-radius: 50%;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Content sections */
section {
  position: relative;
  padding: clamp(88px, 10vw, 144px) 0;
}

#beneficios {
  background: var(--night);
}

.section-alt {
  background: var(--night-soft);
  border-block: 1px solid var(--line);
}

.section-head {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(170px, .65fr) 1.35fr;
  column-gap: 48px;
  align-items: start;
  margin: 0 0 62px;
}

.section-head .kicker {
  padding-top: 8px;
}

.section-head h2 {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 400;
  letter-spacing: .025em;
  line-height: .92;
  text-transform: uppercase;
}

.section-head p {
  grid-column: 2;
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* Benefits — deliberately asymmetric */
.benefits-grid {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  border-top: 1px solid var(--line);
}

.benefit-card {
  position: relative;
  min-height: 320px;
  padding: 34px 34px 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: background-color .4s ease;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.benefit-card:first-child {
  padding-right: clamp(40px, 7vw, 100px);
}

.benefit-card::after {
  position: absolute;
  right: 26px;
  bottom: -32px;
  color: rgba(234, 242, 239, .035);
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
}

.benefit-card:nth-child(1)::after { content: "01"; }
.benefit-card:nth-child(2)::after { content: "02"; }
.benefit-card:nth-child(3)::after { content: "03"; }

.benefit-card:hover {
  background: rgba(88, 213, 223, .045);
}

.benefit-card .icon {
  display: flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  color: var(--night);
  background: var(--accent);
  border-radius: 2px;
  transition: transform .4s var(--ease);
}

.benefit-card:hover .icon {
  transform: translateY(-4px) rotate(-3deg);
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.step-card {
  position: relative;
  min-height: 292px;
  padding: 112px 27px 28px;
  border-bottom: 1px solid var(--line);
}

.step-card + .step-card {
  border-left: 1px solid var(--line);
}

.step-card::before {
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--accent);
  content: "0" counter(step);
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: .04em;
  line-height: 1;
}

.step-card::after {
  position: absolute;
  top: 55px;
  right: 26px;
  width: 31px;
  height: 1px;
  content: "";
  background: var(--line);
  transition: width .45s var(--ease), background-color .45s ease;
}

.step-card:hover::after {
  width: 58px;
  background: var(--accent);
}

.step-card h3 {
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.step-card p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  gap: 24px;
  padding: 38px 31px 31px;
  background: var(--night);
  transition: background-color .35s ease;
}

.testimonial-card:first-child {
  padding: 46px;
}

.testimonial-card:hover {
  background: var(--night-raised);
}

.testimonial-card::before {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(88, 213, 223, .18);
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: .76rem;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  flex: 1;
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.8;
}

.testimonial-card:first-child blockquote {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.testimonial-card .avatar {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--night);
  background: var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.testimonial-card .author strong {
  display: block;
  color: var(--ink);
  font-size: .78rem;
}

.testimonial-card .author span {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.4;
}

/* FAQ */
.faq-list {
  max-width: 940px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, padding-left .35s var(--ease);
}

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

.faq-item summary:hover,
.faq-item[open] summary {
  padding-left: 12px;
  color: var(--accent);
}

.faq-item summary svg {
  color: var(--accent);
  transition: transform .35s var(--ease);
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-body {
  max-width: 72ch;
  padding: 0 42px 25px 12px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}

/* Final CTA */
.cta-final {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px);
  color: var(--night);
  background: var(--accent);
  border-radius: 2px;
  text-align: left;
}

.cta-final::before {
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  color: transparent;
  content: "AGORA";
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  letter-spacing: .03em;
  line-height: .75;
  -webkit-text-stroke: 1px rgba(7, 16, 20, .18);
  pointer-events: none;
}

.cta-final .kicker {
  position: relative;
  color: rgba(7, 16, 20, .65);
}

.cta-final h2 {
  position: relative;
  max-width: 620px;
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: .025em;
  line-height: .9;
  text-transform: uppercase;
}

.cta-final p {
  position: relative;
  max-width: 520px;
  margin-bottom: 29px;
  color: rgba(7, 16, 20, .7);
}

.cta-final .btn {
  position: relative;
  color: var(--white);
  background: var(--night);
  border-color: var(--night);
}

.cta-final .btn:hover {
  background: var(--graphite);
  border-color: var(--graphite);
}

/* Footer */
.footer {
  padding: 82px 0 34px;
  color: var(--muted);
  background: #050c0f;
  border-top: 1px solid var(--line);
  font-size: .82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 58px;
}

.footer .logo img {
  width: auto;
  height: 38px;
  margin-bottom: 20px;
}

.footer-grid > div:first-child > p {
  max-width: 300px;
}

.footer h4 {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color .25s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 21px;
}

.footer-social a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.footer-social a:hover {
  color: var(--accent);
  border-color: rgba(88, 213, 223, .48);
  transform: translateY(-3px);
}

.footer-legal {
  padding-top: 26px;
  color: rgba(150, 169, 170, .62);
  border-top: 1px solid var(--line);
  font-size: .7rem;
  line-height: 1.75;
}

/* Wizard */
.wizard-page {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  background:
    linear-gradient(rgba(88, 213, 223, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 213, 223, .04) 1px, transparent 1px),
    var(--night);
  background-size: 56px 56px;
}

.wizard-main {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 1160px);
  flex: 1;
  grid-template-columns: .76fr 1.24fr;
  align-items: stretch;
  margin-inline: auto;
  padding: 56px 32px 80px;
}

.wizard-main::before {
  position: absolute;
  z-index: 0;
  top: 4%;
  right: -8%;
  width: min(56vw, 660px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at 35% 38%, rgba(0, 207, 239, .55) 0, rgba(0, 207, 239, .2) 34%, transparent 68%),
    radial-gradient(circle at 68% 66%, rgba(4, 91, 207, .5) 0, rgba(4, 91, 207, .16) 36%, transparent 70%);
  border-radius: 50%;
  filter: blur(88px);
  opacity: .42;
  pointer-events: none;
  transform: rotate(-10deg);
}

.wizard-aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 60px 50px;
  color: var(--ink);
  background: var(--night-raised);
  border: 1px solid var(--line);
  border-right: 0;
}

.wizard-aside::before {
  position: absolute;
  right: -90px;
  bottom: -105px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(88, 213, 223, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 55px var(--night-raised), inset 0 0 0 56px rgba(88, 213, 223, .12);
}

.wizard-aside h2 {
  position: relative;
  margin: 16px 0 19px;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: .85;
  text-transform: uppercase;
}

.wizard-aside > p {
  position: relative;
  max-width: 37ch;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.wizard-proof {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.wizard-proof strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.wizard-proof span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.wizard-aside > a {
  position: relative;
  width: fit-content;
  margin-top: 42px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}

.wizard-aside > a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.wizard-card {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 650px;
  padding: 50px clamp(30px, 5vw, 64px) 44px;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 0;
}

.progress-wrap {
  margin-bottom: 39px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #8a9798;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.progress-labels span {
  transition: color .3s ease;
}

.progress-labels span.active {
  color: var(--accent-deep);
}

.progress-track {
  height: 3px;
  overflow: hidden;
  background: #d7dfdc;
}

.progress-fill {
  width: 25%;
  height: 100%;
  background: var(--accent-deep);
  transition: width .55s var(--ease);
}

fieldset.wizard-step {
  min-inline-size: 0;
  border: 0;
}

.wizard-step {
  display: none;
  animation: step-in .48s var(--ease);
}

.wizard-step.active {
  display: block;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-step h1 {
  margin-bottom: 5px;
  outline: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 3.7rem);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.wizard-step > p {
  margin-bottom: 27px;
  color: var(--gray);
  font-size: .87rem;
}

.wizard-nav {
  display: flex;
  gap: 10px;
  margin-top: 27px;
}

.wizard-nav .btn {
  flex: 1;
}

.wizard-nav .btn-back {
  color: var(--graphite);
  background: transparent;
  border-color: #bfcac8;
}

.wizard-nav .btn-back:hover {
  border-color: var(--graphite);
}

.field-row {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 13px;
}

.review-list {
  margin-bottom: 18px;
  border-top: 1px solid #cad4d1;
}

.review-list dl {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 18px;
  padding: 11px 4px;
  border-bottom: 1px solid #cad4d1;
  font-size: .78rem;
}

.review-list dt {
  color: var(--gray);
}

.review-list dd {
  overflow-wrap: anywhere;
  font-weight: 700;
  text-align: right;
}

.success-wrap {
  padding: 40px 0 10px;
  text-align: center;
}

.success-icon {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(31, 154, 115, .1);
  animation: success-pop .55s var(--ease);
}

@keyframes success-pop {
  from { opacity: 0; transform: scale(.55); }
  to { opacity: 1; transform: scale(1); }
}

.success-wrap h1 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.success-wrap p {
  max-width: 48ch;
  margin: 0 auto 27px;
  color: var(--gray);
  font-size: .9rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2),
.steps-grid .reveal:nth-child(2) {
  transition-delay: .08s;
}

.benefits-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3),
.steps-grid .reveal:nth-child(3) {
  transition-delay: .16s;
}

.steps-grid .reveal:nth-child(4) {
  transition-delay: .24s;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: 1fr 400px;
    gap: 45px;
  }

  .hero-copy {
    padding-left: 22px;
  }

  .chip-1 {
    left: -18px;
  }

  .chip-2 {
    right: -12px;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .benefit-card:nth-child(3),
  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 260px;
    border-left: 0;
  }

  .testimonial-card:nth-child(3) {
    min-height: 290px;
  }

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

  .step-card:nth-child(3) {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .container {
    padding-inline: 24px;
  }

  .header nav {
    gap: 19px;
  }

  .header nav a:not(.btn) {
    font-size: .7rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    top: 2%;
    right: -24%;
    width: 78vw;
  }

  .brand-glow-hero {
    top: 3%;
    right: -18%;
    width: min(76vw, 650px);
    opacity: .46;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 72px;
    padding-top: 54px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 720px;
    padding-left: 22px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 12vw, 7.4rem);
  }

  .hero-form-col {
    width: min(100%, 560px);
    margin-left: auto;
  }

  .section-head {
    grid-template-columns: 150px 1fr;
  }

  .wizard-main {
    grid-template-columns: 1fr;
    padding: 38px 24px 64px;
  }

  .wizard-aside {
    min-height: 330px;
    padding: 44px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .wizard-aside h2 {
    font-size: 4.5rem;
  }

  .wizard-proof {
    position: absolute;
    right: 44px;
    bottom: 45px;
    width: 220px;
  }

  .wizard-aside > a {
    margin-top: 30px;
  }

  .wizard-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .container {
    padding-inline: 18px;
  }

  .header-inner {
    height: 68px;
  }

  .header .logo img {
    height: 34px;
  }

  .menu-toggle {
    display: flex;
  }

  #mainNav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 22px;
    background: rgba(7, 16, 20, .98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
  }

  #mainNav.open {
    transform: translateY(0);
  }

  #mainNav a:not(.btn) {
    padding: 15px 3px;
    border-bottom: 1px solid var(--line);
    font-size: .76rem;
  }

  #mainNav a:not(.btn)::after {
    display: none;
  }

  #mainNav .btn {
    margin-top: 16px;
  }

  .hero::before {
    left: 18px;
  }

  .hero-inner {
    gap: 62px;
    padding-top: 40px;
    padding-bottom: 78px;
  }

  .brand-glow-hero {
    top: 1%;
    right: -34%;
    width: 112vw;
    filter: blur(72px);
    opacity: .38;
  }

  .hero-copy {
    padding-left: 16px;
  }

  .hero-badge {
    max-width: 90%;
    margin-bottom: 18px;
    font-size: .64rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
    line-height: .9;
  }

  .hero .subtitle {
    font-size: .94rem;
  }

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

  .hero-stats div:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }

  .hero-stats strong {
    font-size: 2rem;
  }

  .hero-form-col {
    width: calc(100% - 10px);
  }

  .form-number {
    top: -26px;
  }

  .chip {
    display: none;
  }

  .form-card {
    padding: 32px 22px 27px;
    box-shadow: 10px 10px 0 rgba(88, 213, 223, .09);
  }

  .signal-track {
    font-size: 1rem;
  }

  section {
    padding: 78px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 42px;
  }

  .section-head .kicker {
    margin-bottom: 17px;
    padding-top: 0;
  }

  .section-head h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .section-head p {
    margin-top: 14px;
  }

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

  .benefit-card,
  .benefit-card:nth-child(3),
  .testimonial-card,
  .testimonial-card:first-child,
  .testimonial-card:nth-child(3),
  .step-card {
    grid-column: auto;
    min-height: auto;
    padding: 29px 23px 34px;
    border-left: 0;
  }

  .benefit-card .icon {
    margin-bottom: 38px;
  }

  .step-card {
    min-height: 230px;
    padding-top: 100px;
  }

  .step-card + .step-card {
    border-left: 0;
  }

  .testimonial-card,
  .testimonial-card:first-child {
    min-height: 310px;
  }

  .faq-list {
    margin-left: 0;
  }

  .faq-item summary {
    padding: 21px 0;
  }

  .faq-item summary:hover,
  .faq-item[open] summary {
    padding-left: 5px;
  }

  .faq-body {
    padding-left: 5px;
  }

  .cta-final {
    min-height: 430px;
    padding: 52px 25px;
  }

  .footer {
    padding-top: 62px;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .wizard-main {
    padding: 24px 14px 50px;
  }

  .wizard-aside {
    min-height: auto;
    padding: 35px 25px 40px;
  }

  .wizard-aside h2 {
    font-size: 3.7rem;
  }

  .wizard-aside > p {
    font-size: .84rem;
  }

  .wizard-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 28px;
  }

  .wizard-aside > a {
    display: none;
  }

  .wizard-card {
    padding: 34px 22px 32px;
  }

  .progress-labels span {
    display: none;
  }

  .progress-labels span.active {
    display: inline;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wizard-nav {
    flex-direction: column-reverse;
  }

  .review-list dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .review-list dd {
    text-align: left;
  }
}

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

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

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