/* ============================================================
     YBC LANDING — палітра та шрифти у стилі бренду YBC
     ============================================================ */
:root {
  --red: #fa5255;
  --red-dark: #e14a4d;
  --red-tint: #ffe4e5;
  --black: #0f1214;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --gray-50: #fbfbfc;
  --gray-100: #f2f1f7;
  --gray-200: #e6e6e6;
  --gray-300: #cfd2d8;
  --gray-400: #9f9f9f;
  --gray-500: #8e8e93;
  --gray-600: #737373;
  --gray-700: #575a5b;
  --gray-900: #0f1214;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--gray-900);
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
video,
svg {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--red);
  color: var(--white);
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.06;
  text-wrap: balance;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 30px;
  font-size: 15px;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 56, 34, 0.32);
}
.btn-large {
  padding: 22px 52px;
  font-size: 17px;
}
.btn-on-red {
  background: var(--white);
  color: var(--red);
  padding: 22px 52px;
  font-size: 17px;
  font-weight: 800;
}
.btn-on-red:hover {
  background: var(--gray-900);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 20px 40px;
  font-size: 15px;
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-arrow::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.2s;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============ TOP NAV ============ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 0;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--gray-900);
}
.logo-svg {
  height: 32px;
  width: auto;
}
.logo-text {
  font-size: 10px;
  line-height: 1.15;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-nav-link {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.top-nav-link:hover {
  color: var(--gray-900);
  background: var(--off-white);
}

/* ============ HERO — RED ============ */
.hero {
  background: var(--red);
  color: var(--white);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 20% 0%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 50% at 100% 100%,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.hero-top {
  flex: 0 0 auto;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero-top .hero-tagline {
  justify-content: center;
  margin-bottom: 14px;
}
.hero-epigraph-c {
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.5;
  font-style: italic;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 auto;
}
.hero-media-c {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero-img {
  width: 100%;
  height: auto;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.hero-bottom-c {
  flex: 0 0 auto;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 20px 0;
  margin-bottom: 56px;
}
.hero-info-cell {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-info-cell:first-child {
  border-left: none;
  padding-left: 0;
}
.hero-info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-info-value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-tagline::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero h1 {
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
  color: var(--white);
}
.hero h1 span {
  display: block;
}
.hero h1 .line-2 {
  padding-left: clamp(20px, 6vw, 90px);
}
.hero h1 .badge {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--white);
  color: var(--red);
  padding: 0.05em 0.3em;
  border-radius: 0.25em;
  margin-left: 0.2em;
}

.hero-epigraph {
  max-width: 620px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  padding-left: 24px;
  margin-bottom: 48px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  opacity: 0.95;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-scroll {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}
.hero-scroll-line {
  width: 48px;
  height: 1px;
  background: var(--white);
  opacity: 0.4;
}

/* ============ PAINS vs DESIRES (Targetorium-inspired) ============ */
.section-painsdesires {
  background: var(--white);
  padding: 120px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pd-headline-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.pd-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--gray-900);
}
.pd-headline .accent {
  color: var(--red);
}
.pd-intro {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.55;
  padding-bottom: 8px;
}

.pd-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pd-col-header {
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--gray-200);
}
.pd-col.bad .pd-col-header {
  color: var(--gray-900);
  border-bottom-color: var(--gray-900);
}
.pd-col.good .pd-col-header {
  color: var(--red);
  border-bottom-color: var(--red);
}
.pd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.pd-item:last-child {
  border-bottom: none;
}
.pd-item:hover {
  padding-left: 8px;
}
.pd-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gray-300);
}
.pd-col.good .pd-num {
  color: var(--red);
}
.pd-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--gray-900);
}

/* ============ BRIDGE (transition section) ============ */
.bridge {
  background: var(--gray-900);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}
.bridge h2 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 1000px;
  margin: 0 auto 32px;
  color: var(--white);
}
.bridge h2 .accent {
  color: var(--red);
}
.bridge-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ PROGRAM (8 numbered blocks like Targetorium) ============ */
.section-program {
  background: var(--white);
  padding: 120px 0;
}
.program-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--gray-900);
  margin-bottom: 0;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
  padding-bottom: 8px;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.program-block {
  background: var(--off-white);
  padding: 40px 36px;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.program-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}
.program-block:hover {
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
/* .program-block:hover::after { width: 100%; } */
.program-num {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0.38;
}
.program-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--white);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.program-block:hover .program-time {
  background: var(--red-tint);
  color: var(--red);
}
.program-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.program-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}
.program-block.speaker {
  background: var(--gray-900);
  color: var(--white);
}
.program-block.speaker .program-num {
  color: var(--red);
}
.program-block.speaker .program-time {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.program-block.speaker:hover .program-time {
  background: var(--red);
  color: var(--white);
}
.program-block.speaker .program-title {
  color: var(--white);
}
.program-block.speaker .program-desc {
  color: rgba(255, 255, 255, 0.75);
}
.program-block.speaker:hover {
  background: var(--gray-900);
}
.program-block.speaker .speaker-name-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--red);
  margin-bottom: 10px;
}

/* ============ ROOM / WHO ============ */
.section-room {
  background: var(--off-white);
  padding: 120px 0;
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.room-stats {
  display: flex;
  flex-direction: column;
}
.room-stat {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.room-stat:first-child {
  padding-top: 0;
}
.room-stat:last-child {
  border-bottom: none;
}
.room-stat-num {
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
}
.room-stat-text {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.5;
}
.niches-block {
  padding: 48px 0 0;
  border-top: 1px solid var(--gray-200);
}
.niches-label {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}
.niches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.niche-tag {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gray-900);
  font-weight: 600;
  transition: all 0.2s;
}
.niche-tag:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.niche-tag .pct {
  color: var(--gray-400);
  margin-left: 6px;
  font-size: 11px;
  font-weight: 500;
}
.niche-tag:hover .pct {
  color: rgba(255, 255, 255, 0.75);
}

/* ============ SPEAKERS ============ */
.section-speakers {
  background: var(--white);
  padding: 120px 0;
}
.speakers-head {
  margin-bottom: 64px;
  max-width: 880px;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.speaker-card {
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}
.speaker-img-wrap {
  aspect-ratio: 4/5;
  background: linear-gradient(
    160deg,
    var(--gray-100) 0%,
    var(--off-white) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.speaker-img-initials {
  font-size: 96px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.05em;
  line-height: 1;
}
.speaker-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.speaker-img-soon {
  position: absolute;
  bottom: 24px;
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.speaker-info {
  padding: 32px 32px 36px;
}
.speaker-name {
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.speaker-role {
  font-size: 16px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.speaker-divider {
  width: 32px;
  height: 2px;
  background: var(--gray-300);
  margin-bottom: 16px;
}
.speaker-topic-label {
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.speaker-topic {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.speaker-bullets {
  list-style: none;
  padding: 0;
}
.speaker-bullets li {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 6px 0 6px 18px;
  position: relative;
}
.speaker-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--red);
}

/* ============ PHOTOS / GALLERY ============ */
.section-gallery {
  background: var(--off-white);
  padding: 120px 0;
}
.gallery-head {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-head .section-eyebrow {
  justify-content: center;
}
.gallery-placeholder {
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: 4px;
  padding: 80px 32px;
  text-align: center;
}
.gallery-placeholder-icon {
  width: 56px;
  height: 56px;
  background: var(--red-tint);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gallery-placeholder-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.gallery-placeholder-text {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 480px;
  margin: 0 auto;
}

/* ============ QUALIFY ============ */
.section-qualify {
  background: var(--white);
  padding: 120px 0;
}
.qualify-head {
  margin-bottom: 64px;
  max-width: 800px;
}
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.qualify-col {
  padding: 48px 40px;
  border-radius: 4px;
}
.qualify-col.yes {
  background: var(--red);
  color: var(--white);
}
.qualify-col.no {
  background: var(--off-white);
  color: var(--gray-900);
}
.qualify-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.qualify-col.no .qualify-header {
  border-bottom-color: var(--gray-200);
}
.qualify-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
}
.qualify-col.yes .qualify-icon {
  background: var(--white);
  color: var(--red);
}
.qualify-col.no .qualify-icon {
  background: var(--gray-200);
  color: var(--gray-500);
}
.qualify-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.qualify-list {
  list-style: none;
}
.qualify-list li {
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.qualify-col.no .qualify-list li {
  border-bottom-color: var(--gray-200);
}
.qualify-list li:last-child {
  border-bottom: none;
}
.qualify-col.yes .qualify-list li strong {
  color: var(--white);
  font-weight: 800;
}
.qualify-col.no .qualify-list li strong {
  color: var(--gray-900);
  font-weight: 800;
}

/* ============ ABOUT YBC ============ */
.section-about {
  background: var(--gray-900);
  color: var(--white);
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-about .section-eyebrow {
  color: var(--white);
}
.section-about .section-eyebrow::before {
  background: var(--white);
}
.about-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 32px;
}
.about-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 20px;
}
.about-text strong {
  color: var(--white);
  font-weight: 700;
}
.about-quote {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
}
.about-stats-card {
  background: var(--white);
  color: var(--gray-900);
  padding: 44px 40px;
  border-radius: 4px;
}
.about-stats-title {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}
.about-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.about-stat:last-child {
  border-bottom: none;
}
.about-stat-label {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 60%;
}
.about-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ============ LOCATION ============ */
.section-location {
  background: var(--white);
  padding: 100px 0;
}
.location-card {
  background: var(--off-white);
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 64px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.location-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.location-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gray-900);
  letter-spacing: -0.035em;
  line-height: 1;
}
.location-text {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.location-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* ============ PRICING ============ */
.section-pricing {
  background: var(--off-white);
  padding: 120px 0;
}
.pricing-head {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-head .section-eyebrow {
  justify-content: center;
}
.pricing-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  padding: 56px 48px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
}
.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-info-cell {
  padding: 16px 0;
}
.pricing-info-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 700;
  margin-bottom: 6px;
}
.pricing-info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}
.pricing-price-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 96px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
}
.pricing-price .currency {
  font-weight: 500;
  opacity: 0.6;
}
.pricing-features {
  list-style: none;
  margin-bottom: 36px;
}
.pricing-features li {
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--gray-700);
  position: relative;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23F93822' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2l-3.5-3.5a.984.984 0 0 0-1.4 0 .984.984 0 0 0 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7a.984.984 0 0 0 0-1.4.984.984 0 0 0-1.4 0L9 16.2z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
}
.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.final-cta-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--white);
}
.final-cta h2 {
  font-size: clamp(48px, 8vw, 112px);
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 32px;
}
.final-cta-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.countdown {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}
.countdown-cell {
  background: rgba(255, 255, 255, 0.14);
  padding: 18px 24px;
  border-radius: 4px;
  text-align: center;
  min-width: 80px;
  backdrop-filter: blur(8px);
}
.countdown-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.countdown-suffix {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.8;
  font-weight: 600;
}
.final-cta-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}
.extra-tag {
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.extra-tag::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2l-3.5-3.5a.984.984 0 0 0-1.4 0 .984.984 0 0 0 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7a.984.984 0 0 0 0-1.4.984.984 0 0 0-1.4 0L9 16.2z'/%3E%3C/svg%3E")
    center/12px no-repeat;
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-heading {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  line-height: 1.5;
}
.footer-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 500;
}
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--white);
}
.footer-top,
.footer-grid,
.footer-bottom,
.footer-cta,
.footer-bottom a,
.social-link {
  position: relative;
  z-index: 2;
}

/* ============ MOBILE STICKY ============ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
}
.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}
.mobile-sticky-price {
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mobile-sticky-date {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 3px;
  font-weight: 500;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .container {
    padding: 0 20px;
  }
  section,
  .section-painsdesires,
  .section-program,
  .section-room,
  .section-speakers,
  .section-gallery,
  .section-qualify,
  .section-about,
  .section-pricing,
  .bridge {
    padding: 70px 0;
  }
  .top-nav {
    display: none;
  }
  .hero {
    padding: 88px 0 48px;
  }
  .hero-info-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
    gap: 16px;
  }
  .hero-info-cell {
    border-left: none;
    padding-left: 0;
  }
  .hero h1 .line-2 {
    padding-left: 0;
  }
  .pd-headline-wrap,
  .program-head,
  .room-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pd-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .qualify-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .qualify-col {
    padding: 36px 28px;
  }
  .location-card {
    padding: 48px 24px;
  }
  .pricing-card {
    padding: 40px 28px;
  }
  .pricing-price {
    font-size: 72px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .room-stat {
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  body {
    padding-bottom: 40px;
  }
  .mobile-sticky {
    display: block;
  }
  .hero-bottom {
    gap: 20px;
  }
  .hero-scroll {
    display: none;
  }
  .countdown {
    gap: 8px;
  }
  .countdown-cell {
    padding: 12px 16px;
    min-width: 64px;
  }
  .countdown-num {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .final-cta-extras {
    gap: 16px;
  }
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== Mobile length optimization ===== */
@media (max-width: 960px) {
  section,
  .section-painsdesires,
  .section-program,
  .section-room,
  .section-speakers,
  .section-gallery,
  .section-qualify,
  .section-about,
  .section-pricing,
  .bridge {
    padding: 48px 0;
  }
  .hero {
    padding: 88px 0 48px;
  }
  .pd-headline-wrap,
  .program-head,
  .room-grid,
  .about-grid {
    gap: 24px;
  }
  .pd-cols {
    gap: 22px;
  }
  .section-title {
    font-size: clamp(30px, 8vw, 46px);
    line-height: 1;
  }
  .pd-headline {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.02;
  }
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 60px);
    margin-bottom: 24px;
  }
  .pd-intro,
  .section-sub,
  .final-cta-sub,
  .program-desc {
    font-size: 16px;
  }
  .pd-item {
    padding: 14px 0;
    gap: 14px;
    grid-template-columns: 40px 1fr;
  }
  .program-block {
    padding: 24px 22px;
  }
  .program-grid {
    gap: 12px;
  }
  .program-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .program-desc {
    font-size: 14px;
  }
  .speaker-img-wrap {
    aspect-ratio: 4 / 3;
  }
  .about-stat {
    padding: 14px 0;
  }
  .about-stat-value {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .top-bar .btn-primary {
    display: none;
  }
  section,
  .section-painsdesires,
  .section-program,
  .section-room,
  .section-speakers,
  .section-gallery,
  .section-qualify,
  .section-about,
  .section-pricing,
  .bridge {
    padding: 40px 0;
  }
  .hero {
    padding: 80px 0 40px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .pricing-price {
    font-size: 60px;
  }
  .program-block {
    padding: 20px 18px;
  }
  .pd-item {
    padding: 12px 0;
  }
}

/* ===== Compact Premium ===== */
html {
  scroll-behavior: smooth;
}
#program,
#speakers,
#club,
#pricing {
  scroll-margin-top: 88px;
}

.program-block {
  cursor: pointer;
}
.program-block::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 26px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.program-block.speaker::after {
  border-color: rgba(255, 255, 255, 0.55);
}
.program-block.open::after {
  transform: rotate(-135deg);
}
.program-title {
  padding-right: 30px;
}
.program-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}
.program-block.open .program-body {
  max-height: 360px;
  opacity: 1;
  margin-top: 12px;
}

.club-room-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 64px 0;
}

/* Qualify merged into final CTA (red bg) */
.final-cta .qualify-head {
  text-align: center;
  margin-bottom: 44px;
}
.final-cta .qualify-head .section-eyebrow {
  color: #fff;
}
.final-cta .qualify-head .section-eyebrow::before {
  background: #fff;
}
.final-cta .qualify-head .section-title {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0;
}
.final-cta .qualify-head .section-sub {
  color: rgba(255, 255, 255, 0.82);
}
.final-cta .qualify-grid {
  text-align: left;
}
.final-cta .qualify-col.yes {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.final-cta .qualify-col.no {
  background: #fff;
}
.final-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 56px auto;
  max-width: 1100px;
}

@media (max-width: 960px) {
  .speakers-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 4px 20px 14px;
  }
  .speakers-grid::-webkit-scrollbar {
    height: 0;
  }
  .speaker-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .speaker-img-wrap {
    aspect-ratio: 4 / 5;
  }
  .club-room-divider {
    margin: 40px 0;
  }
  .hero {
    padding-bottom: 60px;
  }
  .hero-img {
    max-height: none;
  }
  .hero-bottom-c {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-bottom-c .btn {
    width: 100%;
  }
}

/* Logos */
.logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

/* Gallery video */
.gallery-video {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.gallery-video-el {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  background: #000;
  display: block;
  cursor: pointer;
}

/* Join form */
#join-form {
  scroll-margin-top: 90px;
}
.join-form {
  max-width: 620px;
  margin: 44px auto 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
}
.join-form-title {
  font-family: "Oswald", "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: 0.01em;
  color: #fff;
}
.join-form-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
  margin: 10px auto 24px;
  max-width: 480px;
}
.join-actions {
  display: flex;
  justify-content: center;
}
.join-submit {
  min-width: min(100%, 320px);
}
.join-form-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 480px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Success modal */
body.modal-open {
  overflow: hidden;
}
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 18, 20, 0.54);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}
.success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.success-modal-dialog {
  position: relative;
  width: min(100%, 760px);
  background: var(--white);
  color: var(--gray-900);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  padding: 32px 32px 28px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}
.success-modal.is-open .success-modal-dialog {
  transform: translateY(0) scale(1);
}
.success-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.success-modal-close:hover {
  background: var(--off-white);
  color: var(--gray-900);
  border-color: var(--gray-300);
}
.success-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-right: 44px;
}
.success-modal-check {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.success-modal-title {
  font-family: "Oswald", "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.success-modal-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-900);
}
.success-modal-dialog--compact {
  width: min(100%, 640px);
}
.success-modal-check--text {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.income-picker {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.income-option {
  display: block;
  cursor: pointer;
}
.income-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.income-option-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.income-option:hover .income-option-ui {
  border-color: var(--gray-300);
  transform: translateY(-1px);
}
.income-option-label {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}
.income-option-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-400);
  background: var(--white);
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.income-option input:checked + .income-option-ui {
  border-color: rgba(250, 82, 85, 0.36);
  background: linear-gradient(180deg, #fff8f8 0%, var(--red-tint) 100%);
  box-shadow: 0 16px 34px rgba(250, 82, 85, 0.12);
}
.income-option input:checked + .income-option-ui .income-option-indicator {
  border-color: var(--red);
  box-shadow: inset 0 0 0 7px var(--red);
}
.modal-error {
  margin-top: 14px;
  color: var(--red-dark);
  font-size: 14px;
  line-height: 1.4;
}
.success-modal .btn:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.selected-income-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--red-tint);
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 700;
}
.apply-form-fields {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: block;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-900);
  border-radius: 16px;
  padding: 15px 18px;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: rgba(250, 82, 85, 0.48);
  box-shadow: 0 0 0 4px rgba(250, 82, 85, 0.12);
  background: var(--white);
}
.form-control.is-invalid {
  border-color: var(--red);
  background: #fff7f7;
}
.form-hint {
  display: block;
  margin-top: 8px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.4;
}
.form-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7f7;
  color: var(--red-dark);
  font-size: 14px;
  line-height: 1.45;
}
.form-feedback.is-success {
  background: var(--off-white);
  color: var(--gray-900);
}
.apply-form-actions {
  margin-top: 4px;
}
.success-modal-text p + p {
  margin-top: 28px;
}
.success-modal-note {
  font-style: italic;
}
.success-modal-actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .success-modal {
    padding: 16px;
    align-items: flex-end;
  }
  .success-modal-dialog {
    width: 100%;
    border-radius: 24px 24px 18px 18px;
    padding: 28px 22px 22px;
  }
  .success-modal-header {
    gap: 10px;
    margin-bottom: 20px;
  }
  .success-modal-title {
    font-size: 30px;
  }
  .income-option-ui {
    padding: 16px 18px;
    border-radius: 20px;
  }
  .income-option-label {
    font-size: 15px;
  }
  .income-option-indicator {
    width: 24px;
    height: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .success-modal-text {
    font-size: 15px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
