@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --sv-forest: #14241c;
  --sv-forest-mid: #1e3529;
  --sv-orange: #ff6b1a;
  --sv-orange-glow: rgba(255, 107, 26, 0.45);
  --sv-mist: #e8efe9;
  --sv-cream: #f3f7f4;
  --sv-white: #ffffff;
  --sv-mute: #5c6b61;
  --sv-display: 'Sora', system-ui, sans-serif;
  --sv-text: 'IBM Plex Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.sv-root {
  font-family: var(--sv-text);
  background: var(--sv-cream);
  color: var(--sv-forest);
  line-height: 1.65;
  position: relative;
  min-height: 100vh;
}

/* Grain overlay */
body.sv-root::before {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.sv-max { width: min(1100px, 92%); margin-inline: auto; }

/* Header — side rail style */
.sv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  position: relative;
  z-index: 50;
}
.sv-mark {
  font-family: var(--sv-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.sv-mark em {
  font-style: normal;
  color: var(--sv-orange);
}
.sv-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.sv-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sv-mute);
  transition: color 0.2s;
}
.sv-links a:hover, .sv-links a.sv-now { color: var(--sv-forest); }
.sv-ham {
  display: none;
  background: var(--sv-forest);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
}

/* Glow CTA */
.sv-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: var(--sv-orange);
  color: #fff;
  font-family: var(--sv-display);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 0 0 var(--sv-orange-glow);
  animation: sv-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.sv-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px var(--sv-orange-glow);
  animation: none;
}
@keyframes sv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--sv-orange-glow); }
  50% { box-shadow: 0 0 22px 4px var(--sv-orange-glow); }
}
.sv-linkish {
  display: inline-flex;
  font-weight: 600;
  color: var(--sv-orange);
  gap: 0.35rem;
  align-items: center;
}
.sv-linkish::after { content: '→'; transition: transform 0.2s; }
.sv-linkish:hover::after { transform: translateX(4px); }

/* Hero dark */
.sv-stage {
  background: var(--sv-forest);
  color: #fff;
  border-radius: 0 0 40% 40% / 0 0 8% 8%;
  padding: 3rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.sv-stage__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,107,26,0.18), transparent 50%),
    linear-gradient(160deg, rgba(20,36,28,0.75), rgba(20,36,28,0.9)),
    #1a2e22 url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.95;
}
.sv-stage__inner { position: relative; z-index: 2; max-width: 640px; }
.sv-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sv-orange);
  margin-bottom: 1rem;
  font-weight: 600;
}
.sv-stage h1 {
  font-family: var(--sv-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.sv-stage p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 480px; }

/* Radial practice selector — UNIQUE UI */
.sv-orbit-wrap {
  margin-top: -3.5rem;
  position: relative;
  z-index: 5;
  padding-bottom: 2rem;
}
.sv-orbit {
  background: var(--sv-white);
  border-radius: 50% 50% 24px 24px / 18% 18% 24px 24px;
  padding: 3rem 2rem 2.5rem;
  box-shadow: 0 24px 60px rgba(20, 36, 28, 0.12);
  text-align: center;
}
.sv-orbit h2 {
  font-family: var(--sv-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.sv-orbit > p { color: var(--sv-mute); margin-bottom: 2rem; font-size: 0.95rem; }

.sv-wheel {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
}
.sv-wheel__core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--sv-forest);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 40px var(--sv-orange-glow);
}
.sv-wheel__core strong {
  font-family: var(--sv-display);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.35rem;
}
.sv-wheel__core span { font-size: 0.75rem; opacity: 0.75; line-height: 1.35; }

.sv-spoke {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--sv-mist);
  background: var(--sv-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sv-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, color 0.25s;
  color: var(--sv-forest);
  line-height: 1.2;
}
.sv-spoke:hover, .sv-spoke.is-live {
  border-color: var(--sv-orange);
  background: #fff;
  color: var(--sv-orange);
  transform: scale(1.06);
}
.sv-spoke:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.sv-spoke:nth-child(2) { top: 18%; right: 2%; }
.sv-spoke:nth-child(3) { bottom: 18%; right: 2%; }
.sv-spoke:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.sv-spoke:nth-child(5) { bottom: 18%; left: 2%; }
.sv-spoke:nth-child(6) { top: 18%; left: 2%; }
.sv-spoke:nth-child(1).is-live,
.sv-spoke:nth-child(4).is-live { transform: translateX(-50%) scale(1.06); }

.sv-panel {
  max-width: 480px;
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--sv-mist);
  border-radius: 16px;
  text-align: left;
  min-height: 110px;
}
.sv-panel h3 {
  font-family: var(--sv-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.sv-panel p { color: var(--sv-mute); font-size: 0.92rem; }

/* Blocks */
.sv-block { padding: 4.5rem 0; }
.sv-block--dark {
  background: var(--sv-forest);
  color: #fff;
}
.sv-block--mist { background: var(--sv-mist); }

.sv-h {
  font-family: var(--sv-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.sv-lede { color: var(--sv-mute); max-width: 520px; }
.sv-block--dark .sv-lede { color: rgba(255,255,255,0.7); }

.sv-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.sv-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.sv-tile {
  background: var(--sv-white);
  padding: 1.5rem;
  border-radius: 20px 20px 20px 4px;
  border: 1px solid rgba(20,36,28,0.06);
  transition: transform 0.35s ease;
}
.sv-tile:hover { transform: translateY(-5px); }
.sv-tile h3 {
  font-family: var(--sv-display);
  font-size: 1.1rem;
  margin: 0.75rem 0 0.45rem;
}
.sv-tile p { color: var(--sv-mute); font-size: 0.92rem; }
.sv-tile__n {
  font-family: var(--sv-display);
  color: var(--sv-orange);
  font-weight: 700;
  font-size: 0.85rem;
}

.sv-media {
  border-radius: 28px 28px 8px 28px;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(135deg, var(--sv-forest-mid), #2a4a38) center/cover;
}
.sv-media img { width: 100%; min-height: 280px; object-fit: cover; }

.sv-steps { counter-reset: sv; margin-top: 2rem; display: grid; gap: 1rem; }
.sv-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
}
.sv-step::before {
  counter-increment: sv;
  content: counter(sv);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sv-orange);
  color: #fff;
  font-family: var(--sv-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-step h3 { font-family: var(--sv-display); font-size: 1.05rem; margin-bottom: 0.3rem; }
.sv-step p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.sv-form { display: grid; gap: 1rem; }
.sv-form label { font-size: 0.82rem; font-weight: 600; display: block; margin-bottom: 0.3rem; }
.sv-form input, .sv-form textarea, .sv-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20,36,28,0.15);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.sv-form input:focus, .sv-form textarea:focus {
  outline: none;
  border-color: var(--sv-orange);
  box-shadow: 0 0 0 3px var(--sv-orange-glow);
}
.sv-form textarea { min-height: 130px; resize: vertical; }

.sv-box {
  background: var(--sv-forest);
  color: #fff;
  padding: 2rem;
  border-radius: 24px;
}
.sv-box a { color: var(--sv-orange); }
.sv-box p { margin-bottom: 0.6rem; opacity: 0.85; }

.sv-banner {
  text-align: center;
  padding: 4rem 0;
}
.sv-banner .sv-h { margin-bottom: 1rem; }

.sv-pagelead {
  padding: 3rem 0 2rem;
}
.sv-pagelead h1 {
  font-family: var(--sv-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.sv-policy h2 {
  font-family: var(--sv-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.7rem;
}
.sv-policy p, .sv-policy li { color: var(--sv-mute); margin-bottom: 0.65rem; }
.sv-policy ul { margin: 0 0 1rem 1.15rem; }
.sv-policy li { list-style: disc; }

.sv-foot {
  background: var(--sv-forest);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}
.sv-foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.sv-foot__brand {
  font-family: var(--sv-display);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.sv-foot h4 {
  color: var(--sv-orange);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.sv-foot a { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; }
.sv-foot a:hover { color: #fff; }
.sv-foot__copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Cookie floating pill */
.sv-pill {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 400;
  background: var(--sv-forest);
  color: #fff;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 24px var(--sv-orange-glow);
  max-width: calc(100vw - 2rem);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.sv-pill.is-up { transform: translateX(-50%) translateY(0); }
.sv-pill p { font-size: 0.8rem; white-space: nowrap; }
.sv-pill a { color: var(--sv-orange); text-decoration: underline; }
.sv-pill__btns { display: flex; gap: 0.4rem; flex-shrink: 0; }
.sv-pill__btns button {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sv-display);
}
.sv-pill__yes { background: var(--sv-orange); color: #fff; }
.sv-pill__no { background: rgba(255,255,255,0.12); color: #fff; }

.sv-rise {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sv-rise.on { opacity: 1; transform: none; }

.sv-checks li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  color: var(--sv-mute);
}
.sv-checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sv-orange);
  box-shadow: 0 0 10px var(--sv-orange-glow);
}

@media (max-width: 860px) {
  .sv-links { display: none; }
  .sv-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--sv-cream);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    align-items: flex-start;
  }
  .sv-ham { display: grid; place-items: center; }
  .sv-head { position: relative; }
  .sv-trio, .sv-duo, .sv-foot__grid { grid-template-columns: 1fr; }
  .sv-stage { border-radius: 0 0 24px 24px; }
  .sv-orbit { border-radius: 24px; }
  .sv-wheel { width: min(340px, 100%); }
  .sv-spoke { width: 78px; height: 78px; font-size: 0.65rem; }
  .sv-pill {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
    padding: 1rem;
  }
  .sv-pill p { white-space: normal; }
}
