:root {
  --navy-950: #07162b;
  --navy-900: #0b1f3a;
  --navy-800: #10294c;
  --navy-700: #16355f;
  --white: #ffffff;
  --surface: #f3f6fb;
  --surface-strong: #e8eef6;
  --ink: #17263d;
  --ink-soft: #4c5b72;
  --border: rgba(11, 31, 58, 0.12);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent-red: #b54d53;
  --accent-red-soft: rgba(181, 77, 83, 0.14);
  --shadow-xl: 0 40px 90px rgba(7, 22, 43, 0.22);
  --shadow-lg: 0 18px 48px rgba(7, 22, 43, 0.14);
  --shadow-sm: 0 6px 18px rgba(7, 22, 43, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1120px, calc(100% - 40px));
  --transition: 220ms ease;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(181, 77, 83, 0.05), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(11, 31, 58, 0.08), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  mix-blend-mode: multiply;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  padding: 28px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 34%, rgba(77, 125, 196, 0.2), transparent 19%),
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 88% 74%, rgba(181, 77, 83, 0.12), transparent 16%),
    linear-gradient(130deg, #07162b 0%, #0b1f3a 48%, #10294c 100%);
}

.hero::before,
.section--navy-soft::before,
.form-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
  opacity: 0.18;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 42%, rgba(71, 114, 183, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%, rgba(0, 0, 0, 0.18) 100%);
}

.hero__shell {
  position: relative;
  z-index: 1;
}

.hero__shell::before {
  content: "";
  position: absolute;
  top: 108px;
  right: -96px;
  width: min(46vw, 620px);
  height: min(40vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 138, 212, 0.18), rgba(89, 138, 212, 0.06) 42%, transparent 74%);
  filter: blur(18px);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white), var(--accent-red));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.topbar__cta,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 34px rgba(5, 17, 34, 0.16);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.topbar__cta {
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.84);
}

.topbar__cta::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(181, 77, 83, 0.72));
  opacity: 0.78;
}

.topbar__cta:hover,
.back-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero__content,
.section__grid,
.form-shell {
  display: grid;
  align-items: center;
  gap: 40px;
}

.hero__content {
  align-items: start;
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 0.98fr);
  gap: clamp(32px, 4vw, 56px);
  padding-top: 22px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow--dark {
  color: rgba(11, 31, 58, 0.62);
}

h1,
h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--navy-900);
}

h1 span,
h2 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero__brand-display {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
}

.hero__brand-display span:first-child {
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.86;
  color: #ffffff;
  text-shadow: 0 16px 34px rgba(7, 22, 43, 0.28);
}

.hero__brand-display span:last-child {
  padding-left: 0.42em;
  font-size: clamp(1rem, 2.1vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.48em;
  color: rgba(255, 255, 255, 0.62);
}

.hero__headline {
  max-width: 14ch;
  font-size: clamp(2.14rem, 3vw, 3.18rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
  color: #f2f6fc;
  text-wrap: balance;
}

.headline-line {
  max-width: none;
  margin-top: 0.1em;
  color: rgba(225, 233, 246, 0.84);
}

.headline-line--muted {
  margin-top: 16px;
  max-width: none;
  font-size: 0.9em;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.7);
}

.section--light h2 span,
.section--final h2 span {
  color: rgba(11, 31, 58, 0.65);
}

.lead {
  font-size: clamp(0.98rem, 1.7vw, 1.04rem);
  line-height: 1.46;
  max-width: 58ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.lead--dark {
  color: var(--ink-soft);
}

.cta-caption {
  font-size: clamp(0.98rem, 1.7vw, 1.04rem);
  line-height: 1.46;
}

.prose,
.section__closing,
.microcopy,
.privacy-note,
.form-status {
  font-size: clamp(0.98rem, 1.7vw, 1.04rem);
  line-height: 1.5;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 16px;
  margin: 20px 0 0;
}

.date-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 158px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 42px rgba(4, 16, 34, 0.2);
}

.date-pill__label,
.form-summary__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.date-pill strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.date-pill__detail {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.microcopy {
  margin: 0;
  padding-left: 18px;
  max-width: 32rem;
  border-left: 1px solid rgba(181, 77, 83, 0.75);
  color: rgba(255, 255, 255, 0.72);
}

.microcopy--dark {
  color: var(--ink-soft);
}

.hero__actions {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-top: 22px;
}

.cta-caption {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 34%, transparent 74%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.button::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -18px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 123, 192, 0.42), transparent 70%);
  filter: blur(16px);
  opacity: 0;
  transform: scale(0.84);
  transition:
    opacity var(--transition),
    transform var(--transition);
  pointer-events: none;
  z-index: -2;
}

.button--light {
  color: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(236, 243, 252, 0.96));
  box-shadow:
    0 26px 52px rgba(30, 70, 125, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.button--light-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 42px rgba(4, 16, 34, 0.18);
}

.button--dark {
  color: var(--white);
  border-color: rgba(120, 161, 223, 0.28);
  background: linear-gradient(180deg, #102b4f, #0a1d36);
  box-shadow:
    0 22px 44px rgba(4, 16, 34, 0.24),
    inset 0 1px 0 rgba(164, 195, 241, 0.14);
}

.button--hero {
  min-height: 64px;
  padding: 0 34px;
}

.button--cta-primary {
  color: #0a1d35;
  --pulse-shadow-rest:
    0 30px 64px rgba(34, 79, 137, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  --pulse-shadow-active:
    0 34px 72px rgba(43, 96, 164, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  box-shadow:
    0 30px 64px rgba(34, 79, 137, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.button--cta-primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 34%, transparent 72%),
    linear-gradient(90deg, transparent 0 84%, rgba(181, 77, 83, 0.12) 84% 100%);
}

.button--cta-primary::after {
  opacity: 0.16;
}

.button--cta-secondary {
  border-color: rgba(86, 126, 191, 0.24);
  background: linear-gradient(180deg, #102847, #0a1b30);
  box-shadow:
    0 18px 36px rgba(4, 16, 34, 0.2),
    inset 0 1px 0 rgba(164, 195, 241, 0.1);
}

.button--cta-tertiary {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(4, 16, 34, 0.14);
}

.button--cta-final {
  border-color: rgba(126, 169, 236, 0.34);
  --pulse-shadow-rest:
    0 28px 54px rgba(8, 29, 56, 0.24),
    inset 0 1px 0 rgba(176, 206, 249, 0.16);
  --pulse-shadow-active:
    0 32px 62px rgba(20, 58, 104, 0.28),
    inset 0 1px 0 rgba(186, 214, 252, 0.18);
  background: linear-gradient(180deg, #143561, #0a1f3b);
  box-shadow:
    0 28px 54px rgba(8, 29, 56, 0.24),
    inset 0 1px 0 rgba(176, 206, 249, 0.16);
}

.button--pulse {
  animation: buttonBreath 5.8s ease-in-out infinite;
}

.button--pulse::after {
  opacity: 0.14;
  animation: buttonGlowPulse 5.8s ease-in-out infinite;
}

.button:hover::after {
  opacity: 0.72;
  transform: scale(1);
}

.button:hover,
.topbar__cta:hover,
.back-link:hover,
.floating-cta:hover {
  text-decoration: none;
}

.button--cta-primary:hover {
  box-shadow:
    0 34px 72px rgba(43, 96, 164, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button--cta-secondary:hover {
  border-color: rgba(108, 149, 214, 0.32);
  box-shadow:
    0 22px 42px rgba(10, 32, 60, 0.22),
    inset 0 1px 0 rgba(182, 210, 248, 0.12);
}

.button--cta-tertiary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.button--cta-final:hover {
  box-shadow:
    0 34px 64px rgba(20, 58, 104, 0.28),
    inset 0 1px 0 rgba(190, 218, 252, 0.2);
}

.button:focus-visible,
.topbar__cta:focus-visible,
.back-link:focus-visible,
.floating-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.3),
    0 0 0 7px rgba(70, 116, 190, 0.28),
    0 24px 48px rgba(7, 22, 43, 0.18);
}

.button--large,
.button--full {
  width: 100%;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
}

.hero__portrait::before {
  content: "";
  position: absolute;
  inset: -6% 4% 18% -4%;
  border-radius: 50%;
  background: radial-gradient(circle at 54% 34%, rgba(79, 129, 204, 0.34), rgba(79, 129, 204, 0.08) 48%, transparent 76%);
  filter: blur(28px);
  pointer-events: none;
}

.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 14% -8% -14% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 22, 43, 0.44), transparent 70%);
  filter: blur(32px);
  pointer-events: none;
}

.hero__portrait-frame {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 26%, rgba(255, 255, 255, 0.02) 100%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 56px 130px rgba(3, 12, 26, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(69, 110, 175, 0.16), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.hero__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
  filter: saturate(1.01) contrast(1.05) brightness(0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero__countdown-shell {
  width: min(100%, 34rem);
  margin-top: 22px;
  padding: 18px 20px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 44px rgba(4, 16, 34, 0.2);
  backdrop-filter: blur(12px);
}

.hero__countdown-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown__item {
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  text-align: center;
}

.countdown__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.countdown__item span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section--light {
  background:
    radial-gradient(circle at top right, rgba(16, 41, 76, 0.04), transparent 25%),
    linear-gradient(180deg, #ffffff, #f9fbfe);
}

.section--insight {
  overflow: hidden;
}

.section__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
}

.section__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.section--insight .section__grid--single {
  position: relative;
}

.section--insight .section__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.section--insight .prose {
  display: grid;
  gap: 12px;
  max-width: 58ch;
}

.section--insight .prose p {
  margin: 0;
}

.section--insight .button--cta-secondary {
  margin-top: 8px;
}

.section--insight .microcopy {
  margin-top: 14px;
}

.prose p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.fit-card,
.form-card,
.final-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section--navy-soft {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(181, 77, 83, 0.12), transparent 20%),
    linear-gradient(180deg, #0d2240, #102b4e 100%);
}

.section--navy-soft h2,
.section--navy-soft p {
  color: var(--white);
}

.section__center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.fit-card {
  padding: 24px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.fit-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(181, 77, 83, 0.7), transparent);
}

.fit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.section__closing {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
}

.section__closing p:first-child {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.section__closing .button--cta-tertiary {
  width: min(100%, 35rem);
  min-height: 64px;
  padding: 0 34px;
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 252, 0.94));
  color: var(--navy-900);
  box-shadow:
    0 24px 52px rgba(4, 16, 34, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section__closing .button--cta-tertiary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 34%, transparent 72%),
    linear-gradient(90deg, transparent 0 86%, rgba(181, 77, 83, 0.1) 86% 100%);
}

.section__closing .button--cta-tertiary::after {
  opacity: 0.14;
}

.section__closing .button--cta-tertiary:hover {
  box-shadow:
    0 28px 58px rgba(9, 28, 51, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.section__closing .microcopy {
  width: min(100%, 35rem);
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.42;
  text-align: left;
}

.section--final {
  padding-top: 92px;
  background:
    radial-gradient(circle at left top, rgba(181, 77, 83, 0.08), transparent 24%),
    linear-gradient(180deg, #f7fafe, #ffffff);
}

.final-card {
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  text-align: left;
}

.prose--final {
  max-width: 760px;
  margin: 24px 0 32px;
}

.final-card .button--cta-final {
  width: min(100%, 29rem);
  justify-content: center;
}

.final-card .microcopy {
  width: min(100%, 29rem);
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.hero__content--compact {
  align-items: center;
}

.hero__headline--wide {
  max-width: 15ch;
}

.hero__event-card {
  width: min(100%, 42rem);
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 44px rgba(4, 16, 34, 0.18);
  backdrop-filter: blur(12px);
}

.hero__event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hero__event-item {
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero__event-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero__event-item strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.section__center--narrow {
  max-width: 38rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.overview-card {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(9, 28, 51, 0.08);
}

.overview-card h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.overview-card p {
  margin: 0;
  color: var(--ink-soft);
}

.fit-grid--stack {
  margin-top: 34px;
}

.section--conversion {
  padding-top: 84px;
}

.conversion-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.conversion-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.conversion-copy h2,
.conversion-form__title {
  color: var(--navy-900);
}

.conversion-copy h2 {
  margin: 0;
}

.conversion-copy .lead {
  margin: 0;
  max-width: 34rem;
}

.conversion-copy .button {
  width: min(100%, 28rem);
}

.page-home [data-form-section] {
  scroll-margin-top: 96px;
}

.conversion-form {
  align-self: stretch;
}

.conversion-form__title {
  margin: 0;
  font-size: clamp(1.82rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.conversion-form__lead {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.conversion-form__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.conversion-form__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.06);
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer {
  position: relative;
  overflow-x: hidden;
  padding: 34px 0 38px;
  background:
    linear-gradient(180deg, rgba(247, 250, 254, 0.4), rgba(244, 248, 253, 0.88)),
    transparent;
}

.page-home .footer {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.14), transparent);
  transform: translateX(-50%);
}

.footer__shell {
  display: grid;
  gap: 22px;
}

.footer__legal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-note {
  padding-top: 2px;
}

.legal-note h3 {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.72);
}

.legal-note p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.58;
  color: rgba(76, 91, 114, 0.86);
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.floating-cta {
  --floating-cta-shift-x: 0;
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  max-width: calc(100vw - 44px);
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 225, 0.2);
  background: linear-gradient(180deg, rgba(176, 74, 87, 0.98), rgba(140, 48, 61, 0.98));
  box-shadow:
    0 20px 42px rgba(71, 20, 30, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 235, 238, 0.16);
  backdrop-filter: blur(16px);
  color: #fffaf9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  opacity: 1;
  transform: translate3d(var(--floating-cta-shift-x), 0, 0);
  animation: floatingCtaBreath 6s ease-in-out infinite;
  will-change: transform, opacity;
  transition:
    opacity var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.floating-cta::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(255, 214, 221, 0.78));
  box-shadow: 0 0 0 8px rgba(255, 214, 221, 0.08);
}

.floating-cta--visible {
  opacity: 1;
  transform: translate3d(var(--floating-cta-shift-x), 0, 0);
}

.floating-cta:hover {
  transform: translate3d(var(--floating-cta-shift-x), -2px, 0);
  box-shadow:
    0 26px 52px rgba(83, 24, 36, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 240, 243, 0.2);
  border-color: rgba(255, 228, 232, 0.26);
  background: linear-gradient(180deg, rgba(183, 80, 93, 0.98), rgba(146, 52, 65, 0.98));
}

.floating-cta {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--floating-cta-shift-x), 18px, 0);
}

.floating-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(var(--floating-cta-shift-x), 0, 0);
}

@keyframes floatingCtaBreath {
  0%,
  100% {
    box-shadow:
      0 20px 42px rgba(71, 20, 30, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.04),
      inset 0 1px 0 rgba(255, 235, 238, 0.16);
  }

  50% {
    box-shadow:
      0 24px 50px rgba(83, 24, 36, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      inset 0 1px 0 rgba(255, 240, 243, 0.18);
  }
}

@keyframes buttonBreath {
  0%,
  100% {
    box-shadow: var(--pulse-shadow-rest);
  }

  50% {
    box-shadow: var(--pulse-shadow-active);
  }
}

@keyframes buttonGlowPulse {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.86);
  }

  50% {
    opacity: 0.26;
    transform: scale(0.96);
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  color: rgba(11, 31, 58, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.form-layout {
  position: relative;
  min-height: 100svh;
  padding: 32px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(181, 77, 83, 0.08), transparent 18%),
    linear-gradient(180deg, #f4f8fd, #ffffff 30%);
}

.back-link {
  margin-bottom: 28px;
  border-color: rgba(11, 31, 58, 0.12);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.7);
}

.form-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
}

.form-summary {
  display: grid;
  gap: 14px;
  max-width: 340px;
  margin-top: 30px;
}

.form-summary__item {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.form-summary__item strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-900);
}

.form-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.signup-form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
}

.field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.field input::placeholder {
  color: rgba(76, 91, 114, 0.7);
}

.field input:focus {
  border-color: rgba(11, 31, 58, 0.4);
  box-shadow: 0 0 0 4px rgba(11, 31, 58, 0.08);
}

.field input:focus-visible {
  border-color: rgba(24, 61, 111, 0.42);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 0 6px rgba(36, 82, 145, 0.12);
}

.field--invalid input {
  border-color: rgba(181, 77, 83, 0.72);
  box-shadow: 0 0 0 4px rgba(181, 77, 83, 0.08);
}

.field__error {
  min-height: 18px;
  color: var(--accent-red);
  font-size: 0.84rem;
}

.form-card__footer {
  display: grid;
  gap: 18px;
  margin-top: 6px;
}

.privacy-note {
  margin: 0;
  color: var(--ink-soft);
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--navy-700);
  font-size: 0.92rem;
}

.form-status--error {
  color: var(--accent-red);
}

.button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 1080px) {
  .footer__legal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

@media (min-width: 921px) {
  .hero__shell {
    min-height: calc(100svh - 132px);
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .hero__content {
    align-self: center;
    padding-top: 0;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-bottom: 70px;
  }

  .hero__content,
  .section__grid,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .conversion-card {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 24px;
    padding-top: 8px;
  }

  .hero__portrait {
    order: -1;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .hero__copy {
    max-width: 100%;
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
    --radius-xl: 28px;
    --radius-lg: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 38px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2px;
  }

  .topbar__cta,
  .back-link {
    width: 100%;
  }

  .brand {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .footer {
    padding-top: 30px;
  }

  .footer__shell {
    gap: 18px;
  }

  .legal-note h3 {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .legal-note p {
    font-size: 0.84rem;
    line-height: 1.54;
  }

  h2 {
    font-size: clamp(1.84rem, 7.6vw, 2.5rem);
  }

  .hero__brand-display {
    margin: 4px 0 14px;
  }

  .hero__brand-display span:first-child {
    font-size: clamp(3.55rem, 16vw, 5.2rem);
  }

  .hero__brand-display span:last-child {
    padding-left: 0.3em;
    font-size: 0.92rem;
    letter-spacing: 0.34em;
  }

  .hero__headline {
    max-width: 100%;
    font-size: clamp(1.96rem, 8.2vw, 2.66rem);
    line-height: 1.04;
    letter-spacing: -0.038em;
  }

  .headline-line,
  .headline-line--muted {
    max-width: 100%;
  }

  .headline-line {
    margin-top: 0.12em;
  }

  .headline-line--muted {
    margin-top: 12px;
    line-height: 1.12;
  }

  .hero__content {
    gap: 14px;
    padding-top: 2px;
  }

  .hero__event-card {
    margin-top: 22px;
    padding: 14px;
  }

  .hero__event-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero__event-item:last-child {
    grid-column: 1 / -1;
  }

  .hero__copy {
    order: 2;
    max-width: 100%;
  }

  .hero__portrait {
    order: 1;
    width: min(72%, 280px);
    max-width: 280px;
    margin: 2px auto 0;
  }

  .hero__shell::before,
  .hero__portrait::before,
  .hero__portrait::after {
    display: none;
  }

  .hero__portrait-frame {
    padding: 10px;
    box-shadow:
      0 26px 58px rgba(3, 12, 26, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .date-pill,
  .button {
    width: 100%;
  }

  .topbar__cta,
  .button {
    min-height: 54px;
    font-size: 0.84rem;
    letter-spacing: 0.07em;
  }

  .page-home .topbar__cta,
  .page-home .button--cta-tertiary,
  .page-home .floating-cta {
    border-color: rgba(255, 228, 232, 0.28);
    background: linear-gradient(180deg, rgba(188, 88, 98, 0.98), rgba(146, 53, 64, 0.98));
    color: #fffaf8;
    box-shadow:
      0 18px 38px rgba(83, 24, 36, 0.26),
      0 0 0 1px rgba(255, 255, 255, 0.04),
      inset 0 1px 0 rgba(255, 240, 243, 0.24);
  }

  .page-home .topbar__cta {
    color: #fffaf8;
    --pulse-shadow-rest:
      0 18px 38px rgba(83, 24, 36, 0.24),
      inset 0 1px 0 rgba(255, 240, 243, 0.2);
    --pulse-shadow-active:
      0 22px 46px rgba(97, 28, 41, 0.3),
      inset 0 1px 0 rgba(255, 245, 246, 0.24);
    animation: buttonBreath 7.2s ease-in-out infinite;
  }

  .page-home .button--cta-primary {
    --pulse-shadow-rest:
      0 22px 42px rgba(29, 72, 129, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    --pulse-shadow-active:
      0 26px 50px rgba(37, 88, 154, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(180deg, #ffffff, #edf4fd 96%);
    color: #0b203c;
    box-shadow:
      0 22px 42px rgba(29, 72, 129, 0.26),
      0 0 0 1px rgba(255, 255, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .page-home .button--cta-secondary,
  .page-home .button--cta-final {
    border-color: rgba(140, 182, 245, 0.4);
    background: linear-gradient(180deg, #163b68, #0c2340);
    color: #fffdfc;
    box-shadow:
      0 20px 40px rgba(10, 32, 60, 0.24),
      0 0 0 1px rgba(99, 139, 209, 0.12),
      inset 0 1px 0 rgba(191, 219, 252, 0.18);
  }

  .page-home .button--cta-final {
    --pulse-shadow-rest:
      0 20px 40px rgba(10, 32, 60, 0.22),
      inset 0 1px 0 rgba(191, 219, 252, 0.16);
    --pulse-shadow-active:
      0 24px 48px rgba(18, 48, 88, 0.26),
      inset 0 1px 0 rgba(202, 227, 255, 0.2);
  }

  .page-home .button--cta-secondary {
    --pulse-shadow-rest:
      0 20px 40px rgba(10, 32, 60, 0.22),
      inset 0 1px 0 rgba(191, 219, 252, 0.16);
    --pulse-shadow-active:
      0 24px 48px rgba(18, 48, 88, 0.26),
      inset 0 1px 0 rgba(202, 227, 255, 0.2);
    animation: buttonBreath 7.2s ease-in-out infinite;
  }

  .page-home .button--cta-tertiary {
    --pulse-shadow-rest:
      0 18px 38px rgba(83, 24, 36, 0.24),
      inset 0 1px 0 rgba(255, 240, 243, 0.18);
    --pulse-shadow-active:
      0 22px 46px rgba(97, 28, 41, 0.3),
      inset 0 1px 0 rgba(255, 244, 245, 0.22);
    animation: buttonBreath 7.2s ease-in-out infinite;
  }

  .page-home .button--pulse {
    animation-duration: 7.2s;
  }

  .page-home .button--pulse::after {
    animation-duration: 7.2s;
  }

  .floating-cta {
    --floating-cta-shift-x: -50%;
    left: 50%;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    min-height: 52px;
    max-width: calc(100% - 32px);
    padding: 0 18px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .floating-cta:not(.floating-cta--visible) {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--floating-cta-shift-x), 18px, 0);
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .section {
    padding: 62px 0;
  }

  .section__closing,
  .final-card,
  .form-card {
    text-align: left;
  }

  .conversion-copy .button {
    width: 100%;
  }

  .conversion-form {
    padding: 22px 18px;
  }

  .page-home [data-form-section] {
    scroll-margin-top: 84px;
  }

  .section__closing {
    justify-items: stretch;
  }

  .footer__content {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--pulse,
  .button--pulse::after,
  .floating-cta,
  .button,
  .topbar__cta,
  .back-link {
    animation: none;
    transition: none;
  }
}

.page-register {
  min-height: 100svh;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(88, 131, 204, 0.16), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(181, 77, 83, 0.14), transparent 20%),
    linear-gradient(180deg, #07162b 0%, #0b1f3a 44%, #081324 100%);
}

.page-register .site-noise {
  opacity: 0.22;
  mix-blend-mode: screen;
}

.register-main {
  position: relative;
  padding: 18px 0 28px;
}

.register-grid {
  position: relative;
  display: grid;
  gap: 18px;
}

.register-panel {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 252, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 34px 84px rgba(2, 12, 28, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.register-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(181, 77, 83, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 26%);
}

.register-brand {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  color: var(--navy-900);
}

.register-title,
.register-subtitle,
.register-form,
.register-price,
.register-block {
  position: relative;
  z-index: 1;
}

.register-title {
  max-width: 13ch;
  color: var(--navy-900);
  font-size: clamp(2.05rem, 8vw, 3.4rem);
  text-wrap: balance;
}

.register-subtitle {
  max-width: 58ch;
  margin: 14px 0 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.48;
}

.register-form {
  gap: 14px;
}

.register-button-zone {
  display: grid;
  gap: 6px;
  margin-top: 0;
}

.register-button {
  min-height: 60px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.register-button-note,
.register-price {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.42;
}

.register-button-note {
  color: var(--ink-soft);
}

.register-price {
  margin-top: 10px;
  color: rgba(11, 31, 58, 0.82);
  font-weight: 700;
}

.register-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.register-block__title {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.58);
}

.register-block__title--light {
  color: rgba(255, 255, 255, 0.72);
}

.register-event {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(181, 77, 83, 0.16), transparent 24%),
    linear-gradient(180deg, #0d2342, #0b1c34 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(4, 16, 34, 0.18);
}

.register-event__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.register-event__item {
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.register-event__item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.register-event__item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.register-countdown {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: none;
}

.register-countdown .countdown {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.register-countdown .countdown__item {
  padding: 10px 6px;
  border-color: rgba(255, 255, 255, 0.06);
}

.register-countdown .countdown__item strong {
  margin-bottom: 4px;
  font-size: clamp(1.12rem, 4vw, 1.55rem);
}

.register-countdown .countdown__item span {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.register-steps__grid {
  display: grid;
  gap: 8px;
}

.register-step {
  padding: 12px 13px;
  border: 1px solid rgba(11, 31, 58, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(7, 22, 43, 0.045);
}

.register-step h3 {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 5px;
  color: var(--navy-900);
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.register-step h3 span {
  flex: none;
}

.register-step p,
.register-notice p {
  margin: 0;
  color: var(--ink-soft);
}

.register-step p {
  font-size: 0.95rem;
  line-height: 1.46;
}

.register-notice {
  padding: 14px 14px 0 14px;
  border-left: 2px solid rgba(181, 77, 83, 0.42);
}

.register-notice p + p {
  margin-top: 8px;
}

.register-aside {
  display: none;
}

.register-portrait {
  position: relative;
  margin: 0;
}

.register-portrait::before {
  content: "";
  position: absolute;
  inset: -12% 10% 8% 0;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(89, 138, 212, 0.28), transparent 72%);
  filter: blur(22px);
  pointer-events: none;
}

.register-portrait__frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 28px 64px rgba(4, 16, 34, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.register-portrait__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 22, 43, 0), rgba(7, 22, 43, 0.18));
}

.register-portrait__image {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.98) contrast(1.02) brightness(0.94);
}

.register-footer {
  background: transparent;
}

.register-footer::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.register-footer__shell {
  gap: 16px;
}

.register-legal h3 {
  color: rgba(255, 255, 255, 0.74);
}

.register-legal p {
  color: rgba(228, 235, 245, 0.72);
}

.page-register .footer__content {
  padding-top: 16px;
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(228, 235, 245, 0.58);
}

.page-register .form-status {
  min-height: 0;
  font-size: 0.9rem;
}

.page-register .form-status:empty {
  display: none;
}

@media (min-width: 720px) {
  .register-main {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .register-panel {
    padding: 30px 28px 32px;
  }

  .register-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .register-grid {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: start;
    gap: 22px;
  }

  .register-panel {
    padding: 38px 42px 40px;
  }

  .register-aside {
    display: block;
    position: sticky;
    top: 24px;
    align-self: start;
  }
}

@media (max-width: 719px) {
  .page-register .brand {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .register-panel {
    padding: 18px 14px 20px;
    border-radius: 24px;
  }

  .register-event__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .register-countdown {
    padding: 6px;
  }

  .register-countdown .countdown {
    gap: 6px;
  }

  .register-countdown .countdown__item {
    padding: 8px 4px;
    border-radius: 14px;
  }

  .register-countdown .countdown__item strong {
    font-size: 1.05rem;
  }

  .register-countdown .countdown__item span {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .register-steps__grid {
    gap: 7px;
  }

  .register-step {
    padding: 11px 12px;
  }

  .register-step h3 {
    margin-bottom: 4px;
    font-size: 0.94rem;
  }

  .register-step p,
  .register-notice p {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .register-notice {
    padding-left: 12px;
    padding-right: 0;
  }
}
