:root {
  --ink: #071214;
  --ink-2: #132325;
  --forest: #0b3535;
  --teal: #2aa7a0;
  --mint: #73c8a5;
  --lime: #d7b86a;
  --gold: #d9a441;
  --coral: #a95f5d;
  --cream: #f4eddf;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #667372;
  --line: rgba(7, 26, 28, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(7, 26, 28, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.9rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.45rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

p {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 26, 28, 0.92);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 255, 92, 0.45);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(68, 212, 154, 0.28), rgba(255, 255, 255, 0.06));
  color: var(--lime);
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.home-hero,
.ebook-hero,
.download-page,
.simple-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: 52px 0 58px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.ebook-hero .eyebrow,
.download-page .eyebrow,
.simple-page .eyebrow {
  color: var(--coral);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: 1.13rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-btn,
.secondary-btn,
.text-link {
  min-height: 54px;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  padding: 15px 22px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--lime), #f9ffbd 58%, var(--white));
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(7, 26, 28, 0.18);
}

.primary-btn::after {
  content: "->";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(7, 26, 28, 0.09);
  color: currentColor;
  font-weight: 950;
  line-height: 1;
}

.secondary-btn {
  border: 1px solid rgba(7, 26, 28, 0.18);
  background: var(--white);
  color: var(--ink);
}

.secondary-btn::after {
  content: "->";
  font-weight: 950;
}

.primary-btn:hover,
.secondary-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(7, 26, 28, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: auto;
  color: var(--teal);
}

.text-link::after {
  content: "->";
  margin-left: 8px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(7, 26, 28, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-signals span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px -18px -22px 18px;
  z-index: -1;
  border: 1px solid rgba(7, 26, 28, 0.1);
  background: rgba(15, 139, 141, 0.1);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: min(300px, calc(100% - 36px));
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(7, 26, 28, 0.2);
}

.visual-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-note strong {
  display: block;
  line-height: 1.15;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 84px;
}

.intro-card,
.method-grid article,
.program-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(7, 26, 28, 0.08);
}

.intro-card {
  min-height: 210px;
  padding: 26px;
}

.intro-card span,
.method-grid span,
.program-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-card h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.intro-card p,
.method-grid p,
.program-card p,
.section-copy p,
.ebook-copy p,
.download-panel p,
.phone-panel p,
.simple-page p {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 84px 0;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.section-copy h2,
.section-head h2,
.ebook-copy h2 {
  max-width: 780px;
}

.section-copy p {
  max-width: 660px;
  font-size: 1.05rem;
}

.quote-panel {
  border-radius: var(--radius);
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(10, 59, 58, 0.96), rgba(15, 139, 141, 0.9)),
    var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin-bottom: 22px;
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1.25;
}

.quote-panel span {
  color: var(--lime);
  font-weight: 950;
}

.method-section {
  background:
    linear-gradient(180deg, var(--ink) 0%, #0d2f31 100%);
  color: var(--white);
}

.section-head {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
}

.method-section .eyebrow {
  color: var(--lime);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.method-grid article {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-light);
  color: var(--white);
  box-shadow: none;
}

.method-grid span {
  color: var(--gold);
}

.method-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.programs-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.programs-section .section-head {
  width: 100%;
}

.program-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.8fr));
  gap: 16px;
  align-items: stretch;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 26px;
}

.featured-card {
  background: var(--white);
}

.program-card ul {
  display: grid;
  gap: 9px;
  margin: 2px 0 24px;
  padding-left: 20px;
  color: var(--ink-2);
  font-weight: 700;
}

.program-card .primary-btn,
.program-card .text-link {
  margin-top: auto;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.8fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 12px;
}

.community-visual {
  position: relative;
}

.community-visual::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px -18px;
  z-index: -1;
  border: 1px solid rgba(7, 26, 28, 0.12);
  background: rgba(169, 95, 93, 0.1);
}

.community-visual img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.community-copy p {
  max-width: 520px;
  color: var(--muted);
  font-weight: 600;
}

.ebook-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 46px;
  align-items: center;
  padding: 78px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #fef8e7 0%, #dff9ef 100%);
}

.ebook-copy p {
  max-width: 620px;
  font-size: 1.05rem;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.ebook-form {
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: end;
}

.ebook-form .ebook-cover-card {
  grid-row: span 3;
}

.field {
  display: grid;
  gap: 7px;
}

.lead-form label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(7, 26, 28, 0.2);
  border-radius: 5px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

.form-btn {
  width: 100%;
}

.hidden-field {
  display: none;
}

.ebook-cover-card {
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(7, 26, 28, 0.18);
}

.ebook-cover-card img {
  width: 100%;
}

.contact-section {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  color: var(--ink-2);
  font-weight: 850;
}

.contact-details a {
  color: var(--teal);
  text-decoration: none;
}

.contact-form {
  background: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px max(22px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 850;
  text-decoration: none;
}

.ebook-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.7fr);
  gap: 54px;
  align-items: center;
  padding: 62px 0 78px;
}

.ebook-hero-copy p {
  max-width: 640px;
  color: var(--ink-2);
  font-size: 1.12rem;
  font-weight: 650;
}

.ebook-download-form {
  gap: 16px;
}

.large-cover {
  width: min(280px, 100%);
  margin: 0 auto 6px;
}

.download-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: stretch;
  min-height: calc(100svh - 74px);
  padding: 72px 0;
}

.download-panel,
.phone-panel,
.simple-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.download-panel {
  display: grid;
  align-content: center;
  padding: 44px;
}

.download-panel h1,
.simple-page h1 {
  max-width: 760px;
  font-size: 4.1rem;
}

.download-btn {
  width: min(360px, 100%);
  margin-top: 10px;
}

.phone-panel {
  padding: 28px;
}

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

.phone-form {
  margin-top: 18px;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.success-message {
  margin-top: 14px;
  border-radius: 6px;
  padding: 12px 14px;
  background: #dff9ef;
  color: var(--ink);
  font-weight: 850;
}

.simple-page {
  display: grid;
  align-content: center;
  min-height: calc(100svh - 120px);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 46px;
}

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

  h2 {
    font-size: 3rem;
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.92fr);
    gap: 38px;
  }
}

@media (min-width: 900px) and (max-height: 760px) {
  h1 {
    font-size: 3.85rem;
  }

  .home-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 1.02rem;
  }

  .hero-signals {
    margin-top: 18px;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 899px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-hero,
  .ebook-hero,
  .download-page,
  .split-section,
  .contact-section,
  .community-section,
  .ebook-strip {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .ebook-hero,
  .download-page,
  .simple-page {
    width: min(100% - 28px, 1180px);
  }

  .home-hero {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .intro-band,
  .method-grid,
  .program-grid {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
  }

  .intro-band {
    margin-bottom: 42px;
  }

  .section {
    padding: 58px 0;
  }

  .split-section,
  .contact-section,
  .community-section,
  .programs-section,
  .section-head {
    width: min(100% - 28px, 1180px);
  }

  .ebook-strip {
    padding: 56px 14px;
  }

  .download-page {
    min-height: auto;
    padding: 42px 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3.02rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.8rem;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-visual::before {
    inset: 14px -8px -14px 8px;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .intro-card,
  .method-grid article,
  .program-card,
  .quote-panel,
  .lead-form,
  .download-panel,
  .phone-panel,
  .simple-page {
    padding: 22px;
  }

  .ebook-form {
    grid-template-columns: 1fr;
  }

  .ebook-form .ebook-cover-card {
    grid-row: auto;
    width: min(220px, 100%);
    margin: 0 auto;
  }

  .download-panel h1,
  .simple-page h1 {
    font-size: 3rem;
  }
}

/* Electric homepage layer */
.electric-home {
  --ink: #071214;
  --ink-2: #132325;
  --teal: #2aa7a0;
  --mint: #73c8a5;
  --lime: #d7b86a;
  --gold: #d9a441;
  --coral: #a95f5d;
  --cream: #f4eddf;
  --paper: #fffaf0;
  --muted: #5e6b68;
  background:
    repeating-linear-gradient(90deg, rgba(215, 184, 106, 0.035) 0 1px, transparent 1px 88px),
    linear-gradient(180deg, #071214 0%, #0c2022 46%, #f4eddf 46%, #f4eddf 100%);
}

.electric-page {
  --ink: #071214;
  --ink-2: #132325;
  --teal: #2aa7a0;
  --mint: #73c8a5;
  --lime: #d7b86a;
  --gold: #d9a441;
  --coral: #a95f5d;
  --cream: #f4eddf;
  --paper: #fffaf0;
  --muted: #5e6b68;
  background:
    repeating-linear-gradient(90deg, rgba(42, 167, 160, 0.06) 0 1px, transparent 1px 90px),
    linear-gradient(135deg, #f4eddf 0%, #fff7e8 52%, #e7f4ef 100%);
}

.electric-home .site-header,
.electric-page .site-header {
  min-height: 72px;
  border-bottom: 1px solid rgba(215, 184, 106, 0.48);
  background:
    linear-gradient(90deg, rgba(215, 184, 106, 0.13), transparent 34%, rgba(42, 167, 160, 0.1)),
    rgba(7, 18, 20, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.electric-home .brand-mark,
.electric-page .brand-mark {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  animation: mark-pop 4.8s ease-in-out infinite;
}

.electric-home .site-nav a,
.electric-page .site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.electric-home .site-nav a:hover,
.electric-page .site-nav a:hover {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(215, 184, 106, 0.14);
}

.kinetic-rail {
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 184, 106, 0.28);
  background: linear-gradient(90deg, #0d2224, #173234);
  color: #f3e2bd;
}

.rail-track {
  display: flex;
  width: max-content;
  animation: rail-run 22s linear infinite;
}

.rail-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rail-track span::after {
  content: "/";
  margin-left: 28px;
}

.electric-home .home-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.92fr);
  gap: clamp(34px, 5vw, 74px);
  min-height: calc(100svh - 114px);
  margin: 0;
  padding: 58px max(28px, calc((100vw - 1180px) / 2)) 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(215, 184, 106, 0.14), transparent 30%),
    radial-gradient(circle at 83% 28%, rgba(42, 167, 160, 0.12), transparent 32%),
    linear-gradient(72deg, transparent 0 66%, rgba(255, 250, 240, 0.055) 66% 76%, transparent 76%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #071214 0%, #102b2d 58%, #081012 100%);
  color: var(--white);
}

.electric-home .home-hero::before,
.electric-home .home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.electric-home .home-hero::before {
  top: 42px;
  right: -160px;
  width: 580px;
  height: 138px;
  border: 1px solid rgba(215, 184, 106, 0.28);
  background: rgba(255, 250, 240, 0.018);
  transform: rotate(-11deg);
  animation: slash-drift 7s ease-in-out infinite;
}

.electric-home .home-hero::after {
  left: -90px;
  bottom: 46px;
  width: 460px;
  height: 72px;
  background: repeating-linear-gradient(90deg, rgba(215, 184, 106, 0.28) 0 18px, transparent 18px 34px);
  transform: rotate(8deg);
  opacity: 0.24;
  animation: stripe-pulse 3.8s ease-in-out infinite;
}

.electric-home .hero-copy {
  position: relative;
}

.electric-home .hero-copy::before {
  content: "AC";
  position: absolute;
  top: -72px;
  left: -18px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.025);
  font-size: 12rem;
  font-weight: 950;
  line-height: 1;
}

.electric-home .home-hero .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 7px 12px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.22);
}

.electric-home .home-hero h1 {
  max-width: 620px;
  color: var(--white);
  font-size: 5.35rem;
  line-height: 0.92;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.electric-home .hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.electric-home .primary-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 20, 0.86);
  background: linear-gradient(135deg, #d7b86a, #f2d996);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.2), 0 18px 40px rgba(0, 0, 0, 0.16);
}

.electric-page .primary-btn {
  border: 1px solid rgba(7, 18, 20, 0.86);
  background: linear-gradient(135deg, #d7b86a, #f2d996);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.18);
}

.electric-page .secondary-btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.18);
}

.electric-page .lead-form,
.electric-page .download-panel,
.electric-page .phone-panel,
.electric-page .simple-page {
  border: 1px solid rgba(7, 18, 20, 0.18);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(7, 18, 20, 0.13);
}

.electric-page .ebook-hero {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 74px max(28px, calc((100vw - 1180px) / 2)) 86px;
  overflow: hidden;
}

.electric-page .ebook-hero::before {
  content: "FREE";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 34px;
  z-index: -1;
  color: rgba(5, 8, 10, 0.045);
  font-size: 12rem;
  font-weight: 950;
  line-height: 1;
}

.electric-page .ebook-hero h1 {
  text-shadow: 5px 5px 0 rgba(42, 167, 160, 0.16);
}

.electric-page .hero-signals span {
  border: 1px solid rgba(7, 18, 20, 0.18);
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.12);
}

.electric-home .primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.7) 48%, transparent 56% 100%);
  transform: translateX(-110%);
  animation: button-swipe 3.6s ease-in-out infinite;
}

.electric-home .secondary-btn {
  border: 1px solid rgba(42, 167, 160, 0.82);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.16);
}

.electric-home .hero-signals span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.electric-home .hero-signals span::before {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(215, 184, 106, 0.42);
}

.electric-home .hero-visual {
  transform: rotate(0.8deg);
}

.electric-home .hero-visual::before {
  inset: 28px -18px -24px 22px;
  border: 1px solid rgba(42, 167, 160, 0.52);
  background: rgba(42, 167, 160, 0.08);
}

.electric-home .hero-visual img,
.electric-home .community-visual img {
  border: 0;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 250, 240, 0.1);
}

.hero-stamp {
  position: absolute;
  top: -26px;
  left: -22px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(215, 184, 106, 0.86);
  background: rgba(7, 18, 20, 0.95);
  color: var(--lime);
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  animation: stamp-kick 5.4s ease-in-out infinite;
}

.electric-home .visual-note {
  border: 1px solid rgba(7, 18, 20, 0.2);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 42px rgba(7, 18, 20, 0.18);
}

.electric-home .visual-note span {
  color: var(--teal);
}

.float-tag {
  position: absolute;
  z-index: 4;
  width: max-content;
  max-width: 220px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  padding: 9px 12px;
  background: rgba(7, 18, 20, 0.82);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.tag-one {
  right: -18px;
  top: 18px;
  color: var(--lime);
  animation: tag-float 4.8s ease-in-out infinite;
}

.tag-two {
  left: 20px;
  bottom: -18px;
  color: var(--teal);
  animation: tag-float 5.2s ease-in-out 400ms infinite;
}

.mobile-hero-cta {
  display: none;
}

.electric-home .intro-band {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 44px max(28px, calc((100vw - 1180px) / 2)) 78px;
  background: var(--ink);
}

.electric-home .intro-card {
  border: 1px solid rgba(7, 18, 20, 0.18);
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(7, 18, 20, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.electric-home .intro-card:nth-child(2) {
  background: #163437;
  color: var(--white);
  transform: rotate(-0.7deg) translateY(14px);
  box-shadow: 0 22px 54px rgba(7, 18, 20, 0.18);
}

.electric-home .intro-card:nth-child(3) {
  background: #f2dfcf;
  color: var(--ink);
  transform: rotate(0.6deg);
  box-shadow: 0 20px 50px rgba(7, 18, 20, 0.12);
}

.electric-home .intro-card:hover {
  transform: translateY(-8px) rotate(0deg);
}

.electric-home .intro-card span,
.electric-home .intro-card p {
  color: currentColor;
}

.rupture-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 82px max(28px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    linear-gradient(100deg, #d9a441 0 29%, var(--paper) 29% 72%, #2aa7a0 72% 100%);
}

.rupture-word {
  color: var(--ink);
  font-size: 6.6rem;
  font-weight: 950;
  line-height: 0.82;
  transform: rotate(-6deg);
  text-shadow: 5px 5px 0 rgba(7, 18, 20, 0.12);
}

.rupture-copy {
  border: 1px solid rgba(7, 18, 20, 0.18);
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 24px 58px rgba(7, 18, 20, 0.15);
}

.rupture-copy h2 {
  font-size: 3.2rem;
}

.rupture-list {
  display: grid;
  gap: 12px;
}

.rupture-list span {
  display: block;
  border: 1px solid rgba(7, 18, 20, 0.9);
  padding: 12px 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(215, 184, 106, 0.3);
}

.electric-home .split-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.electric-home .split-section .eyebrow {
  color: var(--lime);
}

.electric-home .split-section h2 {
  color: var(--white);
}

.electric-home .split-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.electric-home .quote-panel {
  border: 1px solid rgba(215, 184, 106, 0.72);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 16px),
    var(--ink);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

.electric-home .method-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(42, 167, 160, 0.12) 48% 58%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(215, 184, 106, 0.07) 0 1px, transparent 1px 90px),
    var(--ink);
}

.electric-home .method-section::before {
  content: "METHOD";
  position: absolute;
  right: -20px;
  top: 18px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 13rem;
  font-weight: 950;
  line-height: 1;
}

.electric-home .method-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.electric-home .method-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
}

.electric-home .method-grid article:hover {
  transform: translateY(-10px);
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.1);
}

.electric-home .programs-section {
  padding-top: 98px;
  padding-bottom: 96px;
}

.electric-home .program-card {
  border: 1px solid rgba(7, 18, 20, 0.16);
  background: var(--paper);
  box-shadow: 0 22px 56px rgba(7, 18, 20, 0.11);
}

.electric-home .featured-card {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 26px 62px rgba(7, 18, 20, 0.2);
}

.electric-home .featured-card p,
.electric-home .featured-card li {
  color: rgba(255, 255, 255, 0.76);
}

.electric-home .program-card:nth-child(2) {
  transform: translateY(26px) rotate(-0.6deg);
  background: #e8f4ef;
}

.electric-home .program-card:nth-child(3) {
  transform: translateY(-10px) rotate(0.5deg);
  background: #f3e3d8;
}

.electric-home .community-section {
  width: 100%;
  max-width: none;
  padding: 88px max(28px, calc((100vw - 1180px) / 2));
  background: #0b1d20;
  color: var(--white);
}

.electric-home .community-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.electric-home .community-visual::before {
  border: 1px solid rgba(215, 184, 106, 0.6);
  background: transparent;
}

.electric-home .ebook-strip {
  background:
    linear-gradient(135deg, #fff7e8 0%, #e8f4ef 54%, #f0ddc8 100%);
}

.electric-home .ebook-copy p {
  color: var(--ink);
}

.electric-home .ebook-strip .secondary-btn {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 4px 4px 0 rgba(42, 167, 160, 0.18);
}

.electric-home .lead-form {
  border: 1px solid rgba(7, 18, 20, 0.18);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(7, 18, 20, 0.13);
}

.electric-home .contact-section {
  padding-top: 98px;
  padding-bottom: 98px;
}

.electric-home .site-footer {
  border-top: 1px solid rgba(215, 184, 106, 0.45);
  background: var(--ink);
}

.js-ready .reveal {
  opacity: 1;
  transform: translateY(26px) scale(0.98);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-ready .electric-home .home-hero .reveal,
.electric-home.js-ready .home-hero .reveal {
  opacity: 1;
  transform: none;
}

.js-ready .electric-home .home-hero .hero-visual.reveal,
.electric-home.js-ready .home-hero .hero-visual.reveal {
  transform: rotate(0.8deg);
}

.electric-home .is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
}

.electric-home .hero-visual.reveal.is-visible:not(.is-tilting) {
  transform: rotate(0.8deg);
}

.electric-home .intro-card.reveal.is-visible:nth-child(2):not(.is-tilting) {
  transform: rotate(-0.7deg) translateY(14px);
}

.electric-home .intro-card.reveal.is-visible:nth-child(3):not(.is-tilting) {
  transform: rotate(0.6deg);
}

.electric-home .program-card.reveal.is-visible:nth-child(2):not(.is-tilting) {
  transform: translateY(26px) rotate(-0.6deg);
}

.electric-home .program-card.reveal.is-visible:nth-child(3):not(.is-tilting) {
  transform: translateY(-10px) rotate(0.5deg);
}

@keyframes rail-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes mark-pop {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-8deg) scale(1.08);
  }
}

@keyframes slash-drift {
  0%,
  100% {
    transform: translateX(0) rotate(-11deg);
  }
  50% {
    transform: translateX(-28px) rotate(-8deg);
  }
}

@keyframes stripe-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes button-swipe {
  0%,
  55% {
    transform: translateX(-115%);
  }
  85%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes stamp-kick {
  0%,
  100% {
    transform: rotate(-9deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-7px);
  }
}

@keyframes tag-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@media (max-width: 1120px) {
  .electric-home .home-hero h1 {
    font-size: 4.25rem;
  }
}

@media (min-width: 900px) and (max-height: 760px) {
  .electric-home .home-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 62px;
  }

  .electric-home .home-hero h1 {
    font-size: 4rem;
  }

  .electric-home .hero-copy::before {
    font-size: 9rem;
  }
}

@media (max-width: 899px) {
  .electric-home {
    background: var(--ink);
  }

  .rail-track span {
    min-height: 38px;
    padding: 0 20px;
  }

  .electric-home .home-hero {
    grid-template-columns: 1fr;
    padding: 34px 14px 58px;
  }

  .electric-home .hero-copy {
    order: 2;
  }

  .electric-home .hero-visual {
    order: 1;
  }

  .js-ready .electric-home .home-hero .hero-visual.reveal,
  .electric-home.js-ready .home-hero .hero-visual.reveal {
    transform: none;
  }

  .electric-home .home-hero h1 {
    font-size: 3.45rem;
  }

  .hero-stamp {
    width: 70px;
    height: 70px;
    top: -16px;
    left: -10px;
    font-size: 0.85rem;
  }

  .float-tag {
    position: static;
    display: inline-flex;
    margin-top: 10px;
    margin-right: 8px;
  }

  .mobile-hero-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 14px;
  }

  .electric-home .intro-band {
    grid-template-columns: 1fr;
    padding: 34px 14px 54px;
  }

  .electric-home .intro-card:nth-child(2),
  .electric-home .intro-card:nth-child(3),
  .electric-home .program-card:nth-child(2),
  .electric-home .program-card:nth-child(3) {
    transform: none;
  }

  .electric-home .hero-visual.reveal.is-visible:not(.is-tilting),
  .electric-home .intro-card.reveal.is-visible:nth-child(2):not(.is-tilting),
  .electric-home .intro-card.reveal.is-visible:nth-child(3):not(.is-tilting),
  .electric-home .program-card.reveal.is-visible:nth-child(2):not(.is-tilting),
  .electric-home .program-card.reveal.is-visible:nth-child(3):not(.is-tilting) {
    transform: none;
  }

  .rupture-section {
    grid-template-columns: 1fr;
    padding: 58px 14px;
  }

  .rupture-word {
    font-size: 4.4rem;
  }

  .electric-home .split-section,
  .electric-home .programs-section,
  .electric-home .community-section,
  .electric-home .contact-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 620px) {
  .electric-home .home-hero .eyebrow {
    width: auto;
  }

  .electric-home .home-hero h1 {
    font-size: 3.02rem;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  }

  .rupture-word {
    font-size: 3.35rem;
  }

  .rupture-copy h2 {
    font-size: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
