:root {
  color-scheme: dark;
  --bg: #050600;
  --bg-soft: #090b03;
  --panel: #0d1006;
  --panel-strong: #111508;
  --acid: #dfff00;
  --acid-hot: #efff63;
  --acid-deep: #9cb300;
  --white: #f7f8f2;
  --muted: #a5aa9a;
  --line: rgba(223, 255, 0, 0.22);
  --line-soft: rgba(247, 248, 242, 0.1);
  --danger: #ff6b62;
  --success: #dfff00;
  --shadow-acid: 0 0 34px rgba(223, 255, 0, 0.16);
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Rajdhani", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(223, 255, 0, 0.07), transparent 23rem),
    radial-gradient(circle at 90% 72%, rgba(223, 255, 0, 0.045), transparent 28rem),
    var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(223, 255, 0, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 255, 0, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #050600;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(223, 255, 0, 0.12);
  background: linear-gradient(180deg, rgba(5, 6, 0, 0.96), rgba(5, 6, 0, 0.7));
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 78px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-lockup span {
  padding-right: 11px;
  border-right: 1px solid var(--acid);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.brand-lockup strong {
  color: var(--acid);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.header-cta {
  position: relative;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  content: "";
  transform: scaleX(0.3);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header-cta:hover::after,
.header-cta:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  padding: 145px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(5, 6, 0, 0.98) 0%, rgba(5, 6, 0, 0.87) 58%, rgba(12, 15, 3, 0.9) 100%),
    var(--bg);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 82px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(223, 255, 0, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(223, 255, 0, 0.02),
    0 0 0 180px rgba(223, 255, 0, 0.012);
}

.hero::after {
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.circuit-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.45;
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(223, 255, 0, 0.14) 74% 74.08%, transparent 74.08%) 0 110px / 100% 160px,
    linear-gradient(135deg, transparent 0 48%, rgba(223, 255, 0, 0.11) 48% 48.25%, transparent 48.25%) 90% 0 / 280px 280px,
    radial-gradient(circle, var(--acid) 0 2px, transparent 2.5px) 92% 120px / 110px 110px;
  mask-image: linear-gradient(90deg, transparent 20%, #000 62%);
  -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000 62%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.event-kicker,
.section-index,
.form-step,
.next-step > span {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-kicker span {
  display: inline-block;
  margin-right: 12px;
  color: var(--acid);
}

.brand-signature {
  width: min(640px, 100%);
  margin: 24px 0 22px;
}

.brand-art {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(223, 255, 0, 0.14));
}

.brand-art img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.code-decoder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 6px 0 30px;
  border-block: 1px solid var(--line);
}

.code-decoder span {
  min-height: 70px;
  padding: 15px 16px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.code-decoder span + span {
  border-left: 1px solid var(--line);
}

.code-decoder b {
  display: block;
  margin-bottom: 2px;
  color: var(--acid);
  font-size: 1.3rem;
  line-height: 1;
}

.hero-lead {
  max-width: 690px;
  margin: 0 0 24px;
  color: #d5d8cd;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-lead strong {
  color: var(--white);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.hero-facts li {
  position: relative;
  padding-left: 14px;
}

.hero-facts li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  content: "";
  transform: rotate(45deg);
}

.registration-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(223, 255, 0, 0.38);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(223, 255, 0, 0.055), transparent 28%),
    rgba(9, 11, 3, 0.94);
  box-shadow: var(--shadow-acid), 0 28px 80px rgba(0, 0, 0, 0.35);
}

.registration-card::before,
.registration-card::after {
  position: absolute;
  width: 28px;
  height: 28px;
  content: "";
}

.registration-card::before {
  top: -2px;
  left: -2px;
  border-top: 3px solid var(--acid);
  border-left: 3px solid var(--acid);
}

.registration-card::after {
  right: -2px;
  bottom: -2px;
  border-right: 3px solid var(--acid);
  border-bottom: 3px solid var(--acid);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading h2 {
  margin: 7px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.form-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-step {
  color: var(--acid);
}

.registration-form,
.form-field {
  display: grid;
}

.registration-form {
  gap: 16px;
}

.form-field {
  gap: 7px;
}

.form-field label {
  color: #d8dbd2;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field input,
.country-control {
  min-height: 52px;
  border: 1px solid rgba(247, 248, 242, 0.17);
  border-radius: 2px;
  background: #070803;
  color: var(--white);
}

.form-field input {
  width: 100%;
  padding: 0 15px;
  outline: 0;
}

.form-field input::placeholder {
  color: #6f7468;
}

.form-field input:focus,
.country-control:focus-within {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(223, 255, 0, 0.09);
}

.phone-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 8px;
}

.country-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.country-control img {
  width: 22px;
  height: 16px;
  object-fit: cover;
}

.country-control span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.country-control select {
  position: absolute;
  inset: 0;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.custom-ddi {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.custom-ddi[hidden] {
  display: none;
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.74rem;
}

.field-error:empty {
  display: none;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--acid);
  border-radius: 2px;
  background: var(--acid);
  box-shadow: 0 0 20px rgba(223, 255, 0, 0.12);
  color: #070800;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--acid-hot);
  box-shadow: 0 0 28px rgba(223, 255, 0, 0.28);
  transform: translateY(-2px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-feedback {
  display: none;
  padding: 10px 12px;
  margin: 0;
  border: 1px solid currentColor;
  color: var(--danger);
  font-size: 0.8rem;
}

.form-feedback:not(:empty) {
  display: block;
}

.form-feedback[data-state="success"] {
  color: var(--success);
}

.form-consent {
  margin: 0;
  color: #7e8377;
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-consent a {
  color: #aeb3a6;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 0;
}

.section-index {
  color: var(--acid);
}

.section h2 {
  margin: 26px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.section h2 em {
  color: var(--acid);
  font-style: normal;
}

.tension {
  background: var(--white);
  color: #11130d;
}

.tension::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 4px;
  background: var(--acid);
  content: "";
}

.tension-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: clamp(34px, 8vw, 130px);
}

.tension .section-index {
  color: #647000;
}

.tension h2 em {
  color: #667300;
}

.tension-grid > div > p {
  max-width: 760px;
  color: #45493e;
  font-size: 1.04rem;
}

.pillars {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(223, 255, 0, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(223, 255, 0, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    #070803;
}

.section-heading {
  max-width: 950px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.pillar-grid article {
  position: relative;
  min-height: 290px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(223, 255, 0, 0.03), transparent);
}

.pillar-grid article + article {
  border-left: 1px solid var(--line);
}

.pillar-grid article > span {
  display: block;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.pillar-grid article > span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--acid);
  box-shadow: 0 0 9px var(--acid);
  content: "";
}

.pillar-grid h3 {
  margin: 48px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.origin {
  overflow: hidden;
}

.origin::after {
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 52%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(223, 255, 0, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(223, 255, 0, 0.04);
  content: "";
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.origin-copy p:not(.section-index) {
  max-width: 650px;
  color: var(--muted);
}

.origin-copy span {
  color: var(--acid);
  font-weight: 700;
}

.code-stack {
  border: 1px solid var(--line);
  background: rgba(10, 12, 4, 0.72);
  box-shadow: var(--shadow-acid);
}

.code-stack > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 14px 24px;
}

.code-stack > div + div {
  border-top: 1px solid var(--line);
}

.code-stack strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.8;
  text-shadow: 0 0 20px rgba(223, 255, 0, 0.22);
}

.code-stack span {
  color: #d9dcd2;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 25%, rgba(223, 255, 0, 0.07), transparent 26rem),
    linear-gradient(90deg, rgba(223, 255, 0, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    #070803;
}

.proof-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
  margin-bottom: 44px;
}

.proof-intro h2 {
  margin-bottom: 0;
}

.proof-support > p:first-child {
  margin: 0 0 24px;
  color: var(--muted);
}

.proof-support span {
  color: var(--acid);
  font-weight: 700;
}

.proof-total {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 0;
  color: #c8ccc1;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-total strong {
  color: var(--acid);
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 16px rgba(223, 255, 0, 0.22);
}

.proof-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.proof-filters,
.proof-controls {
  display: flex;
  gap: 8px;
}

.proof-filters {
  flex-wrap: wrap;
}

.proof-filters button,
.proof-controls button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(247, 248, 242, 0.025);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.proof-filters button {
  padding: 0 15px;
}

.proof-filters button:hover,
.proof-filters button:focus-visible,
.proof-controls button:hover,
.proof-controls button:focus-visible {
  border-color: var(--acid);
  color: var(--white);
}

.proof-filters button:focus-visible,
.proof-controls button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.proof-filters button.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: #070800;
}

.proof-controls {
  flex: 0 0 auto;
}

.proof-controls button {
  display: grid;
  min-width: 42px;
  padding: 0 12px;
  place-items: center;
}

.proof-controls button:not(.proof-autoplay) {
  font-size: 1.1rem;
}

.proof-autoplay[aria-pressed="false"] {
  border-color: rgba(223, 255, 0, 0.45);
  color: var(--acid);
}

.proof-carousel {
  display: flex;
  width: min(1560px, calc(100% - 28px));
  padding: 4px 0 20px;
  margin-inline: auto;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(223, 255, 0, 0.35) transparent;
  scrollbar-width: thin;
}

.proof-card {
  position: relative;
  flex: 0 0 clamp(230px, 19vw, 300px);
  height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--panel);
  scroll-snap-align: start;
}

.proof-card::before,
.proof-card::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.proof-card::before {
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(223, 255, 0, 0.65);
}

.proof-card::after {
  inset: 34% 0 0;
  background: linear-gradient(transparent, rgba(2, 3, 0, 0.96));
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
  transition: filter 300ms ease, transform 420ms ease;
}

.proof-card:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.proof-card figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: grid;
}

.proof-card figcaption span {
  margin-bottom: 4px;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-card figcaption strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.25;
}

.proof-hint {
  margin-top: 0;
  color: #71766a;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.presenter {
  border-block: 1px solid var(--line);
  background: #080a03;
}

.presenter-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.presenter-grid > img {
  width: 100%;
  max-height: 610px;
  border: 1px solid var(--line);
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  box-shadow:
    -14px 14px 0 rgba(223, 255, 0, 0.08),
    0 0 50px rgba(223, 255, 0, 0.06);
}

.presenter-grid > div > p:not(.section-index) {
  color: var(--muted);
}

blockquote {
  position: relative;
  padding: 24px 0 0 26px;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.25;
}

blockquote::before {
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--acid);
  content: "//";
}

.final-cta {
  text-align: center;
}

.final-card {
  position: relative;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 7vw, 90px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(223, 255, 0, 0.06), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow-acid);
}

.final-card::before {
  position: absolute;
  top: -1px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: var(--acid);
  box-shadow: 0 0 15px var(--acid);
  content: "";
}

.final-card h2 {
  max-width: 920px;
  margin-inline: auto;
}

.final-card > p:not(.event-kicker) {
  margin: -5px 0 28px;
  color: var(--muted);
}

.final-card .primary-button {
  width: min(100%, 410px);
}

footer {
  border-top: 1px solid var(--line-soft);
  background: #030400;
}

.footer-inner {
  min-height: 108px;
  color: #777c70;
  font-size: 0.72rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > a:last-child {
  color: #9da293;
}

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

.thanks-main {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  padding: 54px 0;
  overflow: hidden;
  place-items: center;
}

.thanks-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(223, 255, 0, 0.12), transparent 25rem),
    linear-gradient(90deg, rgba(223, 255, 0, 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(223, 255, 0, 0.025) 1px, transparent 1px) 0 0 / 64px 64px;
}

.thanks-shell {
  display: grid;
  justify-items: center;
}

.thanks-logo {
  margin-bottom: 34px;
}

.thanks-card {
  position: relative;
  width: min(100%, 660px);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  background: rgba(9, 11, 3, 0.94);
  box-shadow: var(--shadow-acid), 0 30px 90px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  place-items: center;
  transform: rotate(45deg);
}

.success-mark::before {
  content: "✓";
  transform: rotate(-45deg);
}

.thanks-card h1 {
  margin: 10px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.thanks-card h1 em {
  color: var(--acid);
  font-style: normal;
}

.thanks-lead,
.thanks-note {
  color: var(--muted);
}

.thanks-lead {
  margin: 0 auto 28px;
}

.next-step {
  padding: 22px;
  margin-bottom: 20px;
  border-block: 1px solid var(--line);
  text-align: left;
}

.next-step > span {
  color: var(--acid);
}

.next-step p {
  margin: 6px 0 0;
  color: #d1d4ca;
  font-size: 0.9rem;
}

.whatsapp-button {
  width: 100%;
}

.thanks-note {
  margin: 18px 0 0;
  font-size: 0.76rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .origin-grid,
  .presenter-grid,
  .proof-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .brand-signature {
    margin-inline: 0;
  }

  .proof-intro {
    gap: 18px;
  }

  .registration-card {
    width: min(100%, 620px);
  }

  .tension-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .presenter-grid > img {
    width: min(100%, 560px);
    max-height: 560px;
    object-position: center 22%;
  }

  .footer-inner {
    flex-wrap: wrap;
    padding-block: 28px;
  }
}

@media (max-width: 720px) {
  .proof-section {
    padding-inline: 0;
  }

  .section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-lockup span {
    display: none;
  }

  .brand-lockup strong {
    font-size: 1.05rem;
  }

  .header-cta {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .hero {
    min-height: auto;
    padding: 30px 10px 66px;
  }

  .hero-grid {
    gap: 34px;
  }

  .event-kicker {
    font-size: 0.69rem;
    line-height: 1.6;
    display: none;
  }

  .event-kicker span {
    display: block;
    margin-right: 0;
  }

  .brand-signature {
    width: 100%;
    margin: 18px 0 16px;
  }

  .brand-art {
    width: 100%;
    margin: 0;
  }

  .code-decoder {
    grid-template-columns: 1fr;
  }

  .code-decoder span {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 6px;
    align-items: center;
    min-height: auto;
    padding: 10px 2px;
  }

  .code-decoder span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .code-decoder b {
    margin: 0;
  }

  .hero-facts {
    display: grid;
  }

  .registration-card {
    padding: 26px 20px;
  }

  .section {
    padding-block: 70px;
  }

  .section h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    padding-right: 10px;
    padding-left: 10px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .pillar-grid article {
    min-height: auto;
    padding: 28px 20px;
  }

  .pillar-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pillar-grid h3 {
    margin-top: 26px;
  }

  .proof-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-filters {
    flex-wrap: wrap;
    padding: 2px 14px 6px 0;
    margin-right: -14px;
    overflow-x: auto;
  }

  .proof-filters button {
    flex: 0 0 auto;
  }

  .proof-controls {
    align-self: flex-end;
  }

  .proof-carousel {
    width: calc(100% - 14px);
    margin-left: 14px;
  }

  .proof-card {
    flex-basis: 76vw;
    height: 430px;
  }

  .proof-total {
    align-items: center;
  }

  .code-stack > div {
    grid-template-columns: 82px 1fr;
    min-height: 98px;
    padding-inline: 18px;
  }

  .code-stack strong {
    font-size: 3.5rem;
  }

  .presenter-grid > img {
    max-height: 430px;
  }

  .footer-inner {
    gap: 10px;
    justify-content: center;
  }

  .thanks-main {
    padding-block: 34px;
  }

  .thanks-logo span {
    display: inline-block;
  }
}

@media (max-width: 390px) {
  .phone-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .country-control {
    padding-inline: 9px;
  }

  .primary-button {
    padding-inline: 16px;
    font-size: 0.84rem;
  }
}

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

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