:root {
  --color-bg: #12091d;
  --color-surface: #1a1025;
  --color-surface-alt: #241538;
  --color-surface-soft: #211333;
  --color-text: #ffffff;
  --color-muted: #d8c8e6;
  --color-muted-soft: #f5dff7;
  --color-primary: #ebc000;
  --color-primary-dark: #c66117;
  --color-secondary: #592582;
  --color-secondary-soft: #e72e52;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-success: #22c55e;
  --shadow-soft: 0 0 0 1px rgba(255, 255, 255, 0.03);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --transition-base: 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 14% 0%, rgba(89, 37, 130, 0.35), transparent 28%),
    radial-gradient(circle at 100% 14%, rgba(231, 46, 82, 0.22), transparent 24%),
    linear-gradient(180deg, #12091d 0%, #10071a 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 9, 29, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup {
  font-family: Jost, Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.brand-logo,
.footer-logo {
  height: 44px;
  width: auto;
}

.header-nav {
  display: inline-flex;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  color: var(--color-muted-soft);
}

.header-nav a {
  opacity: 0.84;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.header-nav a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    filter var(--transition-base);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: auto;
}

.btn.is-disabled:hover,
.btn[aria-disabled="true"]:hover {
  transform: none;
  filter: none;
}

.btn-primary {
  color: #1a1025;
  background: transparent;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.eyebrow,
.pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.pill,
.section-kicker {
  color: var(--color-primary);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #632a8a 0%, #a92576 62%, #e72e52 100%);
}

.hero-pattern,
.signup-pattern {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/cbtd-experience-2026-losangos.png");
  background-repeat: no-repeat;
  background-size: min(62vw, 820px);
  pointer-events: none;
}

.hero-pattern {
  background-position: calc(100% + 130px) -88px;
  opacity: 0.4;
}

.signup-pattern {
  background-position: calc(100% + 100px) center;
  opacity: 0.35;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
}

.hero-content,
.feature-card,
.speaker-card,
.signup-form,
.faq-card,
.final-cta,
.schedule-item,
.audience-item,
.panel,
.card {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.hero-content {
  max-width: 860px;
  padding: 0 0 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-title,
.section-title,
.panel-title,
.hero-card h2,
.speaker-card h3,
.feature-card h3,
.schedule-item h3 {
  margin: 0;
  font-family: Jost, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.hero-title {
  max-width: 860px;
  margin-top: 24px;
  font-size: 56px;
  line-height: 0.92;
}

.hero-subtitle,
.section-copy {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 24px;
  color: #fce8f8;
  font-size: 20px;
  line-height: 1.6;
}

.hero-meta,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta span {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  align-self: end;
  margin-bottom: 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(18, 9, 29, 0.72);
}

.hero-logo {
  max-width: 220px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.signup-points li {
  position: relative;
  padding-left: 18px;
  color: #f5dff7;
  line-height: 1.65;
}

.signup-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: #160b24;
}

.section-darker {
  background: #130a21;
}

.section-deep {
  background: #1a1025;
}

.section-gradient {
  background: linear-gradient(120deg, #1b102b 0%, #592582 100%);
}

.section-signup {
  position: relative;
  overflow: hidden;
  background: #e72e52;
}

.section-header {
  max-width: 800px;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
}

.section-header .section-title {
  margin-top: 10px;
}

.section-copy-wide {
  max-width: 840px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 24px;
}

.section-dark .stats-grid {
  padding-top: 72px;
}

.stat-card {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.stat-card strong {
  display: block;
  color: var(--color-primary);
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.stat-card span {
  display: block;
  max-width: 220px;
  margin-top: 8px;
  color: #c3b4d6;
  font-size: 16px;
  line-height: 1.5;
}

.feature-card,
.speaker-card,
.schedule-item,
.faq-card,
.audience-item,
.final-cta,
.signup-form,
.card,
.panel {
  border-radius: var(--radius-xl);
}

.feature-card,
.audience-item {
  padding: 32px;
  background: var(--color-surface-alt);
}

.feature-card h3,
.speaker-card h3,
.schedule-item h3 {
  margin-top: 16px;
  font-size: 28px;
}

.feature-card p,
.speaker-bio,
.schedule-item p,
.faq-card p,
.audience-item {
  color: var(--color-muted);
  line-height: 1.7;
}

.audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.audience-item {
  min-height: 100%;
  background: var(--color-surface-soft);
}

.schedule-list {
  display: grid;
  gap: 16px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--color-secondary);
}

.schedule-time {
  display: grid;
  gap: 6px;
  align-content: start;
  justify-items: start;
}

.schedule-time strong,
.schedule-type {
  font-family: Jost, Inter, sans-serif;
  font-weight: 600;
}

.schedule-time strong {
  color: var(--color-primary);
  font-size: 32px;
  line-height: 1;
}

.schedule-content {
  display: grid;
  gap: 10px;
}

.schedule-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.schedule-type {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-type {
  background: rgba(235, 192, 0, 0.14);
  color: var(--color-primary);
}

.schedule-guests {
  margin: 0;
  color: #f5dff7;
  font-weight: 600;
}

.speaker-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  background: var(--color-secondary);
}

.speaker-avatar {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.speaker-photo {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.speaker-role {
  margin: 8px 0 10px;
  color: var(--color-primary);
  font-weight: 700;
}

.speakers-grid {
  gap: 16px;
}

.speakers-committee {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.speakers-committee-title {
  margin: 24px 0 0;
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.speakers-row {
  display: grid;
  gap: 16px;
}

.speakers-row-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.speakers-row-committee {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 500px);
  gap: 40px;
  align-items: center;
}

.signup-copy {
  max-width: 620px;
}

.section-signup .section-title {
  max-width: 620px;
}

.section-signup .section-kicker,
.section-signup .section-title,
.section-signup .section-copy,
.section-signup .signup-points li {
  color: #ffffff;
}

.section-signup .section-kicker {
  color: #fff5ba;
}

.signup-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.signup-form {
  padding: 40px;
  background: rgba(26, 16, 37, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(18, 9, 29, 0.24);
}

.field-grid {
  display: grid;
  gap: 16px;
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: #f5dff7;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.field .iti {
  width: 100%;
}

.field .iti input {
  width: 100%;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder,
.field select {
  color: rgba(255, 255, 255, 0.56);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(235, 192, 0, 0.72);
  box-shadow: 0 0 0 3px rgba(235, 192, 0, 0.16);
}

.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid,
.checkbox-field.is-invalid {
  border-color: #fca5a5;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: #f5dff7;
}

.checkbox-field input {
  margin-top: 3px;
}

.turnstile-shell {
  display: grid;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.status {
  min-height: 20px;
  color: var(--color-primary);
}

.small {
  font-size: 13px;
}

.muted {
  color: var(--color-muted);
}

.faq-card {
  padding: 0;
  background: var(--color-surface-soft);
  border-radius: var(--radius-lg);
}

.faq-card summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 56px 24px 24px;
  font-weight: 700;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin: 0;
  padding: 0 24px 24px;
}

.final-cta {
  padding: 72px 48px;
  background: transparent;
  text-align: center;
}

.final-cta .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: #0b0612;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 36px;
}

.footer-main {
  padding-bottom: 28px;
}

.footer-abtd {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-abtd-brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-abtd-logo {
  height: 28px;
  width: auto;
}

.footer-links,
.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #c3b4d6;
}

.footer-links a,
.footer-bar-inner a {
  transition: color var(--transition-base), opacity var(--transition-base);
}

.footer-links a:hover,
.footer-bar-inner a:hover {
  color: #ffffff;
}

.footer-socials {
  justify-content: flex-end;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.footer-socials a:hover {
  transform: translateY(-1px);
  background: rgba(231, 46, 82, 0.18);
  border-color: rgba(231, 46, 82, 0.34);
}

.footer-socials span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(89, 37, 130, 0.14);
}

.footer-bar-inner {
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #cdbce0;
  font-size: 13px;
}

.footer-rkbz-logo {
  height: 16px;
  width: auto;
}

.auth-shell,
.dashboard-shell {
  padding: 48px 0 72px;
}

.dashboard-login-card {
  max-width: 480px;
  margin: 0 auto;
}

.dashboard-login-title {
  font-size: 34px;
}

.dashboard-login-form {
  margin-top: 18px;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at top right, rgba(235, 192, 0, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.04);
}

.dashboard-page-title {
  font-size: 40px;
  margin-top: 18px;
}

.dashboard-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-updated {
  display: grid;
  gap: 4px;
  text-align: right;
}

.dashboard-updated strong,
.dashboard-stat-value,
.dashboard-bar-item strong,
.dashboard-segment-meta strong,
.dashboard-stack-line strong {
  font-family: "SFMono-Regular", ui-monospace, Menlo, monospace;
  color: #ffffff;
}

.dashboard-updated strong {
  font-size: 13px;
}

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

.dashboard-stat-card {
  display: grid;
  gap: 14px;
}

.dashboard-stat-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(231, 46, 82, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.05);
}

.dashboard-stat-header,
.dashboard-panel-head,
.dashboard-stack-line,
.dashboard-stack-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard-stat-chip,
.dashboard-badge-success,
.dashboard-badge-danger {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-stat-chip {
  min-height: 28px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9dcf4;
}

.dashboard-stat-chip-danger,
.dashboard-badge-danger {
  color: #ffd7d7;
  background: rgba(185, 28, 28, 0.14);
  border-color: rgba(185, 28, 28, 0.18);
}

.dashboard-badge-success {
  color: #e7ffef;
  background: rgba(34, 197, 94, 0.14);
}

.dashboard-stat-value {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.dashboard-progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transition: width 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.dashboard-grid-main,
.dashboard-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.dashboard-chart-panel,
.dashboard-table-panel {
  display: grid;
  gap: 18px;
}

.dashboard-bar-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 220px;
}

.dashboard-bar-item {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.dashboard-bar-track {
  width: 100%;
  min-height: 150px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  padding: 6px;
}

.dashboard-bar-fill {
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(235, 192, 0, 0.92) 0%, rgba(198, 97, 23, 0.96) 100%);
}

.dashboard-bar-item span,
.dashboard-segment-meta span,
.dashboard-segment-pct,
.dashboard-stack-meta {
  color: var(--color-muted);
  font-size: 12px;
}

.dashboard-segment-chart {
  display: grid;
  gap: 14px;
}

.dashboard-segment-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.dashboard-segment-meta {
  display: grid;
  gap: 4px;
}

.dashboard-segment-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-segment-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(231, 46, 82, 0.86) 0%, rgba(235, 192, 0, 0.92) 100%);
}

.dashboard-inline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px 14px;
}

.dashboard-inline-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-stack-list {
  display: grid;
  gap: 14px;
}

.dashboard-stack-list li {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-stack-meta {
  margin-top: 8px;
}

.dashboard-table-wrap {
  margin-top: 0;
}

.dashboard-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--color-muted);
  font-size: 14px;
}

.thank-you-page {
  padding-top: 56px;
}

.thank-you-shell {
  gap: 24px;
}

.thank-you-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 46, 82, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.04);
}

.thank-you-meta {
  margin-top: 20px;
}

.thank-you-grid {
  align-items: stretch;
}

.thank-you-panel-full {
  width: 100%;
}

.thank-you-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.thank-you-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-muted);
  line-height: 1.65;
}

.thank-you-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.thank-you-card-actions {
  margin-top: 22px;
}

.thank-you-action-groups {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.thank-you-action-group {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.thank-you-action-group h3,
.thank-you-journey-card h3 {
  font-family: Jost, Inter, sans-serif;
  font-weight: 600;
}

.thank-you-action-group h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
}

.thank-you-action-group p,
.thank-you-journey-card p {
  margin: 0;
}

.thank-you-action-group .hero-actions {
  margin-top: 18px;
}

.thank-you-journey {
  margin-top: 20px;
}

.thank-you-journey-feature h3,
.thank-you-journey-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
}

.thank-you-journey-feature p,
.thank-you-journey-card p {
  color: var(--color-muted);
  line-height: 1.6;
}

.center-stack {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.card,
.panel {
  background: rgba(255, 255, 255, 0.04);
}

.panel {
  padding: 28px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

th:last-child,
td:last-child {
  text-align: right;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .section-dark .stats-grid {
    padding-top: 0;
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 32px, 960px);
  }

  .header-inner,
  .signup-grid,
  .grid-3,
  .grid-2,
  .dashboard-grid-main,
  .dashboard-grid-secondary,
  .audience-grid,
  .speakers-row-top,
  .speakers-row-bottom,
  .speakers-row-committee,
  .field-grid.two-col {
    grid-template-columns: 1fr;
  }

  .header-nav {
    display: none;
  }

  .section,
  .hero-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-card,
  .feature-card,
  .speaker-card,
  .schedule-item,
  .final-cta,
  .signup-form,
  .panel,
  .dashboard-hero {
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-hero {
    align-items: flex-start;
  }

  .dashboard-updated {
    text-align: left;
  }

  .dashboard-segment-item {
    grid-template-columns: 1fr;
  }

  .speaker-card {
    grid-template-columns: 72px 1fr;
  }

  .speaker-avatar {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .speaker-photo {
    width: 72px;
    height: 72px;
  }

  .footer-abtd {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links,
  .footer-socials,
  .footer-bar-inner {
    justify-content: flex-start;
  }

  .thank-you-action-group {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand-lockup {
    font-size: 18px;
  }

  .dashboard-page-title,
  .dashboard-login-title {
    font-size: 30px;
  }

  .dashboard-stat-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-bar-chart {
    grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  }

  .brand-logo,
  .footer-logo {
    height: 36px;
  }

  .hero-title {
    font-size: clamp(40px, 14vw, 60px);
  }

  .hero-subtitle,
  .section-copy {
    font-size: 17px;
  }

  .hero-meta span,
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-title {
    font-size: clamp(30px, 11vw, 42px);
  }

  .final-cta {
    padding: 56px 24px;
  }

  .footer {
    padding-top: 28px;
  }

  .footer-main {
    padding-bottom: 24px;
  }

  .footer-abtd-brand,
  .footer-links,
  .footer-socials,
  .footer-bar-inner {
    gap: 14px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
  }
}
