*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #F0CB51;
  --cyan: #00e5ff;
  --black: #000000;
  --cream: #e8d9bc;
  --white: #ffffff;
  --page-zoom: 1;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

@media (min-width: 681px) {
  :root { --page-zoom: 1.2; }
}

.page {
  zoom: var(--page-zoom);
}

@supports not (zoom: 1) {
  .page {
    transform: scale(var(--page-zoom));
    transform-origin: top center;
    width: calc(100% / var(--page-zoom));
  }
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #111;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .logo-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-text .logo-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── SOCIAL ICONS ── */
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: opacity 0.2s;
  line-height: 0;
}

.social-icons a:hover { opacity: 0.65; }

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--black);
  border: none;
  padding: 10px 22px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cyan:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.45);
  padding: 10px 22px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { opacity: 0.85; border-color: rgba(0, 229, 255, 0.75); }

/* ── LAYOUT SYSTEM ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 40px);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 34px;
}

.section-kicker {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bdbdbd;
  text-align: center;
  margin-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 18px 18px;
}

.card-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--gold);
}

.card p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 14px;
}

.muted { color: #bdbdbd; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

/* ── MASTHEAD (TNM-STYLE) ── */
.masthead {
  position: relative;
  overflow: hidden;
  padding: 74px 0 52px;
  background: var(--black);
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.74) 52%, rgba(0,0,0,0.86) 100%),
    url("images/cali-flag-grey.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
}

.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 360px at 18% 25%, rgba(0, 229, 255, 0.10), transparent 60%),
    radial-gradient(900px 420px at 75% 65%, rgba(240, 203, 81, 0.12), transparent 62%);
  pointer-events: none;
  opacity: 0.95;
}

.masthead .container { position: relative; }

.masthead h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.06;
  font-size: clamp(32px, 4.6vw, 56px);
  margin-bottom: 12px;
}

.masthead .lede {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: #dedede;
  max-width: 52ch;
}

.masthead .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.signup-card {
  background: rgba(10, 10, 10, 0.90);
  border: 1px solid rgba(240, 203, 81, 0.14);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.signup-card .signup-label {
  color: #d6d6d6;
  margin-bottom: 6px;
}

.signup-card .signup-sub {
  max-width: none;
  margin-bottom: 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stat {
  background: rgba(0,0,0,0.35);
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 10px 10px;
}

.stat .num {
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  line-height: 1.1;
}

.stat .lbl {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bdbdbd;
  margin-top: 4px;
}

/* ── MAIN COPY (homepage) ── */
.main-copy {
  background: var(--black);
  padding: 64px 0 64px;
}

.main-copy .inner {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.main-copy .kicker {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bbbbbb;
  margin-bottom: 10px;
}

.main-copy h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1.04;
  margin-bottom: 14px;
}

.main-copy .lead {
  font-size: 18px;
  font-weight: 600;
  color: #d6d6d6;
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 18px;
}

.main-copy .lede-lines {
  display: grid;
  gap: 8px;
  max-width: 860px;
  margin: 10px 0 22px;
}

.main-copy .lede-lines p {
  font-size: 15px;
  font-weight: 600;
  color: #cfcfcf;
  line-height: 1.6;
}

.main-copy .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 34px;
}

.main-copy h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 28px);
  margin: 30px 0 10px;
  color: var(--gold);
  line-height: 1.2;
}

.main-copy p {
  font-size: 15px;
  color: #d0d0d0;
  line-height: 1.75;
  max-width: 920px;
  margin-bottom: 12px;
}

.main-copy .quote-line {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-top: 18px;
}

.main-copy .lower {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid #1a1a1a;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.main-copy .lower h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 8px;
}

/* Only style inline links here; don't override button text */
.main-copy .lower a:not(.btn-cyan):not(.btn-outline) {
  color: var(--cyan);
  text-decoration: none;
}

.main-copy .lower a:not(.btn-cyan):not(.btn-outline):hover { opacity: 0.85; }

/* ── FORM ── */
.signup-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.signup-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.signup-heading .we-need { color: var(--gold); }

.signup-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #cccccc;
  line-height: 1.5;
  max-width: 320px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.signup-form input {
  background: #111;
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.signup-form input:focus { border-color: var(--cyan); }
.signup-form input::placeholder { color: #FFFFFF; }

.btn-submit {
  background: var(--cyan);
  color: var(--black);
  border: none;
  padding: 13px 30px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.85; }

/* ── VIDEO SECTION (homepage) ── */
.video-section {
  background: var(--cream);
  padding: 64px 48px 72px;
  color: var(--black);
}

.video-section h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.5vw, 45px);
  text-align: center;
  margin-bottom: 44px;
  color: var(--black);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.video-embeds {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid #ccc;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FAQ ACCORDION (faq page) ── */
/* Full-page FAQ text (faq page) */
div.faq-full-text {
  max-width: 920px;
  margin: 0 auto;
}

div.faq-full-text h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--gold);
  line-height: 1.2;
  margin: 30px 0 10px;
}

div.faq-full-text p {
  font-size: 15px;
  color: #d0d0d0;
  line-height: 1.75;
  margin: 0 0 12px;
}

div.faq-full-text p + p { margin-top: 14px; }

div.faq-full-text a { color: var(--cyan); }
div.faq-full-text a:hover { opacity: 0.85; }

details.faq {
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.88);
  padding: 14px 16px;
}

details.faq + details.faq { margin-top: 12px; }

details.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #fff;
}

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

details.faq summary .q {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin-right: 10px;
}

details.faq .a {
  margin-top: 10px;
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 14px;
}

.note {
  margin-top: 16px;
  text-align: center;
  color: #bdbdbd;
  line-height: 1.6;
  font-size: 14px;
}

.note a { color: var(--cyan); text-decoration: none; }
.note a:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid #1a1a1a;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #999;
  line-height: 1.55;
  margin-bottom: 10px;
  max-width: 240px;
}

.footer-col a {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  nav { padding: 12px 20px; }
  .logo img { height: 52px; }
  .container { padding-left: 24px; padding-right: 24px; }
  .masthead { padding: 56px 0 44px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .main-copy { padding: 54px 24px 50px; }
  .main-copy .lower { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .video-section { padding: 48px 24px 56px; }
  footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .footer-nav { flex-direction: column; gap: 20px; }
}

