/*
Theme Name:  Connectivity Intelligence
Theme URI:   https://connectivityintelligence.com
Author:      Yesway Ltd
Author URI:  https://yesway.co.uk
Description: Connectivity Intelligence — bold disruptive training theme for 5G, IoT and connected device education.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ci
Tags:        dark, custom-colors, custom-menu, featured-images, full-width-template, education, training, 5g, iot
*/

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --yw-black:   #07080f;
  --yw-deep:    #0e1018;
  --yw-ink:     #161824;
  --yw-indigo:  #3d2b8e;   /* primary — indigo, not purple */
  --yw-indigo2: #5540b5;
  --yw-teal:    #06b6d4;   /* CI cyan — bolder than Yesway teal */
  --yw-teal2:   #0891b2;
  --yw-signal:  #7c6fea;   /* mid-tone for glows */
  --yw-white:   #eef0f8;
  --yw-muted:   #8890b0;
  --yw-gold:    #f97316;   /* CI amber-orange — more disruptive */
  --yw-border:  rgba(100,120,220,0.14);
  --yw-font-display: 'Bebas Neue', sans-serif;
  --yw-font-ui:      'Rajdhani', sans-serif;
  --yw-font-body:    'Source Sans 3', sans-serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--yw-black);
  color: var(--yw-white);
  font-family: var(--yw-font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────
   BACKGROUND OVERRIDE
   Forces dark bg regardless of WP Customiser
   or plugin colour settings
───────────────────────────────────────── */
html,
body,
#page,
#content,
.site,
.wp-site-blocks {
  background-color: var(--yw-black) !important;
  background-image: none !important;
}


a { color: var(--yw-teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--yw-teal2); }

/* ─────────────────────────────────────────
   BACKGROUND FX
───────────────────────────────────────── */
.yw-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.yw-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(61,43,142,.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 85% 70%, rgba(20,184,166,.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 35% at 50% 105%, rgba(61,43,142,.18) 0%, transparent 55%);
}
/* dot-grid — lower contrast than before */
.yw-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(100,120,220,.18) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridPulse 10s ease-in-out infinite alternate;
}
@keyframes gridPulse { 0%{opacity:.35} 100%{opacity:.8} }

/* Spectrum waveform canvas — drawn by JS */
#yw-waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  opacity: .18;
}

/* ─────────────────────────────────────────
   WRAPPER
───────────────────────────────────────── */
.yw-wrap { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid var(--yw-border);
  backdrop-filter: blur(10px);
  background: rgba(8,8,16,.7);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.site-branding { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.site-branding svg { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text .site-title {
  font-family: var(--yw-font-display);
  font-size: 2rem; letter-spacing: .12em; color: var(--yw-white); line-height: 1;
}
.brand-text .site-tagline {
  font-family: var(--yw-font-ui);
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--yw-teal); line-height: 1; margin-top: 2px;
}

/* primary nav */
#primary-nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
#primary-nav a {
  font-family: var(--yw-font-ui); font-weight: 600;
  font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--yw-muted);
}
#primary-nav a:hover { color: var(--yw-teal); }
#primary-nav .nav-cta a {
  background: var(--yw-indigo); color: var(--yw-white);
  padding: .45rem 1.2rem;
  border-left: 3px solid var(--yw-teal);
}
#primary-nav .nav-cta a:hover { background: var(--yw-indigo2); color: var(--yw-white); }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--yw-teal); transition: .3s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero-section {
  min-height: 88vh; display: flex; align-items: center;
  padding: 5rem 2rem 4rem;
}
.hero-inner { max-width: 900px; }
.hero-kicker {
  font-family: var(--yw-font-ui); font-size: .75rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--yw-teal);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: .8rem;
  animation: fadeUp .8s ease both;
}
.hero-kicker::before { content:''; width:32px; height:1px; background:var(--yw-teal); }
.hero-headline {
  font-family: var(--yw-font-display);
  font-size: clamp(3.2rem,9vw,7rem); line-height: .92; letter-spacing: .04em;
  margin-bottom: 1.8rem; animation: fadeUp .8s .15s ease both;
}
.hero-headline em { font-style: normal; color: var(--yw-teal); }
.hero-body {
  font-size: 1.1rem; line-height: 1.75; color: rgba(240,240,248,.75);
  max-width: 560px; margin-bottom: 2.4rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }

@keyframes fadeUp {
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  font-family: var(--yw-font-ui); font-weight: 700;
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .85rem 1.8rem; display: inline-flex; align-items: center; gap: .65rem;
  cursor: pointer; border: none; text-decoration: none; transition: all .25s;
  position: relative;
}
/* Left-bar accent instead of clip-path parallelogram */
.btn-primary {
  background: var(--yw-indigo); color: var(--yw-white);
  border-left: 3px solid var(--yw-teal);
}
.btn-primary:hover {
  background: var(--yw-indigo2); color: var(--yw-white);
  border-left-color: var(--yw-teal2);
  transform: translateX(4px);
}
.btn-secondary {
  background: transparent; color: var(--yw-teal);
  border: 1px solid rgba(20,184,166,.45);
  border-left-width: 3px;
}
.btn-secondary:hover {
  border-color: var(--yw-teal);
  background: rgba(20,184,166,.07);
  color: var(--yw-teal);
}
.btn-white {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-left-width: 3px;
  border-left-color: var(--yw-teal);
}
.btn-white:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  display: flex;
  border-top: 1px solid var(--yw-border);
  border-bottom: 1px solid var(--yw-border);
}
.stat-item { flex: 1; padding: 1.6rem 2rem; border-right: 1px solid var(--yw-border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--yw-font-display); font-size: 2.4rem;
  color: var(--yw-teal); letter-spacing: .05em; line-height: 1;
}
.stat-label {
  font-family: var(--yw-font-ui); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yw-muted); margin-top: .3rem;
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-kicker {
  font-family: var(--yw-font-ui); font-size: .72rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--yw-teal);
  margin-bottom: .8rem; display: flex; align-items: center; gap: .8rem;
}
.section-kicker::before { content:''; width:24px; height:1px; background:var(--yw-teal); }
.section-title {
  font-family: var(--yw-font-display);
  font-size: clamp(2rem,4vw,3.5rem); letter-spacing: .05em; line-height: 1;
  margin-bottom: 3rem;
}

/* ─────────────────────────────────────────
   COURSES GRID
───────────────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(61,43,142,.15);
  border: 1px solid rgba(61,43,142,.25);
}
.course-card {
  background: var(--yw-deep); padding: 2rem;
  transition: background .3s; position: relative; overflow: hidden;
}
.course-card::after {
  content:''; position: absolute; bottom:0; left:0; right:0; height:2px;
  background: var(--yw-teal); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.course-card:hover { background: rgba(20,184,166,.06); }
.course-card:hover::after { transform: scaleX(1); }
.course-tier {
  font-family: var(--yw-font-ui); font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--yw-teal);
  margin-bottom: 1rem; display: inline-block;
  background: rgba(168,85,247,.12); padding: .2rem .6rem;
}
.course-icon {
  width: 44px; height: 44px; background: rgba(20,184,166,.12);
  border: 1px solid rgba(20,184,166,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.course-card h3 {
  font-family: var(--yw-font-ui); font-size: 1.2rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: .8rem; line-height: 1.2;
}
.course-card p { font-size: .88rem; line-height: 1.65; color: var(--yw-muted); margin-bottom: 1.5rem; }
.course-link {
  font-family: var(--yw-font-ui); font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yw-teal);
  display: inline-flex; align-items: center; gap: .5rem; transition: gap .2s;
}
.course-link:hover { gap: .9rem; color: var(--yw-teal2); }

/* ─────────────────────────────────────────
   CPD BAND
───────────────────────────────────────── */
.cpd-band {
  background: var(--yw-indigo); padding: 2rem 2.5rem;
  clip-path: polygon(20px 0%,100% 0%,calc(100% - 20px) 100%,0% 100%);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin: 2rem 0;
}
.cpd-band-title {
  font-family: var(--yw-font-display); font-size: 1.8rem; letter-spacing: .08em;
}
.cpd-band-sub { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .3rem; }

/* ─────────────────────────────────────────
   WHY YESWAY
───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.why-copy p {
  font-size: 1rem; line-height: 1.75; color: rgba(240,240,248,.7); margin-bottom: 1.2rem;
}
.features-list { display: flex; flex-direction: column; gap: 1.5px; background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.1); }
.feature-item {
  background: var(--yw-deep); padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1rem; transition: background .2s;
}
.feature-item:hover { background: rgba(20,184,166,.06); }
.feature-dot {
  width: 3px; height: 100%; min-height:40px; background: var(--yw-teal); flex-shrink: 0;
  margin-top: 0;
}
.feature-item strong {
  font-family: var(--yw-font-ui); font-weight: 700; font-size: .95rem;
  letter-spacing: .05em; text-transform: uppercase; display: block; margin-bottom: .25rem;
}
.feature-item span { font-size: .85rem; color: var(--yw-muted); }

/* ─────────────────────────────────────────
   BLOG / POSTS
───────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.post-card {
  background: var(--yw-deep); border: 1px solid var(--yw-border);
  overflow: hidden; transition: border-color .3s;
}
.post-card:hover { border-color: rgba(20,184,166,.5); }
.post-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-body { padding: 1.5rem; }
.post-meta {
  font-family: var(--yw-font-ui); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yw-teal); margin-bottom: .8rem;
}
.post-card h3 {
  font-family: var(--yw-font-ui); font-weight: 700;
  font-size: 1.1rem; letter-spacing: .03em; margin-bottom: .7rem; line-height: 1.3;
}
.post-card h3 a { color: var(--yw-white); }
.post-card h3 a:hover { color: var(--yw-teal); }
.post-card p { font-size: .87rem; color: var(--yw-muted); line-height: 1.6; margin-bottom: 1rem; }

/* ─────────────────────────────────────────
   SINGLE POST / PAGES
───────────────────────────────────────── */
.content-area { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.entry-header { margin-bottom: 2.5rem; }
.entry-title {
  font-family: var(--yw-font-display);
  font-size: clamp(2rem,5vw,3.5rem); letter-spacing: .05em; margin-bottom: 1rem;
}
.entry-meta {
  font-family: var(--yw-font-ui); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yw-teal);
}
.entry-content h2,.entry-content h3,.entry-content h4 {
  font-family: var(--yw-font-ui); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; margin: 2rem 0 .8rem; color: var(--yw-white);
}
.entry-content p { margin-bottom: 1.2rem; line-height: 1.8; color: rgba(240,240,248,.8); }
.entry-content ul,.entry-content ol { margin: 0 0 1.2rem 1.5rem; color: rgba(240,240,248,.8); }
.entry-content li { margin-bottom: .4rem; line-height: 1.7; }
.entry-content a { color: var(--yw-teal); border-bottom: 1px solid rgba(20,184,166,.3); }
.entry-content a:hover { border-color: var(--yw-teal); }
.entry-content blockquote {
  border-left: 3px solid var(--yw-teal); padding: 1rem 1.5rem;
  margin: 1.5rem 0; background: rgba(107,47,160,.08);
  font-style: italic; color: var(--yw-muted);
}

/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */
.with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.widget { background: var(--yw-deep); border: 1px solid var(--yw-border); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title {
  font-family: var(--yw-font-ui); font-size: .8rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yw-teal);
  margin-bottom: 1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--yw-border);
}
.widget ul { list-style: none; }
.widget ul li { padding: .4rem 0; border-bottom: 1px solid rgba(168,85,247,.06); font-size: .9rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--yw-muted); }
.widget ul li a:hover { color: var(--yw-teal); }

/* ─────────────────────────────────────────
   CONTACT FORM STYLING (CF7 / WPForms)
───────────────────────────────────────── */
.yw-form label {
  font-family: var(--yw-font-ui); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--yw-muted);
  display: block; margin-bottom: .4rem;
}
.yw-form input[type=text],
.yw-form input[type=email],
.yw-form textarea,
.yw-form select {
  width: 100%; background: var(--yw-deep);
  border: 1px solid var(--yw-border); color: var(--yw-white);
  padding: .75rem 1rem; font-family: var(--yw-font-body); font-size: .95rem;
  outline: none; transition: border-color .2s; margin-bottom: 1.2rem;
}
.yw-form input:focus,.yw-form textarea:focus { border-color: var(--yw-teal); }
.yw-form textarea { resize: vertical; min-height: 130px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#site-footer { border-top: 1px solid var(--yw-border); margin-top: 4rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: 3.5rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-about .site-title {
  font-family: var(--yw-font-display); font-size: 1.6rem;
  letter-spacing: .1em; margin-bottom: .8rem;
}
.footer-about p { font-size: .87rem; color: var(--yw-muted); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--yw-font-ui); font-size: .72rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--yw-teal);
  margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--yw-border);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: var(--yw-muted); font-size: .87rem; }
.footer-col ul li a:hover { color: var(--yw-teal); }
.footer-bottom {
  border-top: 1px solid var(--yw-border); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  font-size: .8rem; color: var(--yw-muted);
}
.footer-bottom a { color: var(--yw-muted); }
.footer-bottom a:hover { color: var(--yw-teal); }

/* ─────────────────────────────────────────
   WOOCOMMERCE OVERRIDES (if used)
───────────────────────────────────────── */
.woocommerce .button, .woocommerce button.button {
  background: var(--yw-indigo) !important; color: #fff !important;
  font-family: var(--yw-font-ui) !important; font-weight: 700 !important;
  letter-spacing: .15em !important; text-transform: uppercase !important;
  border: none !important; border-radius: 0 !important;
}
.woocommerce .button:hover { background: var(--yw-indigo2) !important; }
.woocommerce-loop-product__title { font-family: var(--yw-font-ui) !important; font-weight: 700 !important; }
.woocommerce .price { color: var(--yw-teal) !important; font-family: var(--yw-font-display) !important; font-size: 1.4rem !important; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  #primary-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,16,.97); padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid var(--yw-border); }
  #primary-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--yw-border); }
  .cpd-band { clip-path: none; }
  .with-sidebar { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.text-teal { color: var(--yw-teal); }
.text-muted  { color: var(--yw-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ─────────────────────────────────────────
   HERO SPLIT LAYOUT
───────────────────────────────────────── */
.hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy { max-width: 560px; }

.hero-diagram {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#yw-signal-diagram {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(100,120,220,.15);
  background: rgba(14,16,24,.7);
  backdrop-filter: blur(4px);
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
  font-family: var(--yw-font-ui);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yw-muted);
}
.trust-sep { color: var(--yw-teal); opacity: .5; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-diagram { height: 260px; order: -1; }
}

/* ─────────────────────────────────────────
   CPD BADGE GOLD ACCENT
───────────────────────────────────────── */
.cpd-band { background: linear-gradient(135deg, var(--yw-indigo) 0%, #2a1f6a 100%); }
.cpd-band-title { color: var(--yw-white); }

/* stat numbers — teal for primary, gold for CPD */
.stat-item:nth-child(2) .stat-num { color: var(--yw-gold); }

/* feature items — left bar instead of diamond dot */
.feature-item {
  gap: 1.2rem;
  align-items: stretch;
}

/* ─────────────────────────────────────────
   CI-SPECIFIC COMPONENTS
───────────────────────────────────────── */

/* Disruption banner — full-bleed bold statement */
.ci-disrupt-banner {
  padding: 2.2rem 0;
  border-top: 1px solid var(--yw-border);
  border-bottom: 1px solid var(--yw-border);
  margin: 0 0 0 0;
  background: rgba(6,182,212,0.04);
}
.ci-disrupt-banner .container {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.ci-disrupt-text {
  font-family: var(--yw-font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .04em;
  color: var(--yw-white);
}
.ci-disrupt-sub {
  font-family: var(--yw-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: .04em;
  color: var(--yw-teal);
}

/* Audience grid — 2×2 cards */
.ci-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.1);
  margin-top: 0;
}
.ci-audience-card {
  background: var(--yw-deep);
  padding: 2rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.ci-audience-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--yw-teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s;
}
.ci-audience-card:hover { background: rgba(6,182,212,0.05); }
.ci-audience-card:hover::after { transform: scaleY(1); }
.ci-audience-icon {
  width: 52px;
  height: 52px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.ci-audience-card h3 {
  font-family: var(--yw-font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  line-height: 1.2;
}
.ci-audience-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--yw-muted);
}

/* Footer brand link to Yesway */
.ci-sister-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--yw-font-ui);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yw-muted);
  margin-top: .8rem;
}
.ci-sister-brand a { color: var(--yw-teal); }
.ci-sister-brand a:hover { color: var(--yw-teal2); }

@media (max-width: 680px) {
  .ci-audience-grid { grid-template-columns: 1fr; }
  .ci-disrupt-banner .container { flex-direction: column; gap: .4rem; }
}
