/* InvestJuice — product dreams → real products */

:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --text: #0b1220;
  --text-muted: #64748b;
  --dim: #8b95a5;
  --accent: #0d9488;
  --accent-light: #0f766e;
  --accent-hot: #ff5a1f;
  --accent-hot-hover: #e84a12;
  --accent-soft: #ccfbf1;
  --border: #e2e8f0;
  --soft: #eef2f6;
  --ink: #0b1220;
  --cream: #f7f5f0;
  --muted: #64748b;
  --shadow-sm: 0 2px 10px rgba(11, 18, 32, 0.05);
  --shadow-md: 0 16px 40px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 28px 64px rgba(11, 18, 32, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --font: "Inter", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --max: 1140px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(13, 148, 136, 0.18); color: var(--text); }

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
}
.skip-link:focus { left: 16px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-text span { color: var(--accent-hot); font-weight: 800; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav a:hover,
.nav a.is-active { color: var(--text); }
.nav a.is-active { font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
}
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: #1a2438;
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent-hot);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.28);
}
.btn-accent:hover {
  background: var(--accent-hot-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--text); }
.btn-ghost {
  color: var(--text-muted);
  background: transparent;
}
.btn-ghost:hover { color: var(--text); background: var(--soft); }
.btn-stripe {
  background: #635bff;
  color: #fff;
}
.btn-stripe:hover { background: #4f46e5; transform: translateY(-1px); }

/* ── Type ── */
.eyebrow, .section-label, .hero-label {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.12;
}
h1 em, h2 em {
  font-style: normal;
  color: var(--accent-hot);
  font-weight: 800;
}

.lede, .section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Hero ── */
.hero {
  padding: 100px 0 90px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 24px;
}
.hero .lede {
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust ── */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}
.trust p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.proof-item {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}
.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.proof-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Sections ── */
.section { padding: 90px 0; }
.section-tight { padding: 64px 0; }
.section-surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(145deg, #0b1220 0%, #132033 55%, #0f3d38 100%);
  color: #fff;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p,
.section-dark .lede { color: rgba(255,255,255,0.75); }
.section-dark .eyebrow,
.section-dark .section-label { color: #5eead4; }

.section-head { margin-bottom: 48px; }
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .section-desc,
.section-head.center .lede {
  margin-inline: auto;
}
.section-title, .section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
  max-width: 640px;
}
.section-head.center .section-title,
.section-head.center h2 {
  margin-inline: auto;
}

/* ── Problem grid ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--soft);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.section-surface .problem-card { background: var(--bg); }
.problem-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.problem-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s;
}
.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.step-n {
  font-family: var(--display);
  font-style: normal;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent-hot);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── Packages ── */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
  align-items: stretch;
}
.package-guarantee {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  background: color-mix(in srgb, var(--accent) 10%, var(--soft));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  color: var(--text);
}
.package.is-highlight .package-guarantee {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}
.package-size {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.package.is-highlight .package-size {
  color: color-mix(in srgb, var(--accent) 70%, #fff);
}
.package-scale-step {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.package--limited {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}
.package--limited .package-badge {
  background: var(--accent-hot, var(--accent));
  color: #fff;
}
.oncall-guarantee {
  margin: 1rem 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  background: color-mix(in srgb, var(--accent) 9%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  color: var(--text);
  max-width: 38em;
}

/* Grouped packages: partner tiers + craft scale */
.package-groups {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.package-group-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 1.5rem;
}
.package-group-head h3 {
  font-family: "Outfit", var(--font);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.65rem;
}
.package-group-head .lede {
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--text-muted);
}
.packages--partner {
  grid-template-columns: repeat(3, 1fr);
}
.packages--craft {
  grid-template-columns: repeat(3, 1fr);
}
.scale-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--border);
}
.scale-path-step {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 0;
}
.scale-path-n {
  font-family: "Outfit", var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.scale-path-step strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.scale-path-step span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
@media (max-width: 1040px) {
  .packages--partner,
  .packages--craft {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .scale-path {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .scale-path {
    grid-template-columns: 1fr;
  }
}
.package {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.package:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package.is-featured {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: var(--shadow-sm);
}
.package.is-highlight {
  background: linear-gradient(160deg, #0b1220 0%, #134e4a 100%);
  border-color: transparent;
  color: #fff;
}
.package.is-highlight h3,
.package.is-highlight .price-amount { color: #fff; }
.package.is-highlight p,
.package.is-highlight .price-note,
.package.is-highlight .best-for,
.package.is-highlight .package-meta { color: rgba(255,255,255,0.7); }
.package.is-highlight li { color: rgba(255,255,255,0.9); }
.package.is-highlight li::before { color: #5eead4; }
.package.is-highlight .package-divider { border-color: rgba(255,255,255,0.15); }
.package.is-highlight .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.package.is-highlight .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.package.is-highlight .btn-primary {
  background: #fff;
  color: var(--accent);
}

.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent-light);
}
.package.is-highlight .package-badge {
  background: var(--accent-hot);
  color: #fff;
}
.package-name {
  font-size: 1.35rem;
  margin-bottom: 10px;
  padding-right: 72px;
}
.package-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}
.price-amount {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 0.85rem;
  color: var(--dim);
  margin-left: 4px;
}
.best-for {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 10px 0 18px;
  font-style: italic;
}
.package-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 18px;
}
.package-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}
.package-includes li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 450;
}
.package-includes li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.package-meta {
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 16px;
}
.package-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* ── Services detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail h2 {
  font-size: 1.85rem;
  margin-bottom: 14px;
}
.service-detail .lede { margin-bottom: 22px; }
.service-side {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.about-story p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.highlight {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.highlight h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.highlight p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Founder / headshot */
.founder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 40px 48px;
  align-items: start;
  margin-bottom: 36px;
}
.founder-photo {
  margin: 0;
  position: sticky;
  top: 96px;
}
.founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 12%;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15, 40, 30, 0.12);
  background: linear-gradient(160deg, #f8f6f1 0%, #d2ded4 100%);
}

/* Work showcase (multiple products) — always visible (no scroll-hide) */
.work-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.work-card {
  opacity: 1 !important;
  transform: none !important;
}
.photo-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.photo-proof-item {
  margin: 0;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.photo-proof-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  background: var(--soft);
}
.photo-proof-item img.photo-crop-logo,
.photo-proof-item img[src*="soothing-littles-logo"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
  padding: 12%;
}
.photo-proof-item figcaption {
  padding: 8px 10px 10px;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
  flex: 1;
}
@media (max-width: 900px) {
  .photo-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .photo-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1040px) {
  .work-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 40, 30, 0.08);
}
.work-card-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #0f2a1c;
}
.work-card--duo .work-card-media {
  grid-template-columns: 1.15fr 0.85fr;
}
.work-card-visual {
  margin: 0;
  position: relative;
  background: #0f2a1c;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.work-card-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 20%;
}
/* Wide logo assets (e.g. Soothing Littles) — show full mark */
.work-card-visual img[src*="soothing-littles-logo"],
.work-card-visual img.photo-crop-logo {
  object-fit: contain !important;
  object-position: center center !important;
  background: linear-gradient(180deg, #a8d0ec 0%, #e8f4fb 50%, #f5fafd 100%);
  padding: 10% 8%;
}
/* Full box dielines — show the whole layout */
.work-card-visual img[src*="truisland-box"] {
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  padding: 5%;
}
/* Listing / kit photos */
.work-card-visual img[src*="amazon-marlin"],
.work-card-visual img[src*="amazon-turtle"],
.work-card-visual img[src*="on-amazon"] {
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 3%;
}
/* Tall product frames (phone-shot portrait) — keep subject in frame */
.work-card-visual img[src*="paddleboard"],
.work-card-visual img[src*="window-board"],
.work-card-visual img[src*="fishing-sup"],
.work-card-visual img[src*="gratitude"] {
  object-fit: cover;
  object-position: center 16%;
}
/* Studio packshot: show full box on white */
.work-card-visual img[src*="manateether"] {
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 0;
}
.work-card-visual img[src*="manateether-carton-beach"],
.work-card-visual img[src*="manateether-beach"] {
  object-fit: cover;
  object-position: center 40%;
  background: #0a1620;
  padding: 0;
}

/* Multi-image work strip (box → Amazon path) */
.work-card--gallery {
  grid-column: 1 / -1;
}
.work-card-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #0f2a1c;
}
.work-card-gallery--duo {
  grid-template-columns: 1fr 1fr;
}
.work-gallery-item {
  margin: 0;
  position: relative;
  min-width: 0;
  background: #111;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.work-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
  background: #111;
  flex: 0 0 auto;
}
.work-gallery-item img[src*="truisland-box"] {
  object-fit: contain;
  background: #0a0a0a;
  padding: 5%;
}
.work-gallery-item img[src*="amazon-marlin"],
.work-gallery-item img[src*="on-amazon"],
.work-gallery-item img[src*="amazon-turtle"] {
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 3%;
}
/* Manateether pair: clean pack reads as product art; beach carries the world */
.work-gallery-item img[src*="manateether.jpg"],
.work-gallery-item img[src*="field-manateether.jpg"] {
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 2%;
}
.work-gallery-item img[src*="manateether-beach"] {
  object-fit: cover;
  object-position: center 42%;
  background: #0a1620;
  padding: 0;
}
.work-gallery-item img[src*="manateether-carton-beach"] {
  object-fit: cover;
  object-position: center 42%;
  background: #0a1620;
  padding: 0;
}
.work-gallery-item figcaption {
  padding: 8px 10px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.4);
}
.work-card-gallery .work-card-badge {
  top: 14px;
  left: 14px;
}
@media (max-width: 700px) {
  .work-card-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .work-card-gallery:not(.work-card-gallery--duo) .work-gallery-item:first-child {
    grid-column: 1 / -1;
  }
  .work-card-gallery--duo {
    grid-template-columns: 1fr;
  }
  .work-gallery-item img {
    aspect-ratio: 16 / 11;
  }
  .work-card-gallery--duo .work-gallery-item img {
    aspect-ratio: 4 / 3;
  }
}
.work-card-detail {
  margin: 0;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0f2a1c;
}
.work-card-detail img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  height: auto;
  min-height: 140px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}
.work-card-detail img.work-card-detail-img--logo {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #b8d9f0 0%, #eef6fc 55%, #f7fbfd 100%);
  padding: 14%;
  min-height: 0;
}
.work-card-detail figcaption {
  padding: 8px 10px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.35);
  margin-top: auto;
}
.work-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
@media (max-width: 560px) {
  .work-card--duo .work-card-media {
    grid-template-columns: 1fr;
  }
  .work-card-detail {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .work-card-detail img {
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: none;
  }
  .work-card-visual {
    aspect-ratio: 5 / 4;
  }
}
.work-card-copy {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.work-card-product {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-card-copy h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
}
.work-card-copy > p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.work-sample-path {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-sample-path li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--text);
}
.capacity-banner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}
.capacity-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}
.capacity-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.capacity-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.capacity-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .work-showcase-grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 560px);
    margin-inline: auto;
  }
  .capacity-banner {
    flex-direction: column;
    gap: 10px;
  }
}

/* Field photo gallery (companies / teams / builds) */
.field-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.field-photo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 40, 30, 0.06);
}
.field-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}
.field-photo-card figcaption {
  padding: 12px 14px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .field-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .field-photo-grid {
    grid-template-columns: 1fr;
  }
}
.founder-photo figcaption {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-photo figcaption strong {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--text);
}
.founder-photo figcaption span {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.founder-meta {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-weight: 500;
}
.founder-headline {
  margin-bottom: 12px;
  font-size: 1.65rem;
}
.founder-lede {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.founder-highlights {
  margin-top: 8px;
}

/* Creative on call band (home) */
.oncall-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 48px;
  align-items: start;
  padding: 8px 0;
}
.oncall-copy .section-title {
  max-width: 18ch;
}
.oncall-copy .section-desc {
  margin-bottom: 22px;
  max-width: 42ch;
}
.oncall-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.oncall-point {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 40, 30, 0.04);
}
.oncall-point h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.oncall-point p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Contact ── */
.page-hero {
  padding: 72px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  margin-bottom: 16px;
  max-width: 18ch;
  margin-inline: auto;
}
.page-hero .lede {
  margin-inline: auto;
}
.page-hero.left { text-align: left; }
.page-hero.left h1,
.page-hero.left .lede { margin-inline: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.contact-points li {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-points strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-points .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.85rem;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.booking-lead {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.booking-perks {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-perks li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.booking-perks li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
}

.calendly-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 700px;
}
.calendly-wrap iframe {
  width: 100%;
  height: 700px;
  border: 0;
}
.calendly-alt {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.calendly-alt a {
  color: var(--accent);
  font-weight: 600;
}

.inquiry {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.inquiry-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.field .optional {
  font-weight: 400;
  color: var(--dim);
  font-size: 0.8rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-status {
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 8px;
  display: none;
}
.form-status.is-ok {
  display: block;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
}
.form-fine {
  font-size: 0.78rem;
  color: var(--dim);
  text-align: center;
  line-height: 1.5;
}
.package-note {
  padding: 14px 16px;
  background: var(--accent-soft);
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.5;
}

/* ── CTA band ── */
.cta-band {
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-band p {
  margin-bottom: 28px;
  max-width: 28rem;
  margin-inline: auto;
  font-size: 1.05rem;
}
.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.section-dark .btn-secondary {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.section-dark .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.section-dark .btn-accent,
.section-dark .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}
.section-dark .btn-accent:hover,
.section-dark .btn-primary:hover {
  background: var(--soft);
}

/* ── Footer ── */
.site-footer {
  background: #070b14;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .brand img { background: transparent; }
.footer-brand .brand-text { color: #fff; }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 22rem;
}
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

/* ── Legal ── */
.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}
.legal .meta {
  color: var(--dim);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.legal h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}
.legal p, .legal li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.not-found {
  text-align: center;
  padding: 100px 0 120px;
}
.not-found h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--accent);
  margin-bottom: 12px;
}
.not-found p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .problem-grid,
  .steps,
  .packages,
  .about-grid,
  .contact-grid,
  .service-detail,
  .inquiry-grid,
  .proof-strip,
  .founder-layout,
  .oncall-band {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    position: static;
    max-width: 280px;
    margin-inline: auto;
    text-align: center;
  }
  .founder-photo figcaption {
    align-items: center;
  }
  .oncall-copy .section-title {
    max-width: none;
  }
  .packages:not(.packages--partner):not(.packages--craft) {
    max-width: 420px;
    margin-inline: auto;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 16px 24px 28px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
    align-items: stretch;
  }
  .site-header.is-open .nav a {
    padding: 12px 8px;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, var(--max)); }
  .highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Launch enhancements ===== */

/* Hero: split editorial layout */
.hero {
  text-align: left;
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.25rem;
  }
}
.hero-copy .hero-label {
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-size: clamp(2.55rem, 5.5vw, 3.85rem);
  line-height: 1.05;
  max-width: none;
  margin: 0 0 1.2rem;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.hero-copy .lede {
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
}
.hero-copy .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.hero-fine {
  font-size: 0.88rem;
  color: var(--dim);
  margin: 0;
}

/* Hero product mock */
.hero-visual {
  position: relative;
  min-height: 320px;
}
.hero-stage {
  position: relative;
  padding: 1.5rem 0.5rem 1.5rem 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-a {
  width: 220px;
  height: 220px;
  background: rgba(45, 90, 71, 0.18);
  top: -10%;
  right: 10%;
}
.hero-orb-b {
  width: 160px;
  height: 160px;
  background: rgba(168, 196, 182, 0.45);
  bottom: 5%;
  left: 0;
}

.product-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
}
.product-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--soft);
  border-bottom: 1px solid var(--border);
}
.product-card-top .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d0c8;
}
.product-card-top .dot:nth-child(1) { background: #e8a0a0; }
.product-card-top .dot:nth-child(2) { background: #e0c878; }
.product-card-top .dot:nth-child(3) { background: #98c4a8; }
.product-card-url {
  margin-left: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
}
.product-card-body {
  padding: 1.35rem 1.4rem 1.4rem;
}
.product-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.product-card-body h3 {
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
}
.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.product-list {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--border);
}
.product-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}
.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.float-chip {
  position: absolute;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  box-shadow: var(--shadow-md);
  max-width: 160px;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.float-chip span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.float-chip-1 {
  top: 6%;
  left: -4px;
}
.float-chip-2 {
  bottom: 10%;
  right: -2px;
  animation-delay: 0.9s;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 959px) {
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .product-card { margin-inline: auto; }
  .float-chip-1 { left: 0; }
  .float-chip-2 { right: 0; }
  .hero-copy .hero-ctas { justify-content: flex-start; }
}

/* Capabilities / Services showcase */
.section-services {
  background:
    radial-gradient(900px 380px at 8% 0%, rgba(255, 90, 31, 0.06), transparent 55%),
    radial-gradient(700px 320px at 100% 40%, rgba(30, 58, 47, 0.05), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head--services .section-title {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  max-width: 18ch;
  margin-inline: auto;
}
.section-head--services .lede {
  max-width: 38em;
  margin-inline: auto;
}
.capability-grid,
.svc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1040px) {
  .svc-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.1rem;
  }
  .svc-grid .svc-card {
    grid-column: span 2;
  }
  .svc-grid .svc-card--featured {
    grid-column: span 6;
  }
  .svc-grid .svc-card--visual:not(.svc-card--featured) {
    grid-column: span 3;
  }
}
.capability-card,
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.05);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.capability-card:hover,
.svc-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(11, 18, 32, 0.1);
}
.svc-card-body {
  padding: 1.35rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.svc-card-n {
  font-family: "Outfit", var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.svc-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.svc-card h3,
.capability-card h3 {
  font-family: "Outfit", var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  line-height: 1.25;
}
.svc-card p,
.capability-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}
/* Featured packaging — design-forward */
.svc-card--featured {
  background:
    linear-gradient(145deg, #0b1220 0%, #152033 55%, #1a2438 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 28px 64px rgba(11, 18, 32, 0.22);
}
.svc-card--featured:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(11, 18, 32, 0.28);
}
.svc-card--featured .svc-card-body {
  padding: 1.6rem 1.6rem 1.25rem;
}
@media (min-width: 900px) {
  .svc-card--featured {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.35fr;
    align-items: stretch;
  }
  .svc-card--featured .svc-card-body {
    padding: 2rem 1.75rem 2rem 2rem;
    justify-content: center;
  }
}
.svc-card--featured h3 {
  font-family: "Instrument Serif", "Outfit", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  max-width: 14ch;
}
.svc-card--featured p {
  color: rgba(244, 246, 251, 0.68);
  font-size: 1rem;
  max-width: 36ch;
}
.svc-card--featured .svc-card-n {
  color: color-mix(in srgb, var(--accent) 80%, #fff);
}
.svc-card--featured .svc-card-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
}
/* Image galleries inside service cards */
.svc-card-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin-top: auto;
}
.svc-card--featured .svc-card-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 240px;
}
@media (min-width: 700px) {
  .svc-card--featured .svc-card-gallery {
    min-height: 300px;
  }
}
.svc-card-shot {
  margin: 0;
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
}
.svc-card-shot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.55s var(--ease);
}
.svc-card--featured .svc-card-shot {
  min-height: 240px;
  height: 100%;
}
.svc-card--featured .svc-card-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}
@media (min-width: 700px) {
  .svc-card--featured .svc-card-shot {
    min-height: 300px;
  }
}
.svc-card:hover .svc-card-shot img {
  transform: scale(1.04);
}
/* Box dielines + logo-like packaging art: show full design */
.svc-card-shot img[src*="truisland-box"],
.svc-card-shot img[src*="soothing-littles-logo"] {
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  padding: 5%;
}
.svc-card-shot img[src*="soothing-littles-logo"] {
  background: linear-gradient(180deg, #a8d0ec 0%, #e8f4fb 55%, #f5fafd 100%);
  padding: 6%;
}
.svc-card-shot img[src*="manateether"] {
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 0;
}
.svc-card-shot img[src*="amazon-marlin"],
.svc-card-shot img[src*="on-amazon"],
.svc-card-shot img[src*="amazon-turtle"] {
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 3%;
}
.svc-card-shot img[src*="paddleboard"],
.svc-card-shot img[src*="window-board"],
.svc-card-shot img[src*="fishing-sup"],
.svc-card-shot img[src*="gratitude"] {
  object-position: center 14%;
}
.svc-card-shot figcaption {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Non-featured visual cards (brand, amazon) */
.svc-card--visual:not(.svc-card--featured) .svc-card-gallery {
  grid-template-columns: 1fr 1fr;
}
.svc-card--visual:not(.svc-card--featured) .svc-card-shot {
  aspect-ratio: 5 / 4;
}
.svc-card--visual:not(.svc-card--featured) .svc-card-shot img {
  min-height: 0;
  aspect-ratio: auto;
}
.svc-grid-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 0;
}
@media (max-width: 560px) {
  .svc-card--featured .svc-card-gallery {
    grid-template-columns: 1fr;
  }
  .svc-card--featured .svc-card-shot {
    min-height: 200px;
  }
  .svc-card--visual:not(.svc-card--featured) .svc-card-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* Audience */
.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}
.audience-list {
  display: grid;
  gap: 0.85rem;
}
.audience-card {
  display: block;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s;
}
.audience-card:hover {
  border-color: rgba(45, 90, 71, 0.25);
  transform: translateY(-1px);
}
.audience-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.audience-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Call preview */
.call-preview {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .call-preview {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 2.5rem 2.25rem;
  }
  .call-preview-cta { grid-column: 1 / -1; }
}
.call-preview h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}
.call-preview .section-desc {
  margin: 0;
}
.call-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.call-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
  font-weight: 500;
}
.call-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.call-preview-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.call-preview-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.call-preview-cta a[data-email],
.call-preview-cta a[href^="mailto"] {
  color: var(--accent);
  font-weight: 600;
}

.packages-note {
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
}
.packages-note a {
  color: var(--accent);
  font-weight: 600;
}
.packages-note a:hover { text-decoration: underline; }

/* Outcomes strip */
.outcomes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .outcomes { grid-template-columns: repeat(3, 1fr); }
}
.outcome-card {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.outcome-card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.outcome-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
}
.outcome-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Honesty / standards */
.standards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .standards { grid-template-columns: 1fr 1fr; }
}
.standard-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.standard-item .mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.standard-item h3 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
}
.standard-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services comparison */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.92rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table th {
  background: var(--soft);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  font-weight: 500;
  color: var(--text);
  width: 28%;
}
.compare-table .yes { color: var(--accent); font-weight: 600; }
.compare-table .muted { color: var(--dim); }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
}
body.has-mobile-cta {
  /* reserved for JS */
}
@media (max-width: 767px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(250, 249, 247, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(30, 58, 47, 0.08);
    transform: translateY(110%);
    transition: transform 0.3s ease;
  }
  .mobile-cta.is-visible {
    transform: translateY(0);
  }
  .mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }
  body.has-mobile-cta {
    padding-bottom: 4.75rem;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-chip { animation: none; }
}

/* Proof strip spacing under split hero */
.hero + .trust {
  margin-top: 0;
}
.trust + .container .proof-strip,
.container > .proof-strip {
  margin-top: 40px;
  margin-bottom: 8px;
}

@media (max-width: 560px) {
  .hero { padding: 48px 0 40px; }
  .float-chip { max-width: 140px; padding: 0.55rem 0.75rem; }
  .call-preview { padding: 1.5rem 1.2rem; }
}


/* Dream journey + visual energy */
.dream-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #0b1220 0%, #134e4a 50%, #0b1220 100%);
  color: #fff;
}
.dream-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 20%, rgba(255, 90, 31, 0.18), transparent 50%),
    radial-gradient(ellipse 40% 60% at 90% 80%, rgba(45, 212, 191, 0.15), transparent 50%);
  pointer-events: none;
}
.dream-band .container { position: relative; z-index: 1; }
.dream-band .section-label { color: #5eead4; }
.dream-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  max-width: 18ch;
  margin-bottom: 12px;
}
.dream-band .lede {
  color: rgba(255,255,255,0.72);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.dream-track {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .dream-track { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}
.dream-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  backdrop-filter: blur(8px);
}
.dream-step .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent-hot);
  margin-bottom: 0.65rem;
}
.dream-step h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}
.dream-step p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.hero {
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(255, 90, 31, 0.08), transparent 50%),
    var(--bg);
}

.product-kicker { color: var(--accent-hot) !important; }

.outcome-card .num {
  font-style: normal !important;
  font-weight: 800;
  color: var(--accent-hot) !important;
}

body {
  font-size: 16.5px;
  letter-spacing: -0.011em;
}

.price-amount {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-dark .btn-accent {
  background: var(--accent-hot);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.3);
}
.section-dark .btn-accent:hover {
  background: var(--accent-hot-hover);
  color: #fff;
}
.section-dark .btn-primary {
  background: #fff;
  color: var(--ink);
}
.section-dark .btn-primary:hover {
  background: var(--soft);
  color: var(--ink);
}

.package.is-highlight .btn-primary {
  background: var(--accent-hot);
  color: #fff;
}
.package.is-highlight .btn-primary:hover {
  background: var(--accent-hot-hover);
  color: #fff;
}

.not-found h1 { color: var(--accent-hot); }


/* Path builder */
.path-builder {
  display: grid;
  gap: 1.75rem;
  max-width: 920px;
  margin-inline: auto;
}
.path-builder-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}
.path-summary {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.path-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-light);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}
.path-chip span {
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.8rem;
}

.path-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.path-step-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}
.path-step-n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}
.path-step-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}
.path-step-head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 720px) {
  .sector-grid { grid-template-columns: repeat(4, 1fr); }
}

.sector-card {
  text-align: left;
  padding: 0.95rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
  font: inherit;
  color: inherit;
  width: 100%;
}
.sector-card:hover {
  border-color: rgba(13, 148, 136, 0.45);
  transform: translateY(-1px);
}
.sector-card.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent);
}
.sector-card strong {
  display: block;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.sector-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.mode-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .mode-grid { grid-template-columns: 1fr 1fr; }
}

.mode-card {
  text-align: left;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
  font: inherit;
  color: inherit;
  width: 100%;
}
.mode-card:hover {
  border-color: rgba(255, 90, 31, 0.4);
  transform: translateY(-1px);
}
.mode-card.is-selected {
  border-color: var(--accent-hot);
  background: #fff7f3;
  box-shadow: 0 0 0 1px var(--accent-hot);
}
.mode-card .mode-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 0.5rem;
}
.mode-card h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.mode-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.path-step-form .inquiry-form {
  box-shadow: none;
  border: none;
  padding: 0;
  background: transparent;
}

.home-path-preview {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .home-path-preview { grid-template-columns: 1fr 1fr 1fr; }
}
.home-path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.home-path-kicker {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 0.55rem;
}
.home-path-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}
.home-path-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.home-path-cta .btn {
  margin-top: 1rem;
}

@media (max-width: 560px) {
  .sector-grid { grid-template-columns: 1fr; }
}


/* Agent pipeline */
.agent-pipeline {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .agent-pipeline {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1040px) {
  .agent-pipeline {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.agent-card:hover {
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.agent-card-top {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.agent-n {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--accent-hot);
  background: #fff7f3;
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
}
.agent-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}
.agent-role {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}
.agent-does {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.agent-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--display);
  letter-spacing: 0.02em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--text-muted);
  border: 1px solid var(--border);
}


/* ========== $100k polish layer ========== */
.pro-experience {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 148, 136, 0.09), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 90, 31, 0.07), transparent 50%),
    var(--bg);
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(600px 400px at 80% 20%, rgba(255, 90, 31, 0.05), transparent 60%);
  opacity: 0.9;
}
.pro-experience .site-header,
.pro-experience main,
.pro-experience .site-footer,
.pro-experience .mobile-cta {
  position: relative;
  z-index: 1;
}

.hero-pro {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(ellipse 40% 50% at 20% 40%, rgba(13, 148, 136, 0.22), transparent 70%),
    radial-gradient(ellipse 35% 45% at 80% 30%, rgba(255, 90, 31, 0.16), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(45, 212, 191, 0.08), transparent 70%);
  filter: blur(8px);
  animation: meshShift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshShift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 2%, 0) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 148, 136, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.15rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.hero-badge .hero-label,
.hero-badge [data-hero-label] {
  margin: 0;
  letter-spacing: 0.06em;
  font-size: inherit;
  color: inherit;
  text-transform: uppercase;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-pro h1 {
  background: linear-gradient(120deg, #0b1220 0%, #0b1220 45%, #0f766e 75%, #ff5a1f 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin: 1.5rem 0 0.75rem;
}
.hero-stats div { min-width: 88px; }
.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stats span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 60px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
.btn-glow:hover::after { opacity: 1; }

.glass-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow:
    0 24px 60px rgba(11, 18, 32, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
}
.glass-chip {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88) !important;
}
.live-pill {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(90deg, #22c55e, #0d9488);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  animation: liveBlink 2s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.mini-progress {
  height: 6px;
  background: var(--soft);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 1rem;
}
.mini-bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  border-radius: 999px;
  transition: width 0.5s var(--ease);
}

.product-list-animated li {
  opacity: 0.4;
  transition: opacity 0.35s, transform 0.35s;
}
.product-list-animated li.is-on {
  opacity: 1;
  transform: translateX(2px);
  font-weight: 600;
}

.hero-orb-c {
  width: 140px;
  height: 140px;
  background: rgba(255, 90, 31, 0.2);
  top: 40%;
  right: -10%;
  filter: blur(30px);
}
.hero-stage {
  --px: 0px;
  --py: 0px;
}
.hero-stage .hero-orb-a { transform: translate(calc(var(--px) * -0.6), calc(var(--py) * -0.4)); }
.hero-stage .hero-orb-b { transform: translate(calc(var(--px) * 0.5), calc(var(--py) * 0.3)); }
.hero-stage .product-card { transform: translate(calc(var(--px) * 0.15), calc(var(--py) * 0.1)); transition: transform 0.15s linear; }
.float-chip-3 {
  top: 42%;
  left: -8px;
  animation: floaty 7s ease-in-out infinite 0.4s;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 0.85rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-inner i {
  font-style: normal;
  color: var(--accent-hot);
  opacity: 0.9;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-pro {
  background: linear-gradient(90deg, rgba(13,148,136,0.06), rgba(255,90,31,0.05));
}
.proof-pro {
  box-shadow: var(--shadow-md);
  border-radius: 18px;
}

.studio-board {
  display: grid;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .studio-board {
    grid-template-columns: 1fr 1.1fr;
    padding: 1.75rem;
    gap: 1.75rem;
  }
}
.studio-label {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin: 0 0 0.85rem;
}
.studio-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.studio-sector {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-align: left;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
  color: var(--ink);
}
.studio-sector:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-1px);
}
.studio-sector.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent);
}
.studio-readout {
  background: linear-gradient(160deg, #0b1220 0%, #134e4a 100%);
  border-radius: 18px;
  padding: 1.25rem;
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.studio-selected {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-height: 72px;
}
.studio-empty {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}
.studio-big-icon { font-size: 2rem; line-height: 1; }
.studio-selected strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.studio-selected p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.studio-agent-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  flex: 1;
}
.studio-agent-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.35;
  transform: translateX(-4px);
  transition: 0.35s var(--ease);
  font-size: 0.82rem;
}
.studio-agent-list li.is-lit {
  opacity: 1;
  transform: none;
  background: rgba(255, 90, 31, 0.12);
  border-color: rgba(255, 90, 31, 0.25);
}
.sa-n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent-hot);
}
.sa-name { font-weight: 600; }
.sa-role {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  text-align: right;
}
.studio-modes {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 560px) {
  .studio-modes { grid-template-columns: 1fr 1fr; }
}
.studio-mode-btn {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  transition: 0.15s;
}
.studio-mode-btn:hover { border-color: rgba(255, 90, 31, 0.5); }
.studio-mode-btn.is-selected {
  border-color: var(--accent-hot);
  background: rgba(255, 90, 31, 0.18);
}
.studio-mode-btn strong {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.studio-mode-btn span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
}
.studio-readout .btn-accent { margin-top: auto; }

.path-progress {
  margin: 1.25rem 0 0.5rem;
  max-width: 420px;
}
.path-progress-bar {
  height: 8px;
  background: var(--soft);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.path-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  border-radius: 999px;
  transition: width 0.45s var(--ease);
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.35);
}
.path-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
}
.path-progress-labels .is-active { color: var(--accent-hot); }
.path-progress-labels .is-done { color: var(--accent-light); }

.sector-icon {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sector-card.spark,
.mode-card.spark {
  animation: cardSpark 0.45s var(--ease);
}
@keyframes cardSpark {
  0% { transform: scale(1); }
  40% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.chip-ico { margin-right: 0.2rem; }

.agent-queue-preview {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(13,148,136,0.1), rgba(255,90,31,0.08));
  border: 1px solid rgba(13, 148, 136, 0.2);
  margin-bottom: 0.75rem;
}
.aq-title {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 0.55rem;
}
.aq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.aq-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  animation: chipIn 0.4s var(--ease) both;
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.agent-card { position: relative; overflow: hidden; }
.agent-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  opacity: 0;
  transition: opacity 0.2s;
}
.agent-card:hover::before { opacity: 1; }

.package.is-highlight { position: relative; overflow: hidden; }
.package.is-highlight::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(255,90,31,0.25), transparent 70%);
  pointer-events: none;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(11, 18, 32, 0.06);
}

@media (max-width: 700px) {
  .hero-stats { gap: 1rem 1.25rem; }
  .hero-stats strong { font-size: 1.5rem; }
  .studio-sectors { grid-template-columns: 1fr; }
  .float-chip-3 { display: none; }
  .sa-role { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .marquee-inner,
  .pulse-dot,
  .live-pill,
  .float-chip { animation: none !important; }
}

/* ========== Editorial warm (engaging dream energy) ========== */
.editorial-warm {
  --bg: #faf9f7;
  --surface: #ffffff;
  --soft: #f3f1ec;
  --border: #e8e6e1;
  --text: #1a1a1a;
  --ink: #14201a;
  --text-muted: #5c5c5c;
  --dim: #8a8580;
  --accent: #1e3a2f;
  --accent-light: #2d5a47;
  --accent-soft: #e4efe9;
  --display: "Instrument Serif", Georgia, "Times New Roman", serif;
  background:
    radial-gradient(1000px 520px at 8% -8%, rgba(30, 58, 47, 0.07), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(255, 90, 31, 0.06), transparent 50%),
    var(--bg);
}

.editorial-warm .hero-pro h1 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.editorial-warm h2,
.editorial-warm .section-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.editorial-warm h2 em,
.editorial-warm .section-title em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 500;
}

.editorial-warm .hero-badge {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(30, 58, 47, 0.18);
  color: var(--accent);
  letter-spacing: 0.1em;
}

.editorial-warm .hero-stats strong {
  font-family: var(--display);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.65rem;
}

.editorial-warm .btn-accent,
.editorial-warm .btn-accent:visited {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #fff;
}
.editorial-warm .btn-accent:hover {
  background: var(--accent-hot-hover);
  border-color: var(--accent-hot-hover);
}

.editorial-warm .section-label {
  color: var(--accent-light);
  letter-spacing: 0.12em;
}

.editorial-warm .dream-band {
  background: linear-gradient(145deg, #14201a 0%, #1e3a2f 48%, #0f2922 100%);
}

.editorial-warm .trust-pro {
  background: var(--surface);
  border-color: var(--border);
}

.editorial-warm .product-card h3 {
  font-family: var(--display);
  font-weight: 600;
}

.editorial-warm .hero-mesh {
  background:
    radial-gradient(ellipse 42% 52% at 18% 42%, rgba(30, 58, 47, 0.18), transparent 70%),
    radial-gradient(ellipse 36% 46% at 82% 28%, rgba(255, 90, 31, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 85%, rgba(45, 90, 71, 0.1), transparent 70%);
}

.editorial-warm .cta-band h2,
.editorial-warm .section-dark h2 {
  font-family: var(--display);
  font-weight: 600;
}

.editorial-warm .brand-text {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* ========== CREATIVE IMPACT — landing first impression ========== */
.creative-impact {
  --impact-ink: #07090f;
  --impact-panel: #0c1018;
  --impact-cream: #f7f4ef;
  --impact-glow: #ff5a1f;
  --impact-teal: #2dd4bf;
}

/* Transparent header over dark hero */
.creative-impact .site-header--impact {
  background: rgba(7, 9, 15, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.2);
}
.creative-impact .site-header--impact .brand-text { color: #fff; }
.creative-impact .site-header--impact .brand-text span { color: var(--impact-glow); }
.creative-impact .site-header--impact .nav a { color: rgba(255, 255, 255, 0.72); }
.creative-impact .site-header--impact .nav a:hover,
.creative-impact .site-header--impact .nav a.is-active { color: #fff; }
.creative-impact .site-header--impact .btn-ghost {
  color: rgba(255, 255, 255, 0.8);
}
.creative-impact .site-header--impact .btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.creative-impact .site-header--impact.is-scrolled {
  background: rgba(7, 9, 15, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.creative-impact .site-header--impact .nav-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.creative-impact .site-header--impact .nav-toggle span { background: #fff; }

/* Cinematic hero */
.hero-impact {
  position: relative;
  min-height: min(100vh, 920px);
  padding: 100px 0 72px;
  background: var(--impact-ink);
  color: #fff;
  overflow: hidden;
}
.hero-impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-impact-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 90, 31, 0.22), transparent 42%),
    radial-gradient(circle at 78% 20%, rgba(45, 212, 191, 0.14), transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.12), transparent 45%);
  animation: impactGlow 12s ease-in-out infinite alternate;
}
.hero-impact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-impact-glow-a {
  width: 420px;
  height: 420px;
  background: rgba(255, 90, 31, 0.35);
  top: -8%;
  right: 8%;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-impact-glow-b {
  width: 360px;
  height: 360px;
  background: rgba(45, 212, 191, 0.22);
  bottom: 5%;
  left: -5%;
  animation: floatOrb 14s ease-in-out infinite reverse;
}
.hero-impact-glow-c {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  top: 40%;
  left: 40%;
}
@keyframes impactGlow {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.06) translateY(-12px); }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -22px); }
}

.hero-impact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem 2.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-impact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-impact-copy {
  max-width: 36rem;
}
.hero-impact .hero-badge--live {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.hero-impact .hero-badge--live [data-hero-label] {
  color: inherit;
  letter-spacing: 0.08em;
}
.hero-kicker {
  margin: 0 0 0.75rem;
  font-family: "Outfit", var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--impact-teal);
}
.hero-impact h1,
.creative-impact .hero-impact h1,
.creative-impact.editorial-warm .hero-impact h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  margin: 0 0 1.25rem;
  max-width: 12ch;
}
.hero-impact h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--impact-glow);
  -webkit-text-fill-color: var(--impact-glow);
}
.hero-impact-lede {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 36em;
}
.hero-impact .hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.hero-stats--impact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1.5rem 2rem;
}
.hero-stats--impact strong {
  color: #fff !important;
  font-family: "Outfit", var(--font) !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.03em;
}
.hero-stats--impact span {
  color: rgba(255, 255, 255, 0.55) !important;
}
.hero-impact .hero-fine {
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

/* Photo mosaic — width drives height (no max-height fighting aspect-ratio) */
.hero-impact-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  align-self: center;
}
.hero-mosaic,
.hero-portfolio {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
  aspect-ratio: 1 / 1.02;
  height: auto;
  max-height: none;
  min-height: 0;
}
.mosaic-tile {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: #121820;
  animation: mosaicIn 0.9s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.08s);
}
@keyframes mosaicIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.mosaic-tile img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
}
.mosaic-tile:hover img { transform: scale(1.03); }
.mosaic-tile figcaption {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 10px;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  max-width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mosaic-a { grid-column: 1; grid-row: 1 / 3; }
.mosaic-b { grid-column: 2; grid-row: 1; }
.mosaic-c { grid-column: 3; grid-row: 1 / 3; }
.mosaic-d { grid-column: 2; grid-row: 2 / 4; }
.mosaic-e { grid-column: 1; grid-row: 3; }
.mosaic-f { grid-column: 3; grid-row: 3; }
/* Logos / dielines: show full asset without looking tiny */
.mosaic-tile img.photo-crop-logo,
.mosaic-tile img[src*="soothing-littles-logo"],
.mosaic-tile img[src*="truisland-box"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
  padding: 10%;
}
.mosaic-tile img[src*="truisland-box"] {
  background: #0a0a0a;
  padding: 5%;
}
/* Listing / kit photography: fit full frame */
.mosaic-tile img[src*="amazon-marlin"],
.mosaic-tile img[src*="amazon-turtle"],
.mosaic-tile img[src*="on-amazon"] {
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
  padding: 3%;
}
/* Tall product shots — keep subject readable */
.mosaic-tile img[src*="paddleboard"],
.mosaic-tile img[src*="window-board"],
.mosaic-tile img[src*="fishing-sup"],
.mosaic-tile img[src*="gratitude"] {
  object-fit: cover !important;
  object-position: center 18% !important;
}
.mosaic-tile img[src*="manateether"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
  padding: 3% !important;
}

.hero-float-tag {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: tagFloat 5s ease-in-out infinite;
}
.hero-float-tag span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--impact-teal);
  margin-bottom: 0.15rem;
}
.hero-float-tag strong {
  font-family: "Outfit", var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.hero-float-tag-1 { top: 8%; left: -4%; animation-delay: 0s; }
.hero-float-tag-2 { bottom: 18%; right: -2%; animation-delay: 0.8s; }
.hero-float-tag-3 { bottom: -2%; left: 18%; animation-delay: 1.4s; }
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-scroll-hint i {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0.4); transform-origin: top; }
  40% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* Filmstrip — fixed height tiles so mixed portrait/landscape stay even */
.filmstrip {
  background: var(--impact-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 1rem 0;
}
.filmstrip-track {
  display: flex;
  width: max-content;
}
.filmstrip-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.75rem;
  animation: filmScroll 48s linear infinite;
}
.filmstrip:hover .filmstrip-inner { animation-play-state: paused; }
@keyframes filmScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.filmstrip-item {
  margin: 0;
  flex: 0 0 auto;
  height: 176px;
  width: 236px;
  aspect-ratio: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: #121820;
  position: relative;
}
.filmstrip-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s var(--ease);
}
.filmstrip-item img.photo-crop-logo,
.filmstrip-item img[src*="soothing-littles-logo"],
.filmstrip-item img[src*="truisland-box"] {
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
  padding: 6%;
}
.filmstrip-item img[src*="truisland-box"] {
  background: #0a0a0a;
  padding: 5%;
}
.filmstrip-item img[src*="amazon-marlin"],
.filmstrip-item img[src*="on-amazon"],
.filmstrip-item img[src*="amazon-turtle"] {
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
  padding: 3%;
}
.filmstrip-item img[src*="paddleboard"],
.filmstrip-item img[src*="window-board"],
.filmstrip-item img[src*="fishing-sup"],
.filmstrip-item img[src*="gratitude"] {
  object-position: center 15%;
}
.filmstrip-item:hover img { transform: scale(1.03); }

.marquee--impact {
  background: linear-gradient(90deg, #0c1018, #141a24, #0c1018);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.55);
}
.creative-impact .marquee--impact .marquee-inner {
  color: rgba(255, 255, 255, 0.55);
}
.creative-impact .marquee--impact .marquee-inner i {
  color: var(--impact-glow);
}

.trust-impact {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-impact p {
  font-family: "Outfit", var(--font);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: 0.95rem;
}

.proof-impact {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.creative-impact .proof-impact .proof-item {
  background: linear-gradient(160deg, #fff 0%, #f7f4ef 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.creative-impact .proof-impact .proof-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.1);
}
.creative-impact .proof-impact .proof-item strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.75rem;
  color: var(--accent-hot);
}

/* Work section elevation */
.section-work-impact {
  padding-top: 4.5rem;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(255, 90, 31, 0.06), transparent 60%),
    var(--surface);
}
.section-head--impact .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
  margin-inline: auto;
}
.packages-note--impact {
  text-align: center;
  margin-top: 2.5rem;
}

.creative-impact .work-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(11, 18, 32, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.creative-impact .work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(11, 18, 32, 0.14);
}
.creative-impact .photo-proof-strip {
  margin-top: 2.5rem;
  gap: 0.85rem;
  padding-bottom: 0.5rem;
}
.creative-impact .photo-proof-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.08);
  min-width: 0;
}
.creative-impact .photo-proof-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
}
.creative-impact .photo-proof-item img.photo-crop-logo,
.creative-impact .photo-proof-item img[src*="soothing-littles-logo"],
.creative-impact .photo-proof-item img[src*="truisland-box"] {
  object-fit: contain !important;
  background: #fff;
  padding: 8%;
}
.creative-impact .photo-proof-item img[src*="truisland-box"] {
  background: #0a0a0a;
}
.creative-impact .photo-proof-item img[src*="amazon-marlin"],
.creative-impact .photo-proof-item img[src*="on-amazon"],
.creative-impact .photo-proof-item img[src*="amazon-turtle"] {
  object-fit: contain !important;
  background: #f7f7f7;
  padding: 4%;
}
.creative-impact .photo-proof-item img[src*="paddleboard"],
.creative-impact .photo-proof-item img[src*="window-board"],
.creative-impact .photo-proof-item img[src*="fishing-sup"],
.creative-impact .photo-proof-item img[src*="gratitude"] {
  object-position: center 14%;
}

.cta-impact {
  position: relative;
  overflow: hidden;
}
.cta-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(255, 90, 31, 0.2), transparent 60%),
    radial-gradient(500px 280px at 85% 40%, rgba(45, 212, 191, 0.12), transparent 55%);
  pointer-events: none;
}
.cta-impact .cta-band { position: relative; z-index: 1; }
.cta-impact h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem) !important;
  max-width: 16ch;
}

@media (max-width: 960px) {
  .hero-impact { min-height: auto; padding: 88px 0 56px; }
  .hero-mosaic,
  .hero-portfolio {
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
  }
  .hero-float-tag-1 { left: 0; top: 4%; }
  .hero-float-tag-2 { right: 0; }
  .hero-float-tag-3 { left: 8%; bottom: 0; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 640px) {
  .hero-impact h1 { max-width: none; font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero-mosaic,
  .hero-portfolio {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.1fr 1fr 1fr;
    aspect-ratio: 1 / 1.05;
    gap: 8px;
    max-width: 100%;
  }
  .mosaic-a { grid-column: 1 / -1; grid-row: 1; }
  .mosaic-b { grid-column: 1; grid-row: 2; }
  .mosaic-c { grid-column: 2; grid-row: 2; }
  .mosaic-d { grid-column: 1; grid-row: 3; }
  .mosaic-e { grid-column: 2; grid-row: 3; }
  .mosaic-f { display: none; }
  .hero-float-tag { display: none; }
  .filmstrip-item {
    height: 148px;
    width: 198px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-impact-noise,
  .hero-impact-glow-a,
  .hero-impact-glow-b,
  .mosaic-tile,
  .hero-float-tag,
  .filmstrip-inner,
  .hero-scroll-hint i {
    animation: none !important;
  }
}

/* Mobile menu on dark impact header */
@media (max-width: 900px) {
  .creative-impact .site-header--impact.is-open .nav {
    background: #0c1018;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .creative-impact .site-header--impact.is-open .nav a {
    color: rgba(255, 255, 255, 0.85);
  }
  .creative-impact .site-header--impact.is-open .nav a:hover,
  .creative-impact .site-header--impact.is-open .nav a.is-active {
    color: #fff;
  }
}

/* ========== About: people, founder, team ========== */
.about-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
}
.about-jump a {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-hot);
  border-bottom: 1px solid rgba(255, 90, 31, 0.35);
  padding-bottom: 2px;
}
.about-jump a:hover { border-bottom-color: var(--accent-hot); }

.section-leadership-top {
  padding-top: 2.5rem;
}
.founder-layout--featured {
  gap: 2.5rem 3rem;
  align-items: start;
}
.founder-photo--featured {
  max-width: 380px;
  margin: 0;
}
.founder-photo--featured img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.14);
  border: 1px solid var(--border);
  background: #0b1220;
}
.founder-photo--featured figcaption {
  margin-top: 0.85rem;
  text-align: left;
}
.founder-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section-team {
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(255, 90, 31, 0.07), transparent 55%),
    var(--bg);
}
.team-photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.team-photo-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.08);
}
.team-photo-card--wide {
  grid-column: 1;
  grid-row: 1 / 3;
}
.team-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.team-photo-card--wide img { min-height: 420px; }
.team-photo-card:hover img { transform: scale(1.03); }
.team-photo-card figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.section-people {
  background: var(--soft);
}
.people-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.people-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.people-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11, 18, 32, 0.12);
}
.people-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.people-card span {
  display: block;
  padding: 0.85rem 1rem 1rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .team-photo-grid {
    grid-template-columns: 1fr;
  }
  .team-photo-card--wide {
    grid-column: auto;
    grid-row: auto;
  }
  .team-photo-card--wide img { min-height: 280px; }
  .people-strip { grid-template-columns: 1fr; }
  .founder-photo--featured { max-width: 100%; }
}

/* ========== Photo crop modes ========== */
/* Prefer context rules (filmstrip / mosaic / cards) over blanket !important */
.photo-crop-face {
  object-fit: cover;
  object-position: center 18%;
}
.photo-crop-team {
  object-fit: cover;
  object-position: center 32%;
}
.photo-crop-product {
  object-fit: cover;
  object-position: center 24%;
}
.photo-crop-detail {
  object-fit: cover;
  object-position: center 30%;
}
.photo-crop-logo {
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 8%;
}
/* About / people grids still need hard crop */
.team-photo-card img.photo-crop-face,
.team-photo-card img.photo-crop-team,
.founder-photo img.photo-crop-face,
.about-me img.photo-crop-face {
  object-fit: cover !important;
}

/* ========== About Me (Michael) ========== */
.about-page .site-header {
  background: rgba(255, 255, 255, 0.94);
}
.about-me {
  padding: 48px 0 56px;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(255, 90, 31, 0.07), transparent 55%),
    radial-gradient(700px 360px at 100% 20%, rgba(30, 58, 47, 0.06), transparent 50%),
    #faf9f7;
}
.about-me-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 2.5rem 3.5rem;
  align-items: start;
}
.about-me-portrait {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 28px 64px rgba(11, 18, 32, 0.12);
  background: #0b1220;
  aspect-ratio: 1;
}
.about-me-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}
.about-me-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}
.about-me-facts div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.65rem;
  text-align: center;
}
.about-me-facts strong {
  display: block;
  font-family: "Outfit", var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.about-me-facts span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.about-me-name {
  font-family: "Outfit", var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin: 0 0 0.25rem;
}
.about-me-role {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-weight: 500;
}
.about-me-headline {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 18ch;
}
.about-me-lede {
  margin-bottom: 1.25rem !important;
  max-width: 36em;
}
.about-me-story p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 38em;
}
.about-me-story p:last-child { margin-bottom: 0; }
.about-me-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-me-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.04);
}
.about-me-pillar h3 {
  font-family: "Outfit", var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.about-me-pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Team bento */
.team-bento {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.team-bento-main,
.team-bento-side {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(11, 18, 32, 0.1);
  background: #0b1220;
  min-height: 320px;
}
.team-bento-main { min-height: 420px; }
.team-bento-main img,
.team-bento-side img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.team-bento-main img { min-height: 420px; }
.team-bento-main:hover img,
.team-bento-side:hover img { transform: scale(1.03); }
.team-bento-main figcaption,
.team-bento-side figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(7, 9, 15, 0.88));
  color: #fff;
}
.team-bento-main figcaption strong,
.team-bento-side figcaption strong {
  display: block;
  font-family: "Outfit", var(--font);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.team-bento-main figcaption span,
.team-bento-side figcaption span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Structured product gallery */
.section-gallery {
  background:
    radial-gradient(800px 280px at 50% 0%, rgba(255, 90, 31, 0.05), transparent 55%),
    var(--bg);
}
.gallery-structured { margin-top: 0.5rem; }
.gallery-group { margin-bottom: 2.25rem; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group-title {
  font-family: "Outfit", var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 0.9rem;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.gallery-row--duo {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
}
.gallery-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.06);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--soft);
}
.gallery-card--logo img {
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  padding: 10%;
}
.gallery-card figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.gallery-row--duo .gallery-card img {
  aspect-ratio: 16 / 11;
}

/* Work card detail logo override */
.work-card-detail-img--logo,
.work-card-detail img.work-card-detail-img--logo {
  object-fit: contain !important;
  background: linear-gradient(180deg, #b8d9f0 0%, #eef6fc 55%, #f7fbfd 100%) !important;
  padding: 14% !important;
}

@media (max-width: 960px) {
  .about-me-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-me-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .about-me-headline { max-width: none; }
  .about-me-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .team-bento {
    grid-template-columns: 1fr;
  }
  .team-bento-main,
  .team-bento-main img {
    min-height: 280px;
  }
  .gallery-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .about-me { padding: 32px 0 40px; }
  .about-me-facts { grid-template-columns: 1fr; }
  .about-me-pillars { grid-template-columns: 1fr; }
  .gallery-row,
  .gallery-row--duo {
    grid-template-columns: 1fr;
  }
}

/* ========== Game polish v9 ========== */
.page-hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(800px 360px at 10% 0%, rgba(255, 90, 31, 0.06), transparent 55%),
    var(--bg);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.page-hero.left h1 { max-width: 18ch; }
.page-hero .lede { max-width: 36em; }

.editorial-warm .page-hero h1 em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 500;
}

.section-dark .btn-secondary,
.cta-impact .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.section-dark .btn-secondary:hover,
.cta-impact .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Package cards more premium */
.editorial-warm .package-card {
  border-radius: 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.editorial-warm .package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(11, 18, 32, 0.1);
}
.editorial-warm .package-card.is-featured,
.editorial-warm .package-card.featured {
  border-color: rgba(255, 90, 31, 0.35);
  box-shadow: 0 20px 48px rgba(255, 90, 31, 0.12);
}

/* Tighter mobile CTA */
.mobile-cta {
  box-shadow: 0 -8px 32px rgba(11, 18, 32, 0.12);
}

/* Nav work link consistency */
.nav a[data-nav="work"].is-active { color: var(--text); font-weight: 600; }

/* ========== Firm-first homepage (no personal photos) ========== */
.firm-home .hero-firm {
  min-height: auto;
  padding: 96px 0 64px;
}
.firm-home .hero-impact-visual {
  width: 100%;
}
.firm-home .hero-portfolio {
  /* sizing shared with .hero-mosaic rules above */
  border-radius: 0;
}
.firm-home .hero-portfolio .mosaic-tile {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.firm-home .hero-portfolio-label {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.firm-home .hero-float-tag { display: none !important; }

/* Brand thesis — “worth the squeeze” */
.section-brand-pitch {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 50%),
    #0b1220;
  color: #f4f6fb;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.section-brand-pitch .section-label {
  color: color-mix(in srgb, var(--accent) 85%, #fff);
  letter-spacing: 0.14em;
}
.brand-pitch-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.brand-pitch-headline {
  font-family: "Instrument Serif", "Outfit", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  max-width: 16ch;
  color: #fff;
}
.brand-pitch-headline em {
  font-style: italic;
  color: color-mix(in srgb, var(--accent) 70%, #fff);
}
.brand-pitch-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(244, 246, 251, 0.88);
  margin: 0 0 1rem;
  max-width: 42ch;
}
.brand-pitch-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(244, 246, 251, 0.62);
  margin: 0;
  max-width: 46ch;
}
.brand-pitch-points {
  display: grid;
  gap: 0.85rem;
}
.brand-pitch-point {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem 1.3rem 1.25rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.brand-pitch-point:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: color-mix(in srgb, var(--accent) 45%, rgba(255, 255, 255, 0.15));
  transform: translateY(-2px);
}
.brand-pitch-num {
  display: block;
  font-family: "Outfit", var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--accent) 80%, #fff);
  margin-bottom: 0.45rem;
}
.brand-pitch-point h3 {
  font-family: "Outfit", var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.brand-pitch-point p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(244, 246, 251, 0.62);
}
@media (max-width: 900px) {
  .brand-pitch-wrap {
    grid-template-columns: 1fr;
  }
  .brand-pitch-headline {
    max-width: none;
  }
}

.section-firm-energy {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.firm-energy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem 3rem;
  align-items: start;
}
.firm-energy-grid .section-title {
  max-width: 14ch;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}
.firm-energy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.firm-energy-card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.firm-energy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.08);
  background: #fff;
}
.firm-energy-card h3 {
  font-family: "Outfit", var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.firm-energy-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Hide any people strip remnants on firm home */
.firm-home .section-people,
.firm-home [data-people-section] {
  display: none !important;
}

@media (max-width: 960px) {
  .firm-energy-grid {
    grid-template-columns: 1fr;
  }
  .firm-energy-grid .section-title { max-width: none; }
  .firm-home .hero-firm {
    padding: 80px 0 48px;
  }
}
@media (max-width: 640px) {
  .firm-energy-cards { grid-template-columns: 1fr; }
  .firm-home .hero-firm {
    padding: 72px 0 40px;
  }
  .firm-home .mosaic-tile {
    border-radius: 12px;
  }
  .firm-home .mosaic-tile figcaption {
    font-size: 0.62rem;
    padding: 0.22rem 0.45rem;
    left: 8px;
    bottom: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WOW HOME — Apple clarity × Google product energy
   Tagline typography + outsource / money story
   ═══════════════════════════════════════════════════════════════ */

.wow-home {
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Professional polish: calm, restrained, firm-grade */
.wow-home.firm-home .hero-impact-noise {
  animation: none;
  opacity: 0.18;
}
.wow-home .hero-impact-glow {
  animation: none;
  opacity: 0.28;
  filter: blur(80px);
}
.wow-home .hero-badge--live {
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.wow-home .pulse-dot {
  background: #5eead4;
  box-shadow: none;
  animation: none;
}
.wow-home .section-label {
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  opacity: 0.9;
}
.wow-home .outsource-headline,
.wow-home .brand-pitch-headline,
.wow-home .section-title {
  font-weight: 600;
  letter-spacing: -0.028em;
}

.wow-home .hero-wow {
  min-height: min(92svh, 880px);
  padding: 112px 0 88px;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(255, 90, 31, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(45, 212, 191, 0.06), transparent 50%),
    linear-gradient(180deg, #070b12 0%, #0b1220 55%, #0c1420 100%);
}

.wow-home .hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 15%, transparent 72%);
  pointer-events: none;
}

/* Header: quieter, more corporate */
.pro-polish .site-header--impact {
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pro-polish .site-header--impact.is-scrolled {
  background: rgba(7, 11, 18, 0.88);
}
.pro-polish .btn-glow {
  box-shadow: none;
  animation: none;
}
.pro-polish .btn-accent {
  box-shadow: none;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pro-polish .btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.22);
}
.pro-polish .marquee--impact {
  opacity: 0.55;
  border-color: rgba(255, 255, 255, 0.06);
}
.pro-polish .filmstrip {
  border-color: rgba(255, 255, 255, 0.06);
}
.pro-polish .hero-portfolio {
  box-shadow: none;
  border-radius: 0;
}
.pro-polish .mosaic-tile {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}
.pro-polish .mosaic-tile:hover img {
  transform: scale(1.025);
}
.pro-polish .filmstrip-item {
  border-radius: 10px;
}
.pro-polish .work-card-visual,
.pro-polish .work-gallery-item {
  background: #0e1520;
}
.pro-polish .outsource-savings {
  border-radius: 20px;
  background: #0a1018;
}
.pro-polish .outsource-pillar,
.pro-polish .brand-pitch-point,
.pro-polish .firm-energy-card {
  border-radius: 14px;
  box-shadow: none;
}
.pro-polish .outsource-pillar:hover,
.pro-polish .brand-pitch-point:hover {
  transform: none;
  box-shadow: none;
}
.pro-polish .page-glow {
  opacity: 0.35;
}

.wow-home .hero-impact-copy {
  max-width: 38rem;
}

.wow-home .hero-kicker {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.15rem;
  opacity: 1;
}

/* Tagline: refined, professional hierarchy */
.wow-home .hero-tagline,
.wow-home .hero-impact h1.hero-tagline,
.wow-home.creative-impact .hero-impact h1.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06em;
  margin: 0 0 1.4rem;
  max-width: 14ch;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 600 !important;
  font-size: clamp(2.5rem, 5.8vw, 4.15rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.038em !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  text-wrap: balance;
}

.wow-home .hero-tagline-lead {
  display: block;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.88);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88);
}

.wow-home .hero-tagline-accent,
.wow-home .hero-tagline em.hero-tagline-accent {
  display: block;
  font-family: var(--serif-display) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 1.04em;
  letter-spacing: -0.025em;
  line-height: 1.08;
  /* Single refined accent color, not rainbow gradient */
  color: #ff7a45 !important;
  -webkit-text-fill-color: #ff7a45 !important;
  background: none !important;
  filter: none;
}

.wow-home .hero-money-line {
  margin: 0 0 0.85rem;
  max-width: 32em;
  font-family: var(--font);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.wow-home .hero-impact-lede {
  font-family: var(--font);
  font-size: clamp(1rem, 1.4vw, 1.12rem) !important;
  font-weight: 400;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  max-width: 38em;
}

.wow-home .hero-stats--impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2.1rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wow-home .hero-stats--impact > div {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.wow-home .hero-stats--impact strong {
  font-family: "Inter", var(--font) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
}

.wow-home .hero-stats--impact span {
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.wow-home .hero-portfolio {
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.45);
}

.wow-home .brand-pitch-headline {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 14ch;
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
}

.wow-home .brand-pitch-headline em,
.wow-home .brand-pitch-accent {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  color: color-mix(in srgb, var(--accent-hot) 75%, #fff);
}

/* Outsource deep dive */
.section-outsource {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f4f6f8 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3.75rem, 8vw, 6rem);
}

.outsource-head {
  max-width: 46rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.outsource-headline {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 1.15rem;
  text-wrap: balance;
}

.outsource-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 0.9rem;
  font-weight: 500;
}

.outsource-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.outsource-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.outsource-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.outsource-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.outsource-pillar-n {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.outsource-pillar h3 {
  font-family: "Inter", var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.outsource-pillar p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.outsource-savings {
  background: #0b1220;
  color: #f4f6fb;
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.outsource-savings .section-label {
  color: #5eead4;
}

.outsource-savings-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: #fff;
  max-width: 28ch;
}

.outsource-savings-note {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: rgba(244, 246, 251, 0.55);
  max-width: 48ch;
}

.outsource-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.outsource-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.35rem 1.3rem 1.25rem;
}

.outsource-card.is-good {
  background: linear-gradient(160deg, rgba(13, 148, 136, 0.18), rgba(255, 255, 255, 0.03));
  border-color: rgba(45, 212, 191, 0.35);
}

.outsource-card.is-warn {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.outsource-card-sub {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.45);
}

.outsource-card h4 {
  margin: 0 0 1rem;
  font-family: "Inter", var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.outsource-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  padding: 0;
}

.outsource-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(244, 246, 251, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.55rem;
}

.outsource-card li strong {
  font-weight: 650;
  color: #fff;
  text-align: right;
  white-space: nowrap;
}

.outsource-card-total {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #5eead4;
}

.outsource-card.is-warn .outsource-card-total {
  color: rgba(251, 191, 36, 0.95);
}

.outsource-compare-note {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 246, 251, 0.68);
  max-width: 62ch;
}

.outsource-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.outsource-ctas .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.outsource-ctas .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
  .outsource-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .outsource-compare {
    grid-template-columns: 1fr;
  }
  .wow-home .hero-stats--impact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .outsource-pillars {
    grid-template-columns: 1fr;
  }
  .wow-home .hero-tagline,
  .wow-home .hero-impact h1.hero-tagline {
    font-size: clamp(2.35rem, 11vw, 3.1rem) !important;
  }
  .outsource-savings {
    border-radius: 20px;
    padding: 1.4rem 1.15rem 1.5rem;
  }
  .outsource-card li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .outsource-card li strong {
    text-align: left;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wow-home .hero-impact-noise,
  .wow-home .hero-impact-glow {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Homepage photo system v24 — all areas, consistent framing
   ═══════════════════════════════════════════════════════════════ */

.firm-home .hero-impact-visual {
  width: 100%;
  max-width: 100%;
}

.firm-home .hero-portfolio,
.firm-home .hero-mosaic {
  width: 100% !important;
  max-width: min(100%, 540px) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
}

.firm-home .mosaic-tile {
  min-height: 0 !important;
  height: 100% !important;
}

.firm-home .mosaic-tile img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

/* Filmstrip: even tiles */
.firm-home .filmstrip-item {
  height: 180px !important;
  width: 240px !important;
  flex: 0 0 240px !important;
}

.firm-home .filmstrip-item img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

/* Work cards: shared media frame */
.firm-home .work-card-visual {
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  overflow: hidden !important;
}

.firm-home .work-card-visual img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
}

.firm-home .work-gallery-item img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover;
}

.firm-home .work-card-detail {
  position: relative !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
}

.firm-home .work-card-detail img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}

.firm-home .work-card--duo .work-card-media {
  align-items: stretch;
}

.firm-home .work-card--duo .work-card-detail {
  aspect-ratio: auto;
  min-height: 100%;
}

.firm-home .work-card--duo .work-card-detail img {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
}

/* Photo proof strip */
.firm-home .photo-proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.firm-home .photo-proof-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.firm-home .photo-proof-item img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover;
  object-position: center 16%;
}

/* Services capability shots */
.firm-home .svc-card-shot {
  position: relative !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  min-height: 0 !important;
}

.firm-home .svc-card-shot img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

.firm-home .svc-card--featured .svc-card-shot {
  aspect-ratio: auto !important;
  min-height: 220px !important;
  height: 100% !important;
}

.firm-home .svc-card--featured .svc-card-gallery {
  min-height: 220px !important;
}

/* Contain rules for logos / listings / boxes (all homepage contexts) */
.firm-home img[src*="soothing-littles-logo"],
.firm-home img[src*="truisland-box"] {
  object-fit: contain !important;
  object-position: center !important;
}

.firm-home img[src*="soothing-littles-logo"] {
  background: linear-gradient(180deg, #a8d0ec 0%, #e8f4fb 55%, #f5fafd 100%) !important;
  padding: 6% !important;
}

.firm-home img[src*="truisland-box"] {
  background: #0a0a0a !important;
  padding: 5% !important;
}

.firm-home img[src*="amazon-marlin"],
.firm-home img[src*="amazon-turtle"],
.firm-home img[src*="on-amazon"] {
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
  padding: 3% !important;
}

.firm-home img[src*="paddleboard"],
.firm-home img[src*="window-board"],
.firm-home img[src*="fishing-sup"],
.firm-home img[src*="gratitude"] {
  object-fit: cover !important;
  object-position: center 12% !important;
  padding: 0 !important;
}

.firm-home img[src*="manateether"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
  padding: 2% !important;
}
.firm-home img[src*="manateether-beach"] {
  object-fit: cover !important;
  object-position: center 40% !important;
  background: #0a1620 !important;
  padding: 0 !important;
}
.firm-home img[src*="manateether-carton-beach"] {
  object-fit: cover !important;
  object-position: center 40% !important;
  background: #0a1620 !important;
  padding: 0 !important;
}

@media (max-width: 960px) {
  .firm-home .hero-portfolio,
  .firm-home .hero-mosaic {
    max-width: 100% !important;
    margin-inline: auto !important;
  }
  .firm-home .photo-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .firm-home .filmstrip-item {
    height: 150px !important;
    width: 200px !important;
    flex-basis: 200px !important;
  }
  .firm-home .photo-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .firm-home .work-card-visual {
    aspect-ratio: 5 / 4 !important;
  }
  .firm-home .svc-card--featured .svc-card-shot {
    min-height: 180px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Homepage genius polish v30
   Tagline + offering clarity, centered packshots, quiet craft
   ═══════════════════════════════════════════════════════════════ */

.wow-home .hero-offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  max-width: 36rem;
}

.wow-home .hero-offer-pills li {
  margin: 0;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.wow-home .hero-tagline {
  max-width: 12.5ch !important;
}

.wow-home .hero-tagline-accent {
  position: relative;
}

.wow-home .hero-money-line {
  font-size: clamp(1.12rem, 2vw, 1.35rem) !important;
  max-width: 28em;
  color: rgba(255, 255, 255, 0.94) !important;
}

.wow-home .hero-impact-lede {
  max-width: 34em !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.wow-home .hero-ctas {
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.wow-home .hero-portfolio-label {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}

.wow-home .mosaic-tile {
  background: #101820;
}

.wow-home .mosaic-tile img[src*="manateether.jpg"],
.wow-home .mosaic-tile img[src*="field-manateether.jpg"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
  padding: 2% !important;
}

.wow-home .filmstrip-item img[src*="manateether.jpg"],
.wow-home .photo-proof-item img[src*="manateether.jpg"],
.wow-home .work-gallery-item img[src*="manateether.jpg"],
.wow-home .work-card-visual img[src*="manateether.jpg"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
  padding: 2% !important;
}

.wow-home .section-brand-pitch {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 122, 69, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.wow-home .brand-pitch-headline {
  max-width: 16ch !important;
  font-size: clamp(2.25rem, 4.8vw, 3.5rem) !important;
  line-height: 1.08 !important;
}

.wow-home .brand-pitch-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft, #1e293b);
  max-width: 38em;
}

.wow-home .brand-pitch-point {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 1.2rem 1.35rem;
}

.wow-home .brand-pitch-num {
  color: #ff7a45;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.wow-home .outsource-head {
  max-width: 42rem;
}

.wow-home .outsource-headline {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.wow-home .trust-impact p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: -0.015em;
}

@media (max-width: 720px) {
  .wow-home .hero-offer-pills {
    gap: 0.4rem;
  }
  .wow-home .hero-offer-pills li {
    font-size: 0.72rem;
    padding: 0.36rem 0.65rem;
  }
  .wow-home .hero-portfolio-label {
    text-align: center;
  }
}

/* Manateether pack: dead-center in every frame */
.firm-home img[src*="manateether.jpg"],
.firm-home img[src*="field-manateether.jpg"],
.wow-home img[src*="manateether.jpg"],
.wow-home img[src*="field-manateether.jpg"] {
  object-fit: contain !important;
  object-position: 50% 50% !important;
  background: #fff !important;
}
.firm-home img[src*="manateether-beach"],
.wow-home img[src*="manateether-beach"] {
  object-fit: cover !important;
  object-position: center 40% !important;
  background: #0a1620 !important;
}
.wow-home img[src*="manateether-carton-beach"] {
  object-fit: cover !important;
  object-position: center 40% !important;
  background: #0a1620 !important;
}

/* ── Flagship Product Path ── */
.section-product-path {
  background: #0b1220;
  color: #fff;
  padding: 5.25rem 0 4.75rem;
}
.section-product-path .section-label {
  color: #ff5a1f;
}
.section-product-path .section-title,
.section-product-path .lede {
  color: #fff;
}
.section-product-path .lede {
  color: rgba(255, 255, 255, 0.68);
  max-width: 38rem;
  margin-inline: auto;
}
.product-path-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 2.75rem 0 2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.product-path-step {
  padding: 1.45rem 1.15rem 1.55rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.product-path-step:last-child { border-right: none; }
.product-path-step .pp-n {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff5a1f;
  margin-bottom: 0.55rem;
}
.product-path-step strong {
  display: block;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.product-path-step p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}
.section-product-path .packages-note--impact {
  margin-top: 0.25rem;
}
@media (max-width: 980px) {
  .product-path-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-path-step:nth-child(3n) { border-right: none; }
  .product-path-step:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (max-width: 640px) {
  .product-path-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-path-step { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .product-path-step:nth-child(2n) { border-right: none; }
  .product-path-step:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}


/* Proof brand receipts */
.proof-brands {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin: 0 0 1.75rem;
  padding: 0;
}
.proof-brands li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 0.92rem;
}
.proof-brands strong { font-weight: 700; }
.proof-brands span {
  color: var(--text-muted, rgba(255,255,255,0.55));
  font-size: 0.82rem;
}


/* ── Builds page ── */
.builds-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.builds-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.builds-step-n {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.builds-step h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.builds-step p { color: var(--text-muted); font-size: 0.95rem; }
.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.15rem;
  margin-top: 1.75rem;
}
.builds-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 220px;
}
.builds-card h3 { font-size: 1.2rem; }
.builds-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.builds-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.builds-card--soon { opacity: 0.85; border-style: dashed; }
.builds-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.builds-addons li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .builds-steps { grid-template-columns: 1fr; }
}

.builds-search {
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.builds-search .lede { margin: 0.75rem 0 1.25rem; }


/* Launch-day category proof: portrait field shots read as cover */
.work-gallery-item img[src*="branding-connects-deep"],
.work-gallery-item img[src*="drinkware"],
.work-gallery-item img[src*="skateboards-manufactured"],
.work-gallery-item img[src*="book-illustration-amazon"],
.work-gallery-item img[src*="fishing-sup"],
.work-gallery-item img[src*="window-board"],
.work-gallery-item img[src*="board-beach-team"],
.work-card-visual img[src*="branding-connects-deep"],
.work-card-visual img[src*="drinkware"],
.work-card-visual img[src*="skateboards-manufactured"],
.work-card-visual img[src*="book-illustration-amazon"] {
  object-fit: cover;
  object-position: center 30%;
  background: #0a1620;
  padding: 0;
}
.work-gallery-item img[src*="watavibe-rentals-logo"],
.work-gallery-item img[src*="manateether-product-studio"],
.work-gallery-item img[src*="truisland-metal-collectibles"] {
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 4%;
}
.hero-layout:has(.hero-visual[hidden]) {
  grid-template-columns: 1fr;
}
.hero-visual[hidden] {
  display: none !important;
}
