:root {
  --bg: #020202;
  --panel: #070707;
  --panel-soft: #0c0b0a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.13);
  --text: #f6f0ea;
  --muted: #88817a;
  --muted-2: #5e5852;
  --orange: #ff5b1a;
  --orange-soft: #c94717;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #020202;
}

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

button,
summary {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(100% - 44px, 1120px);
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
  color: var(--white);
  mix-blend-mode: normal;
}

.brand,
.main-nav,
.header-cta {
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 650;
}

.brand-mark {
  width: 22px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, #ff7b2a 0 17%, transparent 18%),
    linear-gradient(90deg, #ff4b13, #ff7a22);
  box-shadow: 0 0 18px rgba(255, 91, 26, .5);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 550;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding: 8px 18px;
  color: #0b0b0b;
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.section-center,
.split-section,
.section-split,
.impact-metrics {
  width: min(100% - 44px, 1120px);
  margin-inline: auto;
}

.process.split-section {
  width: min(100% - 44px, 1320px);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 845px;
  display: grid;
  place-items: start center;
  padding-top: 170px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .04) 43%, rgba(0, 0, 0, .1) 100%),
    url("assets/solarhero.png?v=restored") center bottom / cover no-repeat,
    #020202;
  isolation: isolate;
}

.grid-lines {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center 36%, transparent 0 28%, rgba(0, 0, 0, .16) 63%, rgba(0, 0, 0, .46) 100%),
    linear-gradient(90deg, rgba(0,0,0,.22), transparent 22%, transparent 78%, rgba(0,0,0,.22));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 2, 2, .76));
}

.hero-orbit {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(730px, 100%);
  text-align: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-block: 0;
}

h1 {
  margin-top: 22px;
  font-size: clamp(45px, 4.7vw, 68px);
  line-height: .92;
  letter-spacing: 0;
  font-weight: 760;
  text-wrap: balance;
}

.hero-copy {
  width: min(600px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 31px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7b2a, #ff4d13);
  box-shadow: 0 15px 34px rgba(255, 76, 17, .25);
}

.btn-secondary {
  color: #080808;
  background: #fff;
}

.impact-metrics {
  position: absolute;
  left: 50%;
  bottom: clamp(38px, 6.8vh, 72px);
  z-index: 4;
  width: min(100% - 64px, 880px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  text-align: center;
  transform: translateX(-50%);
}

.metric-item {
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 16px 18px 20px;
  background: transparent;
  transition: transform .35s ease;
  overflow: visible;
}

.metric-item strong {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: .9;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  transform: translateY(-4px);
  transition: text-shadow .25s ease, transform .25s ease;
}

.metric-item span {
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.metric-item.is-counting {
  transform: translateY(-2px);
}

.metric-item.is-counting::before {
  opacity: 1;
}

.metric-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  width: min(78%, 230px);
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 91, 26, .34) 0%, rgba(255, 91, 26, .2) 28%, rgba(255, 91, 26, .08) 55%, transparent 74%);
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity .28s ease;
  z-index: 0;
}

.metric-item > * {
  position: relative;
  z-index: 1;
}

.metric-item.is-counting strong {
  text-shadow: 0 0 26px rgba(255,255,255,.34), 0 0 32px rgba(255, 91, 26, .34);
  transform: scale(1.035);
}

.metric-item.has-counted strong {
  animation: metric-settle .42s ease both;
}

@keyframes metric-settle {
  0% {
    text-shadow: 0 0 28px rgba(255,255,255,.35), 0 0 30px rgba(255, 91, 26, .3);
    transform: scale(1.04);
  }

  100% {
    text-shadow: none;
    transform: scale(1);
  }
}

.split-section {
  padding: 88px 0 140px;
  border-top: 1px solid rgba(255,255,255,.055);
}

.process {
  height: 165vh;
  padding: 0;
  scroll-margin-top: 0;
}

.process-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 64px;
  overflow: hidden;
}

.section-label {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

.section-heading {
  width: min(710px, 100%);
  margin: 16px auto 0;
  text-align: center;
}

h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: .96;
  font-weight: 720;
  text-wrap: balance;
}

.section-heading p,
.muted-copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(500px, 1fr) minmax(220px, 260px);
  align-items: center;
  gap: clamp(64px, 6vw, 96px);
  margin-top: 34px;
}

.process-tabs {
  display: grid;
  gap: 18px;
}

.process-tabs button {
  position: relative;
  color: var(--muted-2);
  text-align: left;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.09);
  padding: 3px 0 3px 18px;
  cursor: pointer;
  filter: blur(1.6px);
  opacity: .74;
  transition: color .28s ease, border-color .28s ease, filter .28s ease, opacity .28s ease, transform .28s ease;
}

.process-tabs button.active {
  color: var(--white);
  border-color: var(--orange);
  filter: blur(0);
  opacity: 1;
  transform: translateX(3px);
}

.process-tabs button.active::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.process-visual {
  display: grid;
  place-items: center;
}

.process-visual-window {
  width: min(520px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 28px;
}

.process-visual-track {
  height: 400%;
  transform: translate3d(0, calc(var(--process-progress, 0) * -25%), 0);
  transition: transform .18s linear;
  will-change: transform;
}

.process-panel {
  width: 100%;
  height: 25%;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .36);
  background:
    linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
    #0b0a09;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-photo-panel {
  background: #050505;
  isolation: isolate;
}

.process-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 91, 26, .28), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.68));
  pointer-events: none;
}

.process-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
}

.process-photo-main {
  filter: saturate(.9) contrast(1.04) brightness(.86);
}

.image-placeholder::after {
  display: none;
}

.production-map {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 87, 24, .22), transparent 24%),
    radial-gradient(circle at 50% 50%, transparent 0 54%, rgba(255, 91, 26, .12) 55%, transparent 56%),
    linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
    #0b0a09;
  border-radius: 28px;
}

.process-panel-plain {
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 91, 26, .18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #0b0a09;
}

.process-panel-plain:nth-child(3) {
  background:
    radial-gradient(circle at 16% 76%, rgba(255, 91, 26, .22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #0b0a09;
}

.process-panel-plain:nth-child(4) {
  background:
    radial-gradient(circle at 78% 52%, rgba(255, 91, 26, .24), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #0b0a09;
}

.process-copy h3 {
  margin-top: 16px;
  font-size: 20px;
  transition: opacity .22s ease, transform .22s ease;
}

.process-copy p,
.left-copy p,
.feature-card p,
.price-card p,
.price-card li,
.faq p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.accent-symbol {
  color: var(--orange);
  font-size: 32px;
  font-weight: 800;
}

.process-copy.is-changing h3,
.process-copy.is-changing p {
  opacity: .35;
  transform: translateY(8px);
}

.section-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: 610px;
  padding: 92px max(44px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 82, 20, .16), transparent 34%),
    linear-gradient(90deg, rgba(255, 78, 17, .045), transparent 34%, rgba(255,255,255,.015));
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.mission-image,
.portrait-placeholder {
  justify-self: start;
  width: min(560px, 100%);
  aspect-ratio: 4 / 3;
  display: block;
  color: rgba(255,255,255,.5);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.02)),
    #111;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  font-size: 12px;
  font-weight: 700;
}

.mission-image {
  object-fit: cover;
}

.statement-copy {
  max-width: 730px;
  text-align: center;
}

.statement-copy h2 {
  margin-top: 18px;
}

.quote {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
  font-weight: 700;
}

.signature {
  margin-top: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.signature span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.subpage-main {
  padding-top: 58px;
}

.subpage-main .section-band:first-child {
  border-top: 0;
}

.testimonials-page .proof,
.faq-page .faq {
  min-height: calc(100vh - 58px);
}

.founders {
  padding: 86px 0 124px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.founder-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 91, 26, .13), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  padding: 18px;
}

.founder-photo-wrap {
  width: min(92%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 91, 26, .16), transparent 42%),
    #050505;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.founder-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.founder-photo-rahul {
  object-position: center 30%;
}

.founder-photo-varish {
  object-position: center 18%;
}

.founder-info {
  min-height: 256px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6px 4px;
}

.founder-info h3 {
  font-size: 20px;
  line-height: 1.1;
}

.founder-role {
  margin-top: 7px;
  color: rgba(255, 91, 26, .92);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.founder-bio {
  max-width: 44rem;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.linkedin-link {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 102, 194, .64);
  border-radius: 8px;
  color: #fff;
  background: #0a66c2;
  box-shadow: 0 14px 28px rgba(10, 102, 194, .22);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.linkedin-link:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, .9);
  background: #0b72d9;
}

.linkedin-link svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.features {
  padding: 56px 0 86px;
}

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

.feature-card,
.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.018));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
}

.feature-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card:nth-child(4) {
  grid-column: span 2;
}

.feature-card:nth-child(5) {
  grid-column: span 1;
}

.card-visual {
  position: relative;
  flex: 1;
  min-height: 210px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.35);
  border-bottom: 1px solid rgba(255,255,255,.065);
  overflow: hidden;
}

.card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.merch-visual {
  background: #050505;
}

.merch-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 88, 24, .24), transparent 36%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.58));
  pointer-events: none;
}

.merch-visual::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 94, 28, .62), transparent);
}

.featured-merch-visual {
  min-height: 280px;
}

.arc-lines {
  background:
    radial-gradient(circle at 15% 92%, rgba(255, 83, 20, .2), transparent 34%),
    #060606;
}

.badge-visual {
  background:
    radial-gradient(circle at center, rgba(255, 89, 25, .25), transparent 28%),
    #050505;
}

.badge-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7b2a, #ff4d13);
  color: #fff;
  font-weight: 800;
}

.ui-visual {
  background:
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.05), transparent 28%),
    #050505;
}

.ui-visual::before {
  content: "";
  position: absolute;
  right: 42px;
  top: 42px;
  width: 150px;
  height: 88px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.dark-visual {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 87, 24, .34), transparent 22%),
    #030303;
}

.star-visual {
  background:
    radial-gradient(circle at 70% 86%, rgba(255, 82, 18, .25), transparent 34%),
    #080604;
}

.feature-card h3 {
  margin: 22px 22px 6px;
  font-size: 17px;
}

.feature-card p {
  margin: 0 22px 24px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(520px, 680px) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 108px 0;
}

.left-copy h2 {
  margin-top: 13px;
}

.left-copy p {
  margin-top: 20px;
}

.left-copy .btn {
  margin-top: 30px;
}

.proof {
  width: min(100% - 44px, 1280px);
  align-items: center;
  padding-top: 86px;
  padding-bottom: 120px;
}

.testimonials-heading {
  grid-column: 1 / -1;
  width: min(780px, 100%);
  margin: 0 auto 4px;
  text-align: center;
}

.testimonials-heading h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.story-image-panel {
  min-height: 560px;
  display: grid;
  align-items: center;
}

.story-image-card {
  position: relative;
  width: min(680px, 100%);
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 93, 24, .16), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.018));
  box-shadow: 0 34px 92px rgba(0,0,0,.36);
  padding: 12px;
  overflow: hidden;
  transition: opacity .26s ease, transform .26s ease, border-color .26s ease;
}

.story-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.68));
  z-index: 1;
}

.story-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  filter: saturate(.98) contrast(1.03);
}

.story-image-card figcaption {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.story-image-panel.is-changing .story-image-card {
  opacity: .58;
  transform: translateY(10px) scale(.985);
}

.testimonial h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: .98;
}

.testimonial blockquote {
  margin: 26px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.38;
}

.story-copy {
  min-height: 250px;
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.story-copy.is-changing {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
}

.story-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.story-tabs button {
  position: relative;
  cursor: pointer;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.story-tabs button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 91, 26, .18), transparent);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity .2s ease, transform .42s ease;
}

.story-tabs button:hover {
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.story-tabs button.active {
  color: #fff;
  background: rgba(255, 88, 24, .12);
  border-color: rgba(255, 88, 24, .34);
}

.story-tabs button.active::before {
  opacity: 1;
  transform: translateX(60%);
}

.pricing {
  padding: 98px 0 112px;
}

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

.price-card {
  min-height: 555px;
  padding: 28px;
}

.price-card.featured {
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 91, 24, .2), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255, 86, 23, .105));
  border-color: rgba(255, 95, 24, .25);
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
  font-size: 10px;
}

.price-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.price-card p {
  margin-top: 8px;
}

.price-card strong {
  display: block;
  margin-top: 30px;
  color: #fff;
  font-size: 27px;
}

.subline {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.price-card .btn {
  width: 100%;
  margin-top: 28px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 19px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.faq {
  align-items: start;
  padding: 84px 0 135px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

details {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.022);
  overflow: hidden;
}

details[open] {
  border-radius: 20px;
}

summary {
  position: relative;
  list-style: none;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 54px 0 24px;
  cursor: pointer;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 650;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: rgba(255,255,255,.48);
  font-size: 18px;
}

details[open] summary::after {
  content: "-";
}

.faq p {
  padding: 0 24px 22px;
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: start center;
  padding-top: 156px;
  text-align: center;
}

.final-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(255, 90, 20, .58), rgba(255, 90, 20, .12) 26%, transparent 58%);
}

.final-inner {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.final-inner h2 {
  margin-top: 22px;
}

.final-inner p {
  width: min(560px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-inner .btn {
  margin-top: 30px;
}

.book-page {
  padding-top: 1px;
}

.book-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 112px 0 46px;
  text-align: center;
  overflow: hidden;
}

.book-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(255, 91, 26, .26), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent);
  pointer-events: none;
}

.book-hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.book-hero .hero-copy {
  color: rgba(255,255,255,.82);
  font-size: 16px;
}

.book-small-copy {
  width: min(620px, 100%);
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.book-hero .btn {
  margin-top: 28px;
}

.scheduler-section {
  scroll-margin-top: 72px;
  padding: 0 0 44px;
}

.scheduler-intro {
  width: min(760px, 100%);
  margin: 0 auto 16px;
  text-align: center;
}

.scheduler-intro p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}

.scheduler-frame {
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 91, 26, .16), transparent 42%),
    #050505;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.calendly-inline-widget {
  min-height: 700px;
}

.booking-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 0 44px;
}

.booking-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.booking-card h2 {
  font-size: 18px;
  line-height: 1.15;
}

.booking-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.book-faq {
  padding-top: 26px;
  padding-bottom: 90px;
}

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

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

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 28px, 1120px);
    grid-template-columns: auto 1fr auto;
    column-gap: 18px;
  }

  .main-nav {
    justify-self: center;
    gap: 16px;
    font-size: 10px;
  }

  .hero {
    min-height: 720px;
    padding-top: 132px;
  }

  .section-center,
  .split-section,
  .section-split {
    width: min(100% - 28px, 1120px);
  }

  .impact-metrics {
    width: min(100% - 28px, 760px);
    bottom: 28px;
  }

  .process-layout,
  .section-split,
  .section-band,
  .feature-grid,
  .pricing-grid,
  .founder-grid,
  .booking-benefits {
    grid-template-columns: 1fr;
  }

  .book-hero {
    min-height: 390px;
    padding-top: 104px;
  }

  .scheduler-section {
    width: min(100% - 16px, 1120px);
  }

  .process {
    height: auto;
    padding: 62px 0 64px;
  }

  .process-sticky {
    position: relative;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .process-layout {
    gap: 34px;
  }

  .process-tabs {
    width: min(420px, 100%);
    margin-inline: auto;
  }

  .process-visual-window {
    width: min(370px, 100%);
  }

  .process-copy {
    text-align: center;
  }

  .section-band {
    padding-inline: 28px;
    gap: 46px;
  }

  .mission-image,
  .portrait-placeholder,
  .story-image-card {
    justify-self: center;
  }

  .proof {
    gap: 46px;
  }

  .story-image-panel {
    min-height: auto;
  }

  .story-image-card {
    width: min(680px, 100%);
  }

  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .founders {
    padding: 66px 0 96px;
  }

  .founder-grid {
    width: min(520px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .header-cta {
    padding-inline: 12px;
  }

  .hero {
    background-position: center, center calc(100% + 90px);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .button-row {
    flex-direction: column;
    align-items: center;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
    bottom: 22px;
  }

  .metric-item {
    min-height: 72px;
    gap: 5px;
    padding: 12px 16px 16px;
  }

  .metric-item strong {
    font-size: 29px;
    transform: translateY(-3px);
  }

  .metric-item::before {
    width: min(74%, 220px);
    height: 68px;
    background: radial-gradient(ellipse at center, rgba(255, 91, 26, .3) 0%, rgba(255, 91, 26, .18) 30%, rgba(255, 91, 26, .07) 58%, transparent 76%);
    filter: blur(15px);
  }

  .metric-item span {
    font-size: 10px;
  }

  .btn {
    width: min(100%, 280px);
  }

  .book-hero {
    width: min(100% - 28px, 1120px);
    min-height: 430px;
    padding-bottom: 34px;
  }

  .scheduler-frame {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .calendly-inline-widget {
    min-width: 320px;
  }

  .story-tabs {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .testimonial blockquote {
    margin-top: 24px;
    font-size: 18px;
  }

  .story-copy {
    min-height: 230px;
  }

  .founder-info {
    min-height: 104px;
    padding: 20px;
  }

  .price-card {
    padding: 22px;
  }
}

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

  .main-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .process-visual-track,
  .process-tabs button,
  .process-copy h3,
  .process-copy p,
  .story-copy,
  .story-tabs button,
  .story-tabs button::before,
  .story-image-card {
    transition: none;
  }
}
