/* ============================================================
   TWIC Host Registration — Landing / Review / Success styles
   ============================================================ */

/* ---------- ROLE CHOOSER ---------- */
.chooser { min-height: 100vh; display: flex; align-items: center; padding: clamp(28px, 6vw, 80px) clamp(18px, 5vw, 56px); background: var(--paper); position: relative; overflow: hidden; }
.chooser::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(18, 42, 44, 0.018) 24px 26px); }
.chooser__inner { position: relative; max-width: 980px; margin: 0 auto; width: 100%; }
.chooser__title { font-size: clamp(40px, 8vw, 84px); margin: 16px 0 0; color: var(--ink); }
.chooser__lede { font-size: clamp(16px, 2.2vw, 20px); line-height: 1.5; color: var(--ink-soft); max-width: 60ch; margin: 22px 0 0; }
.chooser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 26px); margin: 40px 0 0; }
@media (max-width: 680px) { .chooser__grid { grid-template-columns: 1fr; } }

.rolecard { display: flex; text-align: left; padding: clamp(24px, 3.5vw, 38px); border-radius: var(--r-xl); border: 2px solid var(--line-strong); background: var(--card); cursor: pointer; transition: transform 0.12s, border-color 0.15s, box-shadow 0.15s; position: relative; overflow: hidden; min-height: 230px; }
.rolecard__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; width: 100%; flex: 1; }
.rolecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rolecard--org:hover { border-color: var(--accent); }
.rolecard--student:hover { border-color: #d96bd6; }
.rolecard__tag { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 11.5px; padding: 6px 12px; border-radius: 99px; }
.rolecard--org .rolecard__tag { background: var(--accent-tint); color: var(--accent-strong); }
.rolecard--student .rolecard__tag { background: rgba(255, 191, 254, 0.5); color: #9b2f97; }
.rolecard__title { font-family: var(--font-display); font-weight: 800; font-stretch: 110%; letter-spacing: -0.02em; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.04; margin-top: 6px; color: var(--ink); }
.rolecard__desc { font-size: 15px; line-height: 1.5; color: var(--ink-soft); max-width: 34ch; }
.rolecard__go { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; }
.rolecard--org .rolecard__go { color: var(--accent-strong); }
.rolecard--student .rolecard__go { color: #9b2f97; }
.rolecard__go .btn__arrow { transition: transform 0.15s; }
.rolecard:hover .rolecard__go .btn__arrow { transform: translateX(4px); }

/* landing back-to-chooser chip */
.landing__back { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; padding: 8px 14px; border-radius: 99px; border: 1.5px solid currentColor; background: transparent; color: var(--hero-fg); font-weight: 600; font-size: 13px; opacity: 0.85; transition: opacity 0.15s; }
.landing__back:hover { opacity: 1; }

/* ---------- LANDING ---------- */
.landing { min-height: 100vh; display: flex; align-items: center; padding: clamp(28px, 6vw, 80px) clamp(18px, 5vw, 56px); position: relative; overflow: hidden; background: var(--hero-bg); }
.landing::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255,255,255,0.35), transparent 55%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(18, 42, 44, 0.035) 22px 24px);
}
.landing .eyebrow { color: var(--hero-fg); }
.landing__inner { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; width: 100%; }
.landing__title { font-size: clamp(38px, 7.4vw, 80px); margin: 18px 0 0; max-width: 16ch; line-height: 1.1; color: var(--hero-fg); }
.landing__title .hl { color: inherit; background: none; padding: 0; }
.landing__lede { font-size: clamp(16px, 2.2vw, 20px); line-height: 1.5; color: var(--hero-lede); max-width: 56ch; margin: 26px 0 0; }

.landing__stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 56px); margin: 36px 0 0; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-stretch: 120%; font-size: clamp(32px, 5vw, 46px); line-height: 1; color: var(--hero-fg); }
.stat__lbl { font-size: 13px; color: var(--hero-lede); max-width: 18ch; }

.landing__panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 32px); margin: 40px 0 0; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-sm); }
@media (max-width: 620px) { .landing__panel { grid-template-columns: 1fr; gap: 24px; } }
.lp-col { min-width: 0; }
.lp-h { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin: 0 0 14px; }
.lp-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-list li { display: flex; flex-direction: column; gap: 1px; }
.lp-list b { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.lp-list span { color: var(--ink-soft); font-size: 14.5px; }
.lp-note { font-size: 13px; color: var(--ink-faint); margin: 14px 0 0; }
.lp-check { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-check li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.4; }
.lp-check li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); }
.lp-check li::after { content: ""; position: absolute; left: 5px; top: 7px; width: 8px; height: 5px; border-left: 2px solid #ffffff; border-bottom: 2px solid #ffffff; transform: rotate(-45deg); }

.landing__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin: 38px 0 0; }
.landing__time { font-size: 13px; color: var(--hero-lede); }

/* Statement variant — bigger type, no stat band */
.landing--statement .landing__stats { display: none; }
.landing--statement .landing__title { font-size: clamp(44px, 9vw, 104px); }

/* ---------- REVIEW ---------- */
.review { display: flex; flex-direction: column; gap: 8px; }
.review__row { display: grid; grid-template-columns: 150px 1fr auto; gap: 16px; align-items: center; text-align: left; padding: 14px 16px; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r-md); transition: border-color 0.14s; }
.review__row:hover { border-color: var(--ink-faint); }
.review__row:hover .review__edit { color: var(--ink); }
.review__label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--ink-soft); font-family: var(--font-display); }
.review__val { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review__main { font-size: 15px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.review__sub { font-size: 13px; color: var(--ink-soft); }
.review__edit { font-size: 13px; font-weight: 700; color: var(--ink-faint); }
@media (max-width: 560px) { .review__row { grid-template-columns: 1fr auto; } .review__label { grid-column: 1 / -1; margin-bottom: -4px; } }

/* ---------- SUCCESS ---------- */
.success { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: clamp(28px, 6vw, 70px) clamp(18px, 5vw, 56px); position: relative; overflow: hidden; background: var(--pink); }
.success::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 70% at 50% 0%, rgba(255,255,255,0.45), transparent 60%); pointer-events: none; }
.success .eyebrow { color: var(--accent-strong); }
.success__inner { position: relative; max-width: 620px; text-align: center; }
.success__mark { width: 84px; height: 84px; border-radius: 50%; background: var(--accent); color: #ffffff; display: grid; place-items: center; margin: 0 auto 24px; box-shadow: 0 12px 30px rgba(0, 127, 115, 0.28); }
@media (prefers-reduced-motion: no-preference) {
  html:not(.ready) .success__tick { stroke-dasharray: 40; stroke-dashoffset: 40; }
  .success__tick { transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; }
}
.success__title { font-size: clamp(30px, 5.5vw, 48px); margin: 8px 0 0; color: var(--accent-strong); }
.success__body { font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); margin: 18px 0 0; }
.success__body b { color: var(--ink); }
.success__tag { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 22px 0 0; color: var(--accent-strong); }
.success__what { text-align: left; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 24px; margin: 32px 0 28px; }
.success__steps { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 14px; }
.success__steps li { display: flex; align-items: center; gap: 14px; font-size: 14.5px; line-height: 1.4; }
.success .btn--ghost { color: var(--ink); border-color: var(--line-strong); }
.success .btn--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.4); }
.success__steps li .snum { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #ffffff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
