@font-face {
  font-family: "VelaSans";
  src: url("https://maybesmart.ru/assets/fonts/VelaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VelaSans";
  src: url("https://maybesmart.ru/assets/fonts/VelaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VelaSans";
  src: url("https://maybesmart.ru/assets/fonts/VelaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #2b6cff;
  --brand-strong: #164ed8;
  --brand-accent: #6bc6ff;
  --brand-dark: #0d1c39;
  --ink: #1d2741;
  --muted: #5f6d8b;
  --surface: #ffffff;
  --surface-soft: #f3f7ff;
  --surface-muted: #ebf2ff;
  --line: rgba(22, 38, 74, 0.12);
  --line-strong: rgba(255, 255, 255, 0.16);
  --success: #089c75;
  --shadow-soft: 0 18px 40px rgba(18, 34, 74, 0.08);
  --shadow-strong: 0 30px 80px rgba(7, 17, 41, 0.22);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "VelaSans", "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(107, 198, 255, 0.16), transparent 55%),
    radial-gradient(700px 440px at 100% 10%, rgba(43, 108, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 18%, #ffffff 48%, #f5f8ff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 108, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 108, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

section[id] {
  scroll-margin-top: 112px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  padding-top: 18px;
}

.navbar-shell {
  padding: 12px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(12, 25, 54, 0.08);
  backdrop-filter: blur(16px);
}

.brand-logo {
  width: auto;
  height: 36px;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  padding: 0.7rem 1rem !important;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-dark);
  background: rgba(43, 108, 255, 0.08);
}

.custom-toggler {
  border: 1px solid rgba(43, 108, 255, 0.18);
  border-radius: 14px;
  padding: 0.5rem 0.7rem;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(43, 108, 255, 0.16);
}

.btn {
  border-radius: 16px;
  font-weight: 600;
  padding: 0.95rem 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 16px 36px rgba(43, 108, 255, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #3477ff 0%, #1048d3 100%);
  box-shadow: 0 18px 40px rgba(43, 108, 255, 0.32);
}

.btn-hero-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.hero-section {
  padding: 26px 0 28px;
}

.hero-panel {
  position: relative;
  padding: clamp(2rem, 3vw, 3.6rem);
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 320px at 100% 0%, rgba(107, 198, 255, 0.2), transparent 60%),
    radial-gradient(460px 280px at 0% 100%, rgba(43, 108, 255, 0.24), transparent 62%),
    linear-gradient(135deg, #08152f 0%, #123067 56%, #0a1834 100%);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-panel::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -80px;
  background: rgba(107, 198, 255, 0.26);
}

.hero-panel::after {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -120px;
  background: rgba(43, 108, 255, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: #d7e7ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-tag {
  color: var(--brand);
  background: rgba(43, 108, 255, 0.08);
}

.section-tag-inverse {
  color: #dbe8ff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-title {
  margin: 1rem 0 0;
  font-size: clamp(2.3rem, 5vw, 4.55rem);
  line-height: 1.04;
  max-width: 13ch;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 56ch;
  font-size: 1.13rem;
  line-height: 1.65;
  color: rgba(230, 239, 255, 0.84);
}

.hero-meta {
  margin-top: 2rem;
}

.meta-card {
  height: 100%;
  padding: 1.15rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.meta-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  background: rgba(107, 198, 255, 0.14);
  color: var(--brand-accent);
  font-size: 1.2rem;
}

.meta-label {
  color: rgba(218, 230, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.meta-value {
  margin-top: 0.45rem;
  font-weight: 700;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.hero-trust {
  margin-top: 2rem;
  padding: 1.55rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 1.2rem;
}

.trust-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.trust-stat span {
  color: rgba(230, 239, 255, 0.78);
  line-height: 1.45;
}

.trust-copy {
  margin: 0;
  color: rgba(230, 239, 255, 0.84);
  line-height: 1.65;
}

.hero-visual {
  position: relative;
}

.hero-media-frame {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: #bcd3f6;
  box-shadow: 0 26px 60px rgba(7, 18, 41, 0.24);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 38, 0.04) 18%, rgba(6, 16, 38, 0.7) 100%);
}

.hero-blueprint {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.hero-live-chip,
.speaker-badge {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(14px);
}

.hero-live-chip {
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(12, 29, 63, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f6fbff;
  font-size: 0.92rem;
}

.speaker-badge {
  left: 20px;
  bottom: 20px;
  max-width: 280px;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(8, 19, 43, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.speaker-badge-label,
.visual-label,
.stat-kicker,
.learn-number {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.speaker-badge strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.speaker-badge small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(229, 238, 255, 0.72);
  font-size: 0.9rem;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 3;
  margin: -78px 18px 0;
}

.visual-card {
  padding: 1.2rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(11, 25, 60, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.visual-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.08rem;
}

.visual-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.visual-card-accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(43, 108, 255, 0.98), rgba(16, 78, 212, 0.98));
  color: #fff;
}

.visual-card-accent p,
.visual-card-accent .visual-label {
  color: rgba(233, 243, 255, 0.88);
}

.visual-label,
.stat-kicker,
.learn-number {
  color: var(--brand);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0.95rem;
}

.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 0.75rem 0.35rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(43, 108, 255, 0.08), rgba(43, 108, 255, 0.02));
  border: 1px solid rgba(43, 108, 255, 0.08);
}

.countdown-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.stats-strip {
  position: relative;
  z-index: 4;
  margin-top: -16px;
}

.stats-shell,
.audience-card,
.learn-card,
.roadmap-panel,
.speaker-photo-card,
.speaker-content-card,
.bonus-card,
.cta-repeat-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stats-shell {
  padding: 1.7rem;
  border-radius: 30px;
}

.stat-item {
  height: 100%;
}

.stat-item strong {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.stat-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.88) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.section-head {
  max-width: 760px;
}

.section-title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
}

.section-subtitle {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.audience-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 2.2rem;
}

.audience-card,
.bonus-card {
  position: relative;
  height: 100%;
  padding: 1.65rem;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience-card::after,
.bonus-card::after,
.learn-card::after,
.speaker-highlight-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -50px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 198, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.audience-card:hover,
.bonus-card:hover,
.learn-card:hover,
.speaker-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 108, 255, 0.22);
  box-shadow: 0 24px 52px rgba(17, 34, 74, 0.11);
}

.audience-icon,
.bonus-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 18px;
  font-size: 1.35rem;
  color: var(--brand);
  background: rgba(43, 108, 255, 0.08);
}

.audience-card h3,
.bonus-card h3,
.learn-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.audience-card p,
.bonus-card p,
.bonus-card small,
.learn-card p,
.roadmap-step p,
.speaker-text,
.speaker-highlight-card p,
.registration-text,
.registration-benefit p,
.cta-repeat-shell p,
.footer-brand p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.bonus-card small {
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 2.2rem;
}

.learn-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 28px;
  overflow: hidden;
}

.learn-card-wide {
  grid-column: 1 / -1;
}

.learn-number {
  margin-bottom: 0.75rem;
}

.roadmap-panel {
  position: sticky;
  top: 106px;
  padding: 1.8rem;
  border-radius: 30px;
}

.roadmap-panel h3,
.registration-title,
.cta-repeat-shell h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 2vw, 2.3rem);
  line-height: 1.2;
}

.roadmap-step {
  display: flex;
  gap: 14px;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.roadmap-step-last {
  border-bottom: 0;
  padding-bottom: 0;
}

.roadmap-point {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 10px 24px rgba(43, 108, 255, 0.2);
}

.roadmap-step strong,
.registration-benefit strong,
.speaker-highlight-card strong {
  display: block;
  font-size: 1rem;
}

.speaker-shell {
  margin-top: 2.2rem;
}

.speaker-photo-card,
.speaker-content-card {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.speaker-photo-wrap {
  position: relative;
  min-height: 100%;
  background: #dbe8fb;
}

.speaker-photo-wrap img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.speaker-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(7, 17, 41, 0.5));
}

.photo-note {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.speaker-content-card {
  padding: 1.8rem;
}

.metric-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  color: var(--brand-dark);
  font-weight: 600;
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  border: 1px solid rgba(43, 108, 255, 0.08);
}

.speaker-text {
  margin-top: 1.35rem;
}

.speaker-quote {
  position: relative;
  margin-top: 1.35rem;
  padding: 1.4rem 1.4rem 1.4rem 3.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7faff, #edf4ff);
  border: 1px solid rgba(43, 108, 255, 0.08);
}

.speaker-quote i {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  color: var(--brand);
  font-size: 1.25rem;
}

.speaker-quote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.7;
}

.speaker-highlights {
  margin-top: 1.4rem;
}

.speaker-highlight-card {
  position: relative;
  height: 100%;
  padding: 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webinar-accordion {
  margin-top: 2rem;
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-focus-box-shadow: none;
}

.webinar-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.webinar-accordion .accordion-button {
  padding: 1.35rem 1.45rem;
  color: var(--ink);
  font-weight: 600;
  background: #fff;
}

.webinar-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-dark);
  background: linear-gradient(180deg, #fff, #f3f7ff);
}

.webinar-accordion .accordion-body {
  padding: 0 1.45rem 1.4rem;
  color: var(--muted);
  line-height: 1.72;
}

.registration-shell {
  position: relative;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 38px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(440px 240px at 0% 100%, rgba(107, 198, 255, 0.18), transparent 62%),
    radial-gradient(420px 220px at 100% 0%, rgba(43, 108, 255, 0.24), transparent 62%),
    linear-gradient(135deg, #0a1631 0%, #102a57 56%, #123a7a 100%);
  box-shadow: var(--shadow-strong);
}

.registration-shell::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.registration-shell > .row {
  position: relative;
  z-index: 1;
}

.registration-text {
  color: rgba(226, 236, 255, 0.84);
}

.registration-benefits {
  display: grid;
  gap: 14px;
  margin-top: 1.6rem;
}

.registration-benefit {
  display: flex;
  gap: 14px;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-benefit i {
  flex: 0 0 auto;
  color: var(--brand-accent);
  font-size: 1.25rem;
}

.form-card {
  padding: 1.8rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(10, 22, 49, 0.22);
}

.form-control,
.form-select {
  border-radius: 18px;
  min-height: 58px;
  border: 1px solid rgba(22, 38, 74, 0.14);
  background-color: #fff;
}

.form-floating > .form-control,
.form-floating > .form-select {
  padding-top: 1.4rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(43, 108, 255, 0.42);
  box-shadow: 0 0 0 0.25rem rgba(43, 108, 255, 0.12);
}

.form-note {
  margin: 0.95rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-status {
  margin-top: 1rem;
  border-radius: 18px;
}

.cta-repeat {
  padding: 24px 0 96px;
}

.cta-repeat-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 2rem;
  border-radius: 30px;
}

.site-footer {
  padding-bottom: 42px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  display: block;
}

.footer-brand p,
.footer-meta {
  color: var(--muted);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.footer-meta a {
  color: var(--brand-dark);
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1040;
  display: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-cta.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="120"] {
  transition-delay: 0.12s;
}

[data-reveal-delay="200"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="280"] {
  transition-delay: 0.28s;
}

@media (max-width: 1199.98px) {
  .hero-title {
    max-width: none;
  }

  .hero-media-frame {
    min-height: 460px;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding-top: 12px;
  }

  .navbar-shell {
    border-radius: 20px;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-panel,
  .registration-shell {
    border-radius: 30px;
  }

  .hero-visual-grid {
    margin-top: 18px;
    margin-left: 0;
    margin-right: 0;
  }

  .outcomes-layout {
    grid-template-columns: 1fr;
  }

  .roadmap-panel {
    position: static;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 78px 0;
  }

  .hero-meta {
    margin-top: 1.5rem;
  }

  .hero-actions,
  .cta-repeat-shell,
  .footer-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn,
  .cta-repeat-shell .btn {
    width: 100%;
  }

  .trust-stats,
  .hero-visual-grid,
  .learn-grid,
  .audience-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .learn-card-wide {
    grid-column: auto;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker-photo-wrap img {
    min-height: 380px;
  }

  .form-card,
  .speaker-content-card,
  .stats-shell,
  .cta-repeat-shell {
    padding: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-shell {
    padding: 10px 12px;
  }

  .brand-logo {
    height: 32px;
  }

  .hero-panel,
  .registration-shell,
  .stats-shell,
  .speaker-photo-card,
  .speaker-content-card,
  .cta-repeat-shell,
  .audience-card,
  .learn-card,
  .bonus-card,
  .roadmap-panel,
  .form-card {
    border-radius: 24px;
  }

  .hero-media-frame {
    min-height: 360px;
  }

  .hero-blueprint {
    inset: 14px;
    border-radius: 18px;
  }

  .hero-live-chip,
  .speaker-badge,
  .photo-note {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .hero-live-chip {
    top: 14px;
    right: auto;
  }

  .speaker-badge {
    bottom: 14px;
  }

  .speaker-photo-wrap img {
    min-height: 320px;
  }

  .registration-benefit {
    align-items: flex-start;
  }
}