:root {
  --pink: #fc3c80;
  --orange: #ffa337;
  --yellow: #ffdf5b;
  --black: #050505;
  --ink: #141316;
  --muted: #66616b;
  --line: #ece7ee;
  --soft-pink: #fff0f5;
  --soft-orange: #fff5e6;
  --soft-yellow: #fffbe3;
  --white: #ffffff;
  --panel: rgba(255, 255, 255, .86);
  --shadow: 0 22px 70px rgba(12, 8, 16, .10);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(120deg, rgba(252, 60, 128, .12), transparent 30%),
    linear-gradient(240deg, rgba(255, 223, 91, .25), transparent 34%),
    #fffdf8;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(5, 5, 5, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .6), transparent 68%);
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(252, 60, 128, .18);
  border-radius: 8px;
  background: var(--white);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.05rem;
  color: var(--black);
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 6px;
  color: #38343d;
  font-size: .92rem;
  font-weight: 750;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 14px 30px rgba(252, 60, 128, .24);
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  border-color: rgba(5, 5, 5, .12);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

main {
  min-height: calc(100vh - var(--header-height));
}

.page {
  display: none;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 76px;
}

.page.is-active {
  display: block;
}

.hero-shell,
.page-hero {
  display: grid;
  gap: 34px;
  align-items: center;
  padding: 34px 0 46px;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .78fr);
  min-height: auto;
  padding: 24px 0 26px;
}

.hero-book-shell {
  grid-template-columns: minmax(0, .9fr) minmax(400px, .82fr);
  gap: 34px;
  width: min(1620px, calc(100vw - 72px));
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 32px 0 38px;
}

.hero-book-copy {
  transform: translateX(clamp(0px, calc((100vw - 1252px) / 2), 220px));
}

.hero-book-copy h1 {
  max-width: 740px;
}

.hero-book-copy .hero-lead {
  max-width: 690px;
}

.hero-book-meta {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
}

.hero-book-meta .trust-row {
  flex: 0 0 330px;
  margin-top: 0;
}

.hero-book-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.hero-book-copy .btn-primary {
  min-width: 188px;
  min-height: 58px;
  padding-inline: 34px;
  font-size: 1.08rem;
}

.page-hero {
  max-width: 860px;
}

.split-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  max-width: none;
}

.eyebrow,
.mini-label {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--black);
  line-height: .98;
}

h1 {
  max-width: 760px;
  font-size: 4.3rem;
}

h2 {
  font-size: 2rem;
}

.hero-lead,
.page-hero p,
.hero-copy p,
.legal-content p,
.feature-card p,
.product-copy p,
.important-panel p,
.instructor-band p,
.cta-band p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.verified-pill,
.status-pill,
.live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--soft-yellow);
  border: 1px solid rgba(255, 163, 55, .28);
  font-size: .84rem;
  font-weight: 850;
}

.hero-dashboard,
.panel,
.email-preview,
.booking-card,
.product-panel,
.feature-card,
.flow-item {
  border: 1px solid rgba(5, 5, 5, .09);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(255, 223, 91, .24), transparent 36%),
    linear-gradient(330deg, rgba(252, 60, 128, .16), transparent 38%),
    rgba(255, 255, 255, .92);
}

.hero-book-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: visible;
  padding: 8px;
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 223, 91, .26), transparent 42%),
    radial-gradient(circle at 36% 38%, rgba(252, 60, 128, .12), transparent 34%),
    transparent;
}

.hero-book-visual::after {
  content: "";
  position: absolute;
  width: 74%;
  height: 58%;
  left: 15%;
  bottom: 9%;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(252, 60, 128, .14), rgba(255, 223, 91, .26));
  filter: blur(18px);
}

.hero-book-visual img {
  width: min(96%, 500px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 34px 40px rgba(12, 8, 16, .2));
}

.dashboard-top,
.panel-heading,
.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top strong,
.email-preview h2,
.booking-card h2 {
  display: block;
  font-size: 1.35rem;
  color: var(--black);
}

.mini-chart {
  margin: 16px 0;
  padding: 10px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
}

.mini-chart svg {
  width: 100%;
  height: 148px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-grid div,
.booking-details div,
.email-row {
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: var(--radius);
  background: var(--white);
}

.dashboard-grid span,
.booking-details span,
.email-row span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}

.dashboard-grid strong,
.booking-details strong,
.email-row strong {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-size: 1rem;
}

.services-flow,
.learning-block,
.books-layout {
  padding: 52px 0;
}

.services-flow {
  padding-top: 20px;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 24px;
}

.flow-list {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 46px 0 38px;
  overflow: visible;
}

.trend-line {
  position: absolute;
  inset: 18px 4% 10px;
  z-index: 0;
  width: 92%;
  height: calc(100% - 28px);
  overflow: visible;
  pointer-events: none;
}

.trend-grid line {
  stroke: rgba(102, 97, 107, .13);
  stroke-width: 2;
}

.trend-area {
  fill: url("#trendArea");
}

.trend-under {
  fill: none;
  stroke: rgba(255, 163, 55, .82);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(0, 12px);
}

.trend-stroke {
  fill: none;
  stroke: url("#trendStroke");
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 14px 26px rgba(252, 60, 128, .18));
}

.trend-points circle {
  fill: var(--white);
  stroke: var(--pink);
  stroke-width: 10;
  filter: drop-shadow(0 12px 18px rgba(252, 60, 128, .16));
}

.trend-mobile-bars {
  display: none;
}

.trend-mobile-bars rect:nth-child(odd) {
  fill: rgba(252, 60, 128, .18);
}

.trend-mobile-bars rect:nth-child(even) {
  fill: rgba(255, 163, 55, .2);
}

.flow-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
  width: min(530px, 48%);
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.flow-item:nth-of-type(odd) {
  justify-self: start;
}

.flow-item:nth-of-type(even) {
  justify-self: end;
}

.flow-item:nth-of-type(2) {
  margin-top: -8px;
}

.flow-item:nth-of-type(3) {
  margin-top: -4px;
}

.flow-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 28px rgba(252, 60, 128, .28);
}

.flow-item::before {
  content: "";
  position: absolute;
  top: calc(50% + 10px);
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.flow-item:nth-of-type(odd)::after {
  right: -38px;
}

.flow-item:nth-of-type(odd)::before {
  right: -38px;
}

.flow-item:nth-of-type(even)::after {
  left: -38px;
}

.flow-item:nth-of-type(even)::before {
  left: -38px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.flow-item:nth-of-type(odd):hover {
  transform: translateX(6px);
}

.flow-item:nth-of-type(even):hover {
  transform: translateX(-6px);
}

.flow-item:hover {
  border-color: rgba(252, 60, 128, .34);
  box-shadow: 0 22px 64px rgba(252, 60, 128, .14);
}

.emoji-art {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, var(--soft-pink));
  border: 1px solid rgba(252, 60, 128, .16);
  font-size: 2.3rem;
  box-shadow: inset 0 -10px 22px rgba(255, 163, 55, .16);
}

.flow-copy strong {
  display: block;
  color: var(--black);
  font-size: 1.35rem;
}

.flow-copy small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}

.flow-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--yellow);
  font-weight: 950;
}

.about-andrea {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin: 20px 0 26px;
  padding: 30px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(252, 60, 128, .08), transparent 34%),
    linear-gradient(245deg, rgba(255, 223, 91, .22), transparent 45%),
    rgba(255, 255, 255, .88);
  box-shadow: 0 24px 70px rgba(12, 8, 16, .08);
}

.about-photo {
  position: relative;
  width: 280px;
  min-height: 280px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(252, 60, 128, .2), rgba(255, 163, 55, .18)),
    var(--white);
  box-shadow:
    0 24px 54px rgba(252, 60, 128, .18),
    0 10px 28px rgba(12, 8, 16, .1);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 12% -14% 12%;
  height: 34%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(252, 60, 128, .18), rgba(255, 223, 91, .22));
  filter: blur(18px);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 62% 40%;
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: .98;
}

.about-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-copy strong {
  color: var(--black);
}

.notice-band,
.cta-band,
.instructor-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.notice-band p,
.cta-band p,
.cta-band h2,
.instructor-band p,
.instructor-band h2 {
  margin: 0;
  color: var(--white);
}

.performance-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.panel {
  padding: 22px;
  background: rgba(255, 255, 255, .92);
}

.panel-heading h2 {
  font-size: 1.75rem;
}

.chart-panel .panel-heading {
  align-items: flex-start;
  gap: 18px;
}

.chart-panel .panel-heading h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  line-height: .98;
}

#ytd-return {
  color: var(--pink);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.returns-chart {
  width: 100%;
  min-height: 380px;
  margin-top: 22px;
  overflow: visible;
}

.donut-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.donut-card {
  display: grid;
  gap: 18px;
  align-content: center;
  text-align: center;
  min-height: 360px;
}

.donut-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.donut {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--fill) calc(var(--value) * 1%), var(--track) 0);
}

.donut::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, .08);
}

.donut span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--black);
  font-size: 2.15rem;
  font-weight: 950;
}

.donut-split {
  background: conic-gradient(var(--win-color, var(--pink)) calc(var(--value) * 1%), var(--loss-color, var(--orange)) 0);
}

.donut-title-legend {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-inline: auto;
}

.donut-title-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(12, 8, 16, .12);
}

.legend-win {
  background: var(--pink);
}

.legend-loss {
  background: var(--orange);
}

.trades-panel {
  margin-top: 18px;
}

.trades-panel table {
  border-spacing: 0 12px;
  border-collapse: separate;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 14px;
  border-bottom: 0;
  text-align: center;
}

th {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

td {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.trade-row td {
  background: rgba(255, 255, 255, .86);
  border-top: 1px solid rgba(5, 5, 5, .08);
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  vertical-align: middle;
}

.trade-row td:first-child {
  width: 86px;
  border-left: 1px solid rgba(5, 5, 5, .08);
  border-radius: 8px 0 0 8px;
  padding: 0;
}

.trade-row td:last-child {
  border-right: 1px solid rgba(5, 5, 5, .08);
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
}

.trade-date {
  display: grid;
  place-items: center;
  min-height: 72px;
  width: 78px;
  background: linear-gradient(135deg, rgba(252, 60, 128, .12), rgba(255, 223, 91, .22));
  border-radius: 8px 0 0 8px;
  color: var(--black);
}

.trade-date strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.trade-date small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: capitalize;
}

.trade-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.contract-pill {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, rgba(252, 60, 128, .1), rgba(255, 223, 91, .28));
  border: 1px solid rgba(252, 60, 128, .16);
  font-weight: 950;
}

.trade-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0 6px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange) 58%, var(--yellow));
  box-shadow: 0 12px 24px rgba(252, 60, 128, .18);
  color: var(--white);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .03em;
  text-align: center;
}

.pnl-positive {
  color: #0d9251;
}

.pnl-negative {
  color: #d72a55;
}

.cta-band {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--black), #2d121d);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 52px;
}

.feature-card {
  padding: 22px;
  min-height: 242px;
  background: rgba(255, 255, 255, .92);
}

.feature-card h2 {
  margin-top: 20px;
  font-size: 1.45rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black);
  font-weight: 950;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin: 24px 0 0;
}

.price-line strong {
  color: var(--black);
  font-size: 3.4rem;
  line-height: .9;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
}

.email-preview,
.booking-card {
  padding: 22px;
}

.email-preview {
  background:
    linear-gradient(145deg, rgba(252, 60, 128, .12), transparent 42%),
    var(--white);
}

.email-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}

.email-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.email-bar span:nth-child(2) {
  background: var(--orange);
}

.email-bar span:nth-child(3) {
  background: var(--yellow);
}

.email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  margin-top: 12px;
}

.important-panel {
  border-color: rgba(252, 60, 128, .24);
  background: var(--soft-pink);
}

.important-panel h2 {
  margin-bottom: 10px;
}

.enrollment-panel {
  background:
    linear-gradient(150deg, rgba(255, 223, 91, .35), transparent 44%),
    var(--white);
}

.status-pill {
  margin-bottom: 16px;
  color: var(--black);
  background: var(--soft-orange);
}

.status-pill.open {
  background: var(--soft-yellow);
}

.inline-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.inline-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: .9rem;
  font-weight: 850;
}

.inline-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(5, 5, 5, .15);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.inline-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(252, 60, 128, .12);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span {
  min-height: 88px;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(5, 5, 5, .09);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  line-height: 1.45;
  position: relative;
}

.check-grid span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--pink);
  font-weight: 950;
}

.instructor-band {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.books-layout {
  display: grid;
  gap: 20px;
}

.books-page {
  padding-top: 28px;
}

.books-page .page-hero {
  padding: 18px 0 24px;
}

.books-page .page-hero h1 {
  max-width: 680px;
}

.books-page .page-hero p:not(.eyebrow) {
  max-width: 760px;
}

.books-page .books-layout {
  padding: 18px 0 52px;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, .92);
}

.product-copy {
  display: grid;
  justify-items: start;
}

.books-page .product-copy .btn {
  justify-self: center;
  min-width: 170px;
  min-height: 54px;
  padding-inline: 28px;
  font-size: 1.02rem;
}

.product-copy h2 {
  font-size: 2.35rem;
}

.product-media,
.journal-gallery {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, .08);
}

.product-media-cutout {
  display: grid;
  place-items: center;
  min-height: 410px;
  background:
    linear-gradient(145deg, rgba(252, 60, 128, .06), transparent 42%),
    linear-gradient(315deg, rgba(255, 223, 91, .22), transparent 50%),
    rgba(255, 255, 255, .82);
}

.product-media img {
  width: 100%;
  height: 410px;
  object-fit: contain;
}

.product-media-cutout img {
  width: min(100%, 405px);
  height: 410px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 28px 34px rgba(12, 8, 16, .16));
}

.journal-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 190px 190px;
  gap: 8px;
  padding: 8px;
}

.journal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.journal-gallery img:first-child {
  grid-row: 1 / 3;
}

.booking-card {
  background:
    linear-gradient(160deg, rgba(255, 163, 55, .2), transparent 42%),
    var(--white);
}

.calendar-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
  font-size: 1.55rem;
  font-weight: 950;
}

.booking-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.advisory-page {
  width: min(1240px, calc(100% - 36px));
}

.advisory-hero {
  max-width: 860px;
  padding: 26px 0 22px;
}

.advisory-hero h1 {
  max-width: 830px;
  font-size: 4rem;
}

.advisory-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.advisory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
  padding: 8px 0 54px;
}

.advisory-form,
.advisory-info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(252, 60, 128, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(252, 60, 128, .13), transparent 35%),
    linear-gradient(315deg, rgba(255, 223, 91, .24), transparent 42%),
    rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 24px 72px rgba(252, 60, 128, .14);
}

.advisory-form::before,
.advisory-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
}

.advisory-form {
  padding: 24px;
}

.advisory-info-card {
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.advisory-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.advisory-form h2,
.advisory-info-card h2 {
  color: var(--black);
  font-size: 1.95rem;
}

.advisory-form .status-pill {
  margin: 0;
  white-space: nowrap;
}

.advisory-booking-form {
  display: grid;
  gap: 18px;
}

.booking-request-grid {
  display: grid;
  grid-template-columns: minmax(245px, .9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}

.booking-calendar {
  display: grid;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(252, 60, 128, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 223, 91, .24), transparent 45%),
    rgba(255, 255, 255, .72);
  box-shadow: inset 0 -22px 44px rgba(255, 163, 55, .08);
}

.booking-calendar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.booking-calendar-head strong {
  display: block;
  color: var(--black);
  font-size: 1.18rem;
}

.booking-timezone {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: var(--radius);
  color: var(--black);
  background: var(--white);
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
  }

.booking-calendar select {
  appearance: none;
  width: 100%;
  min-height: 52px;
  padding: 13px 42px 13px 13px;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(45deg, transparent 50%, var(--pink) 50%) right 18px center / 8px 8px no-repeat,
    linear-gradient(135deg, var(--white), rgba(255, 240, 245, .92));
  color: var(--ink);
  outline: none;
  font-weight: 780;
}

.booking-calendar select:disabled {
  color: var(--muted);
  cursor: wait;
}

.booking-calendar select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(252, 60, 128, .18);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.slot-button {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(12, 8, 16, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.slot-button:hover,
.slot-button.is-selected {
  transform: translateY(-2px);
  border-color: rgba(252, 60, 128, .42);
  background: linear-gradient(145deg, var(--white), var(--soft-pink));
  box-shadow: 0 18px 36px rgba(252, 60, 128, .14);
}

.slot-button span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.slot-button strong {
  color: var(--black);
  font-size: 1.28rem;
}

.selected-slot,
.slots-loading {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 760;
  line-height: 1.45;
}

.slots-loading {
  grid-column: 1 / -1;
}

.advisory-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.advisory-fields label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.advisory-fields label > span,
.consult-reason > span {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
}

.consult-reason {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.field-label span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(252, 60, 128, .16);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), var(--soft-pink));
  box-shadow: inset 0 -8px 14px rgba(255, 163, 55, .12);
  font-size: 1rem;
}

.advisory-fields input,
.advisory-fields select,
.advisory-fields textarea,
.consult-reason textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  outline: none;
}

.advisory-fields select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(5, 5, 5, .68) 50%) right 18px center / 8px 8px no-repeat,
    rgba(255, 255, 255, .88);
}

.advisory-fields textarea {
  resize: vertical;
  line-height: 1.5;
}

.consult-reason textarea {
  min-height: 142px;
  resize: vertical;
  line-height: 1.5;
}

.advisory-fields input::placeholder,
.advisory-fields textarea::placeholder,
.consult-reason textarea::placeholder {
  color: rgba(20, 19, 22, .42);
}

.advisory-fields input:focus,
.advisory-fields select:focus,
.advisory-fields textarea:focus,
.consult-reason textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(252, 60, 128, .18);
}

.field-full {
  grid-column: 1 / -1;
}

.advisory-submit {
  width: 100%;
  margin-top: 0;
}

.advisory-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.advisory-reservation-card {
  min-height: 560px;
}

.reservation-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 22px;
}

.reservation-preview div {
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(252, 60, 128, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  box-shadow: inset 0 -18px 36px rgba(255, 163, 55, .1);
}

.reservation-preview span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), var(--soft-pink));
  box-shadow: 0 14px 30px rgba(252, 60, 128, .12);
  font-size: 1.4rem;
}

.reservation-preview strong {
  display: block;
  color: var(--black);
  font-size: 1.05rem;
}

.reservation-preview small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.advisory-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 780;
  line-height: 1.45;
}

.advisory-message[data-tone="success"] {
  color: #0d8050;
}

.advisory-message[data-tone="error"] {
  color: #c32656;
}

.advisory-message[data-tone="loading"] {
  color: #6c4310;
}

.advisory-checklist,
.advisory-steps {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.advisory-checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--muted);
  line-height: 1.45;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.advisory-steps li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--muted);
  line-height: 1.45;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.advisory-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 10px 22px rgba(252, 60, 128, .22);
  font-size: .86rem;
  font-weight: 950;
}

.advisory-meta {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.advisory-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.advisory-meta span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.advisory-meta strong {
  color: var(--black);
  text-align: right;
}

.advisory-steps {
  counter-reset: advisory-step;
}

.advisory-steps li {
  counter-increment: advisory-step;
}

.advisory-steps li::before {
  content: counter(advisory-step);
  position: absolute;
  left: 0;
  top: 9px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: .76rem;
  font-weight: 950;
}

.advisory-pay {
  width: 100%;
}

.advisory-note {
  margin: 16px 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 163, 55, .28);
  border-radius: var(--radius);
  color: #6c4310;
  background: rgba(255, 223, 91, .22);
  line-height: 1.45;
}

.legal-page {
  max-width: 920px;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
}

.legal-content h2 {
  font-size: 1.35rem;
}

.legal-content p {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 32px;
  color: var(--white);
  background: var(--black);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.site-footer p {
  max-width: 440px;
  color: rgba(255, 255, 255, .72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 500px;
  padding: 14px;
  border: 1px solid rgba(5, 5, 5, .1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 8px);
    width: auto;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .hero-shell,
  .split-hero,
  .performance-layout,
  .product-panel,
  .advisory-layout,
  .about-andrea {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-book-shell {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .hero-book-copy {
    transform: none;
  }

  .hero-book-visual {
    min-height: 430px;
  }

  .hero-book-visual img {
    width: min(86%, 430px);
    max-height: 430px;
  }

  .advisory-info-card {
    position: static;
  }

  .about-photo {
    max-width: 360px;
    width: 100%;
    margin-inline: auto;
  }

  h1 {
    font-size: 3.4rem;
  }

  .advisory-hero h1 {
    font-size: 3.25rem;
  }

  .performance-layout {
    gap: 18px;
  }

  .donut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 10px 18px;
  }

  .brand-text {
    font-size: .96rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .page {
    width: min(100% - 24px, 1180px);
    padding: 30px 0 56px;
  }

  .hero-shell,
  .page-hero {
    padding: 22px 0 32px;
  }

  .hero-book-shell {
    gap: 14px;
    padding: 12px 0 24px;
  }

  .hero-book-copy .eyebrow {
    margin-bottom: 6px;
  }

  .hero-book-copy h1 {
    line-height: .94;
  }

  .hero-book-copy .hero-lead {
    margin: 12px 0 0;
    line-height: 1.48;
  }

  h1 {
    font-size: 2.55rem;
  }

  .advisory-hero h1 {
    font-size: 2.45rem;
  }

  h2,
  .panel-heading h2 {
    font-size: 1.55rem;
  }

  .chart-panel .panel-heading h2 {
    font-size: 2rem;
  }

  #ytd-return {
    font-size: 2.35rem;
  }

  .returns-chart {
    min-height: 280px;
  }

  .hero-lead,
  .page-hero p,
  .hero-copy p,
  .feature-card p,
  .product-copy p,
  .important-panel p,
  .instructor-band p,
  .cta-band p {
    font-size: 1rem;
  }

  .hero-dashboard,
  .panel,
  .email-preview,
  .booking-card,
  .product-panel,
  .feature-card {
    padding: 18px;
  }

  .hero-dashboard {
    display: none;
  }

  .hero-book-copy {
    display: contents;
  }

  .hero-book-copy .eyebrow {
    order: 1;
  }

  .hero-book-copy h1 {
    order: 2;
  }

  .hero-book-copy .hero-lead {
    order: 3;
  }

  .hero-book-meta {
    display: contents;
  }

  .hero-book-visual {
    order: 4;
    justify-self: center;
    width: 100%;
    min-height: 330px;
    margin-top: 0;
    padding: 0;
  }

  .hero-book-visual img {
    width: min(100%, 360px);
    max-height: 360px;
  }

  .hero-book-copy .trust-row {
    order: 6;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .hero-book-copy .trust-row span {
    min-height: 30px;
    padding: 6px 9px;
    font-size: .76rem;
    line-height: 1;
  }

  .hero-book-copy .hero-actions {
    order: 5;
    justify-content: center;
    margin-top: 6px;
  }

  .hero-book-copy .btn-primary {
    min-width: min(100%, 200px);
    min-height: 54px;
    font-size: 1rem;
  }

  .dashboard-grid,
  .donut-grid,
  .feature-grid,
  .check-grid,
  .advisory-fields,
  .booking-request-grid,
  .slot-grid,
  .reservation-preview {
    grid-template-columns: 1fr;
  }

  .advisory-form-head,
  .advisory-meta div {
    align-items: flex-start;
    flex-direction: column;
  }

  .advisory-meta strong {
    text-align: left;
  }

  .flow-list {
    gap: 16px;
    padding: 24px 0 28px 20px;
  }

  .trend-line {
    inset: 28px 0 24px;
    width: 100%;
    height: calc(100% - 52px);
    opacity: .62;
  }

  .trend-grid,
  .trend-area,
  .trend-under,
  .trend-stroke,
  .trend-points {
    display: none;
  }

  .trend-mobile-bars {
    display: block;
  }

  .flow-item {
    width: calc(100% - 24px);
    justify-self: end;
    grid-template-columns: 54px minmax(0, 1fr) 38px;
    gap: 12px;
    min-height: 128px;
    padding: 16px;
    margin-top: 0;
  }

  .flow-item:nth-of-type(odd),
  .flow-item:nth-of-type(even) {
    justify-self: end;
    margin-top: 0;
  }

  .flow-item:nth-of-type(odd)::after,
  .flow-item:nth-of-type(even)::after {
    left: -32px;
    right: auto;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .flow-item:nth-of-type(odd)::before,
  .flow-item:nth-of-type(even)::before {
    left: -30px;
    right: auto;
    width: 30px;
  }

  .flow-item:nth-of-type(odd):hover,
  .flow-item:nth-of-type(even):hover {
    transform: translateX(0);
  }

  .emoji-art {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }

  .flow-copy {
    min-width: 0;
  }

  .flow-copy strong {
    font-size: 1.1rem;
  }

  .flow-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
  }

  .about-andrea {
    gap: 20px;
    margin: 12px 0 22px;
    padding: 18px;
  }

  .about-photo,
  .about-photo img {
    min-height: 240px;
  }

  .about-photo {
    width: min(100%, 260px);
    justify-self: center;
  }

  .about-photo img {
    object-position: center center;
  }

  .about-copy h2 {
    font-size: 2rem;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .notice-band,
  .cta-band,
  .instructor-band,
  .site-footer,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .price-line strong {
    font-size: 2.6rem;
  }

  .product-copy h2 {
    font-size: 1.8rem;
  }

  .books-page .product-copy .btn {
    width: min(100%, 260px);
    min-height: 58px;
    font-size: 1.05rem;
  }

  .product-media img {
    height: 300px;
  }

  .product-media-cutout {
    min-height: 320px;
  }

  .journal-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .journal-gallery img:first-child {
    grid-row: auto;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-book-copy .btn-primary {
    width: 190px;
    max-width: 100%;
  }

  .panel-heading,
  .dashboard-top,
  .booking-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .donut {
    width: 160px;
    height: 160px;
  }
}
