/* ==========================================================================
   ASCENT HOCKEY — "Analyze. Develop. Ascend."
   Black / red / gold brand (from official logo assets)
   ========================================================================== */

:root {
  --asc-black: #050505;
  --asc-deep: #0b0b0d;
  --surface: #121214;
  --surface-2: #1a1a1d;
  --board-line: rgba(254, 195, 3, 0.16);
  --asc-gold: #fec303;
  --asc-gold-dim: #a37f06;
  --asc-red: #dc021a;
  --asc-red-deep: #92000f;
  --text: #f4f0e8;
  --text-dim: #a59f93;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --skew: -4deg;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--asc-black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- ice texture + vignette over the whole page --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(254, 195, 3, 0.07), transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 2px, rgba(255, 255, 255, 0.008) 2px 4px);
}

::selection { background: var(--asc-red); color: #fff; }

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

a { color: var(--asc-gold); text-decoration: none; }
a:hover { color: #fff; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.kicker {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  color: var(--asc-red);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.kicker::before {
  content: "";
  width: 2.2em;
  height: 2px;
  background: var(--asc-red);
}

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(rgba(6, 8, 12, 0.92), rgba(6, 8, 12, 0.75));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--board-line);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo .puck {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--asc-red);
  box-shadow: 0 0 12px rgba(220, 2, 26, 0.8);
  flex-shrink: 0;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo:hover { color: #fff; }

.nav-links {
  display: none;
  gap: 1.75rem;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}
.nav-links a { color: var(--text-dim); }
.nav-links a:hover { color: var(--asc-gold); }

@media (min-width: 760px) {
  .nav { padding: 0.85rem 2.5rem; }
  .nav-links { display: flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transform: skewX(var(--skew));
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn > span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }

.btn-red {
  background: linear-gradient(160deg, var(--asc-red), var(--asc-red-deep));
  color: #fff;
  box-shadow: 0 0 24px rgba(220, 2, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-red:hover {
  transform: skewX(var(--skew)) translateY(-2px);
  box-shadow: 0 0 38px rgba(220, 2, 26, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 2px var(--board-line);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 2px var(--asc-gold);
  color: var(--asc-gold);
}

.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.88rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse 90% 55% at 70% 20%, rgba(254, 195, 3, 0.10), transparent 65%),
    var(--asc-deep);
  overflow: hidden;
}

/* overhead center-ice rink markings */
.rink-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* on phones, show the whole rink drawing (centered, shrunk to fit) instead of a cropped
   slice; the lines are drawn past the viewBox so they still run the full hero height */
@media (max-width: 760px) {
  .rink-lines {
    top: 50%;
    bottom: auto;
    height: auto;
    aspect-ratio: 1600 / 900;
    transform: translateY(-50%);
    overflow: visible;
  }
}

.hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; width: 100%; }

.hero h1 {
  font-size: clamp(3rem, 11vw, 7.5rem);
  margin: 1.2rem 0 1.5rem;
}
.hero h1 .line { display: block; }
.hero h1 .accent {
  color: var(--asc-gold);
  text-shadow: 0 0 40px rgba(254, 195, 3, 0.35);
}
.hero h1 .red { color: var(--asc-red); text-shadow: 0 0 40px rgba(220, 2, 26, 0.45); }

.hero-sub {
  max-width: 34rem;
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* staggered load-in */
.hero .kicker, .hero h1 .line, .hero-sub, .hero-cta {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.22s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.34s; }
.hero-sub { animation-delay: 0.5s; }
.hero-cta { animation-delay: 0.62s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* scoreboard strip */
.scoreboard {
  position: relative;
  z-index: 2;
  margin: 4rem auto 0;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--board-line);
  background: rgba(18, 18, 20, 0.7);
  backdrop-filter: blur(6px);
}
.scoreboard div {
  padding: 1.1rem 0.5rem;
  text-align: center;
  border-right: 1px solid var(--board-line);
}
.scoreboard div:last-child { border-right: none; }
.scoreboard .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--asc-gold);
  display: block;
}
.scoreboard .label {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Sections
   ========================================================================== */

section { position: relative; padding: 5rem 1.25rem; }
.wrap { max-width: 1100px; margin: 0 auto; }

.section-head { margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  margin-top: 0.9rem;
}

/* diagonal divider between sections */
.slash-divider {
  height: 7rem;
  background: linear-gradient(var(--asc-black), var(--asc-black));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: -7rem;
  position: relative;
  z-index: 3;
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   How it works
   ========================================================================== */

.steps { display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--board-line);
  padding: 2.25rem 1.5rem 1.75rem;
  overflow: hidden;
}
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--asc-red), transparent 70%);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--asc-gold-dim);
  display: block;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.step p { color: var(--text-dim); font-size: 0.98rem; }

/* ==========================================================================
   Coach bio
   ========================================================================== */

.bio { background: var(--asc-deep); }

.bio-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .bio-grid { grid-template-columns: 5fr 7fr; } }

.bio-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--board-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bio-photo .jersey-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 13rem);
  color: rgba(254, 195, 3, 0.08);
  user-select: none;
}
.bio-photo .photo-note {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  border: 1px dashed var(--board-line);
  padding: 0.6rem;
}
/* red corner tag on the photo */
.bio-photo::before {
  content: "COACH";
  position: absolute;
  top: 1rem; left: -2.4rem;
  background: var(--asc-red);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  padding: 0.35rem 3rem;
  transform: rotate(-45deg);
}

.bio-copy p { color: var(--text-dim); margin-bottom: 1.1rem; }
.bio-copy p strong { color: var(--text); }

.bio-creds {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.6rem;
}
.bio-creds li {
  list-style: none;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text);
}
.bio-creds li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 0.6em; height: 0.6em;
  background: var(--asc-red);
  transform: skewX(var(--skew));
}

/* ==========================================================================
   Highlights / film room
   ========================================================================== */

.films { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .films { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .films { grid-template-columns: repeat(3, 1fr); } }

.film-card {
  background: var(--surface);
  border: 1px solid var(--board-line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.film-card:hover { transform: translateY(-4px); border-color: rgba(254, 195, 3, 0.4); }

.film-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(254, 195, 3, 0.12), transparent 60%),
    linear-gradient(160deg, var(--surface-2), #0b0f17);
  display: flex;
  align-items: center;
  justify-content: center;
}
.film-thumb .play {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(220, 2, 26, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(220, 2, 26, 0.5);
  transition: transform 0.2s ease;
}
.film-card:hover .play { transform: scale(1.12); }
.film-thumb .play::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.film-thumb .rec {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--asc-red);
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.film-thumb .rec::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--asc-red);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.film-meta { padding: 1.1rem 1.25rem 1.25rem; }
.film-meta .tag {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--asc-gold);
}
.film-meta h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  margin: 0.3rem 0 0.45rem;
}
.film-meta p { color: var(--text-dim); font-size: 0.92rem; }

/* testimonials */
.quotes { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(2, 1fr); } }

.quote {
  border-left: 3px solid var(--asc-red);
  background: linear-gradient(90deg, rgba(220, 2, 26, 0.06), transparent 50%);
  padding: 1.5rem 1.5rem 1.25rem;
}
.quote p { font-size: 1.05rem; font-style: italic; color: var(--text); }
.quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing { background: var(--asc-deep); }

.price-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--board-line);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: rgba(220, 2, 26, 0.5);
  box-shadow: 0 0 50px rgba(220, 2, 26, 0.12);
}
.price-card .badge {
  position: absolute;
  top: -0.85rem; left: 50%;
  transform: translateX(-50%) skewX(var(--skew));
  background: var(--asc-red);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: var(--text-dim);
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.price-card .price sup { font-size: 0.4em; vertical-align: 1.3em; color: var(--asc-gold); }
.price-card .per {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.price-card ul { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(254, 195, 3, 0.07);
  font-size: 0.95rem;
  color: var(--text-dim);
  text-align: left;
}
.price-card li strong { color: var(--text); }
.price-card .ideal-for {
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.8rem;
  background: rgba(254, 195, 3, 0.08);
  border: 1px solid rgba(254, 195, 3, 0.25);
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--asc-gold);
}

/* free 15-minute consultation banner under pricing */
.consult-banner {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  border: 1px solid rgba(254, 195, 3, 0.35);
  background: linear-gradient(90deg, rgba(254, 195, 3, 0.08), rgba(220, 2, 26, 0.06));
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.consult-banner p { color: var(--text-dim); margin: 0; max-width: 38rem; }
.consult-banner strong { color: var(--asc-gold); }

/* ==========================================================================
   What we do / what we don't do
   ========================================================================== */

.dodont-grid { display: grid; gap: 1.25rem; }
@media (min-width: 860px) { .dodont-grid { grid-template-columns: 1fr 1fr; } }

.dodont-col {
  background: var(--surface);
  border: 1px solid var(--board-line);
  padding: 2rem 1.75rem;
}
.dodont-col h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.dodont-col.dont h3 { color: var(--asc-red); }
.dodont-col.do h3 { color: var(--asc-gold); }

.dodont-col ul { list-style: none; display: grid; gap: 0.65rem; }
.dodont-col li {
  position: relative;
  padding-left: 1.8rem;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.dodont-col li::before {
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
}
.dodont-col.dont li::before { content: "✕"; color: var(--asc-red); }
.dodont-col.do li::before { content: "✓"; color: var(--asc-gold); }

.focus-banner {
  margin-top: 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--asc-red), var(--asc-red-deep));
  padding: 1.5rem 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  letter-spacing: 0.04em;
  color: #fff;
}
.focus-banner .gold { color: var(--asc-gold); }

/* focus-area pills */
.focus-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.focus-pills span {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  border: 1px solid var(--board-line);
  color: var(--text-dim);
  padding: 0.45rem 0.9rem;
  transform: skewX(var(--skew));
}
.focus-pills span b { display: inline-block; transform: skewX(calc(-1 * var(--skew))); font-weight: inherit; color: var(--asc-gold); }

/* ==========================================================================
   Contact / footer
   ========================================================================== */

.contact .wrap { text-align: center; max-width: 720px; }
.contact h2 { font-size: clamp(2.1rem, 6.5vw, 3.4rem); margin: 0.9rem 0 1rem; }
.contact p { color: var(--text-dim); margin-bottom: 2rem; }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.contact-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  border: 1px solid var(--board-line);
  padding: 0.65rem 1.3rem;
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.contact-links a:hover { border-color: var(--asc-gold); color: var(--asc-gold); }

footer {
  border-top: 1px solid var(--board-line);
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Forms (booking + checkout)
   ========================================================================== */

.page-pad { padding-top: 7.5rem; min-height: 100svh; }

.form-shell { max-width: 640px; margin: 0 auto; padding: 0 1.25rem 5rem; }
.form-shell .section-head { margin-bottom: 2rem; }

.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--board-line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--asc-gold);
  box-shadow: 0 0 0 3px rgba(254, 195, 3, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.35rem; }

.field-row { display: grid; gap: 1.4rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* package picker */
.package-picker { display: grid; gap: 0.9rem; margin-bottom: 1.6rem; }
@media (min-width: 560px) { .package-picker { grid-template-columns: 1fr 1fr; } }

.package-option input { position: absolute; opacity: 0; }
.package-option label {
  display: block;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--board-line);
  padding: 1.1rem 1.2rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.package-option input:checked + label {
  border-color: var(--asc-red);
  box-shadow: 0 0 0 1px var(--asc-red), 0 0 24px rgba(220, 2, 26, 0.18);
}
.package-option .pkg-name {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}
.package-option .pkg-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--asc-gold);
  display: block;
  margin-top: 0.2rem;
}
.package-option .pkg-sub { font-size: 0.82rem; color: var(--text-dim); }
.package-option .pkg-price .unit { font-size: 0.45em; color: var(--text-dim); letter-spacing: 0.08em; }
.package-option.consult label { border-style: dashed; border-color: rgba(254, 195, 3, 0.4); }
.package-option.consult input:checked + label {
  border-style: solid;
  border-color: var(--asc-gold);
  box-shadow: 0 0 0 1px var(--asc-gold), 0 0 24px rgba(254, 195, 3, 0.18);
}

/* checkout summary */
.summary {
  background: var(--surface);
  border: 1px solid var(--board-line);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.summary h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.summary .row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.summary .row span:last-child { color: var(--text); }
.summary .row.total {
  border-top: 1px solid var(--board-line);
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.summary .row.total span:last-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--asc-red);
}

.demo-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: rgba(254, 195, 3, 0.07);
  border: 1px solid rgba(254, 195, 3, 0.25);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--asc-gold);
  margin-bottom: 2rem;
}

/* processing spinner */
.btn .spinner {
  display: none;
  width: 1em; height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -0.15em;
  margin-right: 0.5em;
}
.btn.loading .spinner { display: inline-block; }
.btn.loading { pointer-events: none; opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* confirmation */
.confirm-shell { max-width: 560px; margin: 0 auto; padding: 0 1.25rem 5rem; text-align: center; }
.goal-light {
  width: 110px; height: 110px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff4a4a, var(--asc-red) 55%, var(--asc-red-deep));
  box-shadow: 0 0 60px rgba(220, 2, 26, 0.7), 0 0 140px rgba(220, 2, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lamp 2.4s ease-in-out infinite;
}
.goal-light::after {
  content: "✓";
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
@keyframes lamp {
  0%, 100% { box-shadow: 0 0 60px rgba(220, 2, 26, 0.7), 0 0 140px rgba(220, 2, 26, 0.35); }
  50% { box-shadow: 0 0 90px rgba(220, 2, 26, 0.95), 0 0 200px rgba(220, 2, 26, 0.5); }
}

.confirm-code {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--asc-gold);
  background: var(--surface);
  border: 1px dashed var(--board-line);
  padding: 0.9rem 1.5rem;
  display: inline-block;
  margin: 1.5rem 0 2rem;
}
