:root {
  --brand-black: #0d0d0d;
  --brand-green: #22c55e;
  --white: #ffffff;
  --off-white: #f9fafb;
  --hero-mint-start: #c8f0e0;
  --hero-mint-mid: #f0fbf6;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --footer-bg: #1a1a1a;
  --green-dark: #15803d;
  --ink-90: rgba(13, 13, 13, 0.9);
  --ink-85: rgba(13, 13, 13, 0.85);
  --ink-70: rgba(13, 13, 13, 0.7);
  --ink-65: rgba(13, 13, 13, 0.65);
  --ink-60: rgba(13, 13, 13, 0.6);
  --ink-55: rgba(13, 13, 13, 0.55);
  --ink-50: rgba(13, 13, 13, 0.5);
  --ink-45: rgba(13, 13, 13, 0.45);
  --ink-40: rgba(13, 13, 13, 0.4);
  --ink-35: rgba(13, 13, 13, 0.35);
  --line-soft: rgba(13, 13, 13, 0.08);
  --line-faint: rgba(13, 13, 13, 0.06);
  --surface-muted: #f4f4f6;
  --bg: var(--off-white);
  --ink: var(--brand-black);
  --muted: var(--text-secondary);
  --card: var(--white);
  --foreground: 13 13 13;
  --background: 249 250 251;
  --card-foreground: 13 13 13;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

@media (pointer: coarse) {
  html,
  body {
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
  background: transparent;
  font-family: "DM Sans", sans-serif;
  background: var(--off-white);
  color: var(--ink);
  position: relative;
}

a {
  color: inherit;
}

.nav-wrap {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 0 1rem;
}

.nav-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1rem 1.5rem;
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  background: linear-gradient(140deg, rgba(236, 236, 239, 0.78) 0%, rgba(224, 224, 228, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  box-shadow: none;
}

.nav-main-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.brand-logo {
  width: auto;
  height: 2.25rem;
  max-width: none;
  object-fit: contain;
}

.brand-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand-black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: rgba(16, 16, 16, 0.62);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 200ms ease;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-links a.is-active {
  color: var(--brand-black);
  font-weight: 700;
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-actions .nav-cta-scroll {
  min-width: 0;
  width: 0;
  max-width: 0;
  opacity: 0;
  transform: translateX(24px) scale(0.92);
  transform-origin: right center;
  visibility: hidden;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  border-width: 0;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  transition: all 280ms ease;
  transition-property: max-width, opacity, transform, padding, margin, border-width, visibility;
}

.nav-wrap.show-scroll-cta .nav-actions .nav-cta-scroll:not(.nav-hidden) {
  width: auto;
  max-width: 12rem;
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: 0.65rem;
  border-width: 1px;
  pointer-events: auto;
  transition: all 320ms ease;
  transition-property: max-width, opacity, transform, padding, margin, border-width, visibility;
}

@keyframes navCtaSlideIn {
  0% {
    opacity: 0;
    transform: translateX(20px) scale(0.94);
  }
  60% {
    opacity: 1;
    transform: translateX(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.nav-hidden {
  display: none !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav-expand {
  display: none;
}

.mobile-nav-expand-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.15rem;
}

.mobile-nav-expand-divider {
  height: 1px;
  background: rgba(13, 13, 13, 0.12);
  transform: scaleX(0);
  transform-origin: left center;
  margin-bottom: 0.3rem;
}

.mobile-nav-expand-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-expand-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.78rem 0.1rem;
  text-decoration: none;
  color: var(--ink-60);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.mobile-nav-expand-link.is-active {
  color: var(--ink);
}

.mobile-nav-expand-chevron {
  color: rgba(13, 13, 13, 0.38);
  font-size: 1.05rem;
  line-height: 1;
}

.mobile-nav {
  width: min(90%, 24rem);
  margin: 0.7rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(140deg, rgba(236, 236, 239, 0.82) 0%, rgba(224, 224, 228, 0.78) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  border-radius: 1rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  padding: 0.5rem;
}

.mobile-nav a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.65rem 0.8rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
}

.pill-animated {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.brand-benefits-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--white);
  padding: 0.36rem 0.92rem 0.36rem 0.5rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.brand-benefits-pill__icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(200, 240, 224, 0.26);
  color: var(--ink-70);
  font-size: 0.62rem;
  line-height: 1;
  flex-shrink: 0;
}

.brand-benefits-pill__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-70);
  line-height: 1.15;
}

.brand-benefits-pill__label--caps {
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-55);
}

.pill-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(20.7% 50% at 50% 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(1.6px);
  animation: pillBorderRun 4.2s linear infinite;
}

.pill-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(75% 181.15942028985506% at 50% 50%, #3275f8 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 280ms ease;
}

@keyframes pillBorderRun {
  0%,
  100% {
    background: radial-gradient(20.7% 50% at 50% 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  25% {
    background: radial-gradient(16.6% 43.1% at 0% 50%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  50% {
    background: radial-gradient(20.7% 50% at 50% 100%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  75% {
    background: radial-gradient(16.2% 41.2% at 100% 50%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill-animated::before {
    animation: none;
  }

  .pill-animated::after {
    transition: none;
  }

  .cta::before,
  .hero-cta::before {
    animation: none;
  }

  .cta::after,
  .hero-cta::after {
    transition: none;
  }

  .nav-actions .nav-cta-scroll {
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-wrap.show-scroll-cta .nav-actions .nav-cta-scroll:not(.nav-hidden) {
    transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .micro-cta,
  .micro-cta__icon {
    transition: none;
  }
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand-black);
  color: var(--white);
  padding: 0.66rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.3);
}

.micro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #1b2430 0%, #0d0d0d 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 0.92rem 1.5rem;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.micro-cta__icon {
  font-size: 0.95em;
  line-height: 1;
  opacity: 0.78;
  transform: translateX(0);
  transition: transform 180ms ease, opacity 180ms ease;
}

.micro-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.micro-cta:hover .micro-cta__icon {
  opacity: 1;
  transform: translateX(1px);
}

.micro-cta:active {
  transform: translateY(0);
}

.micro-cta:focus-visible {
  outline: 2px solid rgba(34, 197, 94, 0.55);
  outline-offset: 2px;
}

.nav-actions .nav-cta {
  font-weight: 700;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-black) 92%, var(--white)) 0%, var(--brand-black) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-actions .nav-cta::before,
.nav-actions .nav-cta::after {
  content: none;
  animation: none;
}

.nav-actions .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cta::before,
.hero-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(34% 34% at 50% 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 74%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transform-origin: center;
  filter: blur(1.35px);
  animation: ctaBorderOrbit 2.4s linear infinite;
}

.cta::after,
.hero-cta::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scale(0.92);
  background: radial-gradient(62% 120% at 50% 50%, rgba(50, 117, 248, 0.5) 0%, rgba(50, 117, 248, 0.12) 42%, rgba(50, 117, 248, 0) 76%);
  transition: opacity 280ms ease, transform 280ms ease;
}

.cta:hover::after,
.hero-cta:hover::after {
  opacity: 0.85;
  transform: scale(1.06);
}

.cta:hover::before,
.hero-cta:hover::before {
  filter: blur(2.1px);
}

.home-hero {
  position: relative;
}

.section-band {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid rgba(13, 13, 13, 0.03);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-band > * {
  position: relative;
  z-index: 1;
}

.section-band-offwhite::before {
  background: #f6f8f5;
}

.section-band-white::before {
  background: #ffffff;
}

.section-band-mint-soft::before {
  background:
    radial-gradient(90% 56% at 50% -6%, rgba(200, 240, 224, 0.28) 0%, rgba(200, 240, 224, 0) 62%),
    #f7faf8;
}

.section-band-mint::before {
  background:
    radial-gradient(100% 72% at 10% -8%, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0) 64%),
    radial-gradient(92% 68% at 92% 12%, rgba(200, 240, 224, 0.78) 0%, rgba(200, 240, 224, 0.22) 56%, rgba(200, 240, 224, 0) 86%),
    linear-gradient(180deg, #ecfbf3 0%, #e2f7ec 56%, #edf9f4 100%);
}

.section-band-mint-deep::before {
  background:
    radial-gradient(110% 72% at 50% -14%, rgba(34, 197, 94, 0.26) 0%, rgba(34, 197, 94, 0) 60%),
    linear-gradient(180deg, #d7f3e5 0%, #cceddc 50%, #dff5ea 100%);
}


.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 4.8rem 1.25rem 3.5rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: #fff;
}

h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.03em;
  margin: 1rem 0;
  line-height: 1.06;
  font-size: clamp(2rem, 3.7vw, 3.9rem);
}

h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
}

.hero-cta {
  margin-top: 1.3rem;
  display: inline-flex;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-black) 92%, var(--white)) 0%, var(--brand-black) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-cta-static::before,
.hero-cta-static::after {
  content: none;
  animation: none;
}

@keyframes ctaBorderOrbit {
  to {
    transform: rotate(1turn);
  }
}

.grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1rem;
}

.card h3 {
  margin: 0.45rem 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.timeline-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.timeline-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

.timeline-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.cta-island {
  position: relative;
  isolation: isolate;
  background: #ffffff;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.cta-island::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(72% 56% at 50% 106%, rgba(34, 197, 94, 0.32) 0%, rgba(34, 197, 94, 0.1) 34%, rgba(34, 197, 94, 0) 72%);
  filter: blur(8px);
}

.cta-island::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(92% 64% at 50% 100%, rgba(200, 240, 224, 0.4) 0%, rgba(200, 240, 224, 0.18) 36%, rgba(200, 240, 224, 0) 74%);
}

.cta-island-copy {
  max-width: 920px;
  text-wrap: balance;
}

.cta-island-badge {
  border: 1px solid rgba(13, 13, 13, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-70);
  backdrop-filter: blur(7px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 18px rgba(15, 23, 42, 0.08);
}

.cta-island-badge .brand-benefits-pill__label {
  color: var(--ink-70);
}

.cta-island-cta {
  background: linear-gradient(180deg, #141a24 0%, #0d0d0d 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-island-cta:hover {
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 721px) and (prefers-reduced-motion: no-preference) {
  [data-reveal].reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition-delay: var(--reveal-delay, 0s);
  }

  [data-reveal].reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-surface a,
.footer-surface a:link,
.footer-surface a:visited,
.footer-surface a:hover,
.footer-surface a:active {
  color: var(--white);
  text-decoration: none;
}

.bk-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.bk-external-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, currentColor 10%, transparent) 0%, color-mix(in srgb, currentColor 4%, transparent) 100%);
  box-shadow: inset 0 1px 0 color-mix(in srgb, currentColor 14%, transparent);
  opacity: 0;
  transform: translateX(-0.16rem) scale(0.84) rotate(-8deg);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.bk-external-link__icon svg {
  width: 0.72rem;
  height: 0.72rem;
  display: block;
}

.bk-external-link:hover .bk-external-link__icon,
.bk-external-link:focus-visible .bk-external-link__icon {
  opacity: 1;
  transform: translateX(0) scale(1) rotate(0deg);
  border-color: color-mix(in srgb, currentColor 40%, transparent);
}


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

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

@media (max-width: 720px) {
  .cta-island::before {
    filter: blur(6px);
  }

  .nav-wrap {
    top: 0.8rem;
  }

  .nav-shell {
    padding: 0.8rem 1rem;
    border-radius: 24px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(244, 244, 246, 0.95);
  }

  .nav-main-row {
    justify-content: space-between;
  }

  .brand-logo {
    height: 1.8rem;
  }

  .brand-text {
    font-size: 1.7rem;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .nav-actions .nav-cta-scroll {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    min-height: 38px;
  }

  .nav-wrap.show-scroll-cta .nav-actions .nav-cta-scroll:not(.nav-hidden) {
    max-width: 9.5rem;
    padding-left: 0.92rem;
    padding-right: 0.92rem;
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav-expand {
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
  }

  .cta-island-badge {
    backdrop-filter: none;
  }
}

@media (pointer: coarse) {
  .pill-animated::before,
  .cta::before,
  .hero-cta::before {
    animation: none;
  }

  .pill-animated::before,
  .cta::before,
  .hero-cta::before {
    filter: none;
  }

  .nav-shell {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bk-external-link__icon {
    transition: none;
  }
}
