@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap');

[hidden] {
  display: none !important;
}

:root {
  --navy: #071126;
  --navy-2: #08142b;
  --navy-3: #0d1a33;
  --blue: #0b8eff;
  --blue-2: #37a7ff;
  --ink: #101522;
  --muted: #687386;
  --soft: #f4f5f7;
  --line: #dde3ea;
  --card: #ffffff;
  --green: #20b26b;
  --amber: #e39a22;
  --purple: #7b61ff;
  --red: #ef5b5b;
  --shadow: 0 14px 32px rgba(21, 31, 49, 0.08);
  --radius: 8px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: #fff;
}

body {
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
}

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

.site-header .container {
  width: min(1568px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 22, 40, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #1d1d1f;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background-image: url('logo-icon.svg'), linear-gradient(135deg, #0071e3, #5e5ce6);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 15px 15px, 100% 100%;
  box-shadow: rgba(0, 113, 227, 0.35) 0px 2px 8px;
  text-indent: -9999px;
}

.brand-name span {
  color: #5e5ce6;
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.site-nav a,
.signin-link,
.language-link {
  color: #344056;
  font-size: 14px;
  font-weight: 500;
}

.nav-pill {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--blue) !important;
  background: rgba(11, 142, 255, 0.12);
  font-weight: 800 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-dropdown {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  color: #344056;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.12s ease;
}

.language-toggle:hover {
  background: #F2F2F7;
}

.language-toggle[aria-expanded="true"] {
  background: #F2F2F7;
}

.language-toggle .language-chevron {
  transition: transform 0.15s ease;
  margin-left: 2px;
}

.language-toggle[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 200;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #1D1D1F;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s ease;
}

.language-option:hover {
  background: #F2F2F7;
}

.language-option.active {
  background: #EBF4FF;
  color: #0051A2;
}

.language-flag {
  font-size: 1.125rem;
  line-height: 1;
}

.language-label {
  flex: 1;
}

.language-check {
  flex-shrink: 0;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe2ec;
  border-radius: 10px;
  background: #edf0f3;
}

.menu-button span {
  display: block;
  width: 10px;
  height: 1.5px;
  margin: 0;
  border-radius: 10px;
  background: #1d2738;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 14px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #149dff, #027ce6);
  box-shadow: 0 10px 24px rgba(7, 126, 229, 0.26);
}

.button-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button-outline {
  width: 100%;
  min-height: 36px;
  color: #161c2a;
  background: #f7f8fa;
  border: 1px solid #d8dfe8;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 50% 34%, rgba(20, 101, 218, 0.22), transparent 30%),
    linear-gradient(180deg, #08142d 0%, #061026 100%);
}

.hero {
  min-height: 705px;
  padding: 70px 0 54px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 22px;
  padding: 0 14px;
  border: 1px solid rgba(53, 157, 255, 0.35);
  border-radius: 999px;
  color: #75beff;
  background: rgba(11, 142, 255, 0.14);
  font-size: 11px;
  font-weight: 750;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 62px);
  font-weight: 900;
  line-height: 0.93;
}

.hero h1 span,
.section-heading h2 span,
.trust-copy h2 span {
  color: var(--blue-2);
}

.hero-copy {
  max-width: 585px;
  margin: 24px 0 26px;
  color: #b9c6da;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trial-note {
  margin: 12px 0 0;
  color: #718098;
  font-size: 11px;
}

.brief-card {
  position: relative;
  width: min(386px, 100%);
  margin-top: 48px;
  padding: 20px 22px 18px;
  overflow: hidden;
  text-align: left;
  color: #d6def0;
  border: 1px solid rgba(91, 112, 172, 0.34);
  border-radius: 8px;
  background: #11152a;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
}

.brief-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 18%, rgba(111, 77, 255, 0.22), transparent 35%);
  pointer-events: none;
}

.brief-dot {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.brief-title {
  position: relative;
  margin: 0 0 12px;
  padding-left: 10px;
  color: #58b3ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.brief-copy {
  position: relative;
  margin: 0 0 14px;
  color: #777f99;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
}

.brief-tags {
  position: relative;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.brief-tags span {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 750;
}

.brief-tags span:nth-child(1) {
  color: #86c7ff;
  background: rgba(16, 145, 255, 0.12);
}

.brief-tags span:nth-child(2) {
  color: #67dea0;
  background: rgba(32, 178, 107, 0.14);
}

.brief-tags span:nth-child(3) {
  color: #f2ba49;
  background: rgba(227, 154, 34, 0.14);
}

.logo-strip {
  padding: 22px 0;
  background: #fff;
  border-bottom: 1px solid #e7ebf1;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.strip-grid div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  color: #687386;
  font-weight: 700;
}

.strip-grid div > span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.strip-grid strong {
  color: #1d2430;
  font-size: 10px;
  font-weight: 850;
}

.strip-grid small {
  color: #8a94a4;
  font-size: 9px;
  font-weight: 650;
}

.mini-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.blue { background: rgba(11, 142, 255, 0.14); color: var(--blue); }
.green { background: rgba(32, 178, 107, 0.14); color: var(--green); }
.purple { background: rgba(123, 97, 255, 0.14); color: var(--purple); }
.amber { background: rgba(227, 154, 34, 0.14); color: var(--amber); }
.orange { background: rgba(248, 128, 31, 0.14); color: #f8801f; }
.lime { background: rgba(118, 186, 45, 0.14); color: #75a82b; }
.red { background: rgba(239, 91, 91, 0.14); color: var(--red); }

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--soft);
}

.section-white {
  background: #fff;
}

.section-heading {
  max-width: 560px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #6d7380;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.section-heading h2,
.trust-copy h2,
.cta-content h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(29px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.04;
}

.section-heading p:last-child,
.language-copy p,
.trust-copy p,
.cta-content p {
  color: var(--muted);
  font-size: 14px;
}

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

.role-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.step-card,
.feature-tile,
.role-card,
.price-card,
.message-card,
.trust-feature {
  position: relative;
  border: 1px solid #dbe2ea;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.step-card {
  min-height: 232px;
  padding: 28px 24px 22px;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: -2px;
  right: 18px;
  color: #e0e7ef;
  font-size: 47px;
  font-weight: 900;
  line-height: 1;
}

.card-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
}

.tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 900;
}

.blue-tag { color: var(--blue); background: rgba(11, 142, 255, 0.12); }
.green-tag { color: var(--green); background: rgba(32, 178, 107, 0.12); }
.amber-tag { color: var(--amber); background: rgba(227, 154, 34, 0.14); }

.step-card h3,
.feature-tile h3,
.role-card h3,
.trust-feature h3 {
  margin: 0 0 9px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.step-card p:not(.tag),
.feature-tile p,
.role-card span,
.trust-feature p,
.price-card p,
.price-card li {
  color: #596579;
  font-size: 12px;
}

.step-card a,
.role-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.center-action .button {
  min-width: 280px;
}

.center-action p {
  margin: 10px 0 0;
  color: #8a94a4;
  font-size: 11px;
}

.feature-section {
  border-top: 1px solid #e9edf3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.feature-tile {
  min-height: 186px;
  padding: 19px 16px 16px;
  box-shadow: none;
}

.feature-tile .card-icon {
  width: 25px;
  height: 25px;
}

.feature-tile p {
  margin: 0;
  line-height: 1.45;
}

.roles-section {
  border-top: 1px solid #e5eaf1;
  border-bottom: 1px solid #e5eaf1;
}

.role-card {
  min-height: 190px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(21, 31, 49, 0.06);
}

.role-card p {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.organizer p,
.organizer a { color: var(--blue); }
.coach p,
.coach a { color: var(--green); }
.parent p,
.parent a { color: var(--amber); }

.language-section {
  padding-bottom: 48px;
}

.language-layout,
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 54px;
  align-items: center;
}

.language-copy h2,
.trust-copy h2 {
  max-width: 500px;
}

.language-copy {
  max-width: 590px;
}

.language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.language-tags span {
  padding: 5px 9px;
  border: 1px solid #dce2ea;
  border-radius: 999px;
  color: #667285;
  background: #fff;
  font-size: 10px;
  font-weight: 750;
}

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

.message-card {
  padding: 18px 22px;
  box-shadow: none;
}

.message-card p {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 900;
}

.message-card span {
  color: #3f495c;
  font-size: 12px;
  line-height: 1.45;
}

.message-card.english {
  background: #eef7ff;
  border-color: #cfe7fb;
}

.message-card.english p {
  color: var(--blue);
}

.message-card.spanish {
  background: #eefaf1;
  border-color: #ccebd4;
}

.message-card.spanish p {
  color: var(--green);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
  text-align: center;
}

.stat-row strong {
  display: block;
  color: #101827;
  font-size: 20px;
  font-weight: 900;
}

.stat-row span {
  display: block;
  color: #6d7688;
  font-size: 11px;
}

.trust-section {
  border-top: 1px solid #e6ebf1;
}

.trust-copy .eyebrow,
.language-copy .eyebrow {
  color: #6d7380;
}

.trust-checks {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-checks li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #495468;
  font-size: 12px;
  font-weight: 650;
}

.trust-cards {
  display: grid;
  gap: 16px;
}

.trust-feature {
  min-height: 86px;
  padding: 18px 20px 18px 58px;
  box-shadow: none;
}

.trust-feature .card-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 26px;
  height: 26px;
}

.trust-feature h3 {
  margin-bottom: 5px;
}

.trust-feature p {
  margin: 0;
}

.dark-card {
  min-height: 170px;
  padding: 32px 32px 28px 82px;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(108, 70, 225, 0.6), transparent 34%),
    linear-gradient(135deg, #250448, #3d0d77);
}

.dark-card h3,
.dark-card p {
  color: #fff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-section {
  padding-top: 82px;
}

.light-badge {
  margin-bottom: 16px;
  color: var(--blue);
  background: rgba(11, 142, 255, 0.1);
  border-color: rgba(11, 142, 255, 0.24);
}

.price-card {
  min-height: 410px;
  padding: 27px 24px 22px;
  display: flex;
  flex-direction: column;
}

.plan-name {
  margin: 0 0 5px;
  color: #6d7380 !important;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price-card h3 span {
  color: #596579;
  font-size: 15px;
}

.price-card > p:nth-of-type(2) {
  min-height: 38px;
  margin: 0 0 20px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 20px;
}

.price-card li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(11, 142, 255, 0.12);
}

.price-card li::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 3px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg);
}

.featured-plan {
  color: #fff;
  border-color: #06366d;
  background: linear-gradient(180deg, #071936, #051026);
  box-shadow: 0 18px 46px rgba(7, 25, 54, 0.18);
}

.featured-plan h3,
.featured-plan .plan-name {
  color: #fff !important;
}

.featured-plan h3 span,
.featured-plan p,
.featured-plan li {
  color: #9fb0c8;
}

.featured-plan li::before {
  background: rgba(37, 161, 255, 0.18);
}

.pricing-note {
  max-width: 680px;
  margin: 24px auto 0;
  color: #7a8494;
  font-size: 12px;
  text-align: center;
}

.closing-cta {
  padding: 78px 0 80px;
}

.cta-content {
  max-width: 650px;
  text-align: center;
}

.cta-content .eyebrow {
  color: #9da9bd;
}

.cta-content h2 {
  color: #fff;
}

.cta-content p {
  max-width: 520px;
  margin: 16px auto 24px;
  color: #b5c1d4;
}

.cta-content .trial-note {
  margin-top: 12px;
  color: #718098;
}

.mobile-break {
  display: none;
}

.join-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f4f4f6;
}

.join-main {
  flex: 1 0 auto;
  background: #f4f4f6;
}

.join-hero {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 66px 0 44px;
  text-align: center;
}

.join-logo {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin: 0 auto 48px;
  color: #1d2430;
  font-size: 18px;
  font-weight: 850;
}

.join-logo .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.signup-steps {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 44px;
  padding: 0;
  color: #747b87;
  list-style: none;
}

.signup-steps li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.signup-steps li:first-child::after {
  content: '>';
  position: absolute;
  right: -20px;
  color: #c3c8d0;
  font-size: 12px;
  font-weight: 800;
}

.signup-steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #747b87;
  background: #d9dce2;
  font-size: 13px;
  font-weight: 800;
}

.signup-steps .active {
  color: #242b37;
  font-weight: 800;
}

.signup-steps .active span {
  color: #fff;
  background: #087be8;
}

.join-eyebrow {
  margin: 0 0 18px;
  color: #007aff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.join-hero h1 {
  margin: 0;
  color: #20232a;
  font-size: clamp(36px, 5vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.join-subtitle {
  margin: 20px 0 34px;
  color: #6d727c;
  font-size: 16px;
}

.join-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  text-align: left;
}

.join-plan-card {
  position: relative;
  min-height: 344px;
  padding: 28px 24px 24px;
  border: 1px solid #dddfe5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(21, 31, 49, 0.08);
}

.selected-plan {
  border: 3px solid #067bf0;
  box-shadow: 0 0 0 3px rgba(6, 123, 240, 0.12), 0 5px 14px rgba(21, 31, 49, 0.1);
}

.popular-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  min-width: 118px;
  margin: 0;
  padding: 4px 13px;
  border-radius: 999px;
  color: #fff;
  background: #087be8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  transform: translateX(-50%);
}

.selected-dot {
  position: absolute;
  top: 25px;
  right: 24px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #087be8;
}

.selected-dot::before {
  content: '';
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.join-plan-name {
  margin: 0 0 22px;
  color: #696e78;
  font-size: 13px;
  font-weight: 850;
}

.selected-plan .join-plan-name {
  color: #087be8;
}

.growth-plan .join-plan-name {
  color: #f08a00;
}

.join-plan-card h2 {
  margin: 0 0 14px;
  color: #20232a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.join-plan-card h2 span {
  color: #6c717b;
  font-size: 13px;
  font-weight: 500;
}

.join-plan-copy {
  min-height: 42px;
  margin: 0 0 16px;
  color: #6c717b;
  font-size: 13px;
  line-height: 1.5;
}

.join-feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-feature-list li {
  position: relative;
  padding-left: 20px;
  color: #272a31;
  font-size: 13px;
  line-height: 1.35;
}

.join-feature-list li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 1px;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid #737b87;
  border-bottom: 1.6px solid #737b87;
  transform: rotate(-45deg);
}

.selected-plan .join-feature-list li::before {
  border-color: #087be8;
}

.growth-plan .join-feature-list li::before {
  border-color: #f08a00;
}

.join-continue {
  min-width: 296px;
  min-height: 54px;
  margin-top: 34px;
  font-size: 16px;
}

.join-continue span {
  margin-left: 10px;
}

.join-footnote {
  margin: 14px 0 0;
  color: #a8adb7;
  font-size: 13px;
}

.register-page {
  min-height: 100vh;
  background: #f5f5f7;
}

.register-main {
  background: #f5f5f7;
}

.register-hero {
  width: min(460px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 48px;
  text-align: center;
}

.register-logo {
  margin-bottom: 46px;
}

.register-steps {
  gap: 34px;
  margin-bottom: 40px;
}

.register-steps li:not(:last-child)::after {
  content: '>';
  position: absolute;
  right: -22px;
  color: #c3c8d0;
  font-size: 12px;
  font-weight: 800;
}

.register-steps li:first-child::after {
  right: -22px;
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
}

.athlete-icon {
  display: none;
}

.register-hero h1 {
  margin: 0;
  color: #20232a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.08;
}

.register-card .autosave-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 0;
  padding-left: 0;
  color: #8b8f96;
  font-size: 13px;
}

.register-card .autosave-note::before {
  display: none;
}

.register-card .autosave-note svg {
  flex-shrink: 0;
}

.register-subtitle {
  margin: 14px 0 34px;
  color: #686d76;
  font-size: 15px;
}

.register-card {
  padding: 31px 32px 32px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 31, 49, 0.08);
  text-align: left;
}

.register-card.step-3-mode {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.register-section-card {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 31, 49, 0.08);
  margin-bottom: 16px;
}

.register-card.step-3-mode .register-section-card:last-child {
  margin-bottom: 0;
}

.register-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.register-card fieldset + fieldset {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8eaee;
}

.register-card legend {
  margin: 0 0 18px;
  color: #a6aab2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.register-card label {
  display: block;
  margin-bottom: 18px;
}

.register-card fieldset label:last-child,
.field-row label {
  margin-bottom: 0;
}

.register-card label > span {
  display: block;
  margin: 0 0 8px;
  color: #1f232b;
  font-size: 14px;
  font-weight: 800;
}

.register-card input,
.register-card select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #dcdfe6;
  border-radius: 10px;
  color: #23262d;
  background: #fff;
  font: inherit;
  font-size: 16px;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.register-card select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #89909b 50%),
    linear-gradient(135deg, #89909b 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.register-card input::placeholder {
  color: #8b8f96;
}

.register-card input:focus,
.register-card select:focus {
  border-color: #087be8;
  box-shadow: 0 0 0 4px rgba(8, 123, 232, 0.12);
}

.register-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 28px;
  border: 0;
  font-size: 16px;
}

.register-submit span {
  margin-left: 10px;
}

.autosave-note {
  position: relative;
  width: max-content;
  margin: 15px auto 0;
  padding-left: 15px;
  color: #a0a5ad;
  font-size: 12px;
}

.autosave-note::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #23c55e;
  border-bottom: 1.5px solid #23c55e;
  transform: rotate(-45deg);
}

.register-footer {
  padding: 48px 0;
  border-top: 1px solid #dddee3;
  background: #f7f7f8;
}

.register-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.footer-brand-block .brand {
  margin-bottom: 16px;
}

.footer-brand-block p {
  max-width: 230px;
  margin: 0 0 14px;
  color: #70747d;
  font-size: 14px;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-badges span {
  padding: 4px 9px;
  border: 1px solid #d9dce2;
  border-radius: 999px;
  color: #3d424b;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #aaadb5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #6c717a;
  font-size: 14px;
}

.commitment-column p {
  display: flex;
  align-items: center;
  gap: 7px;
}

.signin-page,
.static-page {
  min-height: 100vh;
  background: #f8f8f9;
}

.signin-main {
  min-height: 870px;
  padding: 48px 0 78px;
  background: #fafafa;
}

.signin-panel {
  width: min(420px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.signin-bolt {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b8eff, #005fc4);
  box-shadow: 0 10px 22px rgba(8, 123, 232, 0.18);
  font-size: 0;
}

.signin-bolt::before {
  content: '';
  width: 20px;
  height: 24px;
  background: #fff;
  clip-path: polygon(45% 0, 100% 0, 62% 42%, 92% 42%, 34% 100%, 47% 56%, 8% 56%);
}

.signin-panel h1 {
  margin: 0;
  color: #24272e;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.signin-panel > p {
  margin: 14px 0 34px;
  color: #6b7079;
  font-size: 15px;
}

.role-choice-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.role-choice {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid #dfe2e8;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(21, 31, 49, 0.04);
  text-align: left;
}

.selected-choice {
  border: 2px solid #087be8;
  background: #e8f2ff;
  box-shadow: 0 0 0 3px rgba(8, 123, 232, 0.1), 0 8px 18px rgba(21, 31, 49, 0.08);
}

.role-choice-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}

.admin-choice .role-choice-icon {
  color: #087be8;
  background: #e7f1ff;
}

.coach-choice .role-choice-icon {
  color: #18a05f;
  background: #e7f3ed;
}

.parent-choice .role-choice-icon {
  color: #d78b00;
  background: #ece8de;
}

.athlete-choice .role-choice-icon {
  color: #7b61ff;
  background: #f0ecff;
}

.role-choice h2 {
  margin: 0 0 6px;
  color: #24272e;
  font-size: 15px;
  font-weight: 900;
}

.role-choice p {
  margin: 0;
  color: #6b7079;
  font-size: 13px;
  line-height: 1.45;
}

.radio-dot {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #c9ced8;
  border-radius: 50%;
  background: #fff;
}

.selected-radio {
  border-color: #087be8;
  background: #087be8;
}

.selected-radio::before {
  content: '';
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.signin-submit {
  width: 100%;
  min-height: 52px;
  margin: 0 0 18px;
  font-size: 16px;
}

.signin-submit span {
  margin-left: 10px;
}

.signin-panel .signin-links {
  margin: 7px 0 0;
  color: #6b7079;
  font-size: 14px;
}

.signin-links a {
  color: #0075e8;
  font-weight: 850;
}

.signin-panel .prototype-note {
  margin-top: 32px;
  color: #aaafb7;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #e0e2e7;
}

.footer-bottom p {
  margin: 0;
  color: #a0a4ac;
  font-size: 12px;
}

.static-main {
  min-height: 640px;
  padding: 72px 0;
}

.static-card {
  width: min(620px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px;
  border: 1px solid #dfe2e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(21, 31, 49, 0.08);
}

.static-card h1 {
  margin: 0 0 14px;
  color: #20232a;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.08;
}

.static-card p {
  color: #666d79;
  font-size: 15px;
  line-height: 1.6;
}

.feedback-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: #20232a;
  font-size: 14px;
  font-weight: 800;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdfe6;
  border-radius: 10px;
  color: #23262d;
  background: #fff;
  font: inherit;
  font-size: 15px;
  resize: vertical;
}

.static-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.static-list p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  background: #fafafa;
}

@media (max-width: 1020px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .language-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-copy,
  .language-copy {
    max-width: none;
  }

  .join-plan-grid {
    grid-template-columns: 1fr;
  }

  .join-plan-card {
    min-height: auto;
  }

  .register-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .signin-main {
    min-height: auto;
  }
}

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

  .site-nav,
  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 48px;
  }

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

  .step-grid,
  .role-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 0;
  }

  .register-steps {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .register-steps li::after,
  .register-steps li:first-child::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .mobile-break {
    display: block;
  }

  .hero-actions,
  .center-action .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .brief-card {
    margin-top: 34px;
  }

  .strip-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .step-card,
  .role-card,
  .price-card {
    padding-inline: 20px;
  }

  .dark-card {
    padding: 28px 22px 24px 70px;
  }

  .register-hero {
    width: min(100% - 28px, 560px);
    padding-top: 48px;
  }

  .field-row,
  .register-footer-grid {
    grid-template-columns: 1fr;
  }

  .register-card {
    padding: 26px 20px;
  }

  .register-footer {
    padding: 38px 0;
  }

  .signin-panel,
  .static-card {
    width: min(100% - 28px, 620px);
  }

  .role-choice {
    grid-template-columns: 38px 1fr;
  }

  .radio-dot {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: -32px;
  }

  .footer-bottom {
    display: grid;
  }

  .static-card {
    padding: 28px 20px;
  }
}

/* Registration wizard additions */

.register-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 46px;
  text-decoration: none;
}

.register-brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: #087be8;
  box-shadow: 0 4px 14px rgba(8, 123, 232, 0.25);
}

.register-brand-name {
  color: #20232a;
  font-size: 20px;
  font-weight: 800;
}

.register-brand-name span {
  color: #087be8;
  font-weight: 500;
}

.register-logo {
  display: none;
}

.draft-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  margin-bottom: 24px;
  border: 1px solid #cfe1ff;
  border-radius: 12px;
  background: #f0f6ff;
  color: #2056a8;
  font-size: 14px;
}

.draft-banner strong {
  font-weight: 700;
}

.draft-icon {
  display: grid;
  place-items: center;
  font-size: 16px;
}

.draft-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #087be8;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* Step indicator — horizontal with chevrons */
.register-hero .signup-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 40px;
  padding: 0;
}

.register-hero .signup-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #8b8f96;
  white-space: nowrap;
}

.register-hero .signup-steps li:first-child::after,
.register-hero .signup-steps li::after {
  content: '>';
  position: static;
  margin-left: 8px;
  color: #c3c8d0;
  font-size: 12px;
  font-weight: 800;
}

.register-hero .signup-steps li:last-child::after {
  display: none;
}

.register-hero .signup-steps li span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #8b8f96;
  background: #fff;
  border: 2px solid #d9dce2;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.register-hero .signup-steps li.active {
  color: #20232a;
  font-weight: 700;
}

.register-hero .signup-steps li.active span {
  color: #fff;
  background: #087be8;
  border-color: #087be8;
}

.register-hero .signup-steps li.completed {
  color: #34c759;
}

.register-hero .signup-steps li.completed span {
  background: #34c759;
  border-color: #34c759;
  color: #fff;
  font-size: 0;
}

.register-hero .signup-steps li.completed span::after {
  content: "✓";
  font-size: 13px;
}

.wizard-step[hidden] {
  display: none;
}

.form-errors {
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid #ffb3b3;
  border-radius: 10px;
  background: #fff0f0;
  color: #b91c1c;
  font-size: 14px;
}

small.error {
  display: block;
  margin-top: 6px;
  color: #b91c1c;
  font-size: 12px;
}

input.invalid,
select.invalid {
  border-color: #b91c1c !important;
}

.session-icon span::before {
  border-color: #34c759;
}

.session-icon span::after {
  border-color: #34c759;
}

.review-icon span::before {
  border-color: #ff9500;
}

.review-icon span::after {
  border-color: #ff9500;
}

.session-list {
  margin: 0;
  padding: 0;
  border: 0;
}

.session-list legend {
  margin: 0 0 14px;
  color: #a6aab2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-card {
  position: relative;
  display: block;
  padding: 18px 20px;
  margin-bottom: 12px;
  border: 2px solid #e8eaee;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.session-card:hover,
.session-card.selected {
  border-color: #087be8;
  box-shadow: 0 0 0 4px rgba(8, 123, 232, 0.08);
}

.session-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.session-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.session-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.session-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  text-align: left;
}

.session-name {
  color: #20232a;
  font-size: 17px;
  font-weight: 800;
}

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

.session-time {
  color: #686d76;
  font-size: 13px;
}

.session-time::before {
  content: "🕒";
  margin-right: 4px;
}

.session-spots {
  color: #34c759;
  font-size: 13px;
  font-weight: 700;
}

.session-spots.low {
  color: #ff3b30;
}

.session-price {
  text-align: right;
  color: #20232a;
  font-size: 24px;
  font-weight: 900;
}

.session-price small {
  display: block;
  color: #8b8f96;
  font-size: 11px;
  font-weight: 500;
}

.session-selected {
  display: none;
  align-items: center;
  gap: 6px;
  color: #087be8;
  font-size: 14px;
  font-weight: 700;
}

.session-card.selected .session-selected {
  display: flex;
}

.empty-sessions {
  padding: 24px;
  text-align: center;
  color: #686d76;
  font-size: 15px;
  background: #f9f9fb;
  border-radius: 12px;
}

.wizard-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eaee;
  box-shadow: 0 4px 20px rgba(21, 31, 49, 0.06);
}

.wizard-actions .button-secondary,
.wizard-actions .button-primary {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
}

.button-secondary {
  flex: 1;
  background: #fff;
  color: #20232a;
  border: 1px solid #e8eaee;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.button-secondary:hover {
  background: #f5f5f7;
}

.wizard-actions .button-secondary {
  flex: 1;
  background: #fff;
  color: #20232a;
  border: 1px solid #e8eaee;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.wizard-actions .button-secondary:hover {
  background: #f5f5f7;
  border-color: #d9dce2;
}

.register-card.step-3-mode .wizard-actions {
  margin-top: 0;
}

.wizard-actions .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  background: #087be8;
  color: #fff;
  transition: background 0.18s ease, opacity 0.18s ease;
}

.wizard-actions .button-primary:hover:not(:disabled) {
  background: #076ac7;
}

.wizard-actions .button-primary:disabled {
  background: #c3c8d0;
  cursor: not-allowed;
}

.submit-bolt {
  font-size: 18px;
  line-height: 1;
}

.review-card {
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 31, 49, 0.08);
  text-align: left;
}

.review-label {
  margin: 0 0 16px;
  color: #a6aab2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8eaee;
}

.review-line > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-line strong {
  color: #20232a;
  font-size: 17px;
  font-weight: 800;
}

.review-line small {
  color: #6c717b;
  font-size: 14px;
  font-weight: 500;
}

.review-line > span {
  color: #20232a;
  font-size: 20px;
  font-weight: 800;
}

.review-details {
  padding: 18px 0 0;
  margin: 0;
  color: #6c717b;
  font-size: 13px;
  line-height: 1.55;
  background: transparent;
  border-radius: 0;
}

.review-details p {
  margin: 0;
}

.review-details strong {
  color: #20232a;
  font-weight: 700;
}

.review-details span {
  color: #8b8f96;
}

.review-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  color: #20232a;
  font-size: 16px;
  font-weight: 800;
}

.review-total strong {
  font-size: 20px;
  font-weight: 800;
}

.payment-method,
.policies {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.payment-method legend,
.policies-title {
  margin: 0 0 14px;
  color: #a6aab2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.register-card .payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  margin-bottom: 12px;
  border: 2px solid #e8eaee;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.register-card .payment-option.selected {
  border-color: #087be8;
  box-shadow: 0 0 0 4px rgba(8, 123, 232, 0.08);
}

.register-card .payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.register-card .payment-option > .payment-option-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  margin-bottom: 0;
}

.register-card .payment-option > .payment-option-main strong {
  color: #20232a;
  font-size: 16px;
  font-weight: 800;
}

.register-card .payment-option > .payment-option-main small {
  color: #6c717b;
  font-size: 14px;
  font-weight: 500;
}

.register-card .payment-option > .payment-check {
  display: none;
  flex-shrink: 0;
  color: #087be8;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.register-card .payment-option.selected > .payment-check {
  display: block;
}

.card-fields {
  margin-top: 20px;
}

.card-fields label {
  margin-bottom: 16px;
}

.card-fields label > span {
  color: #20232a;
  font-size: 14px;
  font-weight: 800;
}

.card-fields input {
  color: #23262d;
}

.pay-later-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fffbeb;
  color: #92400e;
  font-size: 14px;
  line-height: 1.5;
}

.pay-later-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #d97706;
}

.stripe-checkout-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 14px;
  line-height: 1.5;
}

.stripe-checkout-note svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #2563eb;
}

.policies {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8eaee;
}

.policies-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.policies-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.policies-count {
  color: #20232a;
  font-size: 13px;
  font-weight: 800;
}

.register-card .policy-card {
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid #e8eaee;
  border-radius: 12px;
  background: #fff;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.register-card .policy-card.accepted {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.register-card .policy-toggle {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  cursor: pointer;
}

.register-card .policy-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.register-card .policy-toggle > .policy-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  border: 2px solid #d9dce2;
  background: #fff;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
  margin-bottom: 0;
}

.register-card .policy-card.accepted .policy-toggle > .policy-check {
  background: #34c759;
  border-color: #34c759;
}

.register-card .policy-card.accepted .policy-toggle > .policy-check::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.register-card .policy-toggle > .policy-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 0;
}

.policy-title-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.register-card .policy-toggle > .policy-title strong {
  color: #20232a;
  font-size: 15px;
  font-weight: 800;
}

.register-card .policy-toggle > .policy-title .policy-summary {
  color: #8b8f96;
  font-size: 13px;
  font-weight: 500;
}

.register-card .policy-toggle > .policy-title .policy-status {
  display: none;
  color: #34c759;
  font-size: 13px;
  font-weight: 700;
}

.register-card .policy-card.accepted .policy-toggle > .policy-title .policy-summary {
  display: none;
}

.register-card .policy-card.accepted .policy-toggle > .policy-title .policy-status {
  display: block;
}

.policy-expand {
  padding: 4px 10px;
  border: 0;
  background: transparent;
  color: #087be8;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.policy-body {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e8eaee;
  color: #686d76;
  font-size: 14px;
  line-height: 1.55;
}

.policy-body p {
  margin: 0 0 14px;
}

.policy-accept-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: #34c759;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.policy-accept-btn:hover {
  background: #2db14c;
}

.register-card .policy-card.accepted .policy-accept-btn {
  display: none;
}

@media (max-width: 360px) {
  .wizard-actions {
    flex-direction: column;
  }

  .session-card {
    flex-wrap: wrap;
  }

  .session-price {
    width: 100%;
    text-align: left;
    margin-top: 8px;
    padding-right: 0;
  }

  .register-hero .signup-steps {
    gap: 8px;
  }

  .register-hero .signup-steps::before {
    left: 18%;
    right: 18%;
  }
}

.success-card {
  padding: 40px 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 31, 49, 0.08);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 8px 24px rgba(52, 199, 89, 0.25);
}

.success-card h1 {
  margin: 0 0 12px;
  color: #20232a;
  font-size: 28px;
  font-weight: 900;
}

.success-card .register-subtitle {
  margin-bottom: 28px;
}

.success-card .register-submit {
  margin-top: 0;
}

/* Dashboard-style footer used on homepage, join, login, signup, etc. */
.dashboard-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-weight: 800;
}

.dashboard-footer-brand .brand-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-image: url('logo-icon.svg'), linear-gradient(135deg, #0071e3, #5e5ce6);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 11px 11px, 100% 100%;
  text-indent: -9999px;
}

.dashboard-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s ease;
}

.dashboard-footer-links a:hover {
  color: #0066ff;
}

.dashboard-footer-links svg {
  flex-shrink: 0;
}

.dashboard-footer-copy {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
}

/* Join page plan radio: hide native input, show custom selected dot. */
.join-plan-card .plan-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.join-plan-card .selected-dot {
  display: none;
}

.join-plan-card.selected-plan .selected-dot {
  display: grid;
}
