/* ============================================================
   Parent Portal — screen styles (login, dashboard, flow)
   ============================================================ */

.page { position: relative; z-index: 1; }
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 90px;
}
.wrap-narrow { max-width: 720px; }

/* ============================================================
   LOGIN
   ============================================================ */
.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.login-card {
  width: 100%;
  max-width: 432px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.login-top { height: 5px; background: linear-gradient(90deg, var(--blue), var(--teal) 55%, var(--orange)); }
.login-body { padding: 40px 38px 34px; text-align: center; }
.login-logo { height: 34px; margin: 0 auto 26px; display: block; }
.login-title { font-size: 50px; color: var(--blue); margin: 0 0 8px; }
.login-sub { color: var(--muted); font-size: 15px; margin: 0 auto 26px; max-width: 320px; }

.field { text-align: left; margin-bottom: 16px; }
.field-lbl {
  display: block;
  font-family: var(--font-display);
  letter-spacing: .1em;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fbfcfe;
  border-radius: 13px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:hover { border-color: #cfd3e3; }
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-50); }
.input.bad { border-color: #e0526b; box-shadow: 0 0 0 4px #fdeef0; }

.login-foot { color: var(--faint); font-size: 12.5px; margin-top: 22px; line-height: 1.6; }
.login-foot a { color: var(--blue); font-weight: 600; text-decoration: none; }
.login-foot a:hover { text-decoration: underline; }

.mail-badge {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.mail-badge svg { width: 36px; height: 36px; }
.link-as { color: var(--blue); font-weight: 700; background: none; border: none; font-size: 14px; }
.link-as:hover { text-decoration: underline; }

.demo-hint {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--faint);
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.greet { margin-bottom: 26px; }
.greet-eyebrow { margin-bottom: 6px; }
.greet h1 { font-size: 64px; color: var(--blue); margin: 0; line-height: .9; }
.greet p { color: var(--muted); font-size: 17px; margin: 10px 0 0; max-width: 540px; }

/* "Up next" hero — the single most important action */
.upnext {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--blue) 0%, #36429c 55%, #3a47a8 100%);
  color: #fff;
  padding: 30px 34px;
  margin-bottom: 34px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 26px;
}
.upnext::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,147,32,.5), transparent 68%);
  top: -120px; right: -60px;
  pointer-events: none;
}
.upnext-ring {
  position: relative;
  flex-shrink: 0;
  width: 96px; height: 96px;
}
.upnext-ring .pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  letter-spacing: .02em;
}
.upnext-main { flex: 1; min-width: 0; }
.upnext-eyebrow {
  font-family: var(--font-display);
  letter-spacing: .16em;
  font-size: 14px;
  color: var(--orange);
  filter: brightness(1.25);
  margin-bottom: 6px;
}
.upnext-title { font-size: 27px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; }
.upnext-desc { color: rgba(255,255,255,.78); font-size: 15px; margin: 0; }
.upnext-cta { flex-shrink: 0; }
.upnext.allset { background: linear-gradient(125deg, var(--teal) 0%, #15a39c 100%); }
.upnext.allset::before { background: radial-gradient(circle, rgba(255,255,255,.35), transparent 68%); }
.upnext.allset .upnext-eyebrow { color: #fff; filter: none; }

/* Section header */
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 4px 16px;
  gap: 16px;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  margin: 0;
  letter-spacing: .02em;
}
.tickets-chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  background: var(--blue-50);
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tickets-chip svg { width: 15px; height: 15px; }

/* Child list */
.kid-list { display: flex; flex-direction: column; gap: 16px; }

.kid {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: box-shadow .25s var(--ease), transform .2s var(--ease), border-color .25s;
  text-align: left;
  width: 100%;
}
.kid:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--blue-100); }
.kid.done { border-color: var(--teal-soft); background: linear-gradient(180deg,#fff, #fbfffe); }

.kid-avatar {
  width: 58px; height: 58px;
  border-radius: 17px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  letter-spacing: .03em;
  background: var(--blue);
  position: relative;
}
.kid.done .kid-avatar { background: var(--teal); }
.kid-avatar .badge {
  position: absolute;
  bottom: -5px; right: -5px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
}
.kid-avatar .badge svg { width: 12px; height: 12px; color: #fff; }

.kid-main { flex: 1; min-width: 0; }
.kid-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.kid-name { font-size: 21px; font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.kid-age { color: var(--faint); font-size: 14px; font-weight: 600; }
.kid-status-pill {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.pill-todo { background: var(--accent-soft); color: var(--orange-600); }
.pill-done { background: var(--teal-soft); color: var(--teal-700); }

.kid-progress-row { display: flex; align-items: center; gap: 14px; }
.kid-progress-row .pbar { flex: 1; }
.kid-progress-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.kid-next {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
}
.kid-next b { color: var(--accent-600); font-weight: 700; }
.kid-cta { flex-shrink: 0; }

/* Add child tile */
.add-kid {
  border: 2px dashed #d3d7e6;
  background: transparent;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--faint);
  font-weight: 700;
  font-size: 16px;
  transition: border-color .2s, color .2s, background .2s;
  width: 100%;
}
.add-kid:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }
.add-kid svg { width: 22px; height: 22px; }

/* ============================================================
   STEP FLOW
   ============================================================ */
.flow {
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 24px 90px;
  position: relative;
  z-index: 1;
}
.flow-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  background: none;
  border: none;
  margin-bottom: 22px;
  padding: 6px 4px;
}
.flow-back:hover { color: var(--blue); }
.flow-back svg { width: 18px; height: 18px; }

.flow-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.flow-head .kid-avatar { width: 50px; height: 50px; border-radius: 15px; font-size: 24px; }
.flow-head h1 { font-size: 26px; font-weight: 800; margin: 0; color: var(--ink); letter-spacing: -.01em; }
.flow-head p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }

/* Milestone bar */
.milestones {
  display: flex;
  align-items: flex-start;
  margin: 22px 0 30px;
  padding: 0 6px;
}
.ms {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 8px;
}
.ms-line {
  position: absolute;
  top: 17px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: var(--line);
  z-index: 0;
}
.ms:first-child .ms-line { display: none; }
.ms-line.filled { background: var(--teal); }
.ms-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--faint);
  z-index: 1;
  position: relative;
  transition: all .35s var(--ease);
}
.ms-dot svg { width: 17px; height: 17px; }
.ms.done .ms-dot { background: var(--teal); border-color: var(--teal); color: #fff; }
.ms.current .ms-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 6px var(--accent-soft);
  transform: scale(1.08);
}
.ms-name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--faint);
  z-index: 1;
}
.ms.done .ms-name { color: var(--teal-700); }
.ms.current .ms-name { color: var(--orange-600); }
.ms-opt {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: lowercase;
  color: var(--faint);
  margin-top: 1px;
}

/* Step card */
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px 40px 34px;
}
.step-icon {
  width: 70px; height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-icon svg { width: 34px; height: 34px; }
.icon-blue { background: var(--blue-50); color: var(--blue); }
.icon-orange { background: var(--accent-soft); color: var(--orange-600); }
.icon-teal { background: var(--teal-soft); color: var(--teal); }

.step-eyebrow { margin-bottom: 9px; font-size: 14px; }
.step-title { font-size: 34px; color: var(--ink); margin: 0 0 12px; line-height: 1; }
.step-desc { color: var(--muted); font-size: 16px; margin: 0 0 26px; line-height: 1.55; max-width: 460px; }

.step-actions { display: flex; gap: 12px; align-items: center; margin-top: 28px; flex-wrap: wrap; }

/* Info row tile (e.g. tickets available) */
.info-tile {
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.info-tile .big {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--blue);
  line-height: .8;
}
.info-tile .lbl { color: var(--ink-2); font-size: 14px; line-height: 1.35; }
.info-tile.teal { background: var(--teal-soft); }
.info-tile.teal .big { color: var(--teal); }

/* Working overlay inside a step */
.working {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 0 8px;
}
.working .ring {
  width: 88px; height: 88px;
  margin-bottom: 20px;
}
.working h3 { font-size: 22px; margin: 0 0 6px; color: var(--ink); font-weight: 800; }
.working p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 16px; }
.form-grid .full { grid-column: 1 / -1; }
.fld { display: flex; flex-direction: column; gap: 6px; }
.fld label {
  font-family: var(--font-display);
  letter-spacing: .08em;
  font-size: 13px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 6px;
}
.fld label .req { color: var(--orange-600); }
.fld .ok {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: auto;
  animation: popIn .35s var(--spring) both;
}
.fld .ok svg { width: 10px; height: 10px; }
textarea.input { resize: none; line-height: 1.5; }
select.input { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7186' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--blue);
  margin: 22px 0 12px;
}
.form-section-title:first-child { margin-top: 0; }

/* Payment summary */
.pay-summary {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.pay-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
}
.pay-row:last-child { border-bottom: none; }
.pay-row .nm { color: var(--ink-2); }
.pay-row .amt { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.pay-row.total { background: var(--blue-50); }
.pay-row.total .nm { font-weight: 800; color: var(--blue); }
.pay-row.total .amt {
  font-family: var(--font-display); font-size: 26px; color: var(--blue); letter-spacing: .02em;
}

/* Waiver mock sheet */
.waiver-sheet {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  padding: 20px 22px;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.waiver-sheet h4 { font-family: var(--font-display); color: var(--ink); letter-spacing:.06em; font-size: 17px; margin: 0 0 10px; }
.waiver-sheet::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:60px;
  background: linear-gradient(transparent, #fbfcfe);
}
.sign-line {
  display: flex; align-items: center; gap: 14px; margin-top: 14px;
}
.sign-pad {
  flex: 1; border-bottom: 2px solid var(--ink-2);
  font-family: 'Brush Script MT', cursive;
  font-size: 26px; color: var(--blue);
  padding: 4px 6px 2px; min-height: 38px;
  transition: color .3s;
}

/* ============================================================
   CELEBRATION
   ============================================================ */
.celebrate-overlay {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(27,31,59,.5);
  backdrop-filter: blur(6px);
  animation: fadeIn .35s var(--ease) both;
}
.celebrate-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 46px 44px 38px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  animation: popIn .55s var(--spring) both;
  z-index: 2;
}
.celebrate-check {
  width: 104px; height: 104px;
  margin: 0 auto 24px;
}
.celebrate-eyebrow { color: var(--orange-600); margin-bottom: 8px; }
.celebrate-card h2 { font-family: var(--font-display); font-size: 46px; color: var(--blue); margin: 0 0 10px; line-height: .92; }
.celebrate-card p { color: var(--muted); font-size: 16px; margin: 0 0 28px; }
.confetti-canvas { position: fixed; inset: 0; z-index: 61; pointer-events: none; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 70;
  opacity: 0;
  transition: transform .4s var(--spring), opacity .3s;
  display: flex; align-items: center; gap: 9px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 17px; height: 17px; color: #5fe0c0; }

/* ============================================================
   Countdown chips + family payment + tickets banner
   ============================================================ */
.countdowns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.cd-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 10px 15px;
  box-shadow: var(--shadow-sm);
}
.cd-chip .cd-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue);
}
.cd-chip .cd-num { font-family: var(--font-display); font-size: 26px; line-height: .8; color: var(--ink); }
.cd-chip .cd-lbl { font-size: 12px; color: var(--muted); font-weight: 600; line-height: 1.2; }
.cd-chip.urgent { border-color: #f3cfa0; background: var(--accent-soft); }
.cd-chip.urgent .cd-icon { background: #fff; color: var(--orange-600); }
.cd-chip.urgent .cd-num { color: var(--orange-600); }

/* Ticket tag on a child row */
.kid-tags { display: flex; align-items: center; gap: 10px; margin-top: 9px; flex-wrap: wrap; }
.ticket-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
}
.ticket-tag svg { width: 14px; height: 14px; }
.ticket-tag.has { background: var(--teal-soft); color: var(--teal-700); }
.ticket-tag.no  { background: #f1f2f7; color: var(--muted); }
.kid-next-inline { font-size: 13px; color: var(--muted); }
.kid-next-inline b { color: var(--accent-600); font-weight: 700; }

/* Tickets direction banner */
.tickets-banner {
  display: flex; align-items: center; gap: 16px;
  background: var(--accent-soft);
  border: 1.5px solid #f3cfa0;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.tickets-banner .tb-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: #fff; color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.tickets-banner .tb-text { flex: 1; min-width: 0; }
.tickets-banner .tb-text b { color: var(--ink); }
.tickets-banner .tb-text p { margin: 2px 0 0; font-size: 13.5px; color: var(--ink-2); }
.tickets-banner .tb-title { font-weight: 800; color: var(--ink); font-size: 15px; }

/* Family payment card */
.pay-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  overflow: hidden;
  margin-top: 34px;
}
.pay-card-head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px 18px;
}
.pay-card-head .pc-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue);
}
.pay-card-head.paid .pc-icon { background: var(--teal-soft); color: var(--teal); }
.pay-card-head h2 { font-family: var(--font-display); font-size: 26px; letter-spacing: .02em; color: var(--ink); margin: 0; }
.pay-card-head p { margin: 1px 0 0; font-size: 13.5px; color: var(--muted); }
.pay-card-body { padding: 0 26px 24px; }

.pay-breakdown {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 18px;
}
.pay-stat {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.pay-stat .ps-lbl { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; gap: 6px; }
.pay-stat .ps-amt { font-family: var(--font-display); font-size: 30px; color: var(--ink); letter-spacing: .02em; margin-top: 4px; }
.pay-stat.paid { background: var(--teal-soft); border-color: transparent; }
.pay-stat.paid .ps-lbl, .pay-stat.paid .ps-amt { color: var(--teal-700); }
.pay-stat.due { background: var(--accent-soft); border-color: transparent; }
.pay-stat.due .ps-lbl, .pay-stat.due .ps-amt { color: var(--orange-600); }
.pay-stat .ps-lbl svg { width: 13px; height: 13px; }

.pay-deadline {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600;
  color: var(--orange-600);
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 11px 15px;
  margin-bottom: 18px;
}
.pay-deadline svg { width: 17px; height: 17px; flex-shrink: 0; }
.pay-deadline.safe { color: var(--teal-700); background: var(--teal-soft); }
.pay-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Authorized pickup list */
.pickup-list { display: flex; flex-direction: column; gap: 12px; }
.pickup-row {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fbfcfe;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.pickup-grid { flex: 1; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; }
.pickup-remove {
  flex-shrink: 0; width: 40px; height: 40px; margin-top: 22px;
  border: 1.5px solid var(--line); background: #fff; border-radius: 11px;
  color: var(--faint); display: flex; align-items: center; justify-content: center;
  transition: color .15s, border-color .15s, background .15s;
}
.pickup-remove:hover { color: #d2455f; border-color: #f0c2cb; background: #fdf3f5; }
.pickup-empty { color: var(--faint); font-size: 14px; padding: 6px 2px; }
.add-pickup { margin-top: 14px; min-height: 46px; }

/* Season switcher */
.season-switch {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--blue-50); border-radius: 999px; margin-bottom: 22px;
}
.season-tab {
  border: none; background: transparent; border-radius: 999px;
  padding: 9px 18px; font-weight: 700; font-size: 14px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.season-tab.active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.season-tab .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.season-tab .ny-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 2px 7px; border-radius: 999px;
}

/* Next-year enroll card */
.enroll-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--blue) 0%, #36429c 60%, #3a47a8 100%);
  color: #fff; padding: 38px 38px 34px; box-shadow: var(--shadow);
}
.enroll-card::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,147,32,.5), transparent 68%);
  top: -130px; right: -70px; pointer-events: none;
}
.enroll-card .ec-eyebrow { font-family: var(--font-display); letter-spacing: .16em; font-size: 14px; color: var(--orange); filter: brightness(1.25); margin-bottom: 8px; }
.enroll-card h2 { font-family: var(--font-display); font-size: 46px; letter-spacing: .02em; margin: 0 0 10px; line-height: .92; }
.enroll-card p { color: rgba(255,255,255,.82); font-size: 16px; margin: 0 0 22px; max-width: 520px; }
.enroll-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; max-width: 480px; }
.enroll-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; }
.enroll-list .ec-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.enroll-list .ec-check svg { width: 13px; height: 13px; }

/* Family info entry card on dashboard */
.family-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-sm); width: 100%; text-align: left;
  margin-top: 16px; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.family-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--blue-100); }
.family-card .fc-icon { width: 48px; height: 48px; border-radius: 13px; background: var(--blue-50); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.family-card .fc-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.family-card .fc-title { font-weight: 800; font-size: 16px; color: var(--ink); }
.family-card .fc-sub { font-size: 13.5px; color: var(--muted); }
.family-card .fc-arrow { color: var(--faint); flex-shrink: 0; }

/* Locked field (dob / shirt within 60d) */
.fld label .lock-tag {
  margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: 0;
  text-transform: none; color: var(--faint);
}
.fld label .lock-tag svg { width: 11px; height: 11px; }
.input.locked { background: #f4f5f9; color: var(--muted); cursor: not-allowed; }
.fld-hint { font-size: 11.5px; color: var(--faint); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
.fld-hint svg { width: 11px; height: 11px; flex-shrink: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .nav-burger { display: flex; }
  .nav-menu { display: flex; flex-direction: column; padding: 8px; gap: 2px; background: #fff; border-bottom: 1px solid var(--line); }
  .greet h1 { font-size: 48px; }
  .upnext { flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; padding: 26px; }
  .upnext-cta { width: 100%; }
  .upnext-cta .btn { width: 100%; }
  .kid { flex-wrap: wrap; }
  .kid-cta { width: 100%; }
  .kid-cta .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .pickup-grid { grid-template-columns: 1fr; }
  .pay-breakdown { grid-template-columns: 1fr; }
  .enroll-card { padding: 28px 24px; }
  .enroll-card h2 { font-size: 38px; }
  .step-card { padding: 28px 22px 26px; }
  .step-title { font-size: 28px; }
  .ms-name { font-size: 11px; letter-spacing: .04em; }
  .login-body { padding: 32px 26px 28px; }
}
