/* ═══════════════════════════════════════════════════════
   tonybeal.net — style.v12.css
   Primary stylesheet for index.html
   Source: style.main.pretty.css (generated from minified inline CSS in index.html)
   Sections organized for maintainability
   ═══════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY & FONTS
   ═══════════════════════════════════════════════════════ */

@font-face {
  font-family:'Inter';
  font-display:swap;
  src:local('Inter');
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE STYLES
   ═══════════════════════════════════════════════════════ */

*,*::before,*::after {
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html {
  scroll-behavior:smooth;
  font-size:16px;
}
body {
  font-family:'Inter',sans-serif;
  background-color:#0F172A;
  color:#F1F5F9;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  max-width:100%;
  display:block;
}
ul {
  list-style:none;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════ */

.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS & LAYOUT
   ═══════════════════════════════════════════════════════ */

.section {
  padding:96px 24px;
}
.section-white {
  background-color:#FFFFFF;
  color:#1E293B;
}
.section-gray {
  background-color:#F8FAFC;
  color:#1E293B;
}
.section-dark {
  background-color:#0F172A;
  color:#F1F5F9;
}
.section-title {
  font-size:clamp(28px,4vw,42px);
  font-weight:800;
  text-align:center;
  margin-bottom:12px;
  letter-spacing:-0.02em;
}
.section-title.text-left {
  text-align:left;
}
.section-sub {
  font-size:18px;
  color:#94A3B8;
  text-align:center;
  margin-bottom:56px;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}
.section-white .section-title,.section-gray .section-title {
  color:#1E293B;
}
.section-white .section-sub,.section-gray .section-sub {
  color:#64748B;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.site-nav {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background-color:rgba(15,23,42,0.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:box-shadow 0.3s ease;
}
.nav-scrolled {
  box-shadow:0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
}
.nav-brand {
  font-size:20px;
  font-weight:800;
  background:linear-gradient(135deg,#60A5FA 0%,#818CF8 50%,#60A5FA 100%);
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-0.02em;
  animation:titleShimmer 5s linear infinite;
  display:block;
  line-height:1.1;
}
.nav-brand-wrap {
  display:flex;
  flex-direction:column;
  gap:1px;
  text-decoration:none;
}
.nav-brand-tag {
  font-size:10px;
  font-weight:500;
  color:#475569;
  letter-spacing:0.04em;
  text-transform:uppercase;
  white-space:nowrap;
}
.nav-available-badge {
  font-size:11px;
  font-weight:700;
  color:#34D399;
  background:rgba(52,211,153,0.1);
  border:1px solid rgba(52,211,153,0.25);
  border-radius:999px;
  padding:3px 10px;
  white-space:nowrap;
}
.nav-links {
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-links a:not(.btn) {
  font-size:14px;
  font-weight:500;
  color:#94A3B8;
  transition:color 0.2s;
}
.nav-links a:not(.btn):hover {
  color:#F1F5F9;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.2s ease;
  border:2px solid transparent;
  white-space:nowrap;
  font-family:'Inter',sans-serif;
}
.btn-primary {
  background-color:#2563EB;
  color:#FFFFFF;
  border-color:#2563EB;
}
.btn-primary:hover {
  background-color:#1D4ED8;
  border-color:#1D4ED8;
  transform:translateY(-1px);
  box-shadow:0 4px 16px rgba(37,99,235,0.4);
}
.btn-outline {
  background-color:transparent;
  color:#F1F5F9;
  border-color:rgba(241,245,249,0.3);
}
.btn-outline:hover {
  border-color:#F1F5F9;
  background-color:rgba(241,245,249,0.08);
}
.btn-ghost {
  background-color:transparent;
  color:#94A3B8;
  border-color:transparent;
}
.btn-ghost:hover {
  color:#F1F5F9;
  background-color:rgba(255,255,255,0.06);
}
.btn-sm {
  padding:7px 16px;
  font-size:13px;
}
.btn-lg {
  padding:14px 32px;
  font-size:16px;
  border-radius:10px;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */

.hero {
  min-height:100vh;
  padding-top:72px;
  display:flex;
  align-items:center;
  background-color:#0F172A;
  background-image:radial-gradient(ellipse 80% 60% at 60% 30%,rgba(99,102,241,0.18) 0%,transparent 55%),radial-gradient(ellipse 50% 40% at 20% 70%,rgba(37,99,235,0.12) 0%,transparent 50%),radial-gradient(rgba(37,99,235,0.12) 1px,transparent 1px);
  background-size:100% 100%,100% 100%,32px 32px;
  position:relative;
  overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute;
  top:20%;
  left:30%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(37,99,235,0.08) 0%,transparent 70%);
  border-radius:50%;
  animation:heroOrb 8s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes heroOrb {
  from {
    transform:translate(0,0) scale(1);
    opacity:0.6;
  }
  to {
    transform:translate(60px,-40px) scale(1.15);
    opacity:1;
  }
}
.hero-container {
  max-width:1200px;
  margin:0 auto;
  padding:80px 24px;
  display:grid;
  grid-template-columns:60fr 40fr;
  gap:60px;
  align-items:center;
  width:100%;
  position:relative;
  z-index:1;
}
.hero-text {
  display:flex;
  flex-direction:column;
  gap:20px;
}
.overline {
  font-size:12px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#60A5FA;
  display:flex;
  align-items:center;
  gap:8px;
}
.status-dot {
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#34D399;
  flex-shrink:0;
  box-shadow:0 0 0 0 rgba(52,211,153,0.5);
  animation:statusPing 2s ease-out infinite;
}
@keyframes statusPing {
  0% {
    transform:scale(1);
    opacity:0.7;
  }
  70% {
    transform:scale(2.5);
    opacity:0;
  }
  100% {
    transform:scale(1);
    opacity:0;
  }
}
.hero-title {
  font-size:clamp(32px,5vw,56px);
  font-weight:900;
  color:#FFFFFF;
  line-height:1.0;
  letter-spacing:-0.03em;
}
.hero-title em {
  font-style:normal;
  background:linear-gradient(90deg,#60A5FA 0%,#818CF8 50%,#34D399 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% auto;
  animation:titleShimmer 4s linear infinite;
}
@keyframes titleShimmer {
  0% {
    background-position:0% center;
  }
  100% {
    background-position:200% center;
  }
}
.hero-eyebrow {
  font-size:14px;
  font-weight:600;
  color:#60A5FA;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.hero-subtitle {
  font-size:18px;
  font-weight:500;
  color:#94A3B8;
  line-height:1.4;
}
.hero-body {
  font-size:16px;
  color:#CBD5E1;
  line-height:1.7;
  max-width:520px;
}
.hero-btns {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}
.hero-metrics {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:16px;
}
.metric-card {
  background:rgba(30,41,59,0.8);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:4px;
  backdrop-filter:blur(8px);
  transition:border-color 0.3s,box-shadow 0.3s,transform 0.2s;
}
.metric-card:hover {
  border-color:rgba(37,99,235,0.5);
  box-shadow:0 0 24px rgba(37,99,235,0.2);
  transform:translateY(-2px);
}
.metric-number {
  font-family:'JetBrains Mono',monospace;
  font-size:32px;
  font-weight:600;
  color:#FFFFFF;
  display:inline;
  line-height:1.1;
}
.metric-suffix {
  font-family:'JetBrains Mono',monospace;
  font-size:24px;
  font-weight:600;
  color:#60A5FA;
  display:inline;
}
.metric-prefix {
  font-family:'JetBrains Mono',monospace;
  font-size:20px;
  font-weight:600;
  color:#60A5FA;
  display:inline;
}
.metric-label {
  font-size:12px;
  color:#64748B;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.06em;
  margin-top:4px;
}
.hero-photo-col {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}
.hero-photo-frame {
  width:320px;
  height:320px;
  border-radius:50%;
  border:4px solid #2563EB;
  box-shadow:0 0 0 8px rgba(37,99,235,0.12),0 0 80px rgba(37,99,235,0.35),0 32px 64px rgba(0,0,0,0.5);
  overflow:hidden;
  flex-shrink:0;
  position:relative;
}
.hero-photo {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 15%;
  filter:contrast(1.05) brightness(1.02);
}
.location-badge {
  background:rgba(30,41,59,0.8);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:999px;
  padding:8px 20px;
  font-size:13px;
  color:#94A3B8;
  backdrop-filter:blur(8px);
  white-space:nowrap;
}

/* ═══════════════════════════════════════════════════════
   PHILOSOPHY / ABOUT
   ═══════════════════════════════════════════════════════ */

.philosophy-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1200px;
  margin:0 auto;
}
.philosophy-card {
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:36px 28px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  transition:transform 0.2s,box-shadow 0.2s;
}
.philosophy-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
}
.philosophy-icon {
  font-size:36px;
  margin-bottom:16px;
  display:block;
}
.philosophy-title {
  font-size:20px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:10px;
}
.philosophy-body {
  font-size:15px;
  color:#64748B;
  line-height:1.65;
}
.problem-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:900px;
  margin:0 auto;
}
.problem-block {
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:32px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.problem-num {
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:#2563EB;
  letter-spacing:0.1em;
  margin-bottom:10px;
}
.problem-title {
  font-size:20px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:10px;
}
.problem-body {
  font-size:15px;
  color:#64748B;
  line-height:1.65;
}
.meet-tony-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
  max-width:1100px;
  margin:0 auto;
}
.tony-photo {
  width:100%;
  border-radius:20px;
  box-shadow:0 24px 64px rgba(37,99,235,0.18),0 8px 24px rgba(0,0,0,0.12);
  object-fit:cover;
  object-position:center top;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.tony-photo:hover {
  transform:translateY(-4px);
  box-shadow:0 32px 80px rgba(37,99,235,0.25),0 12px 32px rgba(0,0,0,0.15);
}
.tony-bio {
  display:flex;
  flex-direction:column;
  gap:20px;
}
.tony-bio p {
  font-size:16px;
  color:#475569;
  line-height:1.75;
}
.tony-quote {
  border-left:4px solid #2563EB;
  padding:16px 24px;
  background:#F1F5F9;
  border-radius:0 8px 8px 0;
  font-size:17px;
  font-style:italic;
  font-weight:500;
  color:#1E293B;
  margin:8px 0;
}
.approach-steps {
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:8px;
}
.approach-step {
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.step-num {
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:#FFFFFF;
  background:#2563EB;
  border-radius:6px;
  padding:4px 10px;
  flex-shrink:0;
  margin-top:2px;
}
.approach-step strong {
  font-size:15px;
  font-weight:700;
  color:#1E293B;
  display:block;
  margin-bottom:2px;
}
.approach-step p {
  font-size:14px;
  color:#64748B;
  margin:0;
  line-height:1.5;
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO / WORK
   ═══════════════════════════════════════════════════════ */

.portfolio-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:1100px;
  margin:0 auto;
}
.portfolio-card {
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:32px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  transition:transform 0.2s,box-shadow 0.2s;
}
.portfolio-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(0,0,0,0.1);
}
.chart-svg {
  width:100px;
  height:60px;
  margin-bottom:20px;
}
.card-title {
  font-size:18px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:10px;
}
.card-desc {
  font-size:14px;
  color:#64748B;
  line-height:1.65;
  margin-bottom:16px;
}
.card-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.card-tag {
  font-size:12px;
  font-weight:600;
  color:#2563EB;
  background:#EFF6FF;
  border:1px solid #BFDBFE;
  border-radius:999px;
  padding:3px 12px;
}

/* ═══════════════════════════════════════════════════════
   RESULTS & METRICS
   ═══════════════════════════════════════════════════════ */

.results-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}
.result-card {
  background:rgba(30,41,59,0.6);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:32px 24px;
  text-align:center;
  transition:transform 0.2s,box-shadow 0.2s;
}
.result-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(37,99,235,0.2);
}
.result-number {
  font-family:'JetBrains Mono',monospace;
  font-size:36px;
  font-weight:600;
  color:#60A5FA;
  display:block;
  margin-bottom:8px;
  line-height:1;
}
.result-label {
  font-size:14px;
  font-weight:700;
  color:#F1F5F9;
  margin-bottom:10px;
  display:block;
}
.result-desc {
  font-size:13px;
  color:#94A3B8;
  line-height:1.55;
}

/* ═══════════════════════════════════════════════════════
   SYSTEMS
   ═══════════════════════════════════════════════════════ */

.systems-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}
.system-col {
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:28px 24px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.system-col-title {
  font-size:15px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:2px solid #2563EB;
}
.system-list {
  display:flex;
  flex-direction:column;
  gap:8px;
}
.system-list li {
  font-size:14px;
  color:#475569;
  display:flex;
  align-items:center;
  gap:8px;
}
.system-list li::before {
  content:'→';
  color:#2563EB;
  font-weight:700;
  flex-shrink:0;
}
.process-steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  max-width:1100px;
  margin:0 auto;
  position:relative;
}
.process-step {
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:32px 24px;
  text-align:center;
  margin:0 8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  position:relative;
}
.process-step:not(:last-child)::after {
  content:'→';
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  color:#2563EB;
  font-weight:700;
  z-index:1;
}
.step-number {
  font-family:'JetBrains Mono',monospace;
  font-size:40px;
  font-weight:600;
  color:#EFF6FF;
  display:block;
  margin-bottom:12px;
  line-height:1;
}
.step-title {
  font-size:16px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:10px;
}
.step-desc {
  font-size:13px;
  color:#64748B;
  line-height:1.6;
}
.tech-grid {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  max-width:900px;
  margin:0 auto;
}
.tech-badge {
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:#2563EB;
  background:#EFF6FF;
  border:1.5px solid #BFDBFE;
  border-radius:8px;
  padding:8px 18px;
  transition:all 0.2s;
}
.tech-badge:hover {
  background:#2563EB;
  color:#FFFFFF;
  border-color:#2563EB;
}

/* ═══════════════════════════════════════════════════════
   DASHBOARD MOCKUPS
   ═══════════════════════════════════════════════════════ */

.dashboard-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1100px;
  margin:0 auto;
}
.dashboard-panel {
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:28px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.panel-title {
  font-size:15px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:16px;
}
.panel-metric {
  font-family:'JetBrains Mono',monospace;
  font-size:14px;
  font-weight:600;
  color:#2563EB;
  margin-top:12px;
  display:block;
}
.dashboard-panel svg {
  width:100%;
  height:auto;
}
.service-list {
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:560px;
  margin:0 auto;
}
.service-item {
  font-size:16px;
  color:#CBD5E1;
  display:flex;
  align-items:center;
  gap:12px;
}

/* ═══════════════════════════════════════════════════════
   VISIBILITY / LINKEDIN / NEWSLETTER
   ═══════════════════════════════════════════════════════ */

.visibility-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1000px;
  margin:0 auto;
}
.vis-card {
  text-align:center;
  background:rgba(30,41,59,0.5);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:32px 20px;
}
.vis-number {
  font-family:'JetBrains Mono',monospace;
  font-size:32px;
  font-weight:600;
  color:#60A5FA;
  display:block;
  margin-bottom:8px;
}
.vis-label {
  font-size:13px;
  color:#94A3B8;
  font-weight:500;
}
.vis-growth {
  display:block;
  font-size:11px;
  color:#34D399;
  font-weight:600;
  margin-top:6px;
}
.newsletter-feature {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:48px;
  margin-top:56px;
  background:rgba(30,41,59,0.4);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:20px;
  padding:40px;
}
.nl-badge {
  display:inline-block;
  background:rgba(37,99,235,0.2);
  border:1px solid rgba(37,99,235,0.3);
  border-radius:999px;
  padding:4px 14px;
  font-size:12px;
  font-weight:600;
  color:#93C5FD;
  margin-bottom:16px;
}
.nl-title {
  font-size:28px;
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
}
.nl-desc {
  font-size:15px;
  color:#94A3B8;
  line-height:1.7;
  margin-bottom:24px;
}
.nl-demo-label {
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#94A3B8;
  margin-bottom:12px;
}
.nl-demographics {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:16px;
}
.nl-demo-item {
  display:flex;
  align-items:center;
  gap:10px;
}
.nl-demo-bar-wrap {
  flex:1;
  height:6px;
  background:rgba(255,255,255,0.06);
  border-radius:999px;
  overflow:hidden;
}
.nl-demo-bar {
  height:100%;
  background:linear-gradient(90deg,#2563EB,#6366F1);
  border-radius:999px;
}
.nl-demo-title {
  font-size:13px;
  color:#94A3B8;
  min-width:160px;
}
.nl-demo-pct {
  font-size:13px;
  font-weight:700;
  color:#60A5FA;
  font-family:'JetBrains Mono',monospace;
  min-width:32px;
  text-align:right;
}
.nl-btns {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.nl-stats-card {
  background:rgba(15,23,42,0.6);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:16px;
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:0;
}
.nl-stat-row {
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nl-stat-row:first-child {
  padding-top:0;
}
.nl-stat-num {
  font-family:'JetBrains Mono',monospace;
  font-size:28px;
  font-weight:700;
  color:#60A5FA;
  min-width:80px;
}
.nl-stat-label {
  font-size:13px;
  color:#64748B;
  line-height:1.5;
}
.nl-stat-label em {
  color:#34D399;
  font-style:normal;
  font-weight:600;
}
@media (max-width:900px) {
  .newsletter-feature {
    grid-template-columns:1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   BOOKS / READING
   ═══════════════════════════════════════════════════════ */

.books-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  max-width:1100px;
  margin:0 auto;
}
.book-cover {
  border-radius:8px;
  padding:28px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:200px;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  transition:transform 0.2s;
}
.book-cover:hover {
  transform:translateY(-6px) scale(1.02);
}
.book-title {
  font-size:15px;
  font-weight:700;
  color:#FFFFFF;
  margin-bottom:4px;
  line-height:1.3;
}
.book-author {
  font-size:12px;
  color:rgba(255,255,255,0.65);
}
.bc1 {
  background-color:#1E3A5F;
}
.bc2 {
  background-color:#2D1B4E;
}
.bc3 {
  background-color:#1A3A2A;
}
.bc4 {
  background-color:#3A1A1A;
}
.bc5 {
  background-color:#1A2A3A;
}
.bc6 {
  background-color:#2A3A1A;
}
.bc7 {
  background-color:#3A2A1A;
}
.bc8 {
  background-color:#1A1A3A;
}

/* ═══════════════════════════════════════════════════════
   OPPORTUNITIES / CTA
   ═══════════════════════════════════════════════════════ */

.opportunity-rows {
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:800px;
  margin:0 auto 32px;
}
.opportunity-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:20px 28px;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.opp-role {
  font-size:16px;
  font-weight:600;
  color:#1E293B;
}
.opp-tags {
  display:flex;
  gap:8px;
}
.opp-tag {
  font-size:12px;
  font-weight:600;
  color:#6366F1;
  background:#EEF2FF;
  border:1px solid #C7D2FE;
  border-radius:999px;
  padding:3px 12px;
}
.location-line {
  text-align:center;
  font-size:15px;
  color:#64748B;
  margin-bottom:40px;
}
.action-cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:800px;
  margin:0 auto;
}
.action-card {
  display:block;
  background:#FFFFFF;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  transition:all 0.2s;
  color:#1E293B;
}
.action-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(37,99,235,0.15);
  border-color:#2563EB;
}
.action-card strong {
  font-size:17px;
  font-weight:700;
  display:block;
  margin-bottom:6px;
  color:#1E293B;
}
.action-card span {
  font-size:13px;
  color:#64748B;
}
.cta-center {
  text-align:center;
  max-width:700px;
  margin:0 auto;
}
.cta-center .section-title {
  margin-bottom:16px;
}
.cta-center p {
  font-size:17px;
  color:#94A3B8;
  margin-bottom:40px;
  line-height:1.7;
}
.cta-btns {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.site-footer {
  background-color:#0F172A;
  border-top:1px solid rgba(255,255,255,0.08);
  padding:48px 24px;
}
.footer-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
}
.footer-brand strong {
  display:block;
  font-size:18px;
  font-weight:800;
  background:linear-gradient(135deg,#60A5FA 0%,#6366F1 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:4px;
}
.footer-brand span {
  font-size:13px;
  color:#64748B;
}
.footer-links {
  display:flex;
  gap:24px;
}
.footer-links a {
  font-size:14px;
  color:#64748B;
  transition:color 0.2s;
}
.footer-links a:hover {
  color:#F1F5F9;
}
.footer-copy {
  font-size:13px;
  color:#94A3B8;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */

.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.6s ease,transform 0.6s ease;
}
.revealed {
  opacity:1;
  transform:translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

@media (max-width:900px) {
  .testimonials-grid {
    grid-template-columns:1fr;
  }
  .ways-grid {
    grid-template-columns:1fr;
  }
  .newsletter-feature {
    grid-template-columns:1fr;
  }
}
@media (max-width:768px) {
  .section {
    padding:56px 20px;
  }
  .nav-links {
    display:none;
  }
  .nav-hamburger {
    display:flex;
  }
  .hero-container {
    grid-template-columns:1fr;
    padding:40px 20px 56px;
    gap:36px;
  }
  .hero-photo-col {
    order:-1;
  }
  .hero-photo-frame {
    width:200px;
    height:200px;
  }
  .hero-metrics {
    grid-template-columns:1fr 1fr;
  }
  .philosophy-grid {
    grid-template-columns:1fr;
  }
  .problem-grid {
    grid-template-columns:1fr;
  }
  .meet-tony-grid {
    grid-template-columns:1fr;
    gap:36px;
  }
  .portfolio-grid {
    grid-template-columns:1fr;
  }
  .results-grid {
    grid-template-columns:1fr 1fr;
  }
  .systems-grid {
    grid-template-columns:1fr 1fr;
  }
  .process-steps {
    grid-template-columns:1fr;
    gap:16px;
  }
  .process-step {
    margin:0;
  }
  .process-step:not(:last-child)::after {
    display:none;
  }
  .dashboard-grid {
    grid-template-columns:1fr;
  }
  .visibility-grid {
    grid-template-columns:1fr 1fr;
  }
  .books-grid {
    grid-template-columns:1fr 1fr;
  }
  .opportunity-row {
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .action-cards {
    grid-template-columns:1fr;
  }
  .footer-inner {
    flex-direction:column;
    text-align:center;
  }
  .footer-links {
    flex-wrap:wrap;
    justify-content:center;
  }
}
@media (max-width:480px) {
  .section {
    padding:48px 16px;
  }
  .hero-container {
    padding:32px 16px 48px;
    gap:28px;
  }
  .hero-title {
    font-size:28px;
    letter-spacing:-0.02em;
  }
  .hero-subtitle {
    font-size:16px;
  }
  .hero-body {
    font-size:15px;
  }
  .hero-photo-frame {
    width:160px;
    height:160px;
  }
  .hero-metrics {
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .metric-number {
    font-size:24px;
  }
  .metric-suffix {
    font-size:18px;
  }
  .metric-prefix {
    font-size:15px;
  }
  .metric-card {
    padding:14px;
  }
  .hero-btns {
    flex-direction:column;
    gap:10px;
  }
  .hero-btns .btn {
    width:100%;
    justify-content:center;
    padding:14px 20px;
    font-size:15px;
  }
  .section-title {
    font-size:24px;
  }
  .section-sub {
    font-size:16px;
  }
  .results-grid {
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .result-number {
    font-size:26px;
  }
  .visibility-grid {
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .vis-number {
    font-size:24px;
  }
  .books-grid {
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .systems-grid {
    grid-template-columns:1fr;
  }
  .portfolio-grid {
    grid-template-columns:1fr;
  }
  .newsletter-feature {
    padding:24px 20px;
  }
  .nl-title {
    font-size:22px;
  }
  .nl-stats-card {
    padding:20px;
  }
  .nl-stat-num {
    font-size:22px;
    min-width:64px;
  }
  .ways-card {
    padding:24px 20px;
  }
  .philosophy-card,.problem-block,.portfolio-card,.process-step,.dashboard-panel {
    padding:24px 20px;
  }
  .timeline-item {
    flex-direction:column;
    gap:8px;
    padding-left:20px;
  }
  .timeline::before {
    left:0;
  }
  .timeline-year {
    text-align:left;
    min-width:unset;
  }
  .timeline-content::before {
    left:-26px;
    top:-28px;
  }
  .opportunity-rows {
    margin-bottom:24px;
  }
  .opportunity-row {
    padding:16px 18px;
  }
  .cta-btns {
    flex-direction:column;
    align-items:stretch;
  }
  .cta-btns .btn {
    width:100%;
    justify-content:center;
  }
  .btn-lg {
    padding:14px 24px;
    font-size:15px;
  }
  .nav-inner {
    padding:0 16px;
  }
  .systems-marketing-grid {
    grid-template-columns:1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION — MOBILE HAMBURGER MENU
   ═══════════════════════════════════════════════════════ */

.nav-hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  z-index:1001;
}
.nav-hamburger span {
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:all 0.25s;
}
.nav-mobile-menu {
  display:none;
  flex-direction:column;
  gap:4px;
  background:#0F172A;
  border-top:1px solid rgba(255,255,255,0.08);
  padding:16px 20px 20px;
}
.nav-mobile-menu a {
  color:#CBD5E1;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-mobile-menu a:last-child {
  border-bottom:none;
}
.nav-mobile-menu.open {
  display:flex;
}

/* ═══════════════════════════════════════════════════════
   HERO — ADDITIONAL COMPONENTS
   ═══════════════════════════════════════════════════════ */

.hero-proof-bar {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.proof-pill {
  font-size:12px;
  font-weight:600;
  color:#93C5FD;
  background:rgba(37,99,235,0.12);
  border:1px solid rgba(37,99,235,0.25);
  border-radius:999px;
  padding:4px 12px;
  white-space:nowrap;
}
#scroll-progress {
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0%;
  background:linear-gradient(90deg,#2563EB,#6366F1);
  z-index:9999;
  transition:width 0.1s linear;
}
.cursor {
  display:inline-block;
  color:#2563EB;
  animation:blink 1s infinite;
  font-weight:300;
  margin-left:2px;
}
@keyframes blink {
  0%,50% {
    opacity:1;
  }
  51%,100% {
    opacity:0;
  }
}
.portfolio-card {
  transition:transform 0.15s ease,box-shadow 0.2s ease;
  will-change:transform;
}
.portfolio-card:hover {
  box-shadow:0 20px 48px rgba(37,99,235,0.25);
}

/* ═══════════════════════════════════════════════════════
   CAREER TIMELINE
   ═══════════════════════════════════════════════════════ */

.timeline {
  position:relative;
  max-width:800px;
  margin:0 auto;
}
.timeline::before {
  content:'';
  position:absolute;
  left:90px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(180deg,#2563EB,#6366F1,#2563EB);
  opacity:0.3;
}
.timeline-item {
  display:flex;
  gap:40px;
  margin-bottom:48px;
  position:relative;
}
.timeline-year {
  min-width:80px;
  font-family:'JetBrains Mono',monospace;
  font-size:14px;
  font-weight:600;
  color:#2563EB;
  padding-top:4px;
  text-align:right;
}
.timeline-content {
  background:#F8FAFC;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:20px 24px;
  flex:1;
  position:relative;
}
.timeline-content::before {
  content:'';
  position:absolute;
  left:-28px;
  top:12px;
  width:12px;
  height:12px;
  background:#2563EB;
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 0 3px rgba(37,99,235,0.2);
}
.timeline-content h3 {
  font-size:16px;
  font-weight:700;
  color:#1E293B;
  margin-bottom:8px;
}
.timeline-content p {
  font-size:14px;
  color:#64748B;
  line-height:1.7;
  margin:0;
}
@media (max-width:600px) {
  .timeline::before {
    left:0;
  }
  .timeline-item {
    flex-direction:column;
    gap:8px;
    padding-left:20px;
  }
  .timeline-year {
    text-align:left;
  }
  .timeline-content::before {
    left:-26px;
    top:-28px;
  }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */

.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card {
  background:#fff;
  border:1px solid #E2E8F0;
  border-radius:16px;
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:20px;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  transition:transform 0.2s,box-shadow 0.2s;
}
.testimonial-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(37,99,235,0.12);
}
.testimonial-quote {
  font-size:15px;
  color:#334155;
  line-height:1.75;
  font-style:italic;
  flex:1;
}
.testimonial-quote::before {
  content:'\201C';
  font-size:48px;
  line-height:0;
  color:#2563EB;
  opacity:0.3;
  vertical-align:-0.5em;
  margin-right:4px;
}
.testimonial-author {
  display:flex;
  align-items:center;
  gap:12px;
}
.testimonial-avatar {
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#2563EB,#6366F1);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
  flex-shrink:0;
}
.testimonial-author strong {
  display:block;
  font-size:14px;
  color:#1E293B;
}
.testimonial-author span {
  font-size:12px;
  color:#94A3B8;
}
@media (max-width:900px) {
  .testimonials-grid {
    grid-template-columns:1fr;
  }
}
.testimonial-hidden {
  display:none;
}
.seo-text {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.hero-availability {
  font-size:13px;
  color:#94A3B8;
  margin-top:16px;
}
.hero-availability strong {
  color:#34D399;
}
.hero-photo-caption {
  text-align:center;
  margin-bottom:8px;
}
.hero-photo-caption strong {
  display:block;
  font-size:16px;
  font-weight:700;
  color:#fff;
}
.hero-photo-caption span {
  display:block;
  font-size:12px;
  color:#94A3B8;
  line-height:1.8;
}
.hero-grid-anim {
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(37,99,235,0.15) 1px,transparent 1px);
  background-size:40px 40px;
  animation:gridDrift 20s linear infinite;
  pointer-events:none;
  z-index:0;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════════════════ */

@keyframes gridDrift {
  0% {
    transform:translate3d(0,0,0);
  }
  100% {
    transform:translate3d(40px,40px,0);
  }
}
}

/* ═══════════════════════════════════════════════════════
   WAYS TO WORK TOGETHER
   ═══════════════════════════════════════════════════════ */

.ways-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.ways-card {
  background:#F8FAFC;
  border:1px solid #E2E8F0;
  border-radius:16px;
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:all 0.2s;
}
.ways-card:hover {
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(37,99,235,0.1);
  border-color:#BFDBFE;
}
.ways-card.ways-primary {
  background:linear-gradient(135deg,#EFF6FF,#F0F9FF);
  border-color:#BFDBFE;
}
.ways-icon {
  font-size:32px;
}
.ways-card h3 {
  font-size:18px;
  font-weight:700;
  color:#1E293B;
}
.ways-card p {
  font-size:14px;
  color:#64748B;
  line-height:1.7;
}
.ways-card ul {
  list-style:none;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.ways-card ul li {
  font-size:13px;
  color:#475569;
  padding-left:16px;
  position:relative;
}
.ways-card ul li::before {
  content:'→';
  position:absolute;
  left:0;
  color:#2563EB;
  font-weight:700;
}
.ways-cta {
  margin-top:auto;
  font-size:14px;
  font-weight:600;
  color:#2563EB;
  text-decoration:none;
}
.ways-cta:hover {
  color:#1D4ED8;
}
@media (max-width:900px) {
  .ways-grid {
    grid-template-columns:1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   DASHBOARD MOCKUPS — CODE PANELS
   ═══════════════════════════════════════════════════════ */

.dash-mockup {
  border-radius:10px;
  overflow:hidden;
  margin-bottom:20px;
  border:1px solid rgba(255,255,255,0.1);
  font-family:'JetBrains Mono',monospace;
}
/* Screenshot frame inside dash-mockup */
.dash-screenshot-wrap {
  position:relative;
  width:100%;
  height:160px;
  overflow:hidden;
}
.dash-screenshot {
  width:100%;
  height:160px;
  object-fit:cover;
  object-position:top center;
  display:block;
}
.dash-screenshot-placeholder {
  display:none;
  width:100%;
  height:160px;
  background:#F1F5F9;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  box-sizing:border-box;
  font-size:12px;
  color:#94A3B8;
  line-height:1.6;
}
.dash-screenshot-placeholder code {
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  color:#64748B;
}
.dash-dark {
  background:#0F172A;
}
.dash-light {
  background:#F8FAFC;
  border-color:#E2E8F0;
}
.dash-topbar {
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  background:rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.dash-topbar.light {
  background:#F1F5F9;
  border-bottom-color:#E2E8F0;
}
.dash-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  flex-shrink:0;
}
.dash-dot.red {
  background:#EF4444;
}
.dash-dot.yellow {
  background:#F59E0B;
}
.dash-dot.green {
  background:#10B981;
}
.dash-title {
  font-size:10px;
  font-weight:600;
  color:#94A3B8;
  margin-left:4px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.dash-body {
  padding:12px;
}
.dash-stat-row {
  display:flex;
  gap:8px;
  margin-bottom:10px;
}
.dash-stat {
  flex:1;
  background:rgba(255,255,255,0.05);
  border-radius:6px;
  padding:8px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.06);
}
.dash-stat-num {
  font-size:13px;
  font-weight:700;
  color:#60A5FA;
}
.dash-stat-lbl {
  font-size:9px;
  color:#64748B;
  margin-top:2px;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.dash-bar-row {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}
.dash-bar-label {
  font-size:9px;
  color:#94A3B8;
  min-width:64px;
  text-align:right;
}
.dash-bar-track {
  flex:1;
  height:5px;
  background:rgba(255,255,255,0.06);
  border-radius:999px;
  overflow:hidden;
}
.dash-bar-fill {
  height:100%;
  border-radius:999px;
}
.dash-table {
  font-size:10px;
}
.dash-table-row {
  display:grid;
  grid-template-columns:1fr 36px 20px;
  gap:4px;
  padding:5px 4px;
  border-bottom:1px solid #F1F5F9;
  align-items:center;
}
.dash-table-row.header {
  font-weight:700;
  color:#94A3B8;
  font-size:9px;
  text-transform:uppercase;
}
.score-high {
  color:#2563EB;
  font-weight:700;
  text-align:center;
}
.score-med {
  color:#F59E0B;
  font-weight:700;
  text-align:center;
}
.signal-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  margin:0 auto;
}
.green-dot {
  background:#10B981;
}
.yellow-dot {
  background:#F59E0B;
}
.dash-sequence {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.dash-seq-step {
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 8px;
  background:#F8FAFC;
  border-radius:6px;
  border:1px solid #E2E8F0;
}
.dash-seq-step.muted {
  opacity:0.45;
}
.seq-num {
  font-size:9px;
  font-weight:700;
  color:#2563EB;
  min-width:16px;
}
.seq-label {
  font-size:10px;
  color:#1E293B;
  font-weight:600;
  flex:1;
}
.seq-check {
  font-size:10px;
  color:#10B981;
  font-weight:700;
}
.pulse-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2563EB;
  animation:pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% {
    opacity:1;
    transform:scale(1);
  }
  50% {
    opacity:0.5;
    transform:scale(1.3);
  }
}

/* ═══════════════════════════════════════════════════════
   IMPACT SNAPSHOT
   ═══════════════════════════════════════════════════════ */

.impact-snapshot {
  background:rgba(30,41,59,0.85);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:24px;
  width:100%;
  max-width:320px;
  backdrop-filter:blur(12px);
  box-shadow:0 8px 32px rgba(0,0,0,0.3);
}
.impact-snapshot-title {
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:#60A5FA;
  margin-bottom:16px;
}
.impact-snapshot-items {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:16px;
}
.impact-item {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:#CBD5E1;
  font-weight:500;
}
.impact-icon {
  font-size:16px;
  width:20px;
  flex-shrink:0;
}
.impact-focus {
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:14px;
}
.impact-focus-label {
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:#64748B;
  margin-bottom:10px;
}
.impact-focus-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.impact-focus-tags span {
  font-size:11px;
  font-weight:600;
  color:#93C5FD;
  background:rgba(37,99,235,0.15);
  border:1px solid rgba(37,99,235,0.25);
  border-radius:999px;
  padding:3px 10px;
}
@media (max-width:768px) {
  .impact-snapshot {
    max-width:100%;
  }
}

/* ─── Resume Drawer ─────────────────────────────────────── */
.resume-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.resume-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.resume-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(780px, 100vw);
  background: #fff;
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22,.78,.3,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.22);
}
.resume-drawer.open {
  transform: translateX(0);
}

.resume-drawer-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
}
.resume-drawer-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  flex: 1;
}
.resume-drawer-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 16px;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}
.resume-drawer-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

.resume-drawer-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
  overflow-x: auto;
}
.resume-drawer-tabs::-webkit-scrollbar { display: none; }
.resume-tab {
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.resume-tab:hover { color: #1a56a0; background: #eff6ff; }
.resume-tab.active {
  color: #1a56a0;
  border-bottom-color: #1a56a0;
  background: #fff;
}

.resume-drawer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  flex-shrink: 0;
}
.resume-action-badge {
  font-size: 11px;
  color: #64748b;
  flex: 1;
}
.resume-action-badge strong { color: #1a56a0; }
.resume-copy-link-btn,
.resume-print-btn {
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid;
  transition: all .15s;
}
.resume-copy-link-btn {
  background: transparent;
  border-color: #cbd5e1;
  color: #475569;
}
.resume-copy-link-btn:hover { background: #f1f5f9; border-color: #94a3b8; }
.resume-print-btn {
  background: #1a56a0;
  border-color: #1a56a0;
  color: #fff;
}
.resume-print-btn:hover { background: #154a8a; }

.resume-drawer-frame {
  flex: 1;
  border: none;
  width: 100%;
  min-height: 0;
}

.resume-drawer-loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  flex-direction: column;
  gap: 10px;
}
.resume-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e2e8f0;
  border-top-color: #1a56a0;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .resume-drawer-topbar { padding: 10px 12px; }
  .resume-tab { padding: 8px 12px; font-size: 11px; }
  .resume-drawer-actions { flex-wrap: wrap; }
}

.consulting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.consulting-badge:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Case Study Cards */
.card-case-study { padding: 20px 0 0; }
.card-csi { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 16px; }
.card-csi-row { display: flex; gap: 10px; align-items: flex-start; }
.csi-label { 
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #64748B; min-width: 68px; padding-top: 2px; flex-shrink: 0;
}
.csi-text { font-size: 13px; color: #94A3B8; line-height: 1.55; margin: 0; }
.csi-result .csi-label { color: #34D399; }
.csi-result .csi-text { color: #E2E8F0; font-weight: 500; }
