:root {
  --bg1: #0b1220;
  --bg2: #0f1730;
  --bg3: #0c1a3a;
  --fg: #eef2ff;
  --muted: rgba(238, 242, 255, 0.72);
  --muted2: rgba(238, 242, 255, 0.6);
  --card: rgba(13, 18, 32, 0.86);
  --card2: rgba(13, 18, 32, 0.94);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  --accent: #7c5cff;
  --accent2: #9c8cff;
  --ok: #5cffb0;
  --danger: #ff5c7a;
  --logo-size: 132px;
  --max: 1120px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--logo-size) + 48px); }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 0%, rgba(124, 92, 255, 0.14), transparent 55%),
              radial-gradient(900px 700px at 80% 20%, rgba(92, 255, 176, 0.08), transparent 55%),
              linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
  color: var(--fg);
  line-height: 1.5;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(26, 36, 66, 0.94), rgba(13, 18, 32, 0.86));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 760;
  letter-spacing: -0.2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.brand-name {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.02;
  color: rgba(238, 242, 255, 0.98);
  white-space: nowrap;
}

.brand-sub {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 820;
  letter-spacing: 0.38em;
  line-height: 1;
  color: rgba(238, 242, 255, 0.7);
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 13px;
  color: rgba(238, 242, 255, 0.62);
  line-height: 1.2;
  white-space: nowrap;
}

.brand-mark {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -28px;
  background:
    radial-gradient(28px 28px at 34% 48%, rgba(92, 255, 176, 0.32), transparent 65%),
    radial-gradient(34px 34px at 62% 44%, rgba(124, 92, 255, 0.28), transparent 66%);
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  transform: scale(1.06);
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.22))
    drop-shadow(0 14px 32px rgba(92, 255, 176, 0.24))
    drop-shadow(0 16px 40px rgba(124, 92, 255, 0.22));
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--fg);
  opacity: 0.9;
  font-size: 14px;
  font-weight: 680;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav-links a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  padding: 40px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-media-card {
  overflow: hidden;
}
.hero-media-card .media {
  margin-top: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.1px;
  margin: 14px 0 10px;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.outcomes {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.outcomes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.outcomes li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 8px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(92, 255, 176, 0.12);
  margin-top: 8px;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(124, 92, 255, 0.18);
  color: var(--fg);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 720;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn:hover { background: rgba(124, 92, 255, 0.26); text-decoration: none; }
.btn.secondary { background: rgba(255, 255, 255, 0.06); }
.btn.secondary:hover { background: rgba(255, 255, 255, 0.1); }
.btn.danger { background: rgba(255, 92, 122, 0.12); border-color: rgba(255, 92, 122, 0.3); }
.btn.danger:hover { background: rgba(255, 92, 122, 0.18); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.panel {
  padding: 18px;
}

.kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

	.col-6 { grid-column: span 6; }
	.col-4 { grid-column: span 4; }
	.col-5 { grid-column: span 5; }
	.col-7 { grid-column: span 7; }
	.col-12 { grid-column: span 12; }

.section {
  padding: 28px 0;
}

.section h2 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.section p { margin: 0; color: var(--muted); }

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li { margin: 6px 0; }

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}
.price .amt { font-size: 34px; font-weight: 800; letter-spacing: -0.7px; }
.price .unit { color: var(--muted2); font-size: 14px; }

.subprice {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 2px;
}

.fineprint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted2);
}

.offer-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.note {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.12);
  color: var(--muted);
  font-size: 14px;
}

.media-frame {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

.media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.panel.instructor-panel {
  padding: 0;
  overflow: hidden;
}

.instructor-split {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 0;
  align-items: stretch;
}

.instructor-photo-wrap {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
  min-height: 320px;
}

.instructor-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% 18%;
}

.instructor-body {
  padding: 22px 22px 18px;
}

.instructor-name {
  font-weight: 860;
  letter-spacing: -0.6px;
  font-size: 22px;
}

.instructor-cred {
  color: var(--muted);
  margin-top: 6px;
}

.instructor-body .note {
  margin-top: 14px;
}

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

.contact-bar {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-bar h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-bar .contact-email {
  font-size: 18px;
  color: var(--accent1);
  font-weight: 600;
}
.contact-bar .contact-email:hover {
  text-decoration: underline;
}
.contact-bar .contact-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.contact-socials {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contact-socials a {
  color: var(--accent2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-socials a:hover {
  color: var(--ok);
}

.footer {
  padding: 32px 0 54px;
  color: rgba(238, 242, 255, 0.62);
  font-size: 13px;
}
.footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.meta {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 13px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.toc a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--fg);
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.2;
}

.toc a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.policy .section p,
.policy .list,
.policy .note {
  font-size: 16px;
  line-height: 1.6;
}

.calendly-embed {
  min-width: 320px;
  height: 760px;
}

.calendly-embed iframe {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

	@media (max-width: 900px) {
	  :root { --logo-size: 96px; }
	  .hero-grid { grid-template-columns: 1fr; }
	  .col-6, .col-5, .col-7, .col-4 { grid-column: span 12; }
	  .brand-tagline { display: none; }

  .instructor-split { grid-template-columns: 1fr; }
  .instructor-photo-wrap {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  :root { --logo-size: 72px; }
  .brand-sub { display: none; }
  .nav { gap: 10px; padding: 8px 0; }
  .nav-links { min-width: 0; flex: 0 1 auto; padding: 6px 8px; gap: 6px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { padding: 6px 10px; font-size: 13px; white-space: nowrap; flex: 0 0 auto; }
  .instructor-photo-wrap { min-height: 220px; }
  .instructor-body { padding: 18px 16px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
