/* Hawk Notch — Captens layout + official brand colors from hawknotch.com */
:root {
  /* Brand tokens (Elementor globals) */
  --brand-green: #74d142;
  --brand-green-hot: #5fbe2e;
  --brand-dark: #212a33;
  --brand-darker: #181d23;
  --brand-accent: #ffa500;
  --brand-coral: #f46c5f;
  --brand-lime: #a8e063;
  --brand-gray: #575a5f;
  --brand-muted: #96989b;
  --brand-on-dark: #cccbcb;

  /* Mapped aliases used across components */
  --navy-ink: var(--brand-dark);
  --navy-deep: var(--brand-darker);
  --orange: var(--brand-green);
  --orange-hot: var(--brand-green-hot);
  --cyan: var(--brand-accent);
  --pink: var(--brand-coral);
  --red: #e5232e;
  --lime: var(--brand-lime);
  --yellow: #fcb900;

  --page: #ffffff;
  --hero-wash: #eaf8de;
  --pastel-mint: #eaf8de;
  --pastel-peach: #fff4e0;
  --pastel-pink: #fdeceb;
  --pastel-blue: #f1f8ea;
  --dark-section: var(--brand-dark);
  --card-on-dark: #2a3440;
  --border: #e5e7ea;

  --text-heading: var(--brand-dark);
  --text-body: var(--brand-gray);
  --text-muted: var(--brand-muted);
  --on-dark-heading: #ffffff;
  --on-dark-body: var(--brand-on-dark);

  --font-display: "Montserrat", "DM Sans", sans-serif;
  --font-body: "Noto Sans", "DM Sans", sans-serif;
  --font-ui: "DM Sans", "Noto Sans", sans-serif;

  --container: 1200px;
  --gutter: 28px;
  --radius-mega: 48px;
  --radius-card: 16px;
  --radius-card-lg: 24px;
  --radius-btn: 10px;
  --radius-chip: 10px;
  --radius-img: 14px;

  --shadow-float: 0 14px 36px rgba(33, 42, 51, 0.12);
  --shadow-cta: 0 10px 24px rgba(116, 209, 66, 0.38);
  --transition: 160ms ease;
  --reveal: 500ms ease-out;
}

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

/* Brand-green text selection highlight */
::selection {
  background: var(--brand-green);
  color: #fff;
}

::-moz-selection {
  background: var(--brand-green);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* body styles in Typography section */

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-ui);
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.mega {
  width: calc(100% - 16px);
  max-width: none;
  margin-inline: auto;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(116, 209, 66, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(255, 165, 0, 0.1), transparent 50%),
    var(--dark-section);
  border-radius: var(--radius-mega);
  padding: clamp(64px, 7vw, 96px) clamp(20px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24, 29, 35, 0.2);
}

/* Typography — matched to hawknotch.com (Montserrat / Noto Sans / DM Sans) */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 55px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

h3,
.h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.btn,
.nav-links,
.nav-dropdown > button,
.tab,
.eyebrow,
.faq-q,
.chip,
.blog-tag,
.rail-btn,
.announcement {
  font-family: var(--font-ui);
}

.accent {
  color: var(--brand-green);
}

.accent-cyan {
  color: var(--brand-accent);
}

.accent-pink {
  color: var(--brand-coral);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.circled {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.circled::after {
  content: "";
  position: absolute;
  inset: -6% -8% -10%;
  border: 2.5px solid var(--brand-green);
  border-radius: 50%;
  transform: rotate(-3deg);
  pointer-events: none;
}

.swash {
  position: relative;
  display: inline-block;
}

.swash::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8C28 2 50 10 70 6C90 2 108 7 118 4' stroke='%2374D142' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  opacity: 0.95;
}

.accent-word {
  color: var(--brand-green);
}

.section-pad {
  padding: clamp(88px, 10vw, 130px) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head p {
  margin-top: 16px;
  color: var(--text-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-green-hot);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}

.btn-secondary {
  background: var(--brand-dark);
  color: #fff;
}

.btn-secondary:hover {
  background: #2c3742;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 42, 51, 0.28);
}

.btn-video {
  background: var(--red);
  color: #fff;
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-heading);
  background: #fff;
  width: 100%;
}

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

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Announcement */
.announcement {
  background: var(--navy-deep);
  color: #fff;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 40px;
  font-size: 13px;
  position: relative;
  z-index: 60;
}

.announcement strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  opacity: 0.8;
}

.announcement-close:hover {
  opacity: 1;
}

body.announcement-hidden .announcement {
  display: none;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 6px 20px rgba(18, 16, 60, 0.07);
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-ink);
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-float);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.nav-dropdown-menu a:hover {
  background: var(--pastel-peach);
  color: var(--navy-ink);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}

.nav-toggle:hover {
  border-color: var(--brand-green);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-ink);
  transition: transform 260ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--brand-green);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 50% at 8% 0%, rgba(116, 209, 66, 0.1), transparent 60%),
    radial-gradient(50% 60% at 100% 30%, rgba(255, 165, 0, 0.06), transparent 55%),
    #ffffff;
}

/* faint dot grid for premium texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(33, 42, 51, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -6%;
  width: min(46vw, 560px);
  height: min(70%, 520px);
  z-index: 0;
  background: radial-gradient(closest-side, rgba(116, 209, 66, 0.18), transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
  padding: clamp(44px, 5.5vw, 78px) 0 clamp(72px, 8vw, 104px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 600px;
}

/* Social proof row */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span:nth-child(1) { background: #2f9e44; }
.hero-avatars span:nth-child(2) { background: #212a33; }
.hero-avatars span:nth-child(3) { background: #f08c00; }
.hero-avatars span:nth-child(4) { background: #5fbe2e; }

.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-rating strong {
  color: var(--brand-dark);
}

.hero-stars {
  color: var(--brand-green-hot);
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--brand-dark);
  max-width: 15ch;
}

.hero-copy h1 .hl {
  color: var(--brand-green-hot);
}

.hero-copy h1 .hl-mark {
  position: relative;
  white-space: nowrap;
}

.hero-copy h1 .hl-mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.34em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8C24 3 46 9 62 6C80 2 100 7 118 4' stroke='%23FFA500' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  z-index: -1;
  pointer-events: none;
}

.hero-lead {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--text-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-ctas .btn {
  border-radius: 10px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-ctas .btn-primary {
  box-shadow: 0 10px 24px rgba(116, 209, 66, 0.28);
}

.hero-ctas .btn-primary svg {
  transition: transform 200ms ease;
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(116, 209, 66, 0.34);
}

.hero-ctas .btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid rgba(33, 42, 51, 0.14);
}

.btn-ghost:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-hot);
  transform: translateY(-2px);
}

.hero-watch-ico {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
}

/* Inline trust row */
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
}

.hero-trust svg {
  color: var(--brand-green-hot);
  flex-shrink: 0;
}

/* Visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: clamp(18px, 3vw, 34px) clamp(20px, 3vw, 40px);
}

/* Tight stage sized to the video so art + chips anchor to it */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-art-bg {
  position: absolute;
  inset: -20px -22px -22px -22px;
  z-index: 0;
  border-radius: 26px;
  background:
    radial-gradient(120% 120% at 12% 10%, rgba(116, 209, 66, 0.24), transparent 58%),
    linear-gradient(150deg, #eaf6df 0%, #f3faec 55%, #ffffff 100%);
  border: 1px solid rgba(116, 209, 66, 0.2);
}

.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: none;
  border: 6px solid #fff;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  background: #141613;
  aspect-ratio: 16 / 11;
  box-shadow: 0 26px 54px rgba(33, 42, 51, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease;
  display: block;
}

.hero-video-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 66px rgba(33, 42, 51, 0.26);
}

.hero-video-frame:focus-visible {
  outline: 3px solid var(--brand-green);
  outline-offset: 4px;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.hero-video-frame:hover .hero-portrait {
  transform: scale(1.05);
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 19, 0.04) 0%, rgba(20, 22, 19, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  z-index: 3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(116, 209, 66, 0.5);
  border: 3px solid #fff;
  transition: transform 220ms ease;
}

.hero-play::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(116, 209, 66, 0.4);
  animation: hero-pulse 2.4s ease-out infinite;
}

@keyframes hero-pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.hero-play svg {
  margin-left: 3px;
}

.hero-video-frame:hover .hero-play {
  transform: scale(1.08);
}

/* Floating proof chips */
.hero-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(33, 42, 51, 0.08);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-dark);
  box-shadow: 0 10px 26px rgba(33, 42, 51, 0.14);
  animation: hero-float 5s ease-in-out infinite;
}

.hero-chip svg {
  color: var(--brand-green-hot);
}

.hero-chip-rank {
  top: 20px;
  left: -16px;
}

.hero-chip-card {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 32px rgba(33, 42, 51, 0.28);
  animation: hero-float 5.6s ease-in-out infinite 0.6s;
}

.hero-chip-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}

.hero-chip-spark i {
  width: 5px;
  border-radius: 2px;
  background: var(--brand-green);
  display: block;
}

.hero-chip-spark i:nth-child(1) { height: 38%; opacity: 0.5; }
.hero-chip-spark i:nth-child(2) { height: 58%; opacity: 0.65; }
.hero-chip-spark i:nth-child(3) { height: 46%; opacity: 0.8; }
.hero-chip-spark i:nth-child(4) { height: 74%; }
.hero-chip-spark i:nth-child(5) { height: 100%; background: var(--brand-accent); }

.hero-chip-figs strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-green);
}

.hero-chip-figs span {
  display: block;
  font-size: 11px;
  color: var(--on-dark-body);
  margin-top: 3px;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Signature metrics ribbon (overlaps into brands section) */
.hero-metrics-wrap {
  position: relative;
  z-index: 6;
  margin-top: clamp(-64px, -6vw, -44px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid rgba(33, 42, 51, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(33, 42, 51, 0.12);
  overflow: hidden;
}

.metric {
  padding: clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 28px);
  position: relative;
  text-align: center;
}

.metric:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(33, 42, 51, 0.1);
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-num span {
  color: var(--brand-green-hot);
}

.metric-label {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-frame,
  .hero-play,
  .hero-portrait,
  .hero-ctas .btn,
  .hero-chip,
  .hero-chip-card {
    transition: none;
    animation: none;
  }
  .hero-play::after { animation: none; }
}

/* Brands mega */
.brands-mega {
  margin-top: 24px;
  margin-bottom: 24px;
}

.brands-label {
  text-align: center;
  color: var(--on-dark-body);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  align-items: center;
}

.marquee-track img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brands-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}

.brands-copy h2 {
  color: #fff;
}

.brands-copy p {
  color: var(--on-dark-body);
}

.brands-copy .highlight-box {
  background: var(--card-on-dark);
  border-radius: var(--radius-card);
  padding: 28px;
}

.brands-copy .highlight-box h3 {
  color: #fff;
  margin-bottom: 12px;
}

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mission-card {
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.mission-card:nth-child(1) {
  background: var(--pastel-mint);
}
.mission-card:nth-child(2) {
  background: var(--pastel-peach);
}
.mission-card:nth-child(3) {
  background: var(--pastel-pink);
}
.mission-card:nth-child(4) {
  background: var(--pastel-blue);
}

.mission-card:hover {
  transform: translateY(-4px);
}

.mission-card h3 {
  margin-bottom: 10px;
}

.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: var(--brand-green-hot);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(33, 42, 51, 0.06);
}

.mission-icon svg {
  display: block;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card.mint {
  background: var(--pastel-mint);
}
.service-card.peach {
  background: var(--pastel-peach);
}
.service-card.pink {
  background: var(--pastel-pink);
}
.service-card.blue {
  background: var(--pastel-blue);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  flex: 1;
  margin-bottom: 20px;
}

.service-card img {
  width: 120px;
  margin: 8px auto 20px;
}

.service-card .link {
  color: var(--brand-green-hot);
  font-weight: 600;
  font-size: 14px;
}

.service-card .link:hover {
  color: var(--brand-dark);
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* Case studies */
.cases-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.cases-top p {
  max-width: 480px;
  margin-top: 12px;
}

.projects-badge {
  background: var(--pastel-mint);
  border: 1px solid rgba(116, 209, 66, 0.35);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  min-width: 140px;
}

.projects-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
}

.projects-badge span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
}

.case-cell {
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
}

.case-cell.media {
  padding: 0;
  background: var(--pastel-blue);
  position: relative;
  overflow: hidden;
}

.case-cell.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.case-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--navy-ink);
  background: #fff;
}

.case-cell h3 {
  margin-bottom: 12px;
  padding-right: 40px;
}

.case-cell > p {
  flex: 1;
  margin-bottom: 24px;
}

.case-stats {
  display: flex;
  gap: 28px;
  margin-top: auto;
}

.case-stats .big {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.case-stats .big.orange {
  color: var(--brand-green);
}
.case-stats .big.pink {
  color: var(--brand-dark);
}
.case-stats .big.cyan {
  color: var(--brand-green-hot);
}

.case-stats small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.35;
}

.callout-sticker {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-float);
  border: 2px solid var(--brand-green);
  z-index: 2;
}

.callout-sticker span {
  color: var(--brand-green);
}

.cases-bottom {
  text-align: center;
  margin-top: 36px;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-ink);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 400ms ease, opacity var(--transition);
}

.video-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(116, 209, 66, 0.4);
  transition: transform var(--transition), background var(--transition);
}

.video-card .play svg {
  transform: translateX(1px);
}

.video-card:hover .play {
  transform: scale(1.08);
  background: var(--brand-green-hot);
}

/* Process */
.process-mega {
  margin: 48px auto;
}

.process-mega .section-head h2,
.process-mega .section-head p {
  color: #fff;
}

.process-mega .section-head p {
  color: var(--on-dark-body);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.process-step.reverse .process-copy {
  order: -1;
}

.process-mock {
  background: var(--card-on-dark);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-float);
}

.process-mock img {
  width: 100%;
  border-radius: 12px;
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.step-num.n1 {
  color: var(--brand-green);
}
.step-num.n2 {
  color: var(--brand-accent);
}
.step-num.n3 {
  color: var(--brand-coral);
}

.step-num::before {
  content: "✦";
  position: absolute;
  top: -8px;
  right: -18px;
  font-size: 18px;
  color: var(--brand-lime);
}

.process-copy h3 {
  color: #fff;
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 6px;
}

.process-copy .sub {
  font-weight: 600;
  margin-bottom: 14px;
}

.process-copy .sub.orange {
  color: var(--brand-green);
}
.process-copy .sub.pink {
  color: var(--brand-accent);
}
.process-copy .sub.cyan {
  color: var(--brand-coral);
}

.process-copy p {
  color: var(--on-dark-body);
  margin-bottom: 20px;
}

.dot-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.dot-list li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  flex-shrink: 0;
}

.process-cta {
  text-align: center;
  margin-top: 40px;
}

.process-mega .how-grid {
  margin-top: 36px;
}

/* Testimonials */
.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.trust-card {
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(116, 209, 66, 0.12), transparent 55%),
    #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(33, 42, 51, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-card img {
  width: 118px;
  margin: 0 auto 4px;
}

.trust-badge {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  margin: 0;
  line-height: 1.1;
}

.trust-stars {
  display: inline-flex;
  gap: 3px;
}

.trust-stars span {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #00b67a;
  display: grid;
  place-items: center;
  position: relative;
}

.trust-stars span::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2.5l2.9 6.1 6.7.9-4.9 4.6 1.2 6.6L12 17.5 6.1 20.7l1.2-6.6L2.4 9.5l6.7-.9L12 2.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.trust-stars.sm span {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}

.trust-stars.sm span::before {
  width: 10px;
  height: 10px;
}

.trust-score {
  margin: 2px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
}

.trust-score strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.trust-meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 22ch;
}

.trust-points {
  list-style: none;
  margin: 10px 0 0;
  padding: 14px 0 0;
  width: 100%;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
  text-align: left;
}

.trust-points li {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-points li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%235fbe2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12l2 2l4-4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.trust-rail-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust-scroll::-webkit-scrollbar {
  display: none;
}

.quote-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 28px rgba(33, 42, 51, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.quote-card:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 209, 66, 0.45);
  box-shadow: 0 16px 36px rgba(33, 42, 51, 0.1);
}

.quote-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.quote-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-green-hot);
  background: rgba(116, 209, 66, 0.12);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.quote-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.quote-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 18px;
  flex: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.quote-author span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(116, 209, 66, 0.22), rgba(116, 209, 66, 0.08));
  border: 1px solid rgba(116, 209, 66, 0.28);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-green-hot);
  font-size: 13px;
  flex-shrink: 0;
}

.trust-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Chips / resources */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-chip);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-ink);
}

.chip.lime {
  background: var(--brand-lime);
  color: var(--brand-dark);
}
.chip.orange {
  background: var(--brand-green);
  color: #fff;
}
.chip.yellow {
  background: var(--pastel-peach);
  color: var(--brand-dark);
  border: 1px solid rgba(255, 165, 0, 0.35);
}
.chip.pink {
  background: var(--brand-accent);
  color: #fff;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.podcast-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform var(--transition);
}

.podcast-card:hover {
  transform: translateY(-3px);
}

.podcast-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.podcast-card .body {
  padding: 20px;
}

.podcast-card .tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-green-hot);
  margin-bottom: 6px;
}

.quote-card:hover,
.blog-card:hover,
.partner-card:hover {
  transform: translateY(-3px);
  transition: transform var(--transition);
}

.blog-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-float);
}

.case-cell {
  transition: background var(--transition);
}

.case-cell:not(.media):hover {
  background: #f8fbf5;
}

.btn-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-hot);
  background: var(--pastel-mint);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.blog-cover {
  background: var(--navy-ink);
  padding: 28px 24px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.blog-cover::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--brand-green);
  transform: rotate(45deg);
  opacity: 0.9;
}

.blog-cover.v2::before {
  background: var(--brand-green-hot);
}

.blog-cover.v3::before {
  background: var(--brand-lime);
}

.blog-tag {
  display: inline-block;
  background: var(--brand-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.blog-cover h3 {
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.blog-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-meta span {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta span:first-child {
  border-right: 1px solid var(--border);
}

.blog-meta img {
  width: 14px;
  height: 14px;
  filter: hue-rotate(72deg) saturate(0.85);
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
}

.partner-card.mint {
  background: var(--pastel-mint);
}
.partner-card.peach {
  background: var(--pastel-peach);
}
.partner-card.pink {
  background: var(--pastel-pink);
}

.partner-card h3 {
  margin-bottom: 6px;
}

.partner-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-ink);
}

.faq-q .chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: transform var(--transition);
  flex-shrink: 0;
  font-size: 12px;
}

.faq-item.open .faq-q .chevron {
  transform: rotate(180deg);
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--reveal);
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-a p {
  padding: 0 20px 18px;
  color: var(--text-body);
  font-size: 14px;
}

/* Footer mega */
.footer-mega {
  margin: 48px auto 32px;
}

.footer-cta {
  text-align: center;
  position: relative;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 48px;
}

.footer-cta h2 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto 24px;
}

.footer-cta .note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--on-dark-body);
}

.footer-sparkle {
  position: absolute;
  width: 32px;
  height: 32px;
}

.footer-sparkle.tl {
  top: 0;
  left: 8%;
}
.footer-sparkle.tr {
  top: 10%;
  right: 10%;
}
.footer-sparkle.bl {
  bottom: 20%;
  left: 16%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: var(--on-dark-body);
  font-size: 13px;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--brand-green);
}

.navbar .nav-links a:hover,
.nav-dropdown > button:hover {
  color: var(--brand-green);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: #fff;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 46, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-inner {
  background: #fff;
  border-radius: 20px;
  width: min(100%, 860px);
  overflow: hidden;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  font-size: 20px;
  color: var(--navy-ink);
}

.modal-inner iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--reveal), transform var(--reveal);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile full-screen offcanvas menu (Frameflow-style) ===== */
body.nav-open {
  overflow: hidden;
}

.offcanvas-menu {
  position: fixed;
  inset: 0;
  top: 100%;
  z-index: 200;
  visibility: hidden;
  overflow: hidden;
  background:
    radial-gradient(70% 55% at 100% 0%, rgba(116, 209, 66, 0.16), transparent 60%),
    linear-gradient(160deg, #1b2027 0%, #212a33 55%, #171b21 100%);
  transition: top 560ms cubic-bezier(0.76, 0, 0.24, 1), visibility 560ms;
}

.offcanvas-menu.show {
  top: 0;
  visibility: visible;
}

.offcanvas-inner {
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px var(--gutter) calc(26px + env(safe-area-inset-bottom, 0px));
}

.canvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.offcanvas-menu.show .canvas-head {
  opacity: 1;
  transform: none;
  transition-delay: 380ms;
}

.canvas-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.canvas-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 4px;
  transition: color var(--transition);
}

.canvas-close:hover {
  color: var(--brand-green);
}

.canvas-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.mb-nav {
  list-style: none;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  text-align: right;
}

.mb-nav li {
  overflow: hidden;
}

.mb-link {
  display: inline-block;
  width: 100%;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 8.4vw, 48px);
  line-height: 1.18;
  color: #fff;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 620ms ease, color 180ms ease;
}

.mb-link:hover,
.mb-link:focus-visible {
  color: var(--brand-green);
}

/* Services collapsible sub-menu */
.mb-sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
}

.mb-caret {
  color: var(--brand-green);
  flex-shrink: 0;
  transition: transform 300ms ease;
}

.mb-sub-toggle[aria-expanded="true"] .mb-caret {
  transform: rotate(180deg);
}

.mb-submenu {
  display: grid;
  gap: 2px;
  text-align: right;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 400ms ease, opacity 300ms ease, margin 300ms ease;
}

.mb-submenu.open {
  max-height: 360px;
  opacity: 1;
  margin: 6px 0 10px;
}

.mb-submenu a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 4.4vw, 18px);
  line-height: 1.9;
  color: var(--on-dark-body);
  transition: color 180ms ease;
}

.mb-submenu a:hover,
.mb-submenu a:focus-visible {
  color: var(--brand-green);
}

.offcanvas-menu.show .mb-link {
  transform: translateY(0);
  opacity: 1;
}

.offcanvas-menu.show .mb-nav li:nth-child(1) .mb-link { transition-delay: 300ms; }
.offcanvas-menu.show .mb-nav li:nth-child(2) .mb-link { transition-delay: 350ms; }
.offcanvas-menu.show .mb-nav li:nth-child(3) .mb-link { transition-delay: 400ms; }
.offcanvas-menu.show .mb-nav li:nth-child(4) .mb-link { transition-delay: 450ms; }
.offcanvas-menu.show .mb-nav li:nth-child(5) .mb-link { transition-delay: 500ms; }
.offcanvas-menu.show .mb-nav li:nth-child(6) .mb-link { transition-delay: 550ms; }
.offcanvas-menu.show .mb-nav li:nth-child(7) .mb-link { transition-delay: 600ms; }
.offcanvas-menu.show .mb-nav li:nth-child(8) .mb-link { transition-delay: 650ms; }

.canvas-cta {
  align-self: stretch;
  text-align: center;
  padding: 15px 24px;
  font-size: 15px;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease, background var(--transition);
}

.offcanvas-menu.show .canvas-cta {
  opacity: 1;
  transform: none;
  transition-delay: 560ms;
}

.canvas-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.offcanvas-menu.show .canvas-foot {
  opacity: 1;
  transform: none;
  transition-delay: 620ms;
}

.foot-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-left a {
  color: var(--on-dark-body);
  font-size: 14px;
  transition: color var(--transition);
}

.foot-left a:hover {
  color: #fff;
}

.foot-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-right a {
  color: var(--on-dark-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.foot-right a:hover {
  color: var(--brand-green);
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas-menu,
  .offcanvas-menu .canvas-head,
  .offcanvas-menu .canvas-foot,
  .offcanvas-menu .canvas-cta,
  .offcanvas-menu .mb-link {
    transition-duration: 1ms;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  /* Switch to hamburger for tablet + mobile */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .brands-copy,
  .process-step,
  .process-step.reverse .process-copy,
  .testimonials-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    gap: 12px 28px;
    padding: 24px 28px;
  }

  .trust-card img {
    margin: 0;
  }

  .trust-meta {
    max-width: none;
  }

  .trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    border-top: 0;
    padding-top: 0;
    margin-top: 4px;
    width: auto;
  }

  .process-step.reverse .process-copy {
    order: 0;
  }

  .mission-grid,
  .services-grid,
  .video-grid,
  .podcast-grid,
  .blog-grid,
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    gap: clamp(24px, 3.5vw, 44px);
  }

  .hero-copy h1 {
    font-size: clamp(30px, 4.4vw, 44px);
  }

  .hero-stage {
    max-width: 440px;
  }
}

/* Hero stacks below 900px */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 44px);
    padding-bottom: clamp(64px, 8vw, 88px);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 18ch;
    font-size: clamp(32px, 6vw, 46px);
  }

  .hero-visual {
    min-height: 0;
    padding: clamp(28px, 6vw, 48px) clamp(20px, 4vw, 36px);
  }

  .hero-stage {
    max-width: 560px;
  }

  .hero-chip-rank {
    left: -12px;
  }

  .hero-chip-card {
    right: -14px;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .nav-inner {
    min-height: 64px;
    gap: 12px;
  }

  .logo img {
    height: 34px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .mega {
    width: calc(100% - 12px);
    padding: 48px 16px;
  }

  .mission-grid,
  .services-grid,
  .video-grid,
  .podcast-grid,
  .blog-grid,
  .partners-grid,
  .case-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .cases-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    padding: 26px 0 56px;
    gap: 30px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-proof {
    gap: 12px;
  }

  .hero-visual {
    min-height: 0;
    padding: 22px 16px;
  }

  .hero-stage {
    max-width: 460px;
  }

  /* floats hug the frame corners */
  .hero-chip-rank {
    left: -6px;
    top: 14px;
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .hero-chip-card {
    right: -6px;
    bottom: 18px;
    padding: 10px 13px;
  }

  .hero-chip-card .hero-chip-figs strong {
    font-size: 18px;
  }

  .hero-metrics-wrap {
    margin-top: -36px;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }

  .metric:nth-child(3)::before,
  .metric:nth-child(odd)::before {
    display: none;
  }

  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-top: 1px solid rgba(33, 42, 51, 0.1);
  }

  .dot-list {
    grid-template-columns: 1fr;
  }

  .announcement {
    padding-right: 36px;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===== Hybrid upgrades (Captens + Amzonestep) ===== */
.announcement strong { color: var(--brand-green); text-decoration: none; }

.btn-play-mini {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  font-size: 9px;
  padding-left: 1px;
}

.soft-band {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(116, 209, 66, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(116, 209, 66, 0.05), transparent 50%),
    #fafcfa;
}

/* Results rail */
.results-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px max(24px, calc((100vw - 1140px) / 2)) 12px;
  scrollbar-width: none;
}
.results-rail::-webkit-scrollbar { display: none; }

.result-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  border-radius: 22px;
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.result-card.mint { background: var(--pastel-mint); }
.result-card.peach { background: var(--pastel-peach); }
.result-card.pink { background: var(--pastel-pink); }
.result-card.blue { background: var(--pastel-blue); }

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}
.result-top .pill {
  background: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
  border: 1px solid rgba(33,42,51,0.08);
}
.result-top .days {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-green-hot);
}
.result-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.result-card > p {
  font-size: 13px;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 18px;
}
.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(33,42,51,0.08);
}
.result-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.1;
}
.result-metrics span {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.results-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.rail-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--brand-dark);
  font-size: 18px;
  transition: all 150ms ease;
}
.rail-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

/* Deliverable tabs */
.tabs { margin-top: 8px; }
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: all 150ms ease;
}
.tab:hover { border-color: var(--brand-green); }
.tab.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(116,209,66,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadePanel 320ms ease; }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.tab-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(33,42,51,0.06);
}
.tab-grid img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.tab-grid h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 12px;
}
.tab-grid > div > p {
  margin-bottom: 18px;
}
.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-dark);
}
.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pastel-mint);
  color: var(--brand-green-hot);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* How it works 4-up */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.how-card {
  background: var(--card-on-dark);
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 160ms ease, border-color 160ms ease;
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116,209,66,0.35);
}
.how-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 12px;
}
.how-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.how-card p {
  color: var(--on-dark-body);
  font-size: 13px;
}

/* Founder letter */
.letter-wrap {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 28px;
  align-items: stretch;
}
.letter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-float);
}
.letter-card h2 {
  margin: 8px 0 20px;
}
.letter-body p {
  margin-bottom: 14px;
  color: var(--text-body);
  font-size: 15px;
}
.letter-sign {
  margin-top: 20px !important;
  font-style: italic;
}
.letter-aside {
  background: var(--brand-dark);
  border-radius: 28px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: #fff;
}
.aside-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
}
.aside-stat span {
  font-size: 13px;
  color: var(--on-dark-body);
}
.aside-note {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: var(--on-dark-body);
}

/* Mini contact form in footer */
.contact-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 640px;
  margin: 28px auto 0;
  text-align: left;
}
.contact-mini input,
.contact-mini select {
  width: 100%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
}
.contact-mini select option { color: #111; }
.contact-mini input::placeholder { color: rgba(255,255,255,0.45); }
.contact-mini button {
  grid-column: 1 / -1;
}
.contact-mini input:focus,
.contact-mini select:focus {
  outline: none;
  border-color: var(--brand-green);
  background: rgba(116,209,66,0.08);
}

@media (max-width: 1024px) {
  .tab-grid,
  .letter-wrap,
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .tab-grid,
  .letter-wrap,
  .how-grid,
  .contact-mini {
    grid-template-columns: 1fr;
  }
  .results-rail { padding-left: 24px; padding-right: 24px; }
}



/* ===== First-draft polish ===== */
.section-head {
  max-width: 720px;
}

.section-head h2 {
  margin-bottom: 4px;
}

.section-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.hero-copy h1 {
  font-weight: 800;
  max-width: 16ch;
}

.hero-lead {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--text-body);
  max-width: 46ch;
}

.logo img {
  height: 44px;
}

.nav-links {
  font-size: 15px;
  font-weight: 500;
}

.nav-cta {
  padding: 12px 22px;
  font-size: 14px;
}

.brands-copy h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.result-metrics strong,
.projects-badge strong,
.how-num,
.aside-stat strong,
.case-stats .big,
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.how-num {
  font-size: 36px;
}

.letter-card h2 {
  font-weight: 700;
}

.letter-body p {
  font-size: 16px;
  line-height: 1.8;
}

.service-card h3,
.mission-card h3,
.quote-card h3 {
  font-weight: 600;
}

.blog-cover h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.footer-cta h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

/* Cleaner card surfaces */
.service-card,
.mission-card,
.result-card,
.quote-card,
.blog-card,
.partner-card,
.faq-item,
.tab-grid,
.letter-card {
  border-radius: 20px;
}

.case-grid {
  border-radius: 24px;
}

/* Subtle page rhythm */
.section-pad {
  padding: clamp(88px, 10vw, 130px) 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-lead {
    font-size: 16px;
  }

  .btn {
    padding: 13px 20px;
    font-size: 14px;
  }
}


/* ===== Full-size Captens layout ===== */
:root {
  --full-side: 8px;
  --gutter: 20px;
  --container: 1320px;
  --radius-mega: 32px;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
}

/* Tighter vertical rhythm — less empty gap */
.section-pad {
  padding: clamp(64px, 7vw, 96px) 0;
}

.soft-band {
  width: 100%;
}

.hero {
  padding-bottom: 8px;
}

.hero-grid {
  padding: clamp(44px, 5.5vw, 78px) 0 clamp(72px, 8vw, 104px);
  gap: clamp(32px, 4.5vw, 68px);
}

.hero-copy h1 {
  max-width: 15ch;
}

.section-head h2 {
  max-width: none;
}

.section-head {
  max-width: 900px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

/* True near-fullscreen mega shells */
.mega,
.brands-mega,
.process-mega,
.footer-mega {
  width: calc(100% - 16px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(56px, 6vw, 88px) clamp(16px, 2.5vw, 36px);
  border-radius: 28px;
}

.brands-mega,
.process-mega {
  margin-top: 16px;
  margin-bottom: 16px;
}

.footer-mega {
  margin: 24px auto 12px;
}

/* Content inside mega uses full available width */
.brands-copy,
.process-mega .how-grid,
.process-mega .section-head,
.footer-grid,
.footer-legal,
.footer-cta {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Cards fill space better */
.services-grid,
.mission-grid {
  gap: 20px;
}

.service-card,
.mission-card {
  padding: 28px;
  min-height: 260px;
}

.how-grid {
  gap: 16px;
}

.how-card {
  padding: 24px 20px;
  min-height: 200px;
}

.result-card {
  flex: 0 0 min(360px, 82vw);
  min-height: 280px;
  padding: 28px;
}

.results-rail {
  padding: 8px max(16px, calc((100vw - 1320px) / 2)) 12px;
}

.tab-grid {
  padding: clamp(24px, 3vw, 40px);
  border-radius: 24px;
  gap: clamp(20px, 3vw, 36px);
}

.letter-wrap {
  gap: 20px;
}

.letter-card,
.letter-aside {
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
}

.footer-cta {
  padding: 16px 8px 48px;
  margin-bottom: 40px;
}

.footer-cta h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.circled-light {
  color: #fff;
}

.circled-light::after {
  border-color: #74d142 !important;
  inset: -10% -12% -16% !important;
  border-width: 3px !important;
}

.btn-xl {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.footer-cta .note {
  font-size: 15px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-mini {
  max-width: 720px;
  margin-top: 32px;
  gap: 12px;
}

.footer-grid {
  gap: clamp(24px, 3vw, 40px);
}

.footer-grid h4 {
  font-size: 17px;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  font-size: 14px;
  line-height: 1.9;
}

.footer-brand img {
  height: 48px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  transition: background 150ms ease, border-color 150ms ease;
}

.footer-social a:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.footer-legal {
  margin: 36px auto 0;
  font-size: 13px;
}

.footer-cta .doodle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.doodle-scribble {
  width: 100px;
  left: 4%;
  top: 14%;
  opacity: 0.95;
}

.doodle-star-lg {
  width: 52px;
  right: 6%;
  top: 10%;
}

.doodle-star-sm {
  width: 26px;
  right: 12%;
  top: 26%;
}

.doodle-squiggle {
  width: 22px;
  height: 72px;
  left: 50%;
  top: 50%;
  transform: translateX(120px);
}

.doodle-dashes {
  width: 36px;
  left: 50%;
  top: 56%;
  transform: translate(80px, -10px);
}

.process-mega .section-head {
  margin-bottom: 36px;
}

.case-grid {
  border-radius: 20px;
}

.case-cell {
  padding: clamp(24px, 2.5vw, 32px);
  min-height: 280px;
}

.video-grid,
.blog-grid {
  gap: 20px;
}

.nav-inner {
  min-height: 72px;
}

.logo img {
  height: 44px;
}

@media (max-width: 1024px) {
  .doodle-squiggle,
  .doodle-dashes {
    display: none;
  }

  .footer-cta h2 {
    max-width: 16ch;
  }
}

@media (max-width: 768px) {
  .mega,
  .brands-mega,
  .process-mega,
  .footer-mega {
    width: calc(100% - 12px);
    padding: 48px 16px;
    border-radius: 22px;
  }

  .section-pad {
    padding: 56px 0;
  }

  /* Hero heading must never clip on small screens */
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(24px, 7vw, 40px);
    line-height: 1.12;
  }

  .hero-copy h1 .hl-mark {
    white-space: normal;
  }

  .trust-card {
    max-width: none;
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .trust-card img {
    margin: 0 auto 4px;
  }

  .trust-points {
    max-width: 320px;
    margin-inline: auto;
    display: grid;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 10px;
    width: 100%;
    text-align: left;
  }

  .trust-controls {
    justify-content: center;
  }

  .announcement {
    font-size: 12px;
    padding: 8px 36px 8px 14px;
    text-align: center;
    line-height: 1.4;
  }

  .doodle-scribble,
  .doodle-star-lg,
  .doodle-star-sm {
    opacity: 0.5;
    transform: scale(0.7);
  }

  .doodle-scribble { left: 0; top: 6%; }
  .doodle-star-lg { right: 2%; top: 4%; }

  .footer-cta h2 {
    font-size: clamp(26px, 8vw, 36px);
    margin-bottom: 22px;
  }

  .service-card,
  .mission-card {
    min-height: 0;
  }
}



/* ===== Site footer (Hawk Notch theme) ===== */
.prefooter {
  width: 100%;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(116, 209, 66, 0.22), transparent 58%),
    linear-gradient(180deg, #eef8e4 0%, #f7fbf2 42%, #ffffff 100%);
}

.prefooter-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(56px, 7vw, 88px) clamp(16px, 3vw, 40px) 0;
}

.prefooter-cta {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.prefooter-cta .eyebrow {
  justify-content: center;
  display: inline-flex;
}

.prefooter-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  margin: 12px auto 14px;
  line-height: 1.18;
}

.prefooter-cta > p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brand-gray);
  margin: 0 auto 28px;
  max-width: 54ch;
}

.prefooter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.prefooter-actions .btn {
  min-width: 148px;
  border-radius: 999px;
  padding: 14px 28px;
}

.prefooter-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.prefooter-trust li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--brand-gray);
  position: relative;
}

.prefooter-trust li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-green);
  transform: translateY(-50%);
}

.prefooter-trust strong {
  color: var(--brand-dark);
  font-weight: 700;
}

/* Full-bleed footer panel */
.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(33, 42, 51, 0.07);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  padding: clamp(36px, 4.5vw, 52px) clamp(20px, 4vw, 48px) 20px;
  box-shadow: 0 -8px 40px rgba(33, 42, 51, 0.05);
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.8fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 28px;
}

.footer-logo img {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding: 5px 5px 5px 16px;
  border: 1.5px solid #e2e6eb;
  border-radius: 999px;
  background: #fafbfc;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.newsletter-form:focus-within {
  border-color: var(--brand-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(116, 209, 66, 0.16);
}

.newsletter-form input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--brand-dark);
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: #9aa1aa;
}

.newsletter-form button {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.newsletter-form button:hover {
  background: var(--brand-green-hot);
  transform: translateY(-1px);
}

.newsletter-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--brand-muted);
  max-width: 400px;
}

.newsletter-note a {
  color: var(--brand-green-hot);
  font-weight: 600;
  text-decoration: none;
}

.newsletter-note a:hover {
  text-decoration: underline;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
}

.footer-contact-mini a {
  color: var(--brand-dark);
}

.footer-contact-mini a:hover {
  color: var(--brand-green-hot);
}

.site-footer .footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.site-footer .footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e6eb;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark) !important;
  background: #fff;
  transition: all 150ms ease;
}

.site-footer .footer-social a:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff !important;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.footer-columns h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-columns ul {
  display: grid;
  gap: 9px;
}

.footer-columns a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-gray);
  transition: color 150ms ease;
}

.footer-columns a:hover {
  color: var(--brand-green-hot);
}

.site-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid #eceef2;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
}

.site-footer-bottom p {
  font-size: 13px;
  color: var(--brand-muted);
  margin: 0;
}

.footer-disclaimer {
  font-size: 12px !important;
  max-width: 520px;
  text-align: right;
}

@media (max-width: 1024px) {
  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .newsletter-form {
    max-width: none;
  }

  .site-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .prefooter-inner {
    padding: 48px 14px 0;
  }

  .site-footer {
    border-radius: 22px 22px 0 0;
    padding: 28px 16px 16px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 10px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 6px 4px;
  }

  .newsletter-form button {
    width: 100%;
  }

  .prefooter-trust li:not(:last-child)::after {
    display: none;
  }
}


/* ===== Letter / strategy section — field brief ===== */
.letter-section {
  --letter-ink: #212a33;
  width: 100%;
  padding: clamp(56px, 7vw, 96px) clamp(12px, 2vw, 24px);
  background:
    radial-gradient(55% 45% at 100% 0%, rgba(116, 209, 66, 0.08), transparent 60%),
    radial-gradient(45% 40% at 0% 100%, rgba(116, 209, 66, 0.06), transparent 60%),
    #f4f7f2;
}

.letter-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.9fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(33, 42, 51, 0.12);
}

.letter-main {
  padding: clamp(30px, 4vw, 52px) clamp(28px, 4vw, 56px);
  position: relative;
}

.letter-header {
  margin-bottom: 22px;
}

.letter-section .letter-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green-hot);
  margin: 0;
}

.letter-section .letter-header .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-green);
}

.letter-greeting {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 16px 0 8px;
  font-style: italic;
}

.letter-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--letter-ink);
  max-width: 20ch;
}

.letter-header h2 .accent {
  color: var(--brand-green-hot);
}

.letter-section .letter-body p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 14px;
}

.letter-body strong {
  color: var(--letter-ink);
  font-weight: 700;
}

.letter-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.letter-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdfa;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.letter-points li:hover {
  border-color: rgba(116, 209, 66, 0.5);
  box-shadow: 0 10px 26px rgba(33, 42, 51, 0.07);
  transform: translateY(-2px);
}

.letter-section .point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(116, 209, 66, 0.14);
  color: var(--brand-green-hot);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: grid;
  place-items: center;
  line-height: 1;
}

.letter-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--letter-ink);
  margin-bottom: 4px;
}

.letter-points p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.letter-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.letter-signoff p {
  margin: 0 0 6px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
}

.letter-signoff strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--letter-ink);
}

.letter-signoff span {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

.letter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.letter-actions .btn {
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
}

.letter-actions .btn-primary {
  background: var(--brand-green);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(116, 209, 66, 0.26);
}

.letter-actions .btn-primary:hover {
  background: var(--brand-green-hot);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(116, 209, 66, 0.32);
}

.letter-actions .btn-soft {
  background: transparent;
  color: var(--letter-ink);
  border: 1px solid rgba(33, 42, 51, 0.18);
}

.letter-actions .btn-soft:hover {
  border-color: var(--letter-ink);
  background: var(--letter-ink);
  color: #fff;
  transform: translateY(-2px);
}

/* Dark proof panel — matches hero metrics + mobile menu */
.letter-proof {
  color: #fff;
  padding: clamp(32px, 3.5vw, 48px) clamp(24px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
  background:
    radial-gradient(70% 55% at 100% 0%, rgba(116, 209, 66, 0.18), transparent 60%),
    linear-gradient(160deg, #232d37 0%, #212a33 55%, #1a1f26 100%);
}

.proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin: 0;
}

.proof-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-green);
}

.letter-proof h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.proof-stats {
  display: grid;
  gap: 0;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-stat strong span {
  color: var(--brand-green);
}

.proof-stat .proof-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.proof-checklist {
  list-style: none;
  margin: 2px 0 0;
  padding: 18px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-checklist li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-checklist li svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

.proof-cta {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-green);
  transition: color 160ms ease, gap 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: fit-content;
}

.proof-cta svg {
  transition: transform 180ms ease;
}

.proof-cta:hover {
  color: #fff;
}

.proof-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .letter-shell {
    grid-template-columns: 1fr;
  }

  .letter-header h2 {
    max-width: none;
  }

  .letter-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .letter-actions .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
}
