/* ==========================================================================
   TAURUS ENERGY — Design system for Divi 4
   Loaded via Divi > Theme Options > Integration > head
   Edit colours in :root below — the whole site follows.
   ========================================================================== */

:root {
  --ink: #0a0a0b;
  --ink-2: #131316;
  --ink-3: #1c1c21;
  --paper: #f5f1ea;
  --paper-2: #ebe5d9;
  --red: #e8341c;
  --red-deep: #b81a08;
  --orange: #ff7a2b;
  --magenta: #e6308a;
  --green: #1f8f5a;
  --green-bright: #28c878;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --grad-fire: linear-gradient(135deg, #ff7a2b 0%, #e8341c 50%, #b81a08 100%);
  --grad-spectrum: linear-gradient(90deg, #e8341c, #ff7a2b, #e6308a, #28c878);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ==========================================================================
   1. GLOBAL / DIVI RESET
   ========================================================================== */

body,
body.et-db #et-boc .et-l {
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 100;
}

h1, h2, h3, h4, h5, h6,
.et_pb_module h1, .et_pb_module h2, .et_pb_module h3,
.et_pb_module h4, .et_pb_module h5, .et_pb_module h6 {
  font-family: var(--font-display);
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 300;
  padding-bottom: 0;
}

p { color: rgba(245,241,234,0.75); }
a { color: var(--orange); }

.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }

/* Full-bleed page: kill Divi's fixed-header offset so the nav floats over the hero */
#page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Wider container to match the design's 1320px grid */
.et_pb_row {
  width: 90%;
  max-width: 1320px;
}
.et_pb_section {
  background-color: transparent;
}

/* ==========================================================================
   2. HEADER / NAV  (Divi native header, skinned)
   ========================================================================== */

#main-header {
  background-color: rgba(10,10,11,0.65) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: none !important;
  transition: background-color .3s ease;
}
#main-header.et-fixed-header {
  background-color: rgba(10,10,11,0.85) !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--line);
}
#main-header .container {
  width: 92%;
  max-width: 1600px;
}
.et_header_style_left #et-top-navigation { padding-top: 24px; }
.et_header_style_left .logo_container { height: 78px; }
#logo, .et-fixed-header #logo { max-height: 44px !important; }

#top-menu li a,
.et-fixed-header #top-menu li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--paper) !important;
  opacity: 0.75;
  transition: opacity .2s ease;
  padding-bottom: 22px;
}
#top-menu li a:hover { opacity: 1 !important; }
#top-menu li.current-menu-item > a,
#top-menu li.current_page_item > a { opacity: 1 !important; color: var(--paper) !important; }
#top-menu li a:before { display: none; }

/* "Talk to us" pill — add the CSS class nav-cta-wrap to the menu item */
#top-menu li.nav-cta-wrap { margin-left: 10px; }
#top-menu li.nav-cta-wrap > a,
.et-fixed-header #top-menu li.nav-cta-wrap > a {
  background: var(--paper);
  color: var(--ink) !important;
  border-radius: 100px;
  padding: 10px 20px !important;
  opacity: 1 !important;
  font-weight: 600;
  transition: background .3s ease, color .3s ease;
}
#top-menu li.nav-cta-wrap > a:hover {
  background: var(--red);
  color: var(--paper) !important;
}

/* Dropdowns */
#top-menu li ul.sub-menu,
#top-menu li li ul.sub-menu {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--orange);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
#top-menu li li a {
  width: 240px;
  padding: 10px 20px !important;
  font-size: 14px;
}
#top-menu li li a:hover { background: rgba(255,255,255,0.05); }

/* Mobile nav */
#et_mobile_nav_menu .mobile_nav { background: transparent; }
#et_mobile_nav_menu .select_page,
.et_mobile_menu li a { color: var(--paper) !important; }
.et_mobile_menu {
  background: var(--ink-2);
  border-top: 2px solid var(--orange);
}
.et_mobile_menu li a { border-bottom: 1px solid var(--line); }
.mobile_menu_bar:before { color: var(--paper) !important; }

/* ==========================================================================
   3. FOOTER  (Divi native footer, skinned)
   ========================================================================== */

#main-footer {
  background-color: var(--ink-2);
  border-top: 1px solid var(--line);
}
#footer-widgets {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid var(--line);
}
#main-footer .footer-widget {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
#main-footer .footer-widget .fwidget { margin-bottom: 0 !important; }
#main-footer .footer-widget h4.title,
#main-footer .footer-widget h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: rgba(245,241,234,0.5);
  margin-bottom: 18px;
}
#main-footer .footer-widget li,
#main-footer .footer-widget ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  border: none;
}
#main-footer .footer-widget li:before { display: none; }
#main-footer .footer-widget li a {
  display: block;
  color: var(--paper);
  text-decoration: none;
  padding: 6px 0;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity .2s ease, color .2s ease;
}
#main-footer .footer-widget li a:hover { opacity: 1; color: var(--orange); }
#main-footer .footer-widget p,
#main-footer .footer-widget .textwidget {
  font-size: 14px;
  color: rgba(245,241,234,0.65);
  line-height: 1.6;
  max-width: 340px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.foot-brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.5;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.logo-mark {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  background: var(--grad-fire);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 30px rgba(232,52,28,0.5);
}
.logo-mark::before, .logo-mark::after {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  background: var(--ink);
  border-radius: 50%;
  top: -6px;
}
.logo-mark::before { left: 4px; transform: rotate(-30deg); border-radius: 50% 50% 0 50%; }
.logo-mark::after  { right: 4px; transform: rotate(30deg);  border-radius: 50% 50% 50% 0; }

#footer-bottom {
  background-color: var(--ink-2);
  padding: 24px 0 32px;
}
#footer-info, #footer-info a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,241,234,0.4);
  float: none;
}
#footer-bottom .container { width: 90%; max-width: 1320px; }
.et-social-icons { display: none; }

/* ==========================================================================
   4. SHARED DESIGN PRIMITIVES
   ========================================================================== */

.section-eyebrow, .hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before, .hero-eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--orange);
  flex: 0 0 40px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 12px var(--green-bright);
  animation: taurus-pulse 1.6s infinite;
  display: inline-block;
  flex: 0 0 8px;
}
@keyframes taurus-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Big section headings */
.taurus-h2 h2, h2.taurus-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}
.taurus-h2 em, h2 em, h1 em, .cta-mega em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.taurus-h2 em.grad, h1 em.grad, .cta-mega em, .difference-line .replace, .case-quote em {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-intro p, p.section-intro {
  font-size: 19px;
  max-width: 680px;
  color: rgba(245,241,234,0.7);
  line-height: 1.5;
}

/* Buttons — Divi button module skinned */
.et_pb_button_module_wrapper.btn-inline {
  display: inline-block;
  margin: 0 12px 12px 0 !important;
}
.et_pb_button.taurus-btn,
.et_pb_module .et_pb_button.taurus-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px !important;
  border-radius: 100px;
  border: none;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
.et_pb_button.taurus-btn:after { font-size: 1em; margin-left: 4px; }
.et_pb_button.btn-primary,
.et_pb_module .et_pb_button.btn-primary {
  background: var(--grad-fire);
  color: var(--paper) !important;
  box-shadow: 0 8px 24px rgba(232,52,28,0.3);
}
.et_pb_button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,52,28,0.45);
  background: var(--grad-fire);
}
.et_pb_button.btn-ghost,
.et_pb_module .et_pb_button.btn-ghost {
  background: transparent;
  color: var(--paper) !important;
  border: 1px solid var(--line-strong) !important;
}
.et_pb_button.btn-ghost:hover { background: rgba(255,255,255,0.05); }

/* Scroll reveal */
.taurus-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.taurus-reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   5. HOMEPAGE — HERO
   ========================================================================== */

.taurus-hero { position: relative; overflow: hidden; }
.taurus-hero::before {
  content: "";
  position: absolute;
  top: 0; right: -20%;
  width: 80%; height: 100%;
  background: radial-gradient(circle at center, rgba(232,52,28,0.18), transparent 60%);
  pointer-events: none;
}
.taurus-hero .et_pb_row { position: relative; z-index: 2; }

.hero-title h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: taurus-rise .9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes taurus-rise { to { transform: translateY(0); } }
.hero-title .rotator {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  min-width: 4ch;
}
.hero-title .rotator span {
  display: block;
  animation: taurus-rotate-words 9s infinite;
  font-style: italic;
  font-weight: 400;
}
.hero-title .rotator span:nth-child(1) { color: var(--red); }
.hero-title .rotator span:nth-child(2) { color: var(--orange); }
.hero-title .rotator span:nth-child(3) { color: var(--green-bright); }
.hero-title .rotator span:nth-child(4) { color: var(--magenta); }
@keyframes taurus-rotate-words {
  0%, 22%   { transform: translateY(0); }
  25%, 47%  { transform: translateY(-100%); }
  50%, 72%  { transform: translateY(-200%); }
  75%, 97%  { transform: translateY(-300%); }
  100%      { transform: translateY(-400%); }
}
.hero-sub p {
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
  color: rgba(245,241,234,0.7);
}

/* Live dashboard card */
.hero-dash { position: relative; }
.dash-card {
  background: linear-gradient(140deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.dash-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-spectrum);
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,241,234,0.5);
}
.dash-head .status { color: var(--green-bright); display: flex; align-items: center; gap: 8px; }
.dash-big {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 300;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 4px;
}
.dash-big .unit { font-size: 18px; opacity: 0.5; margin-left: 4px; font-weight: 400; }
.dash-label { font-size: 13px; color: rgba(245,241,234,0.6); margin-bottom: 24px; }
.dash-chart { height: 100px; margin: 0 -8px 20px; }
.dash-chart svg { width: 100%; height: 100%; display: block; }
.draw-path { stroke-dasharray: 800; stroke-dashoffset: 800; animation: taurus-draw 2s 1s forwards ease-out; }
@keyframes taurus-draw { to { stroke-dashoffset: 0; } }
.dash-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.dash-stat { display: flex; flex-direction: column; gap: 2px; }
.dash-stat .v { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.dash-stat .v.up { color: var(--green-bright); }
.dash-stat .l {
  font-size: 11px; color: rgba(245,241,234,0.5);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
}
.float-tag {
  position: absolute;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  animation: taurus-float 4s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
}
.float-tag.ft-1 { top: -20px; right: -10px; }
.float-tag.ft-2 { bottom: 40px; left: -30px; animation-delay: 1s; }
.float-tag .dot { width: 6px; height: 6px; border-radius: 50%; }
.float-tag .dot.red { background: var(--red); box-shadow: 0 0 10px var(--red); }
.float-tag .dot.green { background: var(--green-bright); box-shadow: 0 0 10px var(--green-bright); }
@keyframes taurus-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   6. MARQUEE + TICKER
   ========================================================================== */

.taurus-marquee-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee { overflow: hidden; padding: 26px 0; }
.marquee-track {
  display: flex; gap: 60px;
  animation: taurus-scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300; font-style: italic;
  color: rgba(245,241,234,0.4);
  display: flex; align-items: center; gap: 60px;
}
.marquee-item::after { content: "✦"; color: var(--orange); font-style: normal; }
@keyframes taurus-scroll { to { transform: translateX(-50%); } }

.ticker-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; margin-bottom: 32px;
}
.ticker-head h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: -0.02em; }
.ticker-head h3 em { font-style: italic; color: var(--orange); }
.status-pill {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--green-bright);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border: 1px solid rgba(40,200,120,0.3); border-radius: 100px;
}
.ticker-rail { overflow: hidden; border-radius: 16px; border: 1px solid var(--line); background: var(--ink-2); }
.ticker-track { display: flex; animation: taurus-ticker 45s linear infinite; width: max-content; }
.ticker-item {
  padding: 24px 36px;
  display: flex; align-items: center; gap: 18px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.ticker-item .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.6; }
.ticker-item .price { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.ticker-item .change { font-family: var(--font-mono); font-size: 13px; font-weight: 500; padding: 4px 10px; border-radius: 6px; }
.ticker-item .change.up { color: var(--green-bright); background: rgba(40,200,120,0.12); }
.ticker-item .change.down { color: var(--red); background: rgba(232,52,28,0.12); }
@keyframes taurus-ticker { to { transform: translateX(-50%); } }

/* ==========================================================================
   7. CYCLE DIAGRAM (four pillars)
   ========================================================================== */

.cycle-section { position: relative; overflow: hidden; }
.cycle-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,122,43,0.08), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(230,48,138,0.06), transparent 50%);
  pointer-events: none;
}
.cycle-section .et_pb_row { position: relative; z-index: 2; }
.cycle-diagram { position: relative; aspect-ratio: 1; max-width: 540px; margin: 0 auto; }
.cycle-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; z-index: 2;
}
.cycle-center .num {
  font-family: var(--font-display); font-size: 72px; font-weight: 300;
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; letter-spacing: -0.04em;
}
.cycle-center .lbl {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(245,241,234,0.5); margin-top: 8px;
}
.cycle-node {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}
.cycle-node-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: all .4s ease;
}
.cycle-node:hover .cycle-node-inner,
.cycle-node.is-active .cycle-node-inner { border-color: transparent; transform: scale(1.08); }
.cycle-node[data-pillar="procure"]:hover .cycle-node-inner,
.cycle-node[data-pillar="procure"].is-active .cycle-node-inner { background: var(--red); box-shadow: 0 0 50px rgba(232,52,28,0.5); }
.cycle-node[data-pillar="monitor"]:hover .cycle-node-inner,
.cycle-node[data-pillar="monitor"].is-active .cycle-node-inner { background: var(--orange); box-shadow: 0 0 50px rgba(255,122,43,0.5); color: var(--ink); }
.cycle-node[data-pillar="manage"]:hover .cycle-node-inner,
.cycle-node[data-pillar="manage"].is-active .cycle-node-inner { background: var(--magenta); box-shadow: 0 0 50px rgba(230,48,138,0.5); }
.cycle-node[data-pillar="reduce"]:hover .cycle-node-inner,
.cycle-node[data-pillar="reduce"].is-active .cycle-node-inner { background: var(--green); box-shadow: 0 0 50px rgba(31,143,90,0.5); }
.cycle-node .icon { font-size: 28px; margin-bottom: 6px; line-height: 1; }
.cycle-node .name { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.cycle-node[data-pillar="procure"] { top: 0; left: 50%; transform: translateX(-50%); }
.cycle-node[data-pillar="monitor"] { right: 0; top: 50%; transform: translateY(-50%); }
.cycle-node[data-pillar="manage"]  { bottom: 0; left: 50%; transform: translateX(-50%); }
.cycle-node[data-pillar="reduce"]  { left: 0; top: 50%; transform: translateY(-50%); }
.cycle-arrows { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.cycle-arrows circle.orbit {
  fill: none; stroke: var(--line-strong); stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: taurus-spin 60s linear infinite;
  transform-origin: center;
}
@keyframes taurus-spin { to { transform: rotate(360deg); } }
.cycle-arrows path.flow {
  fill: none; stroke: var(--orange); stroke-width: 1.5;
  stroke-dasharray: 6 8; stroke-linecap: round;
  animation: taurus-flow 1.2s linear infinite;
}
@keyframes taurus-flow { to { stroke-dashoffset: -14; } }

/* Divi Tabs module → pillar pills */
.taurus-tabs.et_pb_tabs {
  border: none;
  background: transparent;
}
.taurus-tabs .et_pb_tabs_controls {
  background: transparent;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.taurus-tabs .et_pb_tabs_controls:after { display: none; }
.taurus-tabs .et_pb_tabs_controls li {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  margin: 0;
  transition: all .3s ease;
}
.taurus-tabs .et_pb_tabs_controls li a {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border: none;
}
.taurus-tabs .et_pb_tabs_controls li.et_pb_tab_active {
  background: var(--paper);
  border-color: var(--paper);
}
.taurus-tabs .et_pb_tabs_controls li.et_pb_tab_active a { color: var(--ink); }
.taurus-tabs .et_pb_all_tabs { background: transparent; }
.taurus-tabs .et_pb_tab { padding: 28px 0 0; }
.taurus-tabs .et_pb_tab h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.taurus-tabs .et_pb_tab p { font-size: 16px; color: rgba(245,241,234,0.7); line-height: 1.6; max-width: 520px; }

/* On the homepage cycle, the pill controls sit BELOW the copy panel */
.cycle-section .taurus-tabs { display: flex; flex-direction: column; }
.cycle-section .taurus-tabs .et_pb_all_tabs { order: 1; }
.cycle-section .taurus-tabs .et_pb_tabs_controls { order: 2; margin-top: 32px; }
.cycle-section .taurus-tabs .et_pb_tab { padding: 0; }

/* ==========================================================================
   8. STATS (light section)
   ========================================================================== */

.stats-section { color: var(--ink); }
.stats-section .section-eyebrow { color: var(--red); }
.stats-section .section-eyebrow::before { background: var(--red); }
.stats-section h2, .stats-section h2 em { color: var(--ink); }
.stats-section h2 em { color: var(--red); }
.stats-section .section-intro p { color: rgba(10,10,11,0.65); }

.stats-row .et_pb_column {
  margin-right: 0 !important;
  padding: 48px 32px;
  border-right: 1px solid rgba(10,10,11,0.15);
  border-bottom: 1px solid rgba(10,10,11,0.15);
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}
.stats-row.first-stats-row .et_pb_column { border-top: 1px solid rgba(10,10,11,0.15); }
.stats-row .et_pb_column:last-child { border-right: none; }
.stats-row .et_pb_column::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-fire);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.stats-row .et_pb_column:hover::after { transform: translateY(0); }
.stats-row .et_pb_column .et_pb_module { position: relative; z-index: 1; }
.stats-row .et_pb_column:hover .stat-cell .num,
.stats-row .et_pb_column:hover .stat-cell .desc,
.stats-row .et_pb_column:hover .stat-cell .desc strong { color: var(--paper) !important; }

.stat-cell .num {
  font-family: var(--font-display);
  font-size: 90px; font-weight: 300;
  line-height: 0.9; letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--ink);
  transition: color .3s ease;
}
.stat-cell .num .small { font-size: 36px; vertical-align: top; }
.stat-cell .desc {
  font-size: 15px; color: rgba(10,10,11,0.65);
  line-height: 1.45;
  transition: color .3s ease;
}
.stat-cell .desc strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   9. NOT-A-BROKER / DIFFERENCE
   ========================================================================== */

.difference-line {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 84px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--paper);
}
.difference-line .strike { position: relative; color: rgba(245,241,234,0.4); display: inline-block; }
.difference-line .strike::after {
  content: ""; position: absolute; top: 55%; left: -5%; right: -5%;
  height: 4px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.difference-line.in-view .strike::after { transform: scaleX(1); }

.diff-col {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--line);
  height: 100%;
}
.diff-col.them { background: var(--ink-2); }
.diff-col.us {
  background: linear-gradient(140deg, rgba(232,52,28,0.08), rgba(255,122,43,0.04));
  border-color: rgba(232,52,28,0.3);
}
.diff-col h4 { font-family: var(--font-display); font-size: 26px; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.02em; }
.diff-col .sub {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(245,241,234,0.5); margin-bottom: 28px;
}
.diff-col.us .sub { color: var(--orange); }
.diff-col ul { list-style: none; padding: 0; margin: 0; }
.diff-col ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px; color: rgba(245,241,234,0.85);
  display: flex; align-items: flex-start; gap: 14px;
  line-height: 1.5;
}
.diff-col ul li:last-child { border-bottom: none; }
.diff-col ul li::before { content: "—"; color: rgba(245,241,234,0.3); font-weight: 700; flex-shrink: 0; }
.diff-col.us ul li::before { content: "+"; color: var(--green-bright); }

/* ==========================================================================
   10. SECTOR CARDS (Divi Blurb) — numbers auto-generated with CSS counters
   ========================================================================== */

.sectors-grid-row { counter-reset: sector; }
.sectors-grid-row .et_pb_column { margin-right: 0 !important; margin-bottom: 0 !important; }
.sector-card.et_pb_blurb {
  counter-increment: sector;
  background: var(--ink-2);
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px !important;
  padding: 36px 28px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  transition: background .4s ease;
}
.sector-card.et_pb_blurb:hover { background: var(--ink-3); }
.sector-card .et_pb_blurb_container { padding-left: 0; }
.sector-card::before {
  content: "0" counter(sector) " / SECTOR";
  position: absolute; top: 34px; left: 28px;
  font-family: var(--font-mono);
  font-size: 11px; color: rgba(245,241,234,0.4); letter-spacing: 0.2em;
}
.sector-card::after {
  content: "→";
  position: absolute; top: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all .4s ease;
}
.sector-card:hover::after { background: var(--orange); color: var(--ink); transform: rotate(-45deg); }
.sector-card .et_pb_module_header,
.sector-card h4 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 12px; padding-bottom: 0;
}
.sector-card .et_pb_module_header a { color: var(--paper); }
.sector-card p { font-size: 13px; color: rgba(245,241,234,0.55); line-height: 1.5; }

/* ==========================================================================
   11. PROCESS ROWS (Divi Blurb) — numbers via CSS counters
   ========================================================================== */

.process-list { counter-reset: step; }
.process-row.et_pb_blurb {
  counter-increment: step;
  display: grid;
  grid-template-columns: 120px 1.2fr 2fr 80px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: all .4s ease;
}
.process-row.et_pb_blurb:last-child { border-bottom: 1px solid var(--line); }
.process-row::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 56px; font-weight: 300;
  color: rgba(245,241,234,0.3);
  letter-spacing: -0.04em;
  line-height: 1;
}
.process-row::after {
  content: "→";
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  justify-self: end;
}
.process-row:hover::after { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.process-row .et_pb_blurb_content { max-width: none; display: contents; }
.process-row .et_pb_blurb_container { display: contents; padding-left: 0; }
.process-row .et_pb_module_header {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.05;
  transition: color .3s ease;
  padding-bottom: 0;
  align-self: center;
}
.process-row:hover .et_pb_module_header { color: var(--orange); }
.process-row .et_pb_blurb_description {
  font-size: 16px; color: rgba(245,241,234,0.65); line-height: 1.55;
  align-self: center;
}

/* ==========================================================================
   12. CTA
   ========================================================================== */

.cta-section { position: relative; overflow: hidden; text-align: center; }
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(232,52,28,0.15), transparent 60%);
  pointer-events: none;
}
.cta-section .et_pb_row { position: relative; z-index: 2; }
.cta-mega {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 130px);
  font-weight: 300; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--paper);
}
.cta-sub p {
  font-size: 19px;
  max-width: 580px;
  margin: 0 auto;
  color: rgba(245,241,234,0.7);
}

/* ==========================================================================
   13. INNER PAGE HEADER (all standard pages)
   ========================================================================== */

.inner-hero { position: relative; overflow: hidden; }
.inner-hero::before {
  content: ""; position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(circle at center, rgba(232,52,28,0.15), transparent 60%);
  pointer-events: none;
}
.inner-hero .et_pb_row { position: relative; z-index: 2; }
.inner-title h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.03em;
  max-width: 900px;
}
.inner-title h1 em {
  font-style: italic;
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.inner-intro p {
  font-size: 19px; max-width: 680px;
  color: rgba(245,241,234,0.7); line-height: 1.55;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(245,241,234,0.5);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(245,241,234,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .current { color: var(--orange); }

/* Long-form body copy */
.prose h2 { font-size: 36px; font-weight: 400; margin: 40px 0 18px; }
.prose h3 { font-size: 26px; font-weight: 500; margin: 32px 0 14px; }
.prose p { font-size: 17px; line-height: 1.7; color: rgba(245,241,234,0.85); margin-bottom: 22px; }
.prose ul, .prose ol { margin: 0 0 24px 20px; }
.prose li { margin-bottom: 10px; color: rgba(245,241,234,0.85); line-height: 1.6; }
.prose blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 24px; margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic; font-size: 22px; font-weight: 300;
  color: var(--paper);
}

/* ==========================================================================
   14. SERVICE PAGE (Energy Procurement)
   ========================================================================== */

.svc-hero { position: relative; overflow: hidden; }
.svc-hero-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.7; pointer-events: none;
}
.svc-hero-bg svg { width: 100%; height: 100%; }
.svc-hero-bg .wave { stroke-dasharray: 2000; animation: taurus-wave 12s ease-in-out infinite; }
.svc-hero-bg .w2 { animation-delay: -2s; }
.svc-hero-bg .w3 { animation-delay: -4s; }
.svc-hero-bg .w4 { animation-delay: -6s; }
.svc-hero-bg .w5 { animation-delay: -8s; }
@keyframes taurus-wave {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.6; }
  50% { stroke-dashoffset: 100; opacity: 0.9; }
}
.svc-hero .et_pb_row { position: relative; z-index: 2; }

.svc-hero-card {
  background: linear-gradient(140deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 28px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.svc-hero-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-fire);
}
.card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(245,241,234,0.5);
  margin-bottom: 20px;
}
.card-head .status { color: var(--green-bright); display: flex; align-items: center; gap: 6px; }
.price-big { font-family: var(--font-display); font-size: 56px; font-weight: 300; letter-spacing: -0.04em; line-height: 1; }
.price-big .unit { font-size: 16px; opacity: 0.5; margin-left: 4px; font-weight: 400; }
.price-sub { font-size: 12px; color: rgba(245,241,234,0.5); margin: 6px 0 20px; font-family: var(--font-mono); letter-spacing: 0.05em; }
.tiny-chart { height: 70px; margin: 0 -8px 20px; }
.tiny-chart svg { width: 100%; height: 100%; display: block; }
.card-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card-grid .v { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }
.card-grid .v.up { color: var(--green-bright); }
.card-grid .l { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.5; margin-top: 2px; }
.card-foot {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(245,241,234,0.4);
}

/* Strategy cards */
.strat-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all .3s ease;
  height: 100%;
}
.strat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,52,28,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.strat-card.featured {
  background: linear-gradient(150deg, rgba(232,52,28,0.1), rgba(255,122,43,0.04) 60%, var(--ink-3));
  border-color: rgba(232,52,28,0.4);
}
.strat-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: rgba(245,241,234,0.4); margin-bottom: 20px; }
.strat-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.strat-head h3 { font-family: var(--font-display); font-size: 36px; font-weight: 400; letter-spacing: -0.02em; line-height: 1; }
.pill {
  font-family: var(--font-mono);
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 5px 9px; border-radius: 100px; white-space: nowrap;
}
.pill-1 { background: rgba(40,200,120,0.12); color: var(--green-bright); border: 1px solid rgba(40,200,120,0.3); }
.pill-2 { background: rgba(232,52,28,0.15); color: var(--orange); border: 1px solid rgba(232,52,28,0.35); }
.pill-3 { background: rgba(230,48,138,0.12); color: var(--magenta); border: 1px solid rgba(230,48,138,0.3); }
.strat-card > p { font-size: 15px; color: rgba(245,241,234,0.7); line-height: 1.55; margin-bottom: 20px; }
.strat-list { list-style: none; padding: 0; margin: 0 0 24px; }
.strat-list li {
  padding: 10px 0; font-size: 14px; color: rgba(245,241,234,0.85);
  border-top: 1px solid var(--line);
  display: flex; gap: 10px;
}
.strat-list li::before { content: "+"; color: var(--green-bright); font-weight: 700; }
.strat-foot { padding-top: 16px; border-top: 1px solid var(--line); }
.strat-when {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(245,241,234,0.5); line-height: 1.5;
}
.strat-recommend {
  position: absolute; top: -1px; right: -1px;
  background: var(--grad-fire);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 8px 16px;
  border-radius: 0 20px 0 16px;
  font-weight: 600;
}

/* Market desk */
.desk-bullets { list-style: none; padding: 0; margin: 0; }
.desk-bullets li {
  padding: 18px 0;
  font-size: 16px;
  border-top: 1px solid var(--line);
  color: rgba(245,241,234,0.8);
  line-height: 1.55;
}
.desk-bullets li:last-child { border-bottom: 1px solid var(--line); }
.desk-bullets strong { color: var(--paper); font-weight: 600; }

.desk-panel.et_pb_tabs {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.desk-panel.et_pb_tabs::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-spectrum);
}
.desk-panel .et_pb_tab { padding: 8px 0 0; }

.signal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  margin-bottom: 20px;
}
.signal-cell { background: var(--ink-2); padding: 18px 20px; }
.sl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(245,241,234,0.5); margin-bottom: 6px; }
.sv { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.sv.up { color: var(--green-bright); }
.signal-note {
  font-size: 14px; color: rgba(245,241,234,0.85);
  line-height: 1.55; padding: 18px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border-left: 2px solid var(--orange);
}
.signal-note strong { color: var(--orange); }
.signal-meta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(245,241,234,0.4);
}
.curve-rows { display: flex; flex-direction: column; }
.curve-row {
  display: grid; grid-template-columns: 80px 1fr 90px;
  gap: 16px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
}
.curve-row:last-child { border-bottom: none; }
.curve-row .l { color: rgba(245,241,234,0.6); }
.curve-row .m { color: var(--orange); letter-spacing: -1px; font-size: 14px; }
.curve-row .v { color: var(--paper); text-align: right; font-weight: 500; }
.trigger-row {
  display: grid; grid-template-columns: 16px 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.trigger-row:last-child { border-bottom: none; }
.tr-status { width: 10px; height: 10px; border-radius: 50%; }
.tr-status.armed { background: var(--green-bright); box-shadow: 0 0 10px var(--green-bright); animation: taurus-pulse 1.6s infinite; }
.tr-status.pending { background: var(--orange); }
.tr-status.executed { background: rgba(245,241,234,0.3); }
.tr-name { font-family: var(--font-display); font-size: 16px; font-weight: 500; }
.tr-rule { font-family: var(--font-mono); font-size: 11px; color: rgba(245,241,234,0.55); margin-top: 3px; letter-spacing: 0.05em; }
.tr-state {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

/* Timeline (Divi Blurb) */
.timeline-row.et_pb_blurb {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}
.timeline-row::before {
  content: "";
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,43,0.15);
  margin-top: 8px;
}
.timeline-row::after {
  content: "";
  position: absolute;
  left: 8px; top: 32px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--orange), rgba(255,122,43,0.05));
}
.timeline-row:last-child::after { display: none; }
.timeline-row:last-child::before { background: var(--paper); box-shadow: 0 0 0 4px rgba(245,241,234,0.12); }
.timeline-row .et_pb_blurb_container { padding-left: 0; }
.timeline-row .et_pb_module_header {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 12px; padding-bottom: 0;
}
.timeline-row .et_pb_blurb_description { font-size: 16px; color: rgba(245,241,234,0.7); line-height: 1.55; max-width: 620px; }
.timeline-row .tl-meta {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--orange); margin-bottom: 8px; display: block;
}

/* What's included grid (Divi Blurb) */
.inc-grid-row .et_pb_column { margin-right: 0 !important; margin-bottom: 0 !important; }
.inc-cell.et_pb_blurb {
  background: var(--ink);
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px !important;
  padding: 32px 24px;
  transition: background .3s ease;
  height: 100%;
}
.inc-cell.et_pb_blurb:hover { background: var(--ink-2); }
.inc-cell .et_pb_blurb_container { padding-left: 0; }
.inc-cell .et_pb_main_blurb_image { margin-bottom: 14px; }
.inc-cell .et-pb-icon { font-size: 28px; color: var(--orange); }
.inc-cell .et_pb_module_header {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; margin-bottom: 8px; padding-bottom: 0;
}
.inc-cell .et_pb_blurb_description { font-size: 13px; color: rgba(245,241,234,0.6); line-height: 1.5; }

/* Case study pull-quote */
.case-wrap { text-align: center; max-width: 920px; margin: 0 auto; }
.case-quote-mark {
  font-family: var(--font-display);
  font-size: 160px; color: var(--orange);
  line-height: 0.6; margin-bottom: 8px; opacity: 0.6;
}
.case-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300; line-height: 1.3; letter-spacing: -0.02em;
  margin-bottom: 40px; border: none; padding: 0;
  color: var(--paper);
}
.case-quote em { font-style: italic; font-weight: 500; }
.case-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.case-co {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(245,241,234,0.5); margin-top: 4px;
}

/* FAQ — Divi Accordion */
.taurus-faq.et_pb_accordion { border: none; }
.taurus-faq .et_pb_toggle {
  background: transparent !important;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.taurus-faq .et_pb_toggle:last-child { border-bottom: 1px solid var(--line); }
.taurus-faq .et_pb_toggle_title {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
  color: var(--paper) !important;
  padding: 28px 40px 28px 0 !important;
  cursor: pointer;
  transition: color .3s ease;
}
.taurus-faq .et_pb_toggle:hover .et_pb_toggle_title { color: var(--orange) !important; }
.taurus-faq .et_pb_toggle_title:before {
  content: "\002b" !important;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 300;
  color: var(--orange);
  right: 0;
  top: 26px;
  transition: transform .3s ease;
}
.taurus-faq .et_pb_toggle_open .et_pb_toggle_title:before {
  content: "\002b" !important;
  transform: rotate(45deg);
}
.taurus-faq .et_pb_toggle_content {
  padding: 0 0 28px !important;
  max-width: 720px;
}
.taurus-faq .et_pb_toggle_content p { font-size: 16px; color: rgba(245,241,234,0.75); line-height: 1.65; }

/* Related services (Divi Blurb) */
.related-card.et_pb_blurb {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
}
.related-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent, var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.related-card:hover { border-color: var(--accent, var(--orange)); transform: translateY(-4px); }
.related-card:hover::before { transform: scaleX(1); }
.related-card.acc-orange  { --accent: var(--orange); }
.related-card.acc-magenta { --accent: var(--magenta); }
.related-card.acc-green   { --accent: var(--green-bright); }
.related-card.acc-red     { --accent: var(--red); }
.related-card .et_pb_blurb_container { padding-left: 0; }
.related-card .rc-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent, var(--orange));
  margin-bottom: 14px; display: block;
}
.related-card .et_pb_module_header {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 8px; padding-bottom: 0;
}
.related-card .et_pb_module_header a { color: var(--paper); }
.related-card .et_pb_blurb_description { font-size: 14px; color: rgba(245,241,234,0.6); line-height: 1.55; }
.related-card .et_pb_blurb_description::after {
  content: "→";
  display: block;
  margin-top: 18px;
  color: var(--accent, var(--orange));
  font-size: 18px;
}

/* Contact form styling */
.taurus-form input[type="text"],
.taurus-form input[type="email"],
.taurus-form input[type="tel"],
.taurus-form select,
.taurus-form textarea,
.et_pb_contact_form input,
.et_pb_contact_form textarea {
  width: 100%;
  padding: 16px 20px !important;
  background: var(--ink-2) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--paper) !important;
  border-radius: 12px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  margin-bottom: 16px;
}
.et_pb_contact_form input:focus, .et_pb_contact_form textarea:focus { border-color: var(--orange) !important; outline: none; }
.et_pb_contact_form .et_pb_contact_field { padding: 0 !important; }
.et_pb_contact_submit {
  background: var(--grad-fire) !important;
  color: var(--paper) !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 16px 28px !important;
  font-weight: 600;
}

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  #footer-widgets { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row .et_pb_column { border-right: none; }
  .process-row.et_pb_blurb { grid-template-columns: 60px 1fr; gap: 20px; }
  .process-row::before { font-size: 36px; }
  .process-row .et_pb_blurb_description, .process-row::after { display: none; }
  .strat-recommend { font-size: 8px; padding: 6px 12px; }
  .float-tag.ft-1 { top: -14px; right: 0; }
  .float-tag.ft-2 { bottom: 20px; left: 0; }
  .cta-mega { font-size: clamp(36px, 10vw, 64px); }
  .signal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  #footer-widgets { grid-template-columns: 1fr; }
  .cycle-node { width: 108px; height: 108px; }
  .cycle-node .name { font-size: 14px; }
  .cycle-node .icon { font-size: 20px; }
  .cycle-center .num { font-size: 48px; }
  .marquee-item { font-size: 20px; }
  .ticker-item { padding: 18px 22px; }
  .case-quote-mark { font-size: 100px; }
  .diff-col { padding: 28px; }
  .strat-card { padding: 28px 24px; }
}

/* ==========================================================================
   16. DIVI MODULE BINDINGS
   Maps the design classes onto the exact markup Divi's modules output.
   ========================================================================== */

/* --- Buttons: Divi puts module_class on the wrapper, not the <a> --- */
.btn-inline { display: inline-block; margin: 0 12px 12px 0 !important; }
.btn-primary .et_pb_button,
.btn-primary .et_pb_button:hover {
  background: var(--grad-fire) !important;
  background-image: var(--grad-fire) !important;
  color: var(--paper) !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 16px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(232,52,28,0.3);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary .et_pb_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,52,28,0.45);
}
.btn-ghost .et_pb_button,
.btn-ghost .et_pb_button:hover {
  background: transparent !important;
  color: var(--paper) !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 100px !important;
  padding: 16px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  transition: all .3s ease;
}
.btn-ghost .et_pb_button:hover { background: rgba(255,255,255,0.05) !important; }
.cta-section .et_pb_button_module_wrapper { text-align: center; }

/* --- Sector counter runs across both grid rows --- */
.sectors-section { counter-reset: sector; }
.sectors-grid-row { counter-reset: none; }

/* --- Cards built as plain markup inside Divi Text modules --- */
.inc-cell {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 32px 24px;
  transition: background .3s ease;
  height: 100%;
}
.inc-cell:hover { background: var(--ink-2); }
.inc-cell .ic { font-size: 28px; display: block; margin-bottom: 14px; line-height: 1; }
.inc-cell h5 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.inc-cell p { font-size: 13px; color: rgba(245,241,234,0.6); line-height: 1.5; }
.inc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

/* Timeline */
.timeline-row .et_pb_text_inner,
.timeline-row {
  position: relative;
}
.timeline-row .et_pb_text_inner {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
}
.timeline-row.et_pb_text { padding-bottom: 0; }
.tl-marker { position: relative; padding-top: 8px; }
.tl-marker::before {
  content: "";
  display: block;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,43,0.15);
  position: relative; z-index: 2;
}
.tl-marker::after {
  content: "";
  position: absolute;
  left: 8px; top: 26px;
  width: 1px; height: calc(100% + 40px);
  background: linear-gradient(180deg, var(--orange), rgba(255,122,43,0.05));
}
.timeline-row.tl-last .tl-marker::after { display: none; }
.timeline-row.tl-last .tl-marker::before { background: var(--paper); box-shadow: 0 0 0 4px rgba(245,241,234,0.12); }
.tl-body { padding-bottom: 32px; }
.tl-meta {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--orange); margin-bottom: 8px; display: block;
}
.tl-body h4 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.tl-body p { font-size: 16px; color: rgba(245,241,234,0.7); line-height: 1.55; max-width: 620px; }

/* Related cards are anchors inside Text modules */
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 8px;
  color: var(--paper);
}
.related-card p { font-size: 14px; color: rgba(245,241,234,0.6); line-height: 1.55; }
.rc-arrow { display: block; margin-top: 18px; color: var(--accent, var(--orange)); font-size: 18px; }

/* Divi Text module wrappers shouldn't clip full-height cards */
.et_pb_column .et_pb_text.full-height,
.et_pb_column .et_pb_module.full-height { height: 100%; }
.et_pb_column .full-height .et_pb_text_inner { height: 100%; }

/* Section eyebrow inside a Text module */
.section-eyebrow-mod .et_pb_text_inner { display: block; }

/* Stats hover-fill needs the text module transparent */
.stats-row .et_pb_text { background: transparent; }

/* Divi Accordion: open toggle keeps transparent background */
.taurus-faq .et_pb_toggle_open,
.taurus-faq .et_pb_toggle_close { background-color: transparent !important; }

@media (max-width: 980px) {
  .inc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .inc-grid { grid-template-columns: 1fr; }
  .timeline-row .et_pb_text_inner { grid-template-columns: 40px 1fr; gap: 18px; }
}

/* ==========================================================================
   17. BUTTON OVERRIDES
   Divi puts module_class on the <a> and generates high-specificity inline CSS,
   so these need to match its selector weight.
   ========================================================================== */

.et_pb_button_module_wrapper {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
}
.et_pb_button.btn-inline { margin: 0 !important; }
.cta-section .et_pb_column { text-align: center; }

body #page-container .et_pb_section .et_pb_button.btn-primary,
body #page-container .et_pb_section .et_pb_button.btn-primary:hover {
  background-color: transparent !important;
  background-image: var(--grad-fire) !important;
  color: var(--paper) !important;
  border: 0 !important;
  border-radius: 100px !important;
  padding: 16px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0;
  box-shadow: 0 8px 24px rgba(232,52,28,0.3);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
body #page-container .et_pb_section .et_pb_button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,52,28,0.45);
}

body #page-container .et_pb_section .et_pb_button.btn-ghost,
body #page-container .et_pb_section .et_pb_button.btn-ghost:hover {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--paper) !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 100px !important;
  padding: 16px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0;
  transition: all .3s ease;
}
body #page-container .et_pb_section .et_pb_button.btn-ghost:hover {
  background-color: rgba(255,255,255,0.05) !important;
}

body #page-container .et_pb_section .et_pb_button.taurus-btn:after,
body #page-container .et_pb_section .et_pb_button.btn-primary:after,
body #page-container .et_pb_section .et_pb_button.btn-ghost:after {
  color: inherit;
  font-size: 1em;
  line-height: 1;
}

/* ==========================================================================
   18. NON-BUILDER TEMPLATES (blog posts, archives, search, 404)
   Builder pages sit under the floating nav; standard templates need the offset.
   ========================================================================== */

body:not(.et_pb_pagebuilder_layout) #page-container {
  padding-top: 120px !important;
}
body:not(.et_pb_pagebuilder_layout) #main-content { background-color: var(--ink); }
body:not(.et_pb_pagebuilder_layout) #main-content .container { padding-top: 40px; }

.single-post .entry-title,
.archive .entry-title,
.search .entry-title,
#main-content h1.entry-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.single-post .post-meta,
.archive .post-meta,
#main-content .post-meta,
#main-content .post-meta a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
}
#main-content .entry-content p,
#main-content .post-content p { color: rgba(245,241,234,0.85); line-height: 1.7; }
#sidebar, #sidebar .widget, #sidebar .widget li a { color: var(--paper); }
#sidebar .widget-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245,241,234,0.5);
}
#sidebar .widget li { border-bottom: 1px solid var(--line); padding: 8px 0; }

/* --- Divi Blog module on the Insights page --- */
.taurus-blog .et_pb_post {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s ease;
}
.taurus-blog .et_pb_post:hover {
  transform: translateY(-4px);
  border-color: rgba(232,52,28,0.3);
}
.taurus-blog .et_pb_post .entry-title,
.taurus-blog .et_pb_post .entry-title a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.taurus-blog .et_pb_post .entry-title a:hover { color: var(--orange); }
.taurus-blog .et_pb_post .post-meta,
.taurus-blog .et_pb_post .post-meta a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
}
.taurus-blog .et_pb_post p { font-size: 14px; color: rgba(245,241,234,0.65); line-height: 1.5; }
.taurus-blog .et_pb_post .more-link,
.taurus-blog .et_pb_post a.more-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.taurus-blog .et_pb_image_container img,
.taurus-blog .entry-featured-image-url img { border-radius: 12px; }
.taurus-blog .pagination a { color: var(--orange); font-family: var(--font-mono); }

/* 404 + search */
.error404 #main-content, .search-no-results #main-content { background-color: var(--ink); }
.et_pb_widget_area h4, .widget h4 { color: var(--paper); }

/* ==========================================================================
   19. CONTACT DETAILS (footer, CTA sections, contact page)
   ========================================================================== */

/* Footer contact block */
.foot-contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#main-footer .foot-contact a,
.foot-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-decoration: none;
  opacity: 0.85;
  padding: 0;
  transition: color .2s ease, opacity .2s ease;
}
#main-footer .foot-contact a:hover,
.foot-contact a:hover { color: var(--orange); opacity: 1; }
.foot-contact a .ic {
  color: var(--orange);
  font-size: 12px;
  width: 16px;
  flex: 0 0 16px;
}

/* CTA contact line */
.cta-contact {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,241,234,0.5) !important;
  margin-top: 18px !important;
}
.cta-contact a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,122,43,0.4);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.cta-contact a:hover { color: var(--orange); border-color: var(--orange); }
.cta-contact .sep { margin: 0 10px; color: var(--orange); }

/* Contact page "speak to us now" panel */
.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.contact-direct a {
  background: var(--ink-2);
  padding: 26px 28px;
  text-decoration: none;
  display: block;
  transition: background .3s ease;
}
.contact-direct a:hover { background: var(--ink-3); }
.contact-direct .cd-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.contact-direct .cd-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--paper);
  display: block;
  line-height: 1.2;
  word-break: break-word;
}
.contact-direct a:hover .cd-value { color: var(--orange); }

@media (max-width: 767px) {
  .contact-direct { grid-template-columns: 1fr; }
  .cta-contact .sep { display: block; height: 0; overflow: hidden; margin: 6px 0; }
}

/* ==========================================================================
   20. THE TAURUS GROUP — sister brand cards
   ========================================================================== */

.group-section { position: relative; }
.group-row .et_pb_column { margin-bottom: 0 !important; }

.brand-card {
  background: #131316;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 38px 44px;
  height: 100%;
  transition: border-color .35s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), background .35s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  background: var(--ink-3);
  border-color: var(--brand, var(--orange));
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}
.brand-mark {
  width: 62px; height: 62px;
  flex: 0 0 62px;
  border-radius: 14px;
  background: var(--brand, var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 34px -6px var(--brand, var(--orange));
  transition: box-shadow .35s ease;
}
.brand-card:hover .brand-mark { box-shadow: 0 0 46px -4px var(--brand, var(--orange)); }
.brand-mark svg { width: 30px; height: 30px; display: block; }

.brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.brand-name em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--brand, var(--orange));
}

.brand-card p {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(245,241,234,0.78);
  margin: 0;
}
.brand-card a {
  color: var(--brand, var(--orange));
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}
.brand-card a:hover { opacity: 0.75; }

/* Brand accents */
.brand-utility    { --brand: #f5a524; }
.brand-renewables { --brand: #7bb972; }
.brand-home       { --brand: #e6308a; }

@media (max-width: 980px) {
  .brand-card { padding: 32px 28px 36px; }
  .brand-head { gap: 16px; margin-bottom: 24px; }
  .brand-mark { width: 54px; height: 54px; flex: 0 0 54px; border-radius: 12px; }
  .brand-name { font-size: 23px; }
}
