/* Stryd Media — static site styles
   Converted from a Tailwind/React build to plain, dependency-free CSS. */

@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --radius: 0.75rem;

  --background: oklch(0.16 0 0);
  --foreground: oklch(0.97 0 0);

  --card: oklch(0.2 0 0);
  --primary: oklch(0.99 0 0);
  --primary-foreground: oklch(0.16 0 0);

  --muted-foreground: oklch(0.7 0 0);

  --border: oklch(1 0 0 / 8%);

  --electric: oklch(0.65 0.2 257);
  --violet: oklch(0.65 0.2 295);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Instrument Serif", "Times New Roman", ui-serif, Georgia, serif;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

p {
  margin: 0;
}

::selection {
  background-color: color-mix(in oklab, var(--electric) 40%, transparent);
  color: var(--foreground);
}

.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* Layout */
.container {
  margin-inline: auto;
  max-width: 80rem; /* 1280px */
  padding-inline: 1.5rem;
}
.container-md {
  margin-inline: auto;
  max-width: 48rem; /* 768px */
  padding-inline: 1.5rem;
}
.container-lg {
  margin-inline: auto;
  max-width: 64rem; /* 1024px */
  padding-inline: 1.5rem;
}

/* Glass surfaces */
.glass {
  background: linear-gradient(180deg, oklch(1 0 0 / 4%), oklch(1 0 0 / 1.5%));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(1 0 0 / 8%);
}
.glass-strong {
  background: linear-gradient(180deg, oklch(1 0 0 / 7%), oklch(1 0 0 / 2.5%));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid oklch(1 0 0 / 10%);
}

.text-gradient {
  background: linear-gradient(180deg, oklch(0.99 0 0) 0%, oklch(0.75 0 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-gradient-accent {
  background: linear-gradient(90deg, oklch(0.65 0.2 257) 0%, oklch(0.65 0.2 295) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.radial-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, color-mix(in oklab, var(--electric) 40%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 5%, color-mix(in oklab, var(--violet) 30%, transparent), transparent 70%),
    radial-gradient(ellipse 50% 35% at 8% 15%, color-mix(in oklab, var(--violet) 16%, transparent), transparent 65%);
}
.radial-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size: 128px;
}

.btn-glow {
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 8%) inset,
    0 10px 30px -10px color-mix(in oklab, var(--electric) 60%, transparent);
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up {
  animation: fade-up 0.7s ease-out both;
}
.fade-in {
  animation: fade-in 0.6s ease-out both;
}
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-accent { color: var(--electric); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s, background-color 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 1.5rem;
}
.btn-primary:hover {
  opacity: 0.95;
}
.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}
.btn-primary .icon {
  transition: transform 0.2s;
}
.btn-primary:hover .icon {
  transform: translateX(2px);
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
}
.site-nav-inner {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
}
.brand img {
  height: 2rem;
  width: auto;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--foreground);
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* Progress bar */
.progress-wrap {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 40;
  padding-top: 68px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .progress-wrap { padding-top: 76px; }
}
.progress-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 999px;
  padding: 0.625rem 1rem;
}
.progress-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  white-space: nowrap;
}
.progress-track {
  flex: 1;
  height: 0.375rem;
  border-radius: 999px;
  background: oklch(1 0 0 / 6%);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, oklch(1 0 0 / 80%), oklch(1 0 0));
  transition: width 0.7s ease-out;
}
.progress-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: oklch(0.97 0 0 / 90%);
  white-space: nowrap;
}

/* Section */
.section {
  position: relative;
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .section { padding-block: 8rem; }
}
.eyebrow {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid oklch(1 0 0 / 10%);
  background: oklch(1 0 0 / 3%);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.eyebrow-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 999px;
  background: var(--electric);
  box-shadow: 0 0 10px var(--electric);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .hero { padding-top: 11rem; padding-bottom: 8rem; }
}
.hero-content {
  position: relative;
  margin-inline: auto;
  max-width: 64rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.hero-title {
  margin-top: 1.75rem;
  margin-inline: auto;
  max-width: 56rem;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-sub {
  margin-top: 1.75rem;
  margin-inline: auto;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 1.25rem; }
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}
.hero-ctas .hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.pillars {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: left;
}
@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1.25rem;
}
.pillar-icon {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.5rem;
  background: oklch(1 0 0 / 4%);
  border: 1px solid oklch(1 0 0 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Section tint — subtle alternating background wash for scroll rhythm */
.section-tint {
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, color-mix(in oklab, var(--violet) 8%, transparent), transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 100%, color-mix(in oklab, var(--electric) 7%, transparent), transparent 60%);
}

/* Stat strip */
.stat-strip {
  margin-top: 3.5rem;
  display: grid;
  gap: 1px;
  border-radius: 1rem;
  overflow: hidden;
  background: oklch(1 0 0 / 8%);
  border: 1px solid oklch(1 0 0 / 10%);
}
@media (min-width: 768px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: oklch(0.16 0 0);
  text-align: center;
}
.stat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in oklab, var(--electric) 10%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
}
.stat-item:hover::before {
  opacity: 1;
}
.stat-value {
  position: relative;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat-label {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* Section headings */
.section-heading {
  max-width: 48rem;
}
.section-heading.narrow { max-width: 42rem; }
.section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .section h2 { font-size: 3rem; }
}
.section h1 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .section h1 { font-size: 3.75rem; }
}
.section-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: oklch(1 0 0 / 16%);
}
.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--electric);
}
.stars .icon {
  fill: currentColor;
}
.testimonial-quote {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: oklch(0.97 0 0 / 90%);
  line-height: 1.6;
}
.testimonial-meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(1 0 0 / 10%);
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.center-cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* Video embed (watch page) */
.video-wrap {
  margin-top: 3rem;
  position: relative;
  margin-inline: auto;
  max-width: 64rem;
}
.video-glow {
  position: absolute;
  inset-inline: -2.5rem;
  top: -2.5rem;
  height: 18rem;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--electric) 15%, transparent), transparent);
  filter: blur(64px);
  pointer-events: none;
}
.video-frame {
  position: relative;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 1px 0 0 oklch(1 0 0 / 6%) inset, 0 20px 40px -20px oklch(0 0 0 / 60%);
}
.video-inner {
  position: relative;
  border-radius: 0.75rem;
  background: oklch(0.16 0 0 / 60%);
  border: 1px solid oklch(1 0 0 / 10%);
  overflow: hidden;
}
wistia-player {
  width: 100%;
  display: block;
}

.feature-strip {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
}
.feature-strip .pillar {
  border-radius: 0.75rem;
  padding: 1rem;
}
.feature-strip .pillar span {
  font-size: 0.875rem;
  font-weight: 400;
}

.center-block {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

/* Book page */
.booking-frame {
  margin-top: 3rem;
  border-radius: 1rem;
  padding: 0.5rem;
}
.booking-inner {
  border-radius: 0.75rem;
  overflow: hidden;
  background: oklch(0.16 0 0 / 60%);
  border: 1px solid oklch(1 0 0 / 10%);
}
.booking-inner iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
}
.booking-fallback {
  margin-top: 1.5rem;
  text-align: center;
}
.booking-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.booking-fallback a:hover {
  color: var(--foreground);
}

.card-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--violet));
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  height: 8rem;
  width: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in oklab, var(--electric) 30%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover {
  background: oklch(1 0 0 / 5%);
  border-color: oklch(1 0 0 / 16%);
  transform: translateY(-2px);
}
.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}
.feature-card-icon {
  position: relative;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, color-mix(in oklab, var(--electric) 28%, transparent), color-mix(in oklab, var(--violet) 28%, transparent));
  border: 1px solid oklch(1 0 0 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.included-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .included-layout { grid-template-columns: 5fr 7fr; }
}
.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.included-item {
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background-color 0.2s;
}
.included-item:hover {
  background: oklch(1 0 0 / 5%);
}
.included-check {
  margin-top: 0.125rem;
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  border-radius: 0.375rem;
  background: color-mix(in oklab, var(--electric) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--electric) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.included-item p {
  font-size: 1rem;
  color: oklch(0.97 0 0 / 90%);
}

/* Thank you page */
.confirm-hero {
  position: relative;
  padding-top: 11rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .confirm-hero { padding-top: 13rem; }
}
.confirm-content {
  position: relative;
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}
.confirm-check {
  margin-inline: auto;
  height: 4rem;
  width: 4rem;
  border-radius: 999px;
  background: linear-gradient(to bottom right, color-mix(in oklab, var(--electric) 30%, transparent), color-mix(in oklab, var(--violet) 20%, transparent));
  border: 1px solid oklch(1 0 0 / 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 0 oklch(1 0 0 / 6%) inset, 0 20px 40px -20px oklch(0 0 0 / 60%);
}
.confirm-check .icon {
  height: 1.75rem;
  width: 1.75rem;
}
.confirm-content h1 {
  margin-top: 2rem;
}
.confirm-content .section-sub {
  margin-inline: auto;
  max-width: 40rem;
}

.steps-section {
  margin-inline: auto;
  max-width: 64rem;
  padding-inline: 1.5rem;
  padding-bottom: 6rem;
}
.steps-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover {
  transform: translateY(-2px);
  border-color: oklch(1 0 0 / 16%);
}
.step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.step-number {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.step-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.rewatch-banner {
  margin-top: 3.5rem;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .rewatch-banner { padding: 2.5rem; }
}
.rewatch-banner .eyebrow-plain {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.rewatch-banner h2 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .rewatch-banner h2 { font-size: 1.875rem; }
}
.rewatch-banner p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-inline: auto;
}
.rewatch-banner .btn {
  margin-top: 1.75rem;
}

/* Privacy page */
.legal-main {
  position: relative;
  margin-inline: auto;
  max-width: 48rem;
  padding: 9rem 1.5rem 7rem;
}
.legal-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-foreground);
}
.legal-main h1 {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .legal-main h1 { font-size: 3rem; }
}
.legal-updated {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.legal-sections {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.legal-sections section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legal-sections h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.legal-sections p {
  color: var(--muted-foreground);
  line-height: 1.7;
}
.legal-sections ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.legal-sections li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.legal-dot {
  margin-top: 0.5rem;
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 999px;
  background: var(--electric);
  flex-shrink: 0;
}
.legal-sections a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-sections a:hover {
  color: var(--electric);
}
.legal-sections .btn {
  margin-top: 0.5rem;
  padding: 0.625rem 1.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid oklch(1 0 0 / 8%);
  margin-top: 8rem;
}
.footer-inner {
  padding-block: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  text-align: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; text-align: left; }
}
.footer-brand img {
  height: 1.75rem;
  width: auto;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--foreground);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* 404 */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  text-align: center;
}
.notfound h1 {
  font-size: 4.5rem;
  font-weight: 700;
}
.notfound h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.notfound p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.notfound .btn {
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
}

/* eBook page */
.ebook-hero-grid {
  margin-top: 3rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ebook-hero-grid { grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr); }
}
.ebook-copy .hero-title,
.ebook-copy .section-sub {
  text-align: left;
  margin-inline: 0;
}
.ebook-copy .hero-badge {
  margin-inline: 0;
}

.free-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
  border: 1px solid color-mix(in oklab, var(--electric) 40%, transparent);
  background: color-mix(in oklab, var(--electric) 12%, transparent);
}
.price-row {
  margin-top: 1.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.price-old {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
  opacity: 0.7;
}
.price-free {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.ebook-cover-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  container-type: inline-size;
}
.ebook-cover-glow {
  position: absolute;
  inset: -2.5rem;
  background: radial-gradient(ellipse 60% 55% at 50% 35%, color-mix(in oklab, var(--electric) 22%, transparent), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

.ebook-cover-img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  filter: drop-shadow(0 30px 60px oklch(0 0 0 / 55%));
}

.price-panel {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .price-panel { padding: 3rem; }
}
.price-panel .btn {
  margin-top: 1.75rem;
}

/* About You section */
.about-layout {
  margin-top: 3.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.about-avatar-wrap {
  position: relative;
  width: 100%;
  max-width: 18rem;
  margin-inline: auto;
}
.about-avatar-glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse 60% 55% at 50% 40%, color-mix(in oklab, var(--electric) 22%, transparent), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
.about-avatar {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 10%);
  box-shadow: 0 1px 0 0 oklch(1 0 0 / 6%) inset, 0 20px 40px -20px oklch(0 0 0 / 60%);
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy .about-bio {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.guide-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
}
.btn-outline {
  background: oklch(1 0 0 / 4%);
  color: var(--foreground);
  border: 1px solid oklch(1 0 0 / 14%);
}
.btn-outline:hover {
  background: oklch(1 0 0 / 7%);
}

/* FAQ */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
}
.faq-item {
  border-radius: 1rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .faq-icon {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.2s, color 0.2s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--electric);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Footer social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid oklch(1 0 0 / 10%);
  background: oklch(1 0 0 / 3%);
  color: var(--muted-foreground);
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  color: var(--foreground);
  background: oklch(1 0 0 / 6%);
  border-color: oklch(1 0 0 / 20%);
}
.footer-social svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
  stroke: none;
}
