/* ============================================================
   MarketingOB1 — styles.css
   ============================================================ */

/* CUSTOM PROPERTIES */
:root {
  --navy:       #121F32;
  --authority:  #0B1625;
  --mid:        #1E2F47;
  --deep-navy:  #0B1625;
  --mid-navy:   #121F32;
  --white:      #FFFFFF;
  --black:      #000000;
  --signal:     #2EE89A;
  --signal-dim: #1ABF78;
  --mist:       #F4F7F8;
  --cool-gray:  #6B7280;
  --cool-gray-light: #9CA3AF;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(18,31,50,0.1);

  --font-display: 'Barlow Condensed', 'Impact', Arial Narrow, sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --container: 1160px;
  --section-pad: 7rem 0;
  --section-pad-sm: 4rem 0;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 1rem; color: var(--navy); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool-gray);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--signal);
  color: var(--navy);
}
.btn-primary:hover { background: var(--signal-dim); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(18,31,50,0.25);
}
.btn-ghost-navy:hover {
  border-color: var(--navy);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--authority);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#site-nav.scrolled {
  background: rgba(11,22,37,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--signal);
  transition: width 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--signal);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--signal-dim); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--authority);
  z-index: 99;
  padding: 100px 2rem 2rem;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--signal); }
.mobile-menu .mobile-cta {
  margin-top: 2rem;
  background: var(--signal);
  color: var(--navy);
  text-align: center;
  border-radius: 4px;
  padding: 1rem;
  font-size: 1rem;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover { color: var(--navy); background: var(--signal-dim); }

/* ============================================================
   HERO
   ============================================================ */

#hero {
  min-height: 100vh;
  background: var(--authority);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 6rem;
}

/* Grain texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Decorative signal shape */
#hero::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(46,232,154,0.12);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-left { max-width: 640px; }

.hero-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.hero-avatar {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--mid);
  border: 1px solid rgba(46,232,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 7rem;
  color: var(--signal);
  letter-spacing: -0.02em;
  position: relative;
}

.hero-avatar::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(46,232,154,0.08);
}

.hero-avatar::after {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(46,232,154,0.05);
}

/* .hero-eyebrow removed */

.hero-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-headline .accent { color: var(--signal); }

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--cool-gray-light);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2.75rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative circle rings */
.hero-rings {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  pointer-events: none;
  opacity: 1;
}
.hero-rings circle[r="180"],
.hero-rings circle[r="140"],
.hero-rings circle[r="100"],
.hero-rings circle[r="60"] { fill: none; stroke: var(--signal); }

/* ============================================================
   TICKER
   ============================================================ */

#ticker {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-right: 2rem;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BACKGROUNDS + PADDING
   ============================================================ */

#about        { padding: var(--section-pad); background: var(--white); }
#helix        { padding: var(--section-pad); background: var(--navy); }
#speaking     { padding: var(--section-pad); background: var(--mist); }
#proof        { padding: var(--section-pad); background: var(--authority); }
#recognition  { padding: var(--section-pad); background: var(--mist); }
#digilu       { padding: var(--section-pad); background: var(--mist); }
#connect      { padding: var(--section-pad); background: var(--navy); }

/* ============================================================
   ABOUT
   ============================================================ */

#about {
  /* defined above */
}

.about-editorial {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 4rem;
  align-items: start;
}

/* Photo column */
.about-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.about-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(18,31,50,0.15));
}

/* Content column */
.about-editorial-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-editorial-header {
  padding-bottom: 2rem;
}

.about-editorial-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 1.75em;
}
.about-editorial-body p:last-child { margin-bottom: 0; }

.about-credentials {
  margin-top: 2rem;
}

.about-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-avatar {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  background: var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 6.5rem);
  color: var(--signal);
  letter-spacing: -0.02em;
  border: 1px solid rgba(46,232,154,0.15);
}

.about-photo-accent {
  display: none;
}

.about-label { margin-bottom: 1rem; }
.about-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.about-headline em {
  font-style: italic;
  font-weight: 300;
}

/* .about-body replaced by .about-editorial-body */

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.cred-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

/* ============================================================
   MARKETING HELIX
   ============================================================ */

#helix {
  position: relative;
  overflow: hidden;
}

#helix::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46,232,154,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.helix-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.helix-label { margin-bottom: 1rem; }
.helix-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.helix-headline .accent { color: var(--signal); }

.helix-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.helix-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1em;
}
.helix-body p:last-child { margin-bottom: 0; }

.helix-coming {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1.5rem;
}
.helix-coming::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* CSS Helix Visualization */
.helix-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
  position: relative;
}

.helix-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* ============================================================
   SPEAKING
   ============================================================ */

/* ====================================================
   IDEAS SECTION
   ==================================================== */
#ideas {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.ideas-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.ideas-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0.5rem 0 0;
}

.ideas-sub {
  color: var(--cool-gray);
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.ideas-list {
  border-top: 2px solid var(--navy);
}

a.idea-row {
  display: grid;
  grid-template-columns: 140px 1fr 20px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0.5rem 1.25rem 0;
  border-bottom: 1px solid rgba(18,31,50,0.1);
  text-decoration: none;
  transition: background 0.15s, padding-left 0.15s;
  border-radius: 4px;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
}

a.idea-row:hover {
  background: rgba(18,31,50,0.03);
}

a.idea-row:hover .idea-row-title {
  color: var(--signal-dim);
}

a.idea-row:hover .idea-row-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--signal-dim);
}

.idea-row-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cool-gray-light);
  flex-shrink: 0;
}

.idea-row-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
  transition: color 0.15s;
}

.idea-row-arrow {
  font-size: 1rem;
  color: var(--cool-gray-light);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s, color 0.15s;
}

@media (max-width: 960px) {
  .ideas-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 540px) {
  a.idea-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .idea-row-arrow { display: none; }
}

#speaking {
  /* padding + bg defined above */
}

.speaking-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.speaking-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.speaking-feature-img {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.speaking-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaking-feature-text .speaking-headline { color: var(--navy); }
@media (max-width: 900px) {
  .speaking-feature { grid-template-columns: 1fr; gap: 2rem; }
  .speaking-feature-img { aspect-ratio: 16/9; }
}

.speaking-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}

.speaking-sub {
  font-size: 1rem;
  color: var(--cool-gray);
  line-height: 1.7;
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.topic-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--signal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(18,31,50,0.08);
}

.topic-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topic-icon svg { color: var(--signal); }

.topic-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.topic-desc {
  font-size: 0.875rem;
  color: var(--cool-gray);
  line-height: 1.65;
}

/* Speaking booking strip */
.speaking-book {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.speaking-book-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.speaking-book-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.speaking-book-venues {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.speaking-cta-wrap {
  flex: none;
}

/* ============================================================
   PROOF
   ============================================================ */

#proof {
  /* padding + bg defined above */
}

.proof-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.stat-block {
  background: var(--mid);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--signal);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Recognition block */
.recognition-block {
  margin-bottom: 2.5rem;
}

.recognition-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.recognition-sub {
  font-size: 1rem;
  color: var(--cool-gray);
}

/* Credential cards */
.cred-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.cred-card {
  background: var(--white);
  border: 1px solid rgba(18,31,50,0.07);
  border-top: 3px solid var(--signal);
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(18,31,50,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(18,31,50,0.1);
}

.cred-card-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal);
  margin-bottom: 1rem;
}

.cred-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cred-card-body {
  font-size: 0.875rem;
  color: var(--cool-gray);
  line-height: 1.65;
}

/* Stratus Clean featured case study */
.stratus-case {
  background: var(--white);
  border: 1px solid rgba(18,31,50,0.07);
  border-top: 3px solid var(--signal);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(18,31,50,0.06);
  margin-top: 1.5rem;
}

.stratus-case-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(18,31,50,0.07);
}

.stratus-awards {
  text-align: center;
}

.stratus-awards-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cool-gray);
  margin-bottom: 1.5rem;
}

.stratus-awards-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stratus-awards-badges img {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(18,31,50,0.12));
  transition: transform 0.2s;
}

.stratus-awards-badges img:hover {
  transform: translateY(-4px);
}

.stratus-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
  mix-blend-mode: multiply;
}

.stratus-case-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.stratus-case-body {
  font-size: 0.9rem;
  color: var(--cool-gray);
  line-height: 1.7;
}

.stratus-before-after {
  width: 100%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 4px 20px rgba(18,31,50,0.1);
}

.stratus-case-caption {
  font-size: 0.75rem;
  color: var(--cool-gray-light);
  margin-top: 0.75rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

#testimonials { padding: var(--section-pad); background: var(--navy); }

.testimonials-header { margin-bottom: 3rem; }
.testimonials-header .section-label { color: var(--signal); margin-bottom: 0.75rem; }

.testimonials-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
}

/* Featured quote */
.testimonial-featured {
  background: rgba(46,232,154,0.06);
  border: 1px solid rgba(46,232,154,0.2);
  border-left: 4px solid var(--signal);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  margin: 0 0 3rem;
}

.testimonial-featured-quote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-featured-attr {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-featured-attr strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--signal);
}
.testimonial-featured-attr span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

/* Testimonial grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(46,232,154,0.2);
  background: rgba(255,255,255,0.06);
}

.testimonial-quote {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.testimonial-attr strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-attr span {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ============================================================
   DIGILU
   ============================================================ */

#digilu {
  /* padding + bg defined above */
}

.digilu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.digilu-text .section-label { margin-bottom: 1rem; }
.digilu-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.digilu-body p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.25em;
}
.digilu-body p:last-child { margin-bottom: 0; }

.digilu-cta-wrap { margin-top: 2rem; }

.digilu-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.digilu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--signal);
}

.digilu-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.75rem;
}

.digilu-card-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.digilu-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================================
   CONNECT (LinkedIn + Contact)
   ============================================================ */

#connect {
  position: relative;
  overflow: hidden;
}

#connect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46,232,154,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.connect-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.connect-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 0.95;
  margin: 0.75rem 0 1.25rem;
}

.connect-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.contact-option:hover { color: var(--white); }
.contact-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.contact-option:hover .contact-option-icon { background: rgba(46,232,154,0.15); }

/* LinkedIn Primary Card */
.linkedin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 0;
  transition: border-color 0.2s, background 0.2s;
}
.linkedin-card:hover {
  border-color: rgba(46,232,154,0.3);
  background: rgba(46,232,154,0.04);
}

.linkedin-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.linkedin-icon-wrap {
  width: 48px;
  height: 48px;
  background: #0077B5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.linkedin-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.linkedin-card-handle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.linkedin-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.linkedin-primary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1.25rem;
}
.linkedin-primary-tag::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
}

/* Secondary Socials */
.social-secondary {
  margin-top: 1.75rem;
  text-align: center;
}

.social-secondary-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.social-icons-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-icon-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */

#site-footer {
  background: var(--authority);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 1.5rem;
}

.footer-logo { height: auto; width: auto; max-height: 64px; }

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   REVEAL ANIMATIONS (JS adds .revealed)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1023px) {
  :root { --section-pad: 5rem 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }

  .about-editorial { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; margin-bottom: 2.5rem; padding-top: 0; }
  .about-photo { max-width: 200px; margin: 0 auto; }
  .about-editorial-header { padding-bottom: 1.5rem; }
  .about-credentials { margin-top: 1.5rem; }

  .helix-inner { grid-template-columns: 1fr; gap: 3rem; }
  .helix-visual { order: -1; height: 300px; }
  .helix-svg { max-width: 260px; }

  .speaking-grid { grid-template-columns: repeat(2, 1fr); }
  .speaking-book { flex-wrap: wrap; gap: 1.5rem; }
  .speaking-cta-wrap { margin-left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .stratus-case-top { grid-template-columns: 1fr; gap: 2rem; }
  .stratus-awards-badges img { height: 100px; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-featured { padding: 2rem; }

  .digilu-inner { grid-template-columns: 1fr; gap: 3rem; }

  .connect-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  :root { --section-pad: 4rem 0; }

  .container { padding: 0 1.25rem; }

  .hero-headline { font-size: clamp(3.5rem, 17vw, 6rem); }

  .speaking-grid { grid-template-columns: 1fr; }
  .speaking-book { flex-direction: column; align-items: flex-start; padding: 1.75rem 1.5rem; }
  .speaking-book .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 1.75rem 1rem; }
  .stat-number { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  .cred-cards-grid { grid-template-columns: 1fr; }
  .recognition-block { margin-top: 3rem; }
  .stratus-case { padding: 1.75rem; }
  .stratus-awards-badges { gap: 1rem; }
  .stratus-awards-badges img { height: 80px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { padding: 1.5rem; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 1rem; }

}

/* Prevent hero rings from causing horizontal scroll on narrow viewports */
@media (max-width: 768px) {
  .hero-rings { display: none; }
  #hero::after { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker-track { animation: none; }
  .helix-coming::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Speaking Page ── */
.speaking-hero {
  padding: 9rem 0 3rem;
  background: var(--deep-navy);
}
.speaking-venues-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.venue-dot { opacity: 0.3; }
.speaking-topics-section { background: var(--mid-navy); padding: 5rem 0; }
.speaking-book-section { background: var(--deep-navy); padding: 5rem 0; }

/* Text colors for dark-background sections */
.speaking-hero .speaking-headline,
.speaking-hero h1,
.speaking-hero h2 { color: var(--white); }
.speaking-hero .speaking-sub { color: rgba(255,255,255,0.72); }
.speaking-hero .section-label { color: var(--signal); }
.speaking-topics-section h1,
.speaking-topics-section h2 { color: var(--white); }
.speaking-topics-section .section-label { color: var(--signal); }
.speaking-book-section h1,
.speaking-book-section h2 { color: var(--white); }
.speaking-book-section .section-label { color: var(--signal); }
.speaking-book-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .speaking-book-page { grid-template-columns: 1fr; gap: 2rem; }
}
.speaking-book-page-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}
.speaking-book-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.speaking-book-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  padding-left: 1.25rem;
  position: relative;
}
.speaking-book-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: rgba(46,232,154,0.7);
}
.speaking-venues-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 2rem;
}
.speaking-venues-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.speaking-venues-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.speaking-venues-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.6rem;
}
.speaking-venues-list li:last-child { border-bottom: none; padding-bottom: 0; }

/* ── Footer Ecosystem ── */
.footer-ecosystem {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-ecosystem-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-ecosystem-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 0.75rem;
}
.footer-ecosystem-list p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 0.35rem;
}
.footer-ecosystem-list p:last-child { margin-bottom: 0; }
.footer-ecosystem-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-ecosystem-list a:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer-ecosystem-cta { flex-shrink: 0; }
@media (max-width: 600px) {
  .footer-ecosystem-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Speaking Photos ── */
.speaking-photos-section { padding: 3rem 0 3rem; }
.speaking-photos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.625rem;
  height: 480px;
}
.speaking-photo-featured {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.speaking-photo-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaking-photo-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 100%;
}
.speaking-photo-secondary img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  min-height: 0;
}
@media (max-width: 768px) {
  .speaking-photos-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .speaking-photo-featured { aspect-ratio: 16/9; height: auto; }
  .speaking-photo-secondary { flex-direction: row; height: auto; }
  .speaking-photo-secondary img { aspect-ratio: 4/3; flex: 1; }
}
@media (max-width: 480px) {
  .speaking-photo-secondary { flex-direction: column; }
  .speaking-photo-secondary img { aspect-ratio: 16/9; }
}

/* ── Ideas Page ── */
.idea-full-item {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.idea-full-item--alt { background: var(--mist); }
.idea-full-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .idea-full-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.idea-full-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-dim);
  margin-bottom: 1rem;
  display: block;
}
.idea-full-headline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.idea-full-diagram {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.85;
}
.idea-full-diagram img { width: 100%; display: block; }
.idea-full-body p {
  font-size: 1rem;
  color: var(--cool-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.idea-full-body p:last-child { margin-bottom: 0; }
.idea-full-link-text {
  font-size: 0.875rem;
  color: var(--cool-gray-light);
  margin-top: 1.5rem;
}
.idea-full-link-text a {
  color: var(--signal-dim);
  text-decoration: none;
}
.idea-full-link-text a:hover { color: var(--signal); text-decoration: underline; }

/* ── Booking Form ── */
.booking-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 480px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field select option { background: var(--deep-navy); color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--signal); }
.form-field textarea { resize: vertical; min-height: 96px; }
.booking-form button[type="submit"] {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  background: var(--signal);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.booking-form button[type="submit"]:hover { background: var(--signal-dim); }
@media (max-width: 600px) {
  .booking-form { max-width: 100%; }
  .booking-form button[type="submit"] { width: 100%; text-align: center; }
}
