/* Kara Kruzeniski - white cream / soft baby blue / charcoal portfolio */
:root {
  /* Soft baby blue + white cream system (no yellow tint) */
  --cream: #FFFCF9;
  --cream-deep: #F3F8FB;
  --cream-soft: #FFFFFF;
  --mustard: #6BAFD6; /* richer baby blue (token name kept) */
  --mustard-deep: #3B8EBE;
  --mustard-soft: #D0E9F6;
  --mustard-glow: rgba(59, 142, 190, 0.30);
  --peacock: #6BAFD6;
  --peacock-deep: #3B8EBE;
  --peacock-bright: #D0E9F6;
  --charcoal: #24303A;
  --charcoal-soft: #33424E;
  --ink: #1E2A33;
  --text: #24303A;
  --muted: #667682;
  --muted-soft: #8A97A3;
  --border: rgba(36, 48, 58, 0.10);
  --border-strong: rgba(36, 48, 58, 0.18);
  --surface: #FFFFFF;
  --surface-2: #F3F8FB;
  --bg: var(--cream);
  --primary: var(--mustard);
  --accent: var(--mustard-deep);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(20, 20, 20, 0.08);
  --shadow-lift: 0 18px 50px rgba(20, 20, 20, 0.12);
  --max: 1120px;
  --max-wide: 1200px;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font: var(--font-body);
  --font-ui: var(--font-body);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.05rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

::selection {
  background: rgba(107, 175, 214, 0.35);
  color: var(--ink);
}

a { color: var(--mustard-deep); text-decoration: none; }
a:hover { color: var(--ink); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2.5rem, var(--max-wide));
  margin-inline: auto;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.15rem;
  min-height: 5.25rem;
  position: relative;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mustard);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 6px 16px var(--mustard-glow);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.logo-mark:hover {
  transform: translateY(-1px);
  background: var(--mustard-deep);
  box-shadow: 0 8px 20px var(--mustard-glow);
}
.logo-kk {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  padding-left: 0.06em;
}


.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  justify-self: center;
  grid-column: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 550;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(26, 26, 26, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  padding: 0.78rem 1.45rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary,
a.btn-primary {
  background: var(--mustard-deep);
  color: #fff;
  box-shadow: 0 8px 22px var(--mustard-glow);
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--mustard);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-nav {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}
.btn-nav-desktop {
  justify-self: end;
  grid-column: 3;
}
.btn-nav-menu { display: none; }

@media (min-width: 761px) {
  .nav-inner {
    min-height: 5.75rem;
  }
  .logo-mark {
    width: 56px;
    height: 56px;
  }
  .logo-kk {
    font-size: 1.05rem;
  }
  .nav-links a {
    font-size: 1.06rem;
    padding: 0.72rem 1.2rem;
  }
  .btn-nav {
    padding: 0.85rem 1.55rem;
    font-size: 1.02rem;
  }
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  justify-self: end;
  grid-column: 3;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.wordmark, .nav-brand, .nav-avatar, .avatar { display: none; }

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  background: rgba(59, 142, 190, 0.18);
  color: #2F7AAB;
  border: 1px solid rgba(59, 142, 190, 0.28);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.7;
}

.section { padding: 4.5rem 0; }
.section-alt { background: var(--cream-deep); }
.section-dark {
  background: var(--charcoal);
  color: #f2f2f2;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header .lead {
  margin-inline: auto;
  margin-top: 0.75rem;
}

/* ========== Hero (Jenny-style centered) ========== */
.hero-jenny {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.hero-jenny-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.hero-jenny .hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
}
.hero-jenny .hero-title .name-accent {
  color: var(--mustard-deep);
}
.hero-jenny .hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin-inline: auto;
  line-height: 1.65;
}
.hero-jenny .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.btn-hero {
  min-width: 9.5rem;
  padding: 0.9rem 1.6rem;
}

.hero-portrait-stage {
  position: relative;
  width: min(100%, 420px);
  margin: 0.5rem auto 0;
}
.hero-portrait-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  border: 6px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(26, 26, 26, 0.06),
    0 24px 60px rgba(20, 20, 20, 0.14),
    0 0 80px var(--mustard-glow);
}
.hero-portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.proof-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.7rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--border);
  text-align: left;
  z-index: 2;
}
.proof-float strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.proof-float span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.proof-float-a {
  top: 12%;
  left: -8%;
  transform: rotate(-4deg);
}
.proof-float-b {
  top: 42%;
  right: -12%;
  transform: rotate(3deg);
}
.proof-float-c {
  bottom: 8%;
  left: -4%;
  transform: rotate(2deg);
}

/* ========== Marquee ========== */
.marquee-band {
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
  padding: 1.1rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}
.marquee-item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mustard);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ========== Capabilities accordion ========== */
.capabilities {
  padding: 5rem 0;
}
.capabilities .section-header { margin-bottom: 2rem; }

.cap-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cap-item {
  background: linear-gradient(135deg, #1B3A4F 0%, #244E68 55%, #2A5F7A 100%);
  color: #f5f8fb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107, 175, 214, 0.22);
  box-shadow: 0 10px 28px rgba(27, 58, 79, 0.22);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.cap-item[open] {
  border-color: rgba(107, 175, 214, 0.4);
  box-shadow: 0 18px 44px rgba(27, 58, 79, 0.35);
}
.cap-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.55rem;
  font-weight: 600;
  font-size: 1.06rem;
  color: #fff;
  user-select: none;
}
.cap-item summary::-webkit-details-marker { display: none; }
.cap-item summary::after {
  content: "+";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3B8EBE;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(59, 142, 190, 0.35);
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cap-item[open] summary::after {
  content: "–";
  background: #fff;
  color: #2F7AAB;
  box-shadow: none;
}
.cap-panel {
  padding: 0 1.55rem 1.45rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 46rem;
}
.cap-item summary .cap-num {
  color: #8EC8E8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 0.7rem;
}

/* ========== Featured work cards ========== */
.work-feature {
  padding: 5rem 0;
  background: var(--cream);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  text-decoration: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  color: inherit;
}
.feature-card.is-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.feature-media {
  background: var(--cream-deep);
  overflow: hidden;
}
.feature-media .browser-frame {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
.feature-media .browser-screen {
  aspect-ratio: 16 / 10;
  padding: 0.9rem 1rem 1.05rem;
}
.feature-card.is-wide .feature-media .browser-screen {
  aspect-ratio: 16 / 9;
  min-height: 280px;
  padding: 1rem 1.15rem 1.2rem;
}
.feature-body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
}
.feature-body h3 {
  font-size: 1.35rem;
  margin: 0.15rem 0;
}
.feature-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-body .card-cta {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mustard-deep);
}
.feature-card:hover .card-cta { color: var(--ink); }

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(59, 142, 190, 0.18);
  color: #2F7AAB;
  border: 1px solid rgba(59, 142, 190, 0.22);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

/* ========== About teaser ========== */
.about-teaser-band {
  background: var(--charcoal);
  color: #f2f2f2;
  padding: 5rem 0;
}
.about-teaser-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.about-teaser-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(59, 142, 190, 0.55);
  box-shadow: 0 0 40px var(--mustard-glow);
}
.about-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-teaser-copy .eyebrow {
  color: var(--mustard);
}
.about-teaser-copy h2 {
  color: #fff;
  margin-bottom: 0.85rem;
}
.about-teaser-copy p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.35rem;
  max-width: 36rem;
  line-height: 1.7;
}


/* ========== Who is Kara (GEO) ========== */
.who-kara-band {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.who-kara-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.75rem;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
.who-kara-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(107, 175, 214, 0.45);
  box-shadow: 0 12px 36px rgba(20, 20, 20, 0.1);
  flex-shrink: 0;
}
.who-kara-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.who-kara-copy .eyebrow { color: var(--mustard-deep); }
.who-kara-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.who-kara-answer {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.35rem;
  max-width: 42rem;
}
.who-kara-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.who-fact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.who-fact strong {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mustard-deep);
}
.who-fact span {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}
.who-kara-more {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

/* ========== Blog ========== */
.blog-home { background: var(--cream-deep); }
.blog-home-more {
  text-align: center;
  margin-top: 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.45rem 1.55rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  color: inherit;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin: 0.15rem 0;
  letter-spacing: -0.02em;
}
.blog-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.blog-card .card-cta {
  margin-top: 0.35rem;
  color: var(--mustard-deep);
  font-weight: 600;
  font-size: 0.88rem;
}
.blog-card:hover .card-cta { color: var(--ink); }

.blog-post { padding: 3rem 0 4.5rem; }
.blog-post-inner { max-width: 720px; }
.blog-post h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.35rem 0 1rem;
}
.blog-prose p {
  margin-bottom: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  font-size: 1.05rem;
}

/* ========== Connect ========== */
.connect-band {
  background: linear-gradient(135deg, #1B3A4F 0%, #244E68 55%, #2A5F7A 100%);
  color: #f5f8fb;
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(107, 175, 214, 0.18);
  border-bottom: 1px solid rgba(107, 175, 214, 0.18);
}
.connect-inner { max-width: 640px; margin-inline: auto; }
.connect-band .eyebrow { color: #8EC8E8; }
.connect-band h2 {
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.connect-lead {
  color: rgba(255, 255, 255, 0.84);
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.connect-band .btn-primary {
  background: #3B8EBE;
  color: #fff;
  box-shadow: 0 8px 22px rgba(59, 142, 190, 0.35);
}
.connect-band .btn-primary:hover {
  background: #6BAFD6;
  color: #fff;
  box-shadow: 0 10px 26px rgba(59, 142, 190, 0.4);
}
.connect-band .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(142, 200, 232, 0.45);
}
.connect-band .btn-secondary:hover {
  background: #fff;
  color: #1B3A4F;
  border-color: #fff;
}


@media (min-width: 761px) {
  .about-photo-under-title {
    max-width: 520px;
    width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .who-kara-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .who-kara-facts { grid-template-columns: 1fr; text-align: left; }
  .who-kara-answer, .who-kara-more { margin-inline: auto; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .who-kara-band, .connect-band, .blog-home { padding: 3.5rem 0; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--cream-deep);
  padding: 2rem 0 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-statement {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.footer-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.footer-meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted-soft);
}
.footer-meta a { color: var(--muted); }
.footer-meta a:hover { color: var(--ink); }

/* ========== Browser frame ========== */
.browser-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D0C8BA;
}
.browser-url {
  flex: 1;
  font-size: 0.72rem;
  color: var(--muted-soft);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #F3F8FB;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.9rem 1rem;
  box-sizing: border-box;
}
.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
}

/* ========== Work page ========== */
.page-hero {
  padding: 3.25rem 0 1.75rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead,
.work-intro {
  margin-inline: auto;
  max-width: 40rem;
  color: var(--muted);
}
.work-intro p { margin-bottom: 0.75rem; }
.work-intro p:last-child { margin-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  color: inherit;
}
.project-body {
  padding: 1.35rem 1.45rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.project-body h3 { font-size: 1.2rem; }
.project-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.card-cta {
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--mustard-deep);
}
.project-card:hover .card-cta { color: var(--ink); }

/* ========== About page ========== */
.page-hero-about { text-align: center; }
.page-hero-about .container { max-width: var(--max); }
.page-hero-about h1 { max-width: none; margin-inline: auto; }
.page-hero-about .eyebrow { justify-content: center; }
.page-hero-about .hero-path { margin-inline: auto; }
.hero-path {
  color: var(--muted);
  font-weight: 550;
  font-size: 1rem;
}

.about-story-inner {
  display: block;
  max-width: 40rem;
}
.about-lede {
  font-size: 1.25rem;
  font-weight: 550;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.25rem !important;
}
.about-body p {
  margin-bottom: 1rem;
  color: var(--muted);
  max-width: 40rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-inline-head {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.about-inline-head-block {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.about-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--border);
  background: var(--cream-deep);
}
.about-photo-under-title {
  margin: 1.5rem auto 1.85rem;
  max-width: min(100%, 480px);
  width: min(100%, 480px);
  will-change: transform, box-shadow;
  transform: translate3d(0, 0, 0) scale(1);
}
.about-photo-under-title .about-photo {
  display: block;
  width: 100%;
  height: auto;
}
.about-photo,
.about-photo-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
}

.about-edu-section { background: var(--cream-deep); }
.li-block { margin-top: 2rem; }
.li-block:first-of-type { margin-top: 0; }
.li-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.li-block-label {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tile-grid-edu { grid-template-columns: repeat(3, 1fr); }
.cred-tile,
.cred-tile-static {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 4px 16px rgba(20, 20, 20, 0.04);
}
.cred-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}
.cred-tile strong {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.35;
}
.cred-tile span { font-size: 0.85rem; color: var(--muted); }
.li-meta { font-size: 0.78rem !important; color: var(--muted-soft) !important; }

.li-skills,
.about-skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.li-skills li,
.about-skills li {
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--text);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-years {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mustard-deep);
}
.timeline-role {
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.timeline-org {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.exp-bullets {
  margin: 0.5rem 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.exp-bullets li { margin-bottom: 0.4rem; }
.exp-bullets li:last-child { margin-bottom: 0; }

/* ========== Case studies ========== */
.case-hero { padding: 2.5rem 0 4rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--ink); }
.case-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.85rem;
}
.case-hero .lead { margin-bottom: 1.25rem; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.tag-pill {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(59, 142, 190, 0.14);
  color: var(--mustard-deep);
  font-size: 0.78rem;
  font-weight: 600;
}
.case-cover {
  margin: 1.5rem 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.case-cover .browser-frame { border-radius: var(--radius-lg); }
.case-cover .browser-screen {
  aspect-ratio: 16 / 9;
  padding: 1rem 1.1rem 1.15rem;
}
.case-section { margin-bottom: 2rem; max-width: 42rem; }
.case-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.case-section p { color: var(--muted); margin-bottom: 0.75rem; }
.case-section ul {
  margin: 0.5rem 0 0 1.15rem;
  color: var(--muted);
}
.case-section li { margin-bottom: 0.4rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: 0 4px 16px rgba(20, 20, 20, 0.04);
}
.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ========== Carousel (kept for compatibility) ========== */
.carousel {
  position: relative;
  outline: none;
}
.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}
.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.carousel-media { min-width: 0; }
.product-stage {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 16 / 10;
}
.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.carousel-copy { padding: 0.5rem 0.75rem; }
.carousel-copy h3 { margin: 0.4rem 0 0.65rem; }
.carousel-explainer {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.carousel-actions { display: flex; gap: 0.5rem; }
.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
}
.carousel-btn[data-prev] { left: -0.5rem; }
.carousel-btn[data-next] { right: -0.5rem; }
.carousel-btn:hover { background: var(--mustard); }
.carousel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.carousel-tab {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 550;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
}
.carousel-tab.is-active,
.carousel-tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.carousel-dots { display: flex; gap: 0.4rem; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #C9C0B2;
  cursor: pointer;
  padding: 0;
}
.carousel-dot[aria-selected="true"] { background: var(--mustard); width: 22px; border-radius: 8px; }
.carousel-count { font-size: 0.8rem; color: var(--muted-soft); font-weight: 550; }

/* ========== Misc leftovers used by pages ========== */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip, .chip-skill {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 550;
}
.muted { color: var(--muted); }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .feature-card.is-wide {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .about-teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .about-teaser-copy p { margin-inline: auto; }
  .about-photo-under-title {
    max-width: min(100%, 420px);
    width: 100%;
    margin-inline: auto;
  }
  .tile-grid,
  .tile-grid-edu { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.35rem; }
  .carousel-slide { grid-template-columns: 1fr; }
  .proof-float-a { left: 0; top: 6%; }
  .proof-float-b { right: 0; }
  .proof-float-c { left: 4%; bottom: 4%; }
}

@media (max-width: 760px) {
  .site-header { overflow: visible; }
  .nav-inner {
    grid-template-columns: auto 1fr;
  }
  .about-photo-under-title {
    max-width: min(92vw, 520px);
    width: min(92vw, 520px);
    margin-left: auto;
    margin-right: auto;
  }
    .btn-nav-desktop { display: none; }

  /* Simple hamburger — stays hamburger when open */
  .nav-toggle {
    display: flex;
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] span {
    transform: none !important;
    opacity: 1 !important;
  }

  /* Compact clean menu under the hamburger */
  .nav-pill {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    left: auto;
    width: min(11.5rem, calc(100vw - 1.5rem));
    grid-column: auto;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(36, 48, 58, 0.08);
    border-radius: 14px;
    padding: 0.4rem;
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 80;
  }
  .nav-pill.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 10px;
    color: var(--ink);
    background: transparent;
    text-align: left;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    background: rgba(59, 142, 190, 0.14);
    color: var(--ink);
  }
  .nav-pill .btn-nav-menu {
    display: block;
    width: 100%;
    margin: 0.25rem 0 0;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    box-shadow: none;
    color: var(--mustard-deep);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
  }
  .nav-pill .btn-nav-menu:hover {
    background: rgba(59, 142, 190, 0.14);
    color: var(--ink);
  }
  .hero-jenny { padding: 2.5rem 0 3rem; }
  .hero-portrait-stage:not(.is-hero-xl) { width: min(100%, 300px); }
  .hero-jenny.is-cutout-hero .hero-portrait-stage.is-hero-xl { width: 100%; }
  .hero-jenny.is-cutout-hero .hero-portrait-block { width: 100%; }
  .proof-float { padding: 0.55rem 0.75rem; }
  .proof-float strong { font-size: 0.9rem; }
  .proof-float span { font-size: 0.65rem; }
  .section, .capabilities, .work-feature, .about-teaser-band { padding: 3.5rem 0; }
  .carousel-btn { display: none; }
}

@media (max-width: 480px) {
  .container, .container-wide { width: min(100% - 1.5rem, var(--max)); }
  .proof-float-a,
  .proof-float-b,
  .proof-float-c {
    position: static;
    transform: none;
    width: 100%;
  }
  .hero-portrait-stage {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
  .hero-portrait-circle { order: -1; }
}

/* ========== Cutout hero treatment ========== */
.hero-portrait-stage.is-cutout {
  width: min(100%, 380px);
}
.hero-portrait-cutout {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 78%, var(--mustard-glow), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(26, 26, 26, 0.06), transparent 65%);
  border-radius: 40% 40% 28% 28% / 28% 28% 18% 18%;
  padding: 0.5rem 0.5rem 0;
  overflow: visible;
}
.hero-portrait-cutout img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 40px rgba(20, 20, 20, 0.18));
}
.hero-jenny.is-cutout-hero .hero-portrait-stage {
  margin-top: 0.25rem;
}
@media (max-width: 760px) {
  .hero-portrait-stage.is-cutout:not(.is-hero-xl) { width: min(100%, 280px); }
  .hero-portrait-stage.is-cutout:not(.is-hero-xl) .hero-portrait-cutout img,
  .hero-portrait-stage:not(.is-hero-xl) .hero-portrait-cutout img {
    max-height: 400px;
  }

  /* Mobile hero portrait: fill the viewport */
  .hero-jenny.is-cutout-hero .hero-jenny-inner.container {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }
  .hero-jenny.is-cutout-hero .hero-intro,
  .hero-jenny.is-cutout-hero .hero-actions,
  .hero-jenny.is-cutout-hero .hero-bubbles {
    width: min(100% - 1.5rem, 34rem);
    margin-inline: auto;
    padding-inline: 0.25rem;
  }
  .hero-jenny.is-cutout-hero .hero-portrait-block {
    width: 100%;
    max-width: 100vw;
    margin-top: 0.15rem;
  }
  .hero-jenny.is-cutout-hero .hero-portrait-stage.is-cutout.is-hero-xl {
    width: 100%;
    max-width: 100%;
  }
  .hero-jenny.is-cutout-hero .hero-portrait-stage.is-hero-xl .hero-portrait-cutout img {
    width: 100%;
    max-width: 100%;
    max-height: min(88vh, 920px);
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }
  .hero-jenny.hero-scroll-scene {
    padding: 1.5rem 0 2.75rem;
  }
}

/* === Hero scroll + bubbles under photo === */
.hero-jenny.hero-scroll-scene {
  padding: 2.5rem 0 5rem;
  overflow: visible;
}
.hero-intro {
  max-width: 40rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  /* keep subheader clear of the portrait */
  margin-bottom: 0.25rem;
}
.hero-jenny .hero-title {
  font-size: clamp(3.2rem, 9vw, 5.8rem);
}
.hero-jenny .hero-sub {
  max-width: 36rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text);
  font-weight: 500;
  position: relative;
  z-index: 5;
}

.hero-portrait-block {
  width: min(100%, 784px);
  margin: 0.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: none !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}
.hero-portrait-stage.is-hero-xl {
  width: min(100%, 717px);
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}
.hero-portrait-stage.is-cutout.is-hero-xl .hero-portrait-cutout,
.hero-portrait-stage.is-hero-xl .hero-portrait-cutout {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: none !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  position: relative;
  z-index: 1;
}
.hero-portrait-stage.is-hero-xl .hero-portrait-cutout img {
  width: 100%;
  height: auto;
  max-height: min(90vh, 830px);
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
  will-change: transform, filter;
  transition: none;
  display: block;
  border: none;
  outline: none;
  background: transparent;
  /* resting: clean cutout, soft natural shadow only */
  transform: translate3d(0, 0, 0) scale(1);
  filter: drop-shadow(0 18px 40px rgba(30, 42, 51, 0.16));
}
.hero-portrait-stage.is-hero-xl .hero-photo-glow {
  display: none !important;
}
.hero-portrait-stage.is-hero-xl {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


/* ========== Product cards — scroll glow ========== */
.feature-card.is-scroll-card,
.project-card.is-scroll-card,
.case-cover.is-scroll-card {
  position: relative;
  transform-origin: center center;
  will-change: transform, box-shadow, opacity;
  isolation: isolate;
}
.feature-card.is-scroll-card::before,
.project-card.is-scroll-card::before,
.case-cover.is-scroll-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(107, 175, 214, 0.28), transparent 70%);
  filter: blur(16px);
  transition: none;
}
.feature-card.is-scroll-card .feature-media,
.project-card.is-scroll-card .browser-screen,
.case-cover.is-scroll-card .browser-screen {
  overflow: hidden;
}
.is-scroll-img {
  transform-origin: center center;
  will-change: transform;
}

@keyframes scroll-card-glow {
  from {
    transform: translate3d(0, 18px, 0) scale(0.99);
    opacity: 0.92;
    box-shadow:
      0 8px 22px rgba(20, 20, 20, 0.05),
      0 0 0 rgba(59, 142, 190, 0);
  }
  to {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    box-shadow:
      0 16px 36px rgba(20, 20, 20, 0.09),
      0 0 28px rgba(59, 142, 190, 0.18);
  }
}
@keyframes scroll-card-halo {
  from { opacity: 0; }
  to { opacity: 0.35; }
}
@keyframes scroll-img-soft {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@supports (animation-timeline: view()) {
  .feature-card.is-scroll-card.is-sda,
  .project-card.is-scroll-card.is-sda,
  .case-cover.is-scroll-card.is-sda {
    animation: scroll-card-glow linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  .feature-card.is-scroll-card.is-sda::before,
  .project-card.is-scroll-card.is-sda::before,
  .case-cover.is-scroll-card.is-sda::before {
    animation: scroll-card-halo linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  .is-scroll-img.is-sda {
    animation: scroll-img-soft linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
}

@media (max-width: 900px) {
  .feature-card.is-scroll-card.is-wide .feature-media {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}


.feature-card.is-scroll-card,
.project-card.is-scroll-card {
  cursor: pointer;
}
.feature-card.is-scroll-card:hover,
.project-card.is-scroll-card:hover {
  box-shadow:
    0 18px 40px rgba(20, 20, 20, 0.1),
    0 0 28px rgba(59, 142, 190, 0.18);
}
.feature-card.is-scroll-card:hover .card-cta,
.project-card.is-scroll-card:hover .card-cta {
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .feature-card.is-scroll-card,
  .project-card.is-scroll-card,
  .case-cover.is-scroll-card,
  .is-scroll-img {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .feature-card.is-scroll-card::before,
  .project-card.is-scroll-card::before,
  .case-cover.is-scroll-card::before {
    display: none !important;
  }
}
.hero-bubbles,
.hero-actions,
.hero-intro {
  position: relative;
  z-index: 2;
  transform: none !important;
  opacity: 1 !important;
}
.hero-actions {
  margin-top: 0.35rem;
  gap: 0.85rem;
}

.hero-bubbles {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.7rem;
  max-width: 34rem;
}
.hero-bubble {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 9.5rem;
  flex: 1 1 calc(33.333% - 0.7rem);
  padding: 0.85rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(59, 142, 190, 0.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 10px 28px rgba(59, 142, 190, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
}
.hero-bubble strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--peacock-deep, #6BA8C9);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-bubble span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

/* Hide old absolute floats if any remain */
.hero-portrait-stage.is-hero-xl .proof-float { display: none !important; }

@media (max-width: 720px) {
  .hero-jenny.is-cutout-hero .hero-portrait-block {
    width: 100%;
    gap: 1rem;
  }
  .hero-jenny.is-cutout-hero .hero-portrait-stage.is-cutout.is-hero-xl {
    width: 100%;
  }
  .hero-bubble {
    flex: 1 1 calc(50% - 0.7rem);
    min-width: 0;
  }
  .hero-jenny.is-cutout-hero .hero-portrait-stage.is-hero-xl .hero-portrait-cutout img {
    max-height: min(88vh, 920px);
    width: 100%;
  }
  .hero-jenny .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait-stage.is-hero-xl .hero-portrait-cutout img {
    animation: none !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    filter: drop-shadow(0 16px 36px rgba(30, 42, 51, 0.14)) !important;
  }
}
