:root {
  --bg: #08111f;
  --bg-soft: #0d1b2e;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --text: #f6f8ff;
  --muted: #aab7cf;
  --accent: #7cf7d4;
  --accent-2: #9b7cff;
  --accent-3: #ffcf5a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(124, 247, 212, 0.18), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(155, 124, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #0a1424 48%, #07101d 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img,
svg {
  max-width: 100%;
}

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

p {
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(8, 17, 31, 0.74);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #08111f;
  box-shadow: 0 10px 30px rgba(124, 247, 212, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
  background: var(--card);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.section-padding {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.93;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
}

.button.primary {
  color: #08111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border: none;
  box-shadow: 0 16px 40px rgba(124, 247, 212, 0.2);
}

.button.secondary {
  color: var(--text);
}

.button.full {
  width: 100%;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.stats div {
  min-width: 135px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 38%, rgba(124, 247, 212, 0.24), transparent 38%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
  top: 58px;
  right: -88px;
}

.orbit-two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -44px;
}

.skate-visual {
  position: absolute;
  width: 360px;
  height: 240px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) rotate(-8deg);
}

.boot {
  position: absolute;
  width: 290px;
  height: 130px;
  left: 35px;
  top: 28px;
  background: linear-gradient(135deg, #f7f9ff, #c7d3ff 55%, #9b7cff);
  border-radius: 36px 76px 34px 34px;
  box-shadow: inset -22px -22px 60px rgba(8, 17, 31, 0.25), 0 40px 70px rgba(0, 0, 0, 0.25);
}

.boot::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 150px;
  left: 28px;
  top: -82px;
  background: linear-gradient(135deg, var(--accent-2), #d4ccff);
  border-radius: 36px 36px 18px 18px;
  transform: rotate(6deg);
  box-shadow: inset -14px -12px 34px rgba(0, 0, 0, 0.13);
}

.boot::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 14px;
  left: 96px;
  top: 46px;
  background: repeating-linear-gradient(90deg, #08111f 0 14px, transparent 14px 24px);
  opacity: 0.45;
  border-radius: 999px;
}

.blade {
  position: absolute;
  width: 310px;
  height: 12px;
  left: 32px;
  top: 174px;
  background: #e9f7ff;
  border-radius: 999px;
}

.wheel {
  position: absolute;
  top: 176px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle, #08111f 0 18%, var(--accent) 20% 62%, #f7f9ff 64%);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.wheel-one { left: 46px; }
.wheel-two { left: 124px; }
.wheel-three { left: 202px; }
.wheel-four { left: 280px; }

.floating-card {
  position: absolute;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-top {
  top: 44px;
  left: 34px;
}

.card-bottom {
  right: 34px;
  bottom: 44px;
}

.strip {
  display: flex;
  gap: 12px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.strip::-webkit-scrollbar {
  display: none;
}

.strip span {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  color: #08111f;
  background: var(--text);
  font-weight: 850;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.lesson-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-grid.simple-pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.lesson-card,
.price-card,
.testimonial,
.timeline,
.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.lesson-card,
.price-card,
.testimonial {
  padding: 26px;
}

.lesson-card {
  min-height: 255px;
}

.icon,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 247, 212, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.lesson-card p,
.price-card .muted,
.testimonial p,
.why-content p,
.timeline p,
.cta-box p {
  color: var(--muted);
}

.why {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 28px;
}

.why-content {
  position: sticky;
  top: 104px;
}

.check-list,
.price-card ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text);
}

.check-list li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(124, 247, 212, 0.16);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 900;
}

.timeline {
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 85% 20%, rgba(255, 207, 90, 0.15), transparent 30%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #08111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-weight: 950;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  transform: translateY(-16px);
  background: linear-gradient(160deg, rgba(124, 247, 212, 0.18), rgba(155, 124, 255, 0.13));
  border-color: rgba(124, 247, 212, 0.36);
}

.price {
  margin: 18px 0 4px;
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card .button {
  margin-top: auto;
}

.testimonial {
  background: var(--card-strong);
}

.testimonial p {
  font-size: 1.04rem;
}

.testimonial strong {
  display: block;
  margin-top: 20px;
}

.cta-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 8% 18%, rgba(124, 247, 212, 0.16), transparent 30%);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(8, 17, 31, 0.64);
  color: var(--text);
  outline: none;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124, 247, 212, 0.6);
  box-shadow: 0 0 0 4px rgba(124, 247, 212, 0.1);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 17, 31, 0.95);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero,
  .why,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-card {
    min-height: 440px;
  }

  .why-content {
    position: static;
  }

  .lesson-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .section-padding {
    padding: 72px 0;
  }

  .navbar {
    height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.8rem);
  }

  .hero-card {
    min-height: 360px;
    border-radius: 28px;
  }

  .skate-visual {
    transform: translate(-50%, -48%) rotate(-8deg) scale(0.72);
  }

  .floating-card {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .card-top {
    top: 22px;
    left: 18px;
  }

  .card-bottom {
    right: 18px;
    bottom: 24px;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Schedule and location sections */
.schedule {
  padding-bottom: 64px;
}

.calendar-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 20% 10%, rgba(124, 247, 212, 0.16), transparent 32%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calendar-header,
.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-header div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.calendar-header div:last-child,
.calendar-body > div:last-child {
  border-right: none;
}

.calendar-header .active-day {
  color: #08111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.calendar-body > div {
  min-height: 310px;
  padding: 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.empty-day {
  display: grid;
  place-items: center;
  color: rgba(170, 183, 207, 0.7);
  font-size: 0.92rem;
  text-align: center;
}

.active-column {
  display: grid;
  gap: 12px;
  background: rgba(124, 247, 212, 0.06);
}

.class-pill {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 17, 31, 0.56);
}

.class-pill span,
.class-pill strong,
.class-pill small {
  display: block;
}

.class-pill span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #08111f;
  background: var(--accent);
  font-weight: 950;
  font-size: 0.82rem;
}

.class-pill strong {
  margin-bottom: 7px;
  letter-spacing: -0.03em;
}

.class-pill small {
  color: var(--muted);
  line-height: 1.5;
}

.class-pill.intermediate span {
  background: var(--accent-3);
}

.class-pill.advanced span {
  color: var(--text);
  background: var(--accent-2);
}

.location {
  padding-top: 64px;
}

.location-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 90% 10%, rgba(155, 124, 255, 0.16), transparent 32%);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.location-content {
  padding: clamp(8px, 2vw, 18px);
}

.location-content p:not(.eyebrow) {
  color: var(--muted);
}

.location-facts {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.location-facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.location-facts strong,
.location-facts span {
  display: block;
}

.location-facts strong {
  margin-bottom: 5px;
}

.location-facts span {
  color: var(--muted);
}

.map-wrap {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 1040px) {
  .calendar-header,
  .calendar-body {
    grid-template-columns: 1fr;
  }

  .calendar-header div:not(.active-day),
  .calendar-body .empty-day {
    display: none;
  }

  .calendar-header .active-day {
    text-align: left;
  }

  .calendar-body > div,
  .calendar-header div {
    border-right: none;
  }

  .calendar-body > div {
    min-height: auto;
  }

  .location-card {
    grid-template-columns: 1fr;
  }
}

/* About section */
.about {
  padding-top: 84px;
  padding-bottom: 84px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(20px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 15% 20%, rgba(124, 247, 212, 0.18), transparent 34%),
    radial-gradient(circle at 88% 75%, rgba(155, 124, 255, 0.14), transparent 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-photo-wrap {
  position: relative;
  min-height: 520px;
}

.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 24px -12px -12px 24px;
  border: 1px solid rgba(124, 247, 212, 0.32);
  border-radius: 32px;
  background: rgba(124, 247, 212, 0.06);
}

.about-photo {
  position: relative;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.about-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 17, 31, 0.76);
  backdrop-filter: blur(18px);
}

.about-badge strong,
.about-badge span,
.about-points strong,
.about-points span {
  display: block;
}

.about-badge span,
.about-points span {
  color: var(--muted);
}

.about-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about-points div {
  min-height: 125px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.about-points strong {
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

@media (max-width: 920px) {
  .about-card {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap,
  .about-photo {
    min-height: auto;
    height: auto;
  }

  .about-photo {
    aspect-ratio: 4 / 5;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-card {
    border-radius: 28px;
  }

  .about-photo,
  .about-photo-wrap::before {
    border-radius: 24px;
  }
}

/* Contact updates */
.nav-phone {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  color: #08111f !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-weight: 850;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note.success {
  color: #7cf7d4;
  font-weight: 750;
}

.form-note.error {
  color: #ff8a8a;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-phone {
    text-align: center;
  }
}
