:root {
  --bg: #0b0a09;
  --surface: #151311;
  --surface-raised: #1b1816;
  --line: rgba(244, 235, 221, 0.16);
  --line-strong: rgba(244, 235, 221, 0.3);
  --red: #c32922;
  --red-bright: #e04032;
  --cream: #f3eee5;
  --muted: #a6a09a;
  --gold: #bd9a70;
  --heading: 'Barlow Condensed', Impact, sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button {
  cursor: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
input,
textarea {
  cursor: text;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  display: block;
}
::selection {
  background: var(--red);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.container {
  width: min(100% - 9vw, 1440px);
  margin-inline: auto;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.arrow-icon,
.feature-icon,
.custom-checkbox svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.arrow-icon {
  width: 20px;
  height: 20px;
  flex: none;
  transition: transform 0.35s var(--ease);
}
a:hover .arrow-icon,
button:hover .arrow-icon {
  transform: translate(3px, -3px);
}
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Opening and navigation */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--red);
  pointer-events: none;
  animation: curtain-out 0.9s var(--ease) 0.65s forwards;
}
.preloader span {
  font: 900 clamp(5rem, 17vw, 15rem)/1 var(--heading);
  letter-spacing: -0.05em;
  color: var(--cream);
  animation: loader-word 0.55s var(--ease) both;
}
.preloader i {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--cream);
  transform-origin: left;
  animation: loader-line 0.65s ease both;
}
@keyframes loader-word {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
}
@keyframes loader-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes curtain-out {
  to {
    transform: translateY(-101%);
    visibility: hidden;
  }
}
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4.5vw;
  border-bottom: 1px solid transparent;
  background: linear-gradient(#090807d9, transparent);
  transition:
    background 0.4s,
    border-color 0.4s,
    min-height 0.4s,
    padding 0.4s;
}
.navbar.scrolled {
  min-height: 72px;
  background: rgba(11, 10, 9, 0.91);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--cream);
  font: 900 32px/0.8 var(--heading);
  transform: skew(-6deg);
}
.brand-name {
  font: 800 28px/0.76 var(--heading);
  letter-spacing: 0.07em;
}
.brand-name small {
  display: block;
  font: 700 7px/1 var(--body);
  letter-spacing: 0.23em;
  margin-top: 7px;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 72px);
}
.nav-link,
.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nav-link {
  transition: color 0.25s;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  padding: 13px 16px 13px 20px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Hero */
.hero {
  min-height: 800px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #0b0a09;
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('assets/hero-covil-documental.webp');
  background-size: cover;
  filter: blur(7.5px) !important;
  background-position: center 43%;
  transform: scale(1.09);
  animation: hero-image-in 2.3s var(--ease) 0.7s both;
  will-change: transform;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 7, 7, 0.68) 0%,
      rgba(8, 7, 7, 0.35) 40%,
      rgba(8, 7, 7, 0.04) 75%
    ),
    linear-gradient(
      0deg,
      #0b0a09 0%,
      transparent 26%,
      transparent 72%,
      rgba(8, 7, 7, 0.45) 100%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 4.5vw,
    rgba(255, 255, 255, 0.11) 4.5vw,
    rgba(255, 255, 255, 0.11) calc(4.5vw + 1px),
    transparent calc(4.5vw + 1px),
    transparent 95.5%,
    rgba(255, 255, 255, 0.11) 95.5%,
    rgba(255, 255, 255, 0.11) calc(95.5% + 1px),
    transparent calc(95.5% + 1px)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 115px;
  padding-bottom: 115px;
}
.eyebrow,
.section-kicker,
.footer-overline,
.footer-bottom,
.hero-footer,
.form-topline,
.feature-number,
.step-heading > span,
.payment-notice > span,
.notice-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cream);
  margin: 0 0 22px 4px;
  animation: rise-in 0.85s var(--ease) 1.32s both;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red-bright);
}
.eyebrow-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red-bright);
  margin-inline: 5px;
}
.hero-title {
  margin: 0 0 37px -9px;
  font: 900 clamp(10rem, 25vw, 26rem)/0.82 var(--heading);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: title-in 1.35s var(--ease) 1.05s both;
}
.hero-title > span:first-child {
  color: var(--cream);
}
.hero-period {
  color: var(--red);
  letter-spacing: -0.09em;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  max-width: 1040px;
  animation: rise-in 1s var(--ease) 1.55s both;
}
.hero-copy {
  display: flex;
  align-items: end;
  gap: clamp(20px, 3.5vw, 65px);
}
.hero-lead {
  margin: 0;
  min-width: 240px;
  font: 700 clamp(2.2rem, 4.3vw, 4.4rem)/0.87 var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-lead em {
  color: var(--red-bright);
  font-style: normal;
}
.hero-description {
  width: min(250px, 25vw);
  margin: 0 0 2px;
  color: #ccc5bb;
  font-size: 12px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: none;
}
.btn-primary,
.btn-submit {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 15px 19px 15px 23px;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  font: 700 11px/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.btn-primary:hover,
.btn-submit:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 14px 40px rgba(195, 41, 34, 0.24);
}
.btn-primary:active,
.btn-submit:active {
  transform: scale(0.98);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 3px 0 8px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.text-link:hover .arrow-icon {
  transform: translateX(5px);
}
.hero-footer {
  position: absolute;
  left: 4.5vw;
  right: 4.5vw;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #d1c9be;
  animation: rise-in 0.8s var(--ease) 1.8s both;
}
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.scroll-cue:hover {
  color: var(--red-bright);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--red);
  transform-origin: top;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}
@keyframes hero-image-in {
  from {
    opacity: 0.4;
    filter: brightness(0.4);
  }
  to {
    opacity: 1;
    filter: brightness(1);
  }
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(90px) scaleY(1.12);
    clip-path: inset(100% 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    clip-path: inset(-20% -2% -25%);
  }
}

/* Experience */
.about {
  padding: clamp(105px, 11vw, 180px) 0 clamp(100px, 9vw, 145px);
  background: var(--bg);
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
}
.section-index {
  color: var(--red-bright);
  white-space: nowrap;
}
.section-rule {
  height: 1px;
  width: min(130px, 12vw);
  background: var(--line-strong);
}
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin: 33px 0 60px;
}
.section-heading-row h2,
.form-info h2 {
  margin: 0;
  font: 800 clamp(4.8rem, 9.2vw, 10rem)/0.81 var(--heading);
  letter-spacing: -0.026em;
  text-transform: uppercase;
}
.section-heading-row h2 span,
.form-info h2 span {
  color: var(--red);
}
.section-heading-row p {
  max-width: 275px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature-card {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2vw, 34px);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #100e0d;
  transition:
    background 0.4s,
    transform 0.5s var(--ease);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    290px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(195, 41, 34, 0.21),
    transparent 70%
  );
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover {
  background: #1b1412;
  transform: translateY(-6px);
  z-index: 2;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-top,
.feature-content {
  position: relative;
  z-index: 1;
}
.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.feature-number {
  color: var(--gold);
}
.feature-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke-width: 1.25;
  transition:
    color 0.35s,
    transform 0.6s var(--ease);
}
.feature-card:hover .feature-icon {
  color: var(--cream);
  transform: rotate(-8deg) scale(1.1);
}
.feature-content h3 {
  margin: 0 0 12px;
  font: 700 clamp(2rem, 2.8vw, 3.2rem)/0.95 var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.feature-content p {
  max-width: 245px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.feature-line {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.feature-card:hover .feature-line {
  transform: scaleX(1);
}
.marquee {
  overflow: hidden;
  height: 95px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
  color: var(--cream);
}
.marquee-track {
  display: flex;
  flex: none;
  white-space: nowrap;
  animation: marquee-move 32s linear infinite;
}
.marquee-track span {
  display: block;
  font: 800 48px/0.85 var(--heading);
  letter-spacing: 0.02em;
  padding-right: 20px;
}
.marquee-track b {
  font: 400 28px/1 var(--body);
  vertical-align: 5px;
  margin: 0 30px;
}
@keyframes marquee-move {
  to {
    transform: translateX(-50%);
  }
}

/* Access form */
.application {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 0 clamp(120px, 12vw, 190px);
  background:
    radial-gradient(ellipse at 5% 60%, rgba(89, 23, 18, 0.17), transparent 55%),
    #100e0d;
}
.application-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 8vw, 150px);
  margin-top: 43px;
  align-items: start;
}
.form-info {
  position: sticky;
  top: 130px;
}
.form-info h2 {
  font-size: clamp(5rem, 8.8vw, 9.5rem);
}
.form-info > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 35px 0 45px;
}
.notice {
  max-width: 400px;
  border-top: 1px solid var(--line-strong);
  padding-top: 23px;
}
.notice-label {
  color: var(--gold);
}
.notice p {
  color: #d0c9c1;
  font-size: 12px;
  line-height: 1.7;
  max-width: 310px;
  margin: 14px 0 0;
}
.form-container {
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  background: var(--surface);
  padding: clamp(25px, 3.7vw, 55px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.18);
}
.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
}
.form-topline span:last-child {
  color: var(--muted);
}
.progressbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 35px 0 63px;
}
.progress-track {
  height: 1px;
  position: absolute;
  left: 17px;
  right: 17px;
  top: 18px;
  background: var(--line-strong);
}
.progress {
  height: 100%;
  width: 0%;
  background: var(--red-bright);
  transition: width 0.45s var(--ease);
}
.progress-step {
  width: 75px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}
.progress-step:nth-child(3) {
  align-items: center;
}
.progress-step:last-child {
  align-items: flex-end;
}
.progress-step > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--muted);
  font: 700 11px/1 var(--body);
  transition:
    background 0.35s,
    border-color 0.35s,
    color 0.35s;
}
.progress-step small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.progress-step-active > span {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.progress-step-active small {
  color: var(--cream);
}
.form-step {
  display: none;
}
.form-step-active {
  display: block;
  animation: step-in 0.42s var(--ease) both;
}
@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-heading {
  margin-bottom: 30px;
}
.step-heading > span {
  color: var(--red-bright);
}
.step-heading h3 {
  margin: 8px 0 0;
  font: 700 clamp(2rem, 3.2vw, 3.5rem)/1 var(--heading);
  text-transform: uppercase;
}
.input-group {
  margin-bottom: 20px;
}
.input-row {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 17px;
}
.input-group label,
.radio-group legend {
  display: block;
  color: #dfd5c9;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 9px;
}
input[type='text'],
input[type='number'],
input[type='tel'],
textarea {
  display: block;
  width: 100%;
  min-height: 51px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #0e0c0b;
  color: var(--cream);
  outline: none;
  padding: 13px 15px;
  font-size: 13px;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
textarea {
  min-height: 95px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #817b76;
}
input[type='text']:hover,
input[type='number']:hover,
input[type='tel']:hover,
textarea:hover {
  border-color: var(--line-strong);
}
input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
textarea:focus {
  border-color: var(--gold);
  background: #130f0e;
  box-shadow: 0 0 0 3px rgba(189, 154, 112, 0.1);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  gap: 12px;
}
.form-actions-group {
  justify-content: space-between;
}
.form-actions .btn-primary,
.form-actions .btn-submit {
  min-height: 51px;
}
.btn-outline {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream);
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(189, 154, 112, 0.08);
}
.radio-group {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  min-width: 0;
}
.radio-group:last-child {
  margin-bottom: 0;
}
.radio-group legend {
  padding: 0;
  margin-bottom: 10px;
}
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.options label {
  position: relative;
  cursor: pointer;
}
.options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.options span {
  display: block;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 10px 13px;
  color: var(--muted);
  font-size: 11px;
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
}
.options label:hover span {
  color: var(--cream);
  border-color: var(--gold);
}
.options input:checked + span {
  color: var(--cream);
  border-color: var(--red);
  background: rgba(195, 41, 34, 0.2);
}
.options input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.radio-group-container {
  margin-bottom: 28px;
}
.blood-oath-label {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 25px 0;
  color: #d0c8bf;
  font-size: 11px;
  line-height: 1.65;
  cursor: pointer;
}
.blood-oath-label input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.custom-checkbox {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: none;
  border: 1px solid var(--line-strong);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.custom-checkbox svg {
  width: 15px;
  height: 15px;
  opacity: 0;
  color: #fff;
}
.blood-oath-label input:checked + .custom-checkbox {
  background: var(--red);
  border-color: var(--red);
}
.blood-oath-label input:checked + .custom-checkbox svg {
  opacity: 1;
}
.blood-oath-label input:focus-visible + .custom-checkbox {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.payment-notice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.payment-notice > span {
  color: var(--gold);
}
.payment-notice strong {
  font: 700 29px/1 var(--heading);
}
.payment-notice p {
  grid-column: 1 / -1;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.form-message {
  min-height: 0;
  margin: 0;
  color: #ff9087;
  font-size: 12px;
}
.form-message:not(:empty) {
  margin-top: 17px;
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.success-state {
  padding: 35px 0 20px;
  text-align: center;
}
.success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red-bright);
  margin: 0 auto 25px;
}
.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-state h3 {
  margin: 0 0 14px;
  font: 700 44px/1 var(--heading);
  text-transform: uppercase;
}
.success-state p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Footer */
.pix-state { padding: 34px 0 16px; scroll-margin-top: 110px; }
.pix-state [hidden] { display: none !important; }
.pix-kicker { color: var(--gold); font-size: 10px; letter-spacing: .16em; font-weight: 700; }
.pix-heading h3 { margin: 14px 0; font: 700 clamp(32px, 5vw, 44px)/1 var(--heading); text-transform: uppercase; }
.pix-heading p, .pix-review p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.pix-amount { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pix-amount span { font-size: 10px; letter-spacing: .1em; color: var(--muted); }
.pix-amount strong { font: 600 32px/1 var(--heading); }
.pix-code-wrap { width: 224px; padding: 12px; margin: 25px auto; background: white; border-radius: 3px; }
.pix-code-wrap img { display: block; width: 200px; height: 200px; image-rendering: pixelated; }
.pix-code-label { display: block; font-size: 11px; margin-bottom: 8px; color: var(--muted); }
#pix-copy-code { width: 100%; padding: 12px; resize: none; border: 1px solid var(--line); background: #0b0a09; color: #ccc; font: 11px/1.6 monospace; overflow-wrap: anywhere; }
.pix-copy { width: 100%; justify-content: center; margin-top: 12px; }
.pix-copy-feedback { min-height: 17px; color: var(--gold); font-size: 11px; }
.pix-wait { display: flex; align-items: center; gap: 10px; padding: 16px 0; font-size: 12px; }
.pix-wait time { margin-left: auto; font: 600 25px/1 var(--heading); font-variant-numeric: tabular-nums; }
.pix-pulse { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px #bfa47715; }
.pix-help { color: var(--muted); font-size: 11px !important; line-height: 1.6; }
.pix-feedback, .pix-storage-warning { color: #efb67d; font-size: 12px; line-height: 1.6; }
.pix-feedback:empty, .pix-storage-warning:empty { display: none; }
.pix-reference { color: var(--muted); opacity: .65; font-size: 9px; overflow-wrap: anywhere; margin-top: 28px; }
.pix-review { padding-top: 26px; }
.pix-review .success-icon { color: #87c59e; border-color: #87c59e55; margin-left: 0; }
.pix-timeline { list-style: none; padding: 0; margin: 28px 0; }
.pix-timeline li { position: relative; display: flex; gap: 12px; padding: 0 0 24px 25px; font-size: 12px; border-left: 1px solid #87c59e55; margin-left: 4px; }
.pix-timeline li::before { content: ''; width: 8px; height: 8px; position: absolute; left: -4.5px; top: 3px; border-radius: 50%; background: #87c59e; }
.pix-timeline li span { margin-left: auto; color: var(--muted); }
.pix-timeline li.current { padding-bottom: 0; color: var(--gold); border-left-color: transparent; }
.pix-timeline li.current::before { background: var(--gold); box-shadow: 0 0 0 4px #bfa47715; }
.is-confirmed .pix-kicker { color: #87c59e; }
.pix-retry, .pix-restart { margin-top: 15px; }

/* Footer */
.footer {
  background: #090807;
  border-top: 1px solid var(--line);
}
.footer-main {
  min-height: 255px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-overline {
  display: block;
  color: var(--gold);
  margin-bottom: 5px;
}
.footer-logo {
  display: inline-block;
  font: 900 clamp(6rem, 13vw, 12rem)/0.78 var(--heading);
  letter-spacing: -0.06em;
}
.footer-logo span {
  color: var(--red);
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line-strong);
  padding: 0 0 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.footer-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-bottom {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-bottom a:hover {
  color: var(--cream);
}

/* Motion */
.js-motion .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.js-motion .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.js-motion .feature-card.reveal {
  transition-delay: calc(var(--card-index) * 85ms);
}
.cursor {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1500;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-bright);
  pointer-events: none;
  mix-blend-mode: exclusion;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s;
}
.has-custom-cursor .cursor {
  display: block;
}
.cursor.is-active {
  width: 48px;
  height: 48px;
  background: rgba(224, 64, 50, 0.55);
}
.cursor.is-hidden {
  opacity: 0;
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: 27vw;
  }
  .hero-copy {
    display: block;
  }
  .hero-description {
    width: 280px;
    margin-top: 15px;
  }
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card {
    min-height: 270px;
  }
  .application-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .form-info {
    position: static;
  }
  .form-info h2 {
    font-size: clamp(5rem, 12vw, 9rem);
  }
  .form-info > p {
    max-width: 650px;
  }
  .form-container {
    max-width: 780px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }
  .container {
    width: min(100% - 36px, 600px);
  }
  .navbar {
    min-height: 70px;
    padding: 13px 18px;
  }
  .navbar.scrolled {
    min-height: 64px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }
  .brand-name {
    font-size: 23px;
  }
  .brand-name small {
    font-size: 6px;
    margin-top: 5px;
  }
  .nav-link {
    display: none;
  }
  .nav-cta {
    min-height: 44px;
    padding: 10px 10px 10px 13px;
    gap: 9px;
    font-size: 9px;
  }
  .nav-cta .arrow-icon {
    width: 16px;
    height: 16px;
  }
  .hero {
    height: auto;
    min-height: 760px;
    min-height: 100svh;
    align-items: end;
  }
  .hero-visual {
    background-position: 87% center;
  }
  .hero::before {
    background:
      linear-gradient(
        0deg,
        #0b0a09 0%,
        rgba(8, 7, 7, 0.86) 16%,
        rgba(8, 7, 7, 0.4) 59%,
        rgba(8, 7, 7, 0.24) 100%
      ),
      linear-gradient(90deg, rgba(8, 7, 7, 0.6), transparent);
  }
  .hero-content {
    padding-top: 185px;
    padding-bottom: 120px;
  }
  .hero-eyebrow {
    font-size: 9px;
    gap: 8px;
    margin-left: 0;
  }
  .eyebrow-line {
    width: 20px;
  }
  .hero-title {
    font-size: 29.8vw;
    margin: 0 0 34px -4px;
  }
  .hero-bottom {
    display: block;
  }
  .hero-copy {
    display: block;
  }
  .hero-lead {
    font-size: clamp(2.7rem, 12vw, 5.2rem);
  }
  .hero-description {
    width: min(300px, 88%);
    margin-top: 14px;
  }
  .hero-actions {
    margin-top: 28px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-actions .btn-primary {
    min-height: 53px;
  }
  .hero-footer {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 8px;
  }
  .hero-footer .scroll-cue {
    display: none;
  }
  .about {
    padding: 95px 0 90px;
  }
  .section-kicker {
    font-size: 9px;
    gap: 12px;
  }
  .section-rule {
    width: 35px;
  }
  .section-heading-row {
    display: block;
    margin: 25px 0 40px;
  }
  .section-heading-row h2 {
    font-size: clamp(4.7rem, 17vw, 8rem);
  }
  .section-heading-row p {
    margin-top: 22px;
    max-width: 330px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card {
    min-height: 260px;
    padding: 20px;
  }
  .feature-icon {
    width: 32px;
    height: 32px;
  }
  .feature-content h3 {
    font-size: clamp(1.65rem, 7vw, 2.3rem);
  }
  .feature-content p {
    font-size: 11px;
  }
  .marquee {
    height: 72px;
  }
  .marquee-track span {
    font-size: 37px;
  }
  .marquee-track b {
    font-size: 20px;
    margin: 0 20px;
  }
  .application {
    padding: 95px 0 105px;
  }
  .application-wrapper {
    gap: 48px;
    margin-top: 30px;
  }
  .form-info h2 {
    font-size: clamp(5rem, 17vw, 8rem);
  }
  .form-info > p {
    margin: 24px 0 30px;
  }
  .form-container {
    padding: 23px 20px 30px;
  }
  input[type='text'], input[type='number'], input[type='tel'], textarea {
    font-size: 16px;
  }
  .form-topline {
    font-size: 8px;
    padding-bottom: 22px;
  }
  .progressbar {
    margin: 25px 0 55px;
  }
  .input-row {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 10px;
  }
  .footer-main {
    min-height: 230px;
    display: block;
    padding-top: 60px;
  }
  .footer-logo {
    font-size: 8.5rem;
  }
  .footer-link {
    margin-top: 29px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    padding-block: 20px;
    font-size: 9px;
  }
}
@media (max-width: 420px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 235px;
  }
  .input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-actions-group {
    gap: 10px;
  }
  .form-actions-group .btn-primary,
  .form-actions-group .btn-submit {
    gap: 10px;
  }
  .footer-logo {
    font-size: 7rem;
  }
}
@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;
  }
  .preloader {
    display: none;
  }
  .hero-visual {
    transform: none !important;
  }
  body.has-custom-cursor { cursor: auto; }
  .has-custom-cursor a, .has-custom-cursor button { cursor: pointer; }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
  .cursor {
    display: none !important;
  }
}
