/* YES Solar Brokers — "Golden Hour Ledger" design system
   Palette drawn from the YES logo: sky blue, ink black, solar gold. */

:root {
  --ink: #0f1e2e;
  --ink-2: #1b3048;
  --ink-soft: #40536a;
  --paper: #faf6ee;
  --paper-2: #f2ebdb;
  --white: #ffffff;
  --sky: #3d9bd3;
  --sky-deep: #1f6ea3;
  --shadow-sm: 0 2px 10px rgba(15, 30, 46, 0.07);
  --sky-ink: #1d6fa8;
  --sun: #f0b429;
  --sun-deep: #d99a10;
  --lime: #d9e021;
  --line: rgba(15, 30, 46, 0.14);
  --line-strong: rgba(15, 30, 46, 0.28);
  --shadow: 0 18px 50px -18px rgba(15, 30, 46, 0.35);
  --radius: 14px;
  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1240px;
}

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--sun); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: var(--sky-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: #cfe3f2;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 8px; padding-bottom: 8px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; }
.topbar .tb-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-left svg { width: 15px; height: 15px; color: var(--sun); }
a.phone { display: inline-flex; align-items: center; gap: 8px; }
a.phone svg { width: 18px; height: 18px; }
.topbar .tb-wa { color: var(--lime); }
@media (max-width: 640px) {
  .topbar .tb-mail { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 12px; padding-bottom: 12px;
}
.brand img { height: 54px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { text-decoration: none; border-bottom-color: var(--sun); }
.nav a.active { border-bottom-color: var(--sky); }
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 15.5px; letter-spacing: 0.01em; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 2px solid var(--ink);
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}
.btn-sun { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.btn-sun:hover { background: var(--sun-deep); border-color: var(--sun-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

@media (min-width: 921px) { .nav > .btn { display: none; } }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

@media (max-width: 920px) {
  /* backdrop-filter on the header would make it the containing block for the
     fixed-position menu, trapping the overlay inside the header bar */
  .site-header { backdrop-filter: none; background: var(--paper); }
  .nav {
    position: fixed; inset: 0; top: 0;
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
    flex-direction: column; justify-content: center; align-items: center; gap: 8px;
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s; z-index: 60;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav a {
    color: #fff; font-size: 28px; font-family: var(--font-display); font-weight: 700;
    padding: 10px 0; border-bottom: 0;
  }
  .nav a.active { color: var(--sun); }
  .nav a:hover { color: var(--sun); }
  .nav > .btn { margin-top: 26px; font-size: 18px; background: var(--sun); color: var(--ink); border-color: var(--sun); }
  .nav::after {
    content: "1-800-815-9358 · ask@yes4.info";
    color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 34px; letter-spacing: 0.03em;
  }
  .nav-close {
    position: absolute; top: 20px; right: 20px; font-size: 26px;
    width: 48px; height: 48px; border-radius: 999px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer; color: #fff; line-height: 1;
  }
  .nav-toggle { display: block; z-index: 55; }
  .header-cta { display: none; }
}
@media (min-width: 921px) { .nav-close { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden; background: var(--ink);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../assets/img/hero-bestwestern.jpg");
  background-size: cover; background-position: center 30%;
  opacity: 0.55;
}
@media (max-width: 760px) {
  .hero::before { background-image: url("../assets/img/hero-bestwestern-960.jpg"); }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(240, 180, 41, 0.38), transparent 60%),
    linear-gradient(180deg, rgba(15, 30, 46, 0.55) 0%, rgba(15, 30, 46, 0.82) 78%, var(--ink) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: clamp(72px, 11vw, 150px); padding-bottom: clamp(60px, 9vw, 120px); }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 22px;
}
.hero .kicker::before { content: ""; width: 34px; height: 2px; background: var(--sun); }
.hero h1 { font-size: clamp(42px, 6.4vw, 84px); max-width: 13ch; }
.hero h1 em { font-style: normal; color: var(--sun); }
.hero p.lead {
  margin-top: 24px; font-size: clamp(17px, 2vw, 21px); max-width: 52ch; color: #dbe7f1;
}
.hero .hero-ctas { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-stats .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 26px; padding-bottom: 34px;
}
.stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 42px); color: var(--sun); letter-spacing: -0.02em;
}
.stat .lbl { font-size: 13.5px; color: #b9cddd; margin-top: 2px; }
@media (max-width: 760px) { .hero-stats .wrap { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.section { padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(56px, 8vw, 110px); }
.section-tint { background: var(--paper-2); }
.section-ink { background: var(--ink); color: #e8eff6; }
.section-ink h2 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky-ink); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sun); }
.section-ink .eyebrow { color: var(--sky); }

h2.title { font-size: clamp(30px, 4.4vw, 52px); max-width: 22ch; }
.sub { margin-top: 16px; color: var(--ink-soft); max-width: 62ch; font-size: 17.5px; }
.section-ink .sub { color: #b9cddd; }

/* Broker definition feature */
.defn {
  border-left: 4px solid var(--sun); padding: 6px 0 6px 26px; margin-top: 34px;
}
.defn .word { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; }
.defn .pron { color: var(--ink-soft); font-size: 16px; margin-left: 10px; }
.defn .pos { font-style: italic; color: var(--sky-ink); margin-top: 6px; }
.defn .meaning { margin-top: 4px; max-width: 56ch; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.vs-cards { display: grid; gap: 14px; margin-top: 8px; }
.vs-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.vs-card.highlight { background: var(--ink); color: #e8eff6; border-color: var(--ink); }
.vs-card h4 { font-size: 18px; margin-bottom: 6px; }
.vs-card.highlight h4 { color: var(--sun); }
.vs-card p { font-size: 15.5px; color: var(--ink-soft); }
.vs-card.highlight p { color: #c6d6e4; }

/* Audience cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }
.aud-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.aud-card .tag {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ink); color: var(--sun); padding: 12px 22px;
}
.aud-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.aud-card h3 { font-size: 22px; }
.aud-card p { font-size: 15.5px; color: var(--ink-soft); flex: 1; }
.aud-card .link { font-weight: 700; font-size: 15px; color: var(--sky-ink); }
.aud-card .link::after { content: " →"; }

/* Services band */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius);
  padding: 26px 24px; background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}
.svc:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-4px); }
.svc .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; color: var(--sun);
}
.svc .ico svg { width: 26px; height: 26px; }
.svc h3 { font-size: 19px; margin-top: 12px; color: #fff; }
.svc p { font-size: 14.5px; color: #b9cddd; margin-top: 8px; }
.svc .price { color: var(--sun); font-family: var(--font-display); font-weight: 800; }
.svc a.link { color: var(--sun); font-weight: 700; font-size: 14.5px; display: inline-block; margin-top: 12px; }

/* Projects */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 880px) { .proj-grid { grid-template-columns: 1fr; } }
.proj { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--ink); }
.proj img { height: 320px; width: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.3s ease, opacity 0.3s ease; }
.proj:hover img { transform: scale(1.04); opacity: 1; }
.proj .meta {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(15, 30, 46, 0.92) 62%);
  color: #fff;
}
.proj .meta h3 { font-size: 20px; }
.proj .meta .kw { color: var(--sun); font-family: var(--font-display); font-weight: 800; }
.proj .meta .note { font-size: 13.5px; color: #c6d6e4; margin-top: 2px; }
.proj .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--sun); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px;
  padding: 7px 12px; border-radius: 999px; letter-spacing: 0.04em;
}

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; position: relative; display: flex; flex-direction: column;
}
.testi::before {
  content: "“"; font-family: var(--font-display); font-size: 74px; line-height: 0.6;
  color: var(--sun); display: block; margin-bottom: 18px;
}
.testi p { font-size: 15px; color: var(--ink-2); flex: 1; }
.testi .who { margin-top: 18px; font-weight: 700; font-family: var(--font-display); }
.testi .role { font-size: 13.5px; color: var(--ink-soft); }

/* Google reviews strip */
.grev {
  margin-top: 40px; border-top: 1px solid var(--line-strong); padding-top: 32px;
  display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: start;
}
@media (max-width: 880px) { .grev { grid-template-columns: 1fr; } }
.grev-score { font-family: var(--font-display); font-weight: 800; font-size: 34px; }
.grev-score .stars { color: var(--sun-deep); font-size: 22px; letter-spacing: 2px; }
.grev-sub { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.grev-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .grev-quotes { grid-template-columns: 1fr; } }
.grev-quotes blockquote { font-size: 14.5px; color: var(--ink-2); }
.grev-quotes cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700; font-size: 13px; color: var(--ink-soft); }

/* Podcast */
/* ---------- Monitor landing ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: 1fr; } }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.stat .big { font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--sky-deep); line-height: 1; }
.stat p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }
.pull-quote {
  margin-top: 34px; font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--ink); border-left: 4px solid var(--sun); padding-left: 18px;
}

.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
@media (max-width: 760px) { .shot-grid { grid-template-columns: 1fr; } }
.shot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.shot img { width: 100%; display: block; }
.shot .cap { padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--ink); border-top: 1px solid var(--line); }
.mshot-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 760px) { .mshot-row { grid-template-columns: repeat(2, 1fr); } }
.mshot-row img { width: 100%; border-radius: 18px; box-shadow: var(--shadow); display: block; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; align-items: stretch; }
@media (max-width: 860px) { .plan-grid { grid-template-columns: 1fr; max-width: 430px; margin-left: auto; margin-right: auto; } }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.plan-hot { border: 2px solid var(--sun); box-shadow: var(--shadow); }
.plan .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--ink); font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.1em; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-family: var(--font-display); font-size: 19px; }
.plan .price { font-family: var(--font-display); font-weight: 800; font-size: 34px; margin-top: 10px; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.plan .note { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; }
.plan ul { list-style: none; margin: 18px 0 22px; padding: 0; flex: 1; }
.plan li { font-size: 14.5px; padding: 6px 0 6px 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--lime-deep, #4a7c2f); font-weight: 800; }
.plan .btn { width: 100%; text-align: center; }

.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
@media (max-width: 700px) { .trust-row { grid-template-columns: 1fr; } }
.trust {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 16px 18px; color: #dcE8f2; font-size: 14.5px;
  display: flex; gap: 12px; align-items: flex-start;
}
.trust svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--sun); margin-top: 2px; }

.faq-list { margin-top: 36px; max-width: 780px; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0; margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 18px 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 14px; font-size: 24px; color: var(--sky-deep); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 20px 18px; font-size: 15px; color: var(--ink-soft); }

/* ---------- Video facades ---------- */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 920px) { .vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .vid-grid { grid-template-columns: 1fr; } }
.vid {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; background: #0a1622; box-shadow: var(--shadow);
  border: 0; padding: 0; display: block; width: 100%; text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vid:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -18px rgba(0, 0, 0, 0.6); }
.vid.playing, .vid.playing:hover { transform: none; cursor: default; }
.vid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.vid:hover img { transform: scale(1.04); }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 999px; background: var(--sun);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.35); transition: transform 0.15s ease; z-index: 2;
}
.vid:hover .vid-play { transform: translate(-50%, -50%) scale(1.08); }
.vid-play::before {
  content: ""; margin-left: 4px;
  border-left: 18px solid var(--ink); border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.vid-play::after {
  content: ""; position: absolute; inset: -10px; border-radius: 999px;
  border: 2px solid rgba(240, 180, 41, 0.6); opacity: 0;
}
.vid:hover .vid-play::after { animation: playring 1.1s ease-out infinite; }
@keyframes playring {
  0% { transform: scale(0.72); opacity: 0.9; }
  100% { transform: scale(1.28); opacity: 0; }
}
.vid-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 34px 16px 12px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(4, 16, 28, 0.85));
  font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.3;
}
.vid-cap small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: rgba(255,255,255,0.75); }
.vid.playing .vid-play, .vid.playing .vid-cap, .vid.playing img { display: none; }
.vid-feature { grid-column: 1 / -1; }
@media (min-width: 921px) { .vid-feature { grid-column: span 2; grid-row: span 2; } }

.pod-tile {
  max-width: 300px; margin-top: 28px; padding: 26px 26px 22px;
  border-radius: var(--radius); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow);
}
.pod-tile .on-air {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--sun);
}
.pod-tile .on-air::before {
  content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--sun);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.pod-tile .wm {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: 30px; line-height: 1.05; margin: 10px 0 4px;
}
.pod-tile .wm span { color: var(--sky); }
.pod-tile .by { font-size: 13px; color: #9db4c6; }
.eq { display: flex; align-items: flex-end; gap: 5px; height: 34px; margin-top: 18px; }
.eq i {
  width: 6px; border-radius: 3px; background: linear-gradient(180deg, var(--sun), var(--sky));
  animation: eqb 1.1s ease-in-out infinite alternate;
}
.eq i:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.eq i:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.eq i:nth-child(4) { height: 100%; animation-delay: 0.1s; }
.eq i:nth-child(5) { height: 50%; animation-delay: 0.25s; }
.eq i:nth-child(6) { height: 80%; animation-delay: 0.4s; }
.eq i:nth-child(7) { height: 35%; animation-delay: 0.2s; }
@keyframes eqb { from { transform: scaleY(0.4); } to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) {
  .eq i, .pod-tile .on-air::before { animation: none; }
}

.testi-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 999px; flex: 0 0 46px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: 0.02em;
}
.avatar-a { background: var(--sky); color: #fff; }
.avatar-b { background: var(--sun); color: var(--ink); }
.avatar-c { background: var(--ink); color: var(--sun); }
.avatar-photo { width: 54px; height: 54px; flex: 0 0 54px; object-fit: cover; border: 2px solid var(--sun); }
.testi-head .who { margin: 0; }
.testi-head .role { margin: 0; }
.testi .stars-sm { color: var(--sun-deep); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }

.pod-list { display: grid; gap: 14px; }
.pod {
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05); padding: 18px 20px;
}
.pod-t { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; }
.pod-d { font-size: 13px; color: #9db4c6; margin: 3px 0 10px; }
.pod audio { width: 100%; height: 36px; }

/* Partners */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 60px); margin-top: 40px; }
.partners img { height: 52px; width: auto; filter: grayscale(1); opacity: 0.65; transition: 0.2s; }
.partners img:hover { filter: none; opacity: 1; }

/* Financing rows */
.fin-row {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; align-items: center;
  border-top: 1px solid var(--line-strong); padding: 30px 0;
}
.fin-row:last-of-type { border-bottom: 1px solid var(--line-strong); }
.fin-row .pct { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 44px); color: var(--sky-ink); }
.fin-row h3 { font-size: 21px; }
.fin-row p { color: var(--ink-soft); font-size: 15.5px; margin-top: 6px; max-width: 64ch; }
.fin-row .go { font-weight: 700; white-space: nowrap; }
@media (max-width: 720px) { .fin-row { grid-template-columns: 1fr; gap: 8px; } }

/* Pillars (inspections) */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.pillar .n { font-family: var(--font-display); font-weight: 800; color: var(--sun-deep); font-size: 15px; letter-spacing: 0.12em; }
.pillar .n svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 21px; margin-top: 10px; }
.pillar p { color: var(--ink-soft); font-size: 15.5px; margin-top: 10px; }

/* FAQ */
.faq { margin-top: 44px; border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; color: var(--sun-deep); transition: transform 0.2s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 24px; color: var(--ink-soft); max-width: 72ch; }

/* CTA band */
.cta-band { background: var(--sun); }
.cta-band .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(40px, 6vw, 70px);
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 44px); max-width: 20ch; }
.cta-band .phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 3vw, 30px); color: var(--ink); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
label.f-label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.02em; }
label.f-label .req { color: var(--sun-deep); }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 10px;
  padding: 13px 14px; transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(61, 155, 211, 0.22);
}
textarea { resize: vertical; min-height: 110px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-soft); }
.consent input { width: auto; margin-top: 3px; }
.form-msg { display: none; margin-top: 14px; padding: 14px 16px; border-radius: 10px; font-size: 15px; }
.form-msg.ok { display: block; background: #e7f4e4; color: #1e5c2a; border: 1px solid #bfe0b8; }
.form-msg.err { display: block; background: #fdeaea; color: #8c1d1d; border: 1px solid #f0c4c4; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9cddd; font-size: 14.5px; }
.site-footer .wrap { padding-top: 60px; padding-bottom: 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.site-footer a { color: #dbe7f1; }
.site-footer a:hover { color: var(--sun); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.foot-brand img { height: 60px; margin-bottom: 16px; background: #fff; border-radius: 10px; padding: 6px 10px; }
.foot-brand p { max-width: 34ch; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #7f97ab;
}

/* ---------- Reveal animation (gated on html.js so no-JS visitors see everything) ---------- */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; } .rv-d2 { transition-delay: 0.16s; } .rv-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .vid, .vid:hover { transform: none; }
  .vid:hover .vid-play::after { animation: none; }
}

/* Subtle film grain on dark sections for depth */
.section-ink, .page-hero, .hero { position: relative; }
.section-ink::after, .page-hero::after, .hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
}
.section-ink > .wrap, .page-hero > .wrap, .hero > .wrap { position: relative; z-index: 2; }

/* Page hero (interior pages) */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 90% -20%, rgba(240, 180, 41, 0.3), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; padding-top: clamp(56px, 8vw, 100px); padding-bottom: clamp(48px, 7vw, 90px); }
.page-hero h1 { font-size: clamp(34px, 5.4vw, 64px); max-width: 18ch; }
.page-hero .lead { margin-top: 18px; color: #c6d6e4; max-width: 58ch; font-size: 18px; }
.price-chip {
  display: inline-block; background: var(--sun); color: var(--ink); border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; padding: 10px 20px; font-size: 17px; margin-top: 24px;
}
