@font-face {
  font-family: "Kallisto Heavy";
  src: url("/src/public/assets/fonts/fonnts.com-Kallisto_Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --pf-navy: #121d59;
  --pf-blue: #2442b8;
  --pf-blue-deep: #182f91;
  --pf-red: #ef443d;
  --pf-yellow: #f0c84d;
  --pf-white: #fbfcff;
  --pf-paper: #f2f3f7;
  --pf-ink: #151c3b;
  --pf-muted: #5d6784;
  --pf-line: #d9deeb;
  --pf-display: "Kallisto Heavy", "Space Grotesk", Arial, sans-serif;
  --pf-body: "Space Grotesk", Arial, sans-serif;
  --shell-width: 1240px;
  --shell-gutter: clamp(20px, 4vw, 64px);
  --bk-ink: var(--pf-ink);
  --bk-muted: var(--pf-muted);
  --bk-cream: var(--pf-white);
  --bk-paper: var(--pf-paper);
  --bk-gold: var(--pf-red);
  --bk-gold-2: var(--pf-yellow);
  --bk-gold-3: #ffe9e6;
  --bk-line: rgba(18, 29, 89, 0.18);
  --bk-glass: #ffffff;
  --bk-glass-strong: #ffffff;
  --bk-shadow: 0 18px 50px rgba(18, 29, 89, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--pf-white);
  color: var(--pf-ink);
  font-family: var(--pf-body);
}

::selection {
  color: var(--pf-white);
  background: var(--pf-red);
}

::placeholder {
  color: #8f97ad;
}

input[type="checkbox"] {
  accent-color: var(--pf-red);
}

.pf-site.campaign-page {
  overflow: clip;
  color: var(--pf-ink);
  background: var(--pf-white);
}

.pf-site.campaign-page::before {
  display: none;
}

.pf-site .shell {
  width: min(var(--shell-width), calc(100% - (var(--shell-gutter) * 2)));
}

.pf-site .button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: none;
  font-family: var(--pf-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pf-site .button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.pf-site .button.primary {
  color: var(--pf-white);
  border-color: var(--pf-red);
  background: var(--pf-red);
}

.pf-site .button.primary:hover {
  border-color: var(--pf-navy);
  background: var(--pf-navy);
}

.pf-site .button.secondary {
  color: var(--pf-navy);
  border-color: rgba(18, 29, 89, 0.3);
  background: transparent;
}

.pf-site .button.secondary:hover {
  color: var(--pf-white);
  border-color: var(--pf-navy);
  background: var(--pf-navy);
}

.pf-site :is(a, button, input, select, [role="button"]):focus-visible {
  outline: 3px solid var(--pf-yellow);
  outline-offset: 4px;
}

.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--pf-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pf-eyebrow::before {
  content: "";
  width: 27px;
  height: 3px;
  background: var(--pf-red);
}

.pf-eyebrow > span {
  color: var(--pf-red);
}

.pf-eyebrow-light {
  color: var(--pf-white);
}

.pf-eyebrow-light::before {
  background: var(--pf-yellow);
}

.pf-eyebrow-light > span {
  color: var(--pf-yellow);
}

/* Home: editorial event pass */
.pf-hero {
  position: relative;
  color: var(--pf-ink);
  background: var(--pf-white);
}

.pf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--pf-line);
}

.pf-nav .brand-lockup,
.pf-site .page-nav .brand-lockup {
  width: 138px;
}

.pf-nav .brand-bk,
.pf-site .page-nav .brand-bk {
  display: block;
  width: 100%;
  min-height: 0;
}

.pf-nav .brand-bk img,
.pf-site .page-nav .brand-bk img {
  width: 100%;
  height: auto;
}

.pf-nav-meta {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  color: var(--pf-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pf-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--pf-red);
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pf-nav-link:hover {
  color: var(--pf-white);
  border-color: var(--pf-navy);
  background: var(--pf-navy);
  transform: translateY(-2px);
}

.pf-nav-link span {
  color: var(--pf-red);
  font-size: 18px;
  line-height: 0.7;
}

.pf-nav-link:hover span {
  color: var(--pf-white);
}

.pf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.05fr);
  gap: clamp(64px, 6vw, 88px);
  align-items: center;
  min-height: 680px;
  padding-top: 48px;
  padding-bottom: 52px;
}

.pf-hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 610px;
}

.pf-hero-title {
  max-width: 540px;
  margin: 28px 0 26px;
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: clamp(48px, 4.4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-transform: uppercase;
}

.pf-hero-title span {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.pf-hero-title .pf-title-accent {
  color: var(--pf-red);
}

.pf-hero-text {
  max-width: 520px;
  margin: 0;
  color: var(--pf-muted);
  font-size: 17px;
  line-height: 1.65;
}

.pf-hero-actions {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.pf-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 560px;
  padding: 40px 32px;
  isolation: isolate;
}

.pf-stage-step {
  position: absolute;
  z-index: -2;
  display: block;
}

.pf-stage-step-one {
  top: 24px;
  right: 0;
  width: 82%;
  height: 76%;
  background: var(--pf-navy);
}

.pf-stage-step-two {
  right: 24px;
  bottom: 0;
  width: 60%;
  height: 56%;
  background: var(--pf-blue);
}

.pf-stage-index {
  position: absolute;
  z-index: -1;
  top: 12px;
  right: 24px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--pf-display);
  font-size: clamp(120px, 13vw, 210px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.pf-stage-ticket {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
}

.pf-stage-ticket .prize-card {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 32px 30px;
  border: 0;
  border-radius: 18px;
  color: var(--pf-ink);
  background: var(--pf-white);
  box-shadow: 0 20px 55px rgba(18, 29, 89, 0.2);
  overflow: hidden;
}

.pf-stage-ticket .prize-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--pf-red);
}

.pf-stage-ticket .prize-eyebrow {
  margin: 0;
  color: var(--pf-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pf-stage-ticket .prize-main {
  display: block;
  margin-top: 15px;
  color: var(--pf-red);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-family: var(--pf-display);
  font-size: clamp(54px, 4.5vw, 64px);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.pf-stage-ticket .prize-label {
  margin-top: 10px;
  color: var(--pf-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pf-stage-ticket .prize-note {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  color: var(--pf-white);
  background: var(--pf-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pf-stage-ticket .prize-note-icon {
  width: 18px;
  color: var(--pf-white);
}

.pf-stage-ticket .prize-note-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pf-stage-ticket .prize-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.pf-stage-ticket .prize-logos img {
  width: auto;
  max-width: 112px;
  height: 30px;
  object-fit: contain;
}

.pf-stage-ticket .prize-logos img + img {
  height: 36px;
}

.pf-stage-ticket .prize-badge {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--pf-navy);
  background: var(--pf-yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.pf-phase-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}

.pf-phase-rail .hero-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  gap: 5px 15px;
  min-height: 122px;
  padding: 27px 22px;
  border-right: 1px solid var(--pf-line);
  color: var(--pf-navy);
}

.pf-phase-rail .hero-flow-step:last-child {
  border-right: 0;
}

.pf-phase-rail .hero-flow-icon {
  grid-row: 1 / 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(36, 66, 184, 0.24);
  border-radius: 50%;
  color: var(--pf-blue);
  background: transparent;
}

.pf-phase-rail .hero-flow-icon svg {
  display: none;
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pf-phase-rail .hero-flow-icon.form .icon-form,
.pf-phase-rail .hero-flow-icon.search .icon-search,
.pf-phase-rail .hero-flow-icon.calendar .icon-calendar,
.pf-phase-rail .hero-flow-icon.check .icon-check {
  display: block;
}

.pf-phase-rail .hero-flow-number {
  color: var(--pf-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pf-phase-rail .hero-flow-text {
  max-width: 170px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

/* Process */
.pf-process {
  padding: clamp(68px, 6vw, 84px) 0;
  background: var(--pf-white);
}

.pf-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  column-gap: clamp(50px, 9vw, 150px);
  align-items: end;
  margin-bottom: 48px;
}

.pf-section-heading .pf-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 25px;
}

.pf-section-heading h2,
.pf-advantage h2,
.pf-final h2 {
  margin: 0;
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: clamp(43px, 5.2vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.pf-section-heading h2 span {
  display: block;
  white-space: nowrap;
}

.pf-section-heading h2 span:last-child {
  color: var(--pf-red);
}

.pf-section-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--pf-muted);
  font-size: 16px;
  line-height: 1.65;
}

.pf-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--pf-line);
  border-left: 1px solid var(--pf-line);
}

.pf-process-grid .step-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  padding: 32px;
  border-right: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
  border-radius: 0;
  background: transparent;
}

.pf-process-grid .step-number {
  align-self: start;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--pf-red);
  color: var(--pf-white);
  font-family: var(--pf-display);
  font-size: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pf-process-grid .step-title {
  margin: 0 0 15px;
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-transform: uppercase;
}

.pf-process-grid .step-text {
  max-width: 410px;
  margin: 0;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Advantage and closing */
.pf-advantage {
  position: relative;
  padding: clamp(80px, 7.5vw, 104px) 0;
  color: var(--pf-white);
  background: var(--pf-navy);
  overflow: hidden;
}

.pf-advantage::after {
  content: "03";
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(16px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--pf-display);
  font-size: clamp(220px, 28vw, 400px);
  letter-spacing: -0.1em;
  line-height: 0.85;
  mask-image: linear-gradient(180deg, #000 38%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 38%, transparent 100%);
}

.pf-advantage-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.7fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.pf-advantage-title .pf-eyebrow {
  margin-bottom: 32px;
}

.pf-advantage h2 {
  color: var(--pf-white);
}

.pf-advantage h2 span {
  color: var(--pf-red);
}

.pf-advantage-copy > p {
  margin: 0 0 36px;
  color: #e0e5f5;
  font-size: 20px;
  line-height: 1.6;
}

.pf-event-data {
  margin: 0;
}

.pf-event-data div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pf-event-data div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pf-event-data dt {
  color: var(--pf-yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pf-event-data dd {
  margin: 0;
  color: var(--pf-white);
  font-size: 14px;
  font-weight: 600;
}

.pf-final {
  color: var(--pf-white);
  background: var(--pf-red);
}

.pf-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(30px, 5vw, 75px);
  align-items: center;
  min-height: 360px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.pf-final h2 {
  margin-top: 24px;
  color: var(--pf-white);
}

.pf-final .pf-eyebrow::before {
  background: var(--pf-yellow);
}

.pf-final-action p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.pf-button-light {
  color: var(--pf-navy) !important;
  border-color: var(--pf-white) !important;
  background: var(--pf-white) !important;
}

.pf-button-light:hover {
  color: var(--pf-white) !important;
  border-color: var(--pf-navy) !important;
  background: var(--pf-navy) !important;
}

/* Shared footer */
.pf-site .site-footer {
  width: 100%;
  max-width: none;
  padding: 0;
  color: var(--pf-white);
  background: #0b123b;
}

.pf-site .footer-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: clamp(35px, 7vw, 100px);
  align-items: end;
  width: min(var(--shell-width), calc(100% - (var(--shell-gutter) * 2)));
  margin: 0 auto;
  padding: 68px 0;
  border: 0;
  border-radius: 0;
  color: var(--pf-white);
  background: transparent;
  box-shadow: none;
}

.pf-site .footer-brand .brand-lockup {
  display: inline-block;
  width: 170px;
  padding: 0;
  background: transparent;
}

.pf-site .footer-brand .brand-bk,
.pf-site .footer-brand .brand-bk img {
  width: 100%;
  min-height: 0;
}

.pf-site .footer-brand p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #b6bdd5;
  font-size: 13px;
  line-height: 1.55;
}

.pf-site .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #b6bdd5;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.pf-site .footer-contact a {
  width: fit-content;
  color: var(--pf-white);
  text-decoration: none;
}

.pf-site .footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  font-weight: 600;
}

.pf-site .footer-phone svg {
  width: 15px;
  fill: none;
  stroke: var(--pf-red);
  stroke-width: 1.8;
}

.pf-site .social-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: var(--pf-white);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.pf-site .social-badge svg {
  width: 16px;
  fill: none;
  stroke: var(--pf-red);
  stroke-width: 1.8;
}

/* Inner pages */
.pf-inner {
  background: var(--pf-paper) !important;
}

.pf-inner .page-section {
  min-height: 70vh;
  padding-top: 0;
  padding-bottom: clamp(75px, 9vw, 120px);
}

.pf-inner .page-nav {
  min-height: 104px;
  padding: 0;
  border-bottom: 1px solid var(--pf-line);
}

.pf-inner .campaign-mark {
  margin: 38px 0 0;
  color: var(--pf-red);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-family: var(--pf-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pf-inner .page-hero {
  max-width: 920px;
  margin: 52px 0 58px;
  text-align: left;
}

.pf-inner .badge-pill {
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--pf-blue);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pf-inner .badge-pill::before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--pf-red);
}

.pf-inner .page-title {
  margin: 23px 0 22px;
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: clamp(42px, 5.7vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.pf-inner .page-title span:last-child,
.pf-inner .page-title span:nth-last-child(2) {
  color: var(--pf-red);
}

.pf-inner .page-lead {
  max-width: 700px;
  margin: 0;
  color: var(--pf-muted);
  font-size: 17px;
  line-height: 1.65;
}

.pf-cadastro .page-hero {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pf-cadastro .page-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--pf-white);
  background: var(--pf-red);
}

.pf-cadastro .page-hero .badge-pill::before {
  display: none;
}

.pf-cadastro .page-hero .page-lead {
  margin-right: auto;
  margin-left: auto;
}

.pf-cadastro .page-hero .page-lead span {
  display: block;
}

.pf-inner .form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(35px, 6vw, 80px);
  align-items: start;
}

.pf-inner .form-layout aside {
  position: sticky;
  top: 24px;
}

.pf-inner .form-layout aside .prize-card {
  min-height: 0;
  padding: 42px 42px 0;
  border: 0;
  border-radius: 18px;
  color: var(--pf-white);
  background: var(--pf-navy);
  box-shadow: none;
  filter: none;
}

.pf-inner .form-layout aside .prize-card::after {
  display: none;
}

.pf-inner .form-layout aside .prize-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--pf-blue);
}

.pf-inner .form-layout aside .prize-eyebrow {
  color: var(--pf-yellow);
}

.pf-inner .form-layout aside .prize-main {
  color: var(--pf-white);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-family: var(--pf-display);
  font-size: clamp(72px, 8vw, 110px);
  letter-spacing: -0.08em;
  filter: none;
  animation: none;
}

.pf-inner .form-layout aside .prize-amount {
  filter: none;
}

.pf-inner .form-layout aside .prize-label {
  color: var(--pf-white);
}

.pf-inner .form-layout aside .prize-note {
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  color: var(--pf-white);
  background: var(--pf-red);
  box-shadow: 0 12px 30px rgba(239, 68, 61, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.pf-inner .form-layout aside .prize-note-icon {
  color: var(--pf-white);
}

.pf-inner .form-layout aside .prize-logos {
  gap: 12px;
  margin: 30px -42px 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(18, 29, 89, 0.12);
  border-radius: 0 0 18px 18px;
  background: var(--pf-white);
  box-shadow: none;
  filter: none;
}

.pf-inner .form-layout aside .prize-logos img {
  max-width: 110px;
  height: 31px;
}

.pf-inner .signup-card,
.pf-inner .glass-panel,
.pf-inner .terms-card {
  border: 1px solid var(--pf-line);
  border-radius: 0;
  background: var(--pf-white);
  box-shadow: none;
  backdrop-filter: none;
}

.pf-inner .signup-card {
  padding: clamp(30px, 5vw, 58px);
}

.pf-inner .signup-form {
  gap: 24px;
}

.pf-inner .form-head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--pf-line);
}

.pf-inner .form-title {
  margin: 17px 0 12px;
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: clamp(30px, 3.4vw, 45px);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.pf-inner .form-copy {
  color: var(--pf-muted);
  line-height: 1.6;
}

.pf-inner .signup-card label:not(.choice-card):not(.terms-row),
.pf-inner .signup-card legend,
.pf-inner .signup-card .select-field > span {
  color: var(--pf-blue) !important;
}

.pf-inner .signup-card input:not([type="checkbox"]),
.pf-inner .signup-card select {
  height: 54px !important;
  padding: 0 16px !important;
  border: 1px solid #cbd1df !important;
  border-radius: 4px !important;
  color: var(--pf-ink) !important;
  background: var(--pf-white) !important;
  box-shadow: none !important;
}

.pf-inner .signup-card input:not([type="checkbox"]):focus,
.pf-inner .signup-card select:focus {
  border-color: var(--pf-blue) !important;
  box-shadow: 0 0 0 3px rgba(36, 66, 184, 0.12) !important;
}

.pf-inner .profile-options {
  gap: 10px;
}

.pf-inner .choice-card {
  border: 1px solid #cbd1df;
  border-radius: 4px;
  color: var(--pf-ink);
  background: var(--pf-white);
}

.pf-inner .choice-card:has(input:checked) {
  border-color: var(--pf-blue);
  background: #eef1ff;
}

.pf-inner .terms-row a {
  color: var(--pf-blue);
}

.pf-inner .slider-track {
  height: 62px;
  border: 1px solid rgba(36, 66, 184, 0.25);
  border-radius: 5px;
  background: #edf0fa;
}

.pf-inner .slider-fill {
  border-radius: 4px;
  background: var(--pf-blue);
}

.pf-inner .slider-knob {
  color: var(--pf-white);
  border: 0;
  border-radius: 4px;
  background: var(--pf-red);
  box-shadow: none;
}

.pf-inner .slider-label {
  color: var(--pf-navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pf-inner .success-icon,
.pf-thanks .thanks-icon {
  color: var(--pf-white);
  background: var(--pf-red);
  box-shadow: none;
}

.pf-inner .success-title {
  color: var(--pf-navy);
  font-family: var(--pf-display);
  text-transform: uppercase;
}

.pf-inner .ghost-button {
  color: var(--pf-blue);
  border-color: var(--pf-blue);
  border-radius: 4px;
}

.pf-terms .terms-content {
  max-width: 1100px;
}

.pf-terms .terms-card {
  margin-top: 60px;
  padding: clamp(34px, 6vw, 76px);
}

.pf-terms .terms-card h2 {
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}

.pf-terms .terms-card h3 {
  color: var(--pf-blue);
}

.pf-thanks {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--pf-navy) !important;
}

.pf-thanks .page-section {
  min-height: auto;
}

.pf-thanks .thanks-content {
  max-width: 820px;
  padding: clamp(40px, 7vw, 80px);
  color: var(--pf-ink);
  background: var(--pf-white);
}

.pf-thanks .brand-lockup {
  width: 140px;
}

.pf-thanks .page-title {
  color: var(--pf-navy);
}

.pf-thanks .badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--pf-white);
  background: var(--pf-red);
}

.pf-thanks .badge-pill::before {
  display: none;
}

.pf-thanks .page-title span:not(.pf-title-accent) {
  display: block;
  color: var(--pf-navy);
}

.pf-thanks .page-title .pf-title-accent {
  color: var(--pf-red);
}

.pf-login .page-section {
  min-height: 78vh;
}

.pf-login .form-layout {
  display: block;
}

.pf-login .signup-card {
  margin-top: 65px;
}

.pf-dashboard .page-hero {
  margin-bottom: 42px;
}

.pf-dashboard .glass-panel {
  margin-bottom: 20px;
}

.pf-dashboard table thead {
  color: var(--pf-white);
  background: var(--pf-navy);
}

.pf-dashboard table tbody tr:nth-child(even) {
  background: var(--pf-paper);
}

/* One deliberate entrance sequence */
@keyframes pfEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pf-home .pf-hero-copy > *,
.pf-home .pf-stage,
.pf-home .pf-phase-rail {
  opacity: 0;
  animation: pfEnter 620ms cubic-bezier(0.22, 0.8, 0.25, 1) forwards;
}

.pf-home .pf-hero-copy > :nth-child(1) { animation-delay: 80ms; }
.pf-home .pf-hero-copy > :nth-child(2) { animation-delay: 150ms; }
.pf-home .pf-hero-copy > :nth-child(3) { animation-delay: 220ms; }
.pf-home .pf-hero-copy > :nth-child(4) { animation-delay: 290ms; }
.pf-home .pf-stage { animation-delay: 190ms; }
.pf-home .pf-phase-rail { animation-delay: 370ms; }

@media (max-width: 1100px) {
  .pf-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .pf-hero-copy {
    max-width: 680px;
  }

  .pf-stage {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 36px 28px;
  }

  .pf-stage-ticket {
    width: min(380px, 100%);
  }

  .pf-phase-rail .hero-flow-step {
    padding-inline: 14px;
  }

  .pf-final-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
  }
}

@media (max-width: 860px) {
  .pf-nav-meta > span {
    display: none;
  }

  .pf-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 70px;
  }

  .pf-hero-copy {
    max-width: 680px;
  }

  .pf-stage {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .pf-stage-step-one,
  .pf-stage-step-two {
    right: 0;
  }

  .pf-stage-ticket {
    width: min(380px, 100%);
  }

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

  .pf-phase-rail .hero-flow-step:nth-child(2) {
    border-right: 0;
  }

  .pf-phase-rail .hero-flow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pf-line);
  }

  .pf-section-heading,
  .pf-advantage-grid {
    grid-template-columns: 1fr;
  }

  .pf-section-heading > p {
    margin-top: 25px;
  }

  .pf-advantage-copy > p {
    margin-top: 0;
  }

  .pf-final-grid {
    grid-template-columns: 1fr;
  }

  .pf-final-action {
    grid-column: auto;
  }

  .pf-site .footer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .pf-site .footer-social {
    grid-column: 2;
  }

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

  .pf-inner .form-layout aside {
    position: static;
  }

  .pf-inner .form-layout aside .prize-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .pf-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 36px 18px 28px;
  }

  .pf-stage-step-one {
    width: 92%;
    height: 52%;
  }

  .pf-stage-step-two {
    right: 0;
    width: 70%;
    height: 48%;
  }

  .pf-stage-ticket {
    width: min(360px, 100%);
  }

  .pf-stage-ticket .prize-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell-gutter: 18px;
  }

  .pf-site .button {
    width: 100%;
    justify-content: center;
  }

  .pf-nav,
  .pf-inner .page-nav {
    min-height: 86px;
  }

  .pf-nav .brand-lockup,
  .pf-site .page-nav .brand-lockup {
    width: 112px;
  }

  .pf-nav-link {
    padding-inline: 14px;
    font-size: 12px;
  }

  .pf-nav-link span {
    display: none;
  }

  .pf-hero-grid {
    gap: 42px;
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 45px;
  }

  .pf-hero-title {
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    font-size: clamp(20px, 6.3vw, 32px);
  }

  .pf-hero-text {
    font-size: 15px;
  }

  .pf-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pf-stage {
    min-height: 0;
    padding: 30px 14px 24px;
  }

  .pf-stage-step-one {
    width: 94%;
    height: 50%;
  }

  .pf-stage-step-two {
    width: 72%;
    height: 47%;
  }

  .pf-stage-ticket {
    width: 100%;
  }

  .pf-stage-ticket .prize-card {
    min-height: 0;
    padding: 22px;
  }

  .pf-stage-ticket .prize-logos {
    gap: 10px;
  }

  .pf-stage-ticket .prize-logos img {
    max-width: 96px;
    height: 27px;
  }

  .pf-stage-ticket .prize-logos img + img {
    height: 32px;
  }

  .pf-stage-ticket .prize-badge {
    margin-top: 15px;
    padding: 10px 12px;
    font-size: 9px;
  }

  .pf-stage-ticket .prize-main {
    font-size: 57px;
  }

  .pf-stage-index {
    top: 5px;
    right: 0;
    font-size: 100px;
  }

  .pf-phase-rail {
    grid-template-columns: 1fr;
  }

  .pf-phase-rail .hero-flow-step,
  .pf-phase-rail .hero-flow-step:nth-child(2) {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--pf-line);
  }

  .pf-phase-rail .hero-flow-step:last-child {
    border-bottom: 0;
  }

  .pf-process {
    padding-block: 85px;
  }

  .pf-section-heading {
    margin-bottom: 45px;
  }

  .pf-section-heading h2,
  .pf-advantage h2,
  .pf-final h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .pf-section-heading h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .pf-process-grid {
    grid-template-columns: 1fr;
  }

  .pf-process-grid .step-item {
    grid-template-columns: 52px 1fr;
    min-height: 0;
    padding: 30px 24px;
  }

  .pf-advantage-grid {
    gap: 48px;
  }

  .pf-advantage-copy > p {
    font-size: 17px;
  }

  .pf-event-data div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .pf-final-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

  .pf-final-action {
    grid-column: auto;
  }

  .pf-site .footer-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pf-site .footer-social {
    grid-column: auto;
  }

  .pf-inner .page-hero {
    margin-top: 42px;
  }

  .pf-inner .page-title {
    font-size: clamp(39px, 12vw, 56px);
  }

  .pf-inner .page-title span {
    display: inline;
  }

  .pf-inner .signup-card {
    padding: 28px 20px;
  }

  .pf-inner .form-grid,
  .pf-inner .profile-options {
    grid-template-columns: 1fr;
  }

  .pf-inner .form-layout aside .prize-card {
    padding: 32px 25px 0;
  }

  .pf-inner .form-layout aside .prize-logos {
    margin: 24px -25px 0;
    padding: 16px 18px;
  }

  .pf-inner .form-layout aside .prize-main {
    font-size: 74px;
  }

  .pf-dashboard .page-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-home .pf-hero-copy > *,
  .pf-home .pf-stage,
  .pf-home .pf-phase-rail {
    opacity: 1;
    animation: none;
  }
}
