:root {
  --bg: #02060f;
  --bg-alt: #051525;
  --bg-soft: #071a2e;
  --card: #0a1a32;
  --surface-1: rgba(6, 14, 28, 0.65);
  /* Brand: cyan / teal → royal blue (aligned to logo) */
  --accent: #2dd4bf;
  --accent-mid: #38bdf8;
  --accent-deep: #1e40af;
  --accent-soft: rgba(45, 212, 191, 0.14);
  --accent-light: #a5f3fc;
  --accent-glow: rgba(56, 189, 248, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --line-accent: linear-gradient(90deg, rgba(45, 212, 191, 0.5), rgba(56, 189, 248, 0.25), transparent);
  --text: #f0f9ff;
  --text-muted: #94a3b8;
  --text-soft: #7b8faf;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 24px 56px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 20px 48px rgba(0, 0, 0, 0.5);
  --shadow-header: 0 1px 0 rgba(255, 255, 255, 0.06);
  --max-width: 1140px;
  --font-serif: "DM Serif Display", "Times New Roman", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Sticky header + notch: anchors clear the bar */
  scroll-padding-top: max(5.75rem, calc(env(safe-area-inset-top, 0px) + 3.5rem));
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  background:
    radial-gradient(ellipse 100% 70% at 15% -10%, rgba(45, 212, 191, 0.12) 0, transparent 45%),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(30, 64, 175, 0.35) 0, transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(4, 20, 40, 0.95) 0, #01030a 50%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 721px) {
  body.nav-open {
    overflow: auto;
  }
}

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

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

a:hover {
  color: var(--accent-light);
}

/* In-content links (not nav / buttons): clearer affordance on web and mobile */
main .section p a:not(.btn),
main .section li a:not(.btn),
main .legal-inner a:not(.btn),
main .contact-grid a[href^="mailto"],
main .profile-note a {
  color: var(--accent-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

main .section p a:not(.btn):hover,
main .section li a:not(.btn):hover,
main .legal-inner a:not(.btn):hover {
  color: var(--accent-light);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  color: #020617;
  font-weight: 600;
  font-size: 13px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  padding-top: env(safe-area-inset-top, 0px);
  z-index: 50;
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  background: linear-gradient(
    to bottom,
    rgba(1, 4, 12, 0.94),
    rgba(1, 4, 12, 0.82),
    rgba(1, 4, 12, 0.55)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-header);
  transition: box-shadow 0.25s var(--ease-out), border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(24px, env(safe-area-inset-right, 0px)) 10px
    max(24px, env(safe-area-inset-left, 0px));
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  text-decoration: none;
}

.logo-wordmark {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .logo-wordmark {
    display: none;
  }
}

/* Header mark: small enough to read as nav chrome, not a hero tile */
.logo-img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}

@media (max-width: 520px) {
  .logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a:not(.btn) {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
  border-color: rgba(45, 212, 191, 0.65);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(4, 9, 18, 0.96);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 15px;
  height: 1.5px;
  margin: 2px auto;
  background-color: var(--text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 clamp(48px, 6vw, 64px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(72rem, 100%);
  height: 1px;
  background: var(--line-accent);
  pointer-events: none;
  opacity: 0.9;
}

.hero-bg {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 85%;
  background:
    radial-gradient(ellipse 50% 45% at 75% 15%, rgba(56, 189, 248, 0.14) 0, transparent 55%),
    radial-gradient(ellipse 45% 40% at 25% 55%, rgba(45, 212, 191, 0.1) 0, transparent 50%),
    radial-gradient(ellipse 35% 30% at 60% 70%, rgba(30, 64, 175, 0.22) 0, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-grid > *,
.different-grid > *,
.fit-panel > *,
.cards-grid > *,
.steps-grid > *,
.chips-grid > *,
.contact-grid > *,
.profile-grid > *,
.quotes-grid > *,
.case-study-body > * {
  min-width: 0;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 4.5vw, 2.95rem);
  line-height: 1.06;
  margin: 12px 0 18px;
  font-weight: 400;
  letter-spacing: -0.025em;
  max-width: min(100%, 22rem);
  text-wrap: balance;
}

.hero-kicker {
  margin: 0 0 4px;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #b8c9dc;
}

.hero-lead {
  margin: 0 0 22px;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric {
  min-width: 132px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 40, 80, 0.5), rgba(5, 9, 20, 0.9));
  transition: border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.metric:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-1px);
}

.metric-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.metric-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  touch-action: manipulation;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #38bdf8);
  color: #020617;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.12s var(--ease-out), box-shadow 0.12s ease, filter 0.12s ease;
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(8, 47, 73, 0.55),
    0 0 24px rgba(45, 212, 191, 0.15);
}

@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: translateY(0) scale(0.99);
    filter: brightness(0.96);
  }

  .btn-ghost:active {
    transform: scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:active,
  .btn-ghost:active {
    transform: none;
  }
}

.btn-small {
  padding: 8px 16px;
  font-size: 10px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-subtle);
  box-shadow: none;
}

.btn-small:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.55);
  transform: none;
  filter: none;
}

.btn-ghost {
  background: rgba(4, 10, 22, 0.85);
  color: var(--text);
  border: 1px solid var(--border-subtle);
  box-shadow: none;
  touch-action: manipulation;
}

.btn-ghost:hover {
  background: rgba(10, 30, 52, 0.95);
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
}

.btn-full-width {
  width: 100%;
  margin-top: 4px;
}

.btn-light {
  background: rgba(255, 255, 255, 0.98);
  color: #11131d;
  box-shadow: none;
}

.btn-light:hover {
  filter: brightness(1.02);
}

.hero-panel {
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(45, 212, 191, 0.55),
    rgba(30, 58, 138, 0.85) 38%,
    #0a1628 100%
  );
  box-shadow:
    var(--shadow-soft),
    0 0 80px rgba(45, 212, 191, 0.06);
}

.hero-panel-inner {
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.08), transparent 55%),
    linear-gradient(155deg, #030d1a, #061528 38%, #0f2744 100%);
  border-radius: 26px;
  padding: 22px 22px 18px;
}

.hero-panel-inner h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.hero-panel-inner > p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-badge {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(30, 64, 175, 0.22);
  border: 1px solid rgba(45, 212, 191, 0.28);
  font-size: 12px;
  line-height: 1.45;
  color: #cffafe;
}

.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(30, 64, 175, 0.12) 0, transparent 55%),
    rgba(3, 8, 18, 0.72);
  padding: clamp(22px, 4vw, 32px) 0;
}

.trust-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-bar-eyebrow {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
  opacity: 0.95;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, rgba(8, 18, 36, 0.55), rgba(2, 6, 14, 0.92));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}

.trust-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.section-narrow {
  padding: clamp(40px, 6vw, 56px) 0 clamp(44px, 6vw, 64px);
}

.prose-block {
  position: relative;
  max-width: 42rem;
  padding-left: clamp(1rem, 2.5vw, 1.25rem);
}

.prose-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.85), rgba(56, 189, 248, 0.35));
  opacity: 0.95;
}

.prose-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.prose-block p {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.15vw, 1.06rem);
  line-height: 1.68;
  color: var(--text-muted);
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.different-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.different-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.different-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.different-list li {
  margin-bottom: 14px;
  padding-left: 0;
  border-left: 2px solid rgba(45, 212, 191, 0.45);
  padding-left: 14px;
}

.different-list li:last-child {
  margin-bottom: 0;
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 28px;
  padding: 28px 28px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #060d1c, #0a1428);
  box-shadow: var(--shadow-card);
}

.fit-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.65rem);
  margin: 0 0 12px;
  font-weight: 400;
}

.fit-copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.fit-aside {
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 8, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fit-aside-title {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.fit-list {
  margin: 0 0 16px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.fit-list li {
  margin-bottom: 6px;
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.case-study {
  padding: 22px 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, #060a14, #0b1428);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.case-study-head h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.case-meta {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.case-study-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 0;
}

.case-label {
  margin: 0 0 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-stat {
  min-width: 100px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.15);
}

.case-stat-value {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.case-stat-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.quote-card footer strong {
  display: inline;
  letter-spacing: 0.06em;
  margin: 0;
  font-weight: 600;
}

.quote-context {
  display: inline;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-style: italic;
  opacity: 0.88;
}

.profile-philosophy {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 12, 24, 0.6);
}

.profile-credentials {
  margin-top: 12px !important;
  font-style: normal;
  opacity: 0.95;
  color: var(--text-soft);
}

.profile-note {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 12px;
  line-height: 1.5;
}

.profile-note a {
  color: var(--accent-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-grid-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

select {
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: rgba(3, 8, 16, 0.96);
  color: var(--text);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.optional {
  font-weight: 400;
  color: var(--text-soft);
  font-size: 11px;
}

.newsletter-card {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px dashed rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.04);
}

.newsletter-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.newsletter-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal {
  grid-column: 1 / -1;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-soft);
}

.footer-legal p {
  margin: 0 0 10px;
  max-width: 52rem;
}

.footer-legal a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.placeholder {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

p.small,
.small {
  font-size: 12px;
}

.section {
  padding: clamp(52px, 7vw, 72px) 0;
}

.section-alt {
  background: radial-gradient(
    ellipse 100% 80% at 50% 0%,
    rgba(30, 58, 138, 0.22) 0,
    #02060f 45%
  );
}

.section-principles {
  padding: 36px 0 48px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.principle {
  padding: 20px 20px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(160deg, rgba(8, 16, 32, 0.6), rgba(4, 8, 18, 0.95));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.principle:hover {
  border-color: rgba(45, 212, 191, 0.2);
  box-shadow: var(--shadow-card);
}

.principle-icon {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.principle-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 8px;
  font-weight: 400;
}

.principles-grid .principle-title {
  font-size: 1.25rem;
}

.principle p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.section-header {
  margin-bottom: 28px;
  max-width: 42rem;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 600;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-header > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(155deg, #060a14, #0b1428 55%, #0a1224);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.18);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.55;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.45;
}

.card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.card ul li::before {
  content: "▹";
  color: var(--accent);
  margin-top: 1px;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step {
  background: radial-gradient(circle at 50% 0%, rgba(28, 42, 82, 0.5), #050916);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.step:hover {
  border-color: rgba(45, 212, 191, 0.12);
}

.step-number {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}

.step ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.step ul li::before {
  content: "▹";
  color: var(--accent);
  margin-top: 1px;
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.chip-card {
  padding: 16px 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(5, 13, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.chip-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 18, 36, 0.85);
}

.chip-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.chip-card p {
  font-size: 12px;
  line-height: 1.5;
}

.resource-banner {
  margin-top: 32px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(120deg, #051022, #0b1428);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.resource-banner h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.resource-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.case-card .case-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.section-quotes .section-header {
  max-width: 36rem;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.quote-card {
  margin: 0;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(8, 14, 28, 0.9), rgba(5, 10, 22, 0.98));
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: rgba(45, 212, 191, 0.25);
  pointer-events: none;
}

.quote-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  position: relative;
}

.quote-card footer {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.55;
}

.quote-card footer .quote-context {
  text-transform: none;
  letter-spacing: 0.04em;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.profile-visual {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* Square card (1:1): matches a self-cropped headshot export; no “tall strip” beside copy. */
.profile-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 288px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    var(--shadow-soft),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: #060d18;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.profile-caption {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Legal (Privacy / Terms): readable width, clear hierarchy */
.section-legal .legal-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.section-legal h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--text);
}

.legal-dialog-panel.section-legal h2 {
  margin-top: 4px;
}

.section-legal h3 {
  margin: 22px 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-mid);
}

.section-legal p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.section-legal p a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-legal .legal-meta {
  margin: 0 0 18px;
  font-size: 12px;
  color: var(--text-soft);
}

.section-legal .legal-cross {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.section-legal .legal-cross a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal modals (<dialog>) */
.legal-dialog {
  width: min(
    42rem,
    calc(100vw - max(24px, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)))
  );
  max-width: calc(100vw - 16px);
  max-height: min(90dvh, 90vh, 680px);
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--text);
}

.legal-dialog::backdrop {
  background: rgba(2, 6, 15, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legal-dialog-panel {
  display: flex;
  flex-direction: column;
  max-height: min(90dvh, 90vh, 680px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(8, 16, 32, 0.98), rgba(4, 8, 18, 0.99));
  box-shadow: var(--shadow-soft);
}

.legal-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 14px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-dialog-head .section-label {
  margin: 0;
}

.legal-dialog-panel .legal-inner {
  overflow-y: auto;
  padding: 0 22px 22px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.legal-dialog-close {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 12, 24, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-dialog-close:hover {
  border-color: rgba(45, 212, 191, 0.45);
  color: var(--accent-light);
}

body.legal-modal-open {
  overflow: hidden;
}

button.link-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.section-legal .legal-cross .link-btn {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav-btn {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-nav-btn:hover {
  color: var(--accent-light);
}

.footer-legal-btn {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .legal-dialog::backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.profile-copy h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.profile-role {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-soft);
}

.profile-copy p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.65;
}

.profile-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-soft);
}

.profile-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  align-items: flex-start;
}

.profile-list li::before {
  content: "▹";
  color: var(--accent);
  flex-shrink: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 20, 0.85);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  text-align: left;
}

.faq-icon {
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  font-size: 13px;
  color: var(--text-muted);
  transition: max-height 0.22s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }
}

.faq-answer p {
  margin: 0 0 12px;
  padding-bottom: 8px;
  line-height: 1.6;
}

.faq-item.is-open {
  border-color: rgba(45, 212, 191, 0.45);
}

.section-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 20, 40, 0.5) 0, #02040a 50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.contact-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin: 16px 0 0;
  line-height: 1.55;
}

.contact-meta a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-meta.small {
  font-size: 11px;
  max-width: 26rem;
  opacity: 0.9;
}

.contact-card {
  background: rgba(5, 10, 19, 0.92);
  border-radius: 22px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.contact-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-row-inline {
  flex-direction: row;
  gap: 12px;
}

.form-row-inline > div {
  flex: 1;
}

label {
  font-size: 12px;
  color: var(--text-soft);
}

input,
textarea {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(3, 8, 16, 0.96);
  color: var(--text);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 96px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.form-hint {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 max(32px, calc(env(safe-area-inset-bottom, 0px) + 16px));
  background: radial-gradient(circle at 50% 0%, rgba(8, 16, 32, 0.5) 0, #01030a 55%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-end;
  align-items: center;
}

.footer-nav a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-nav a:hover {
  color: var(--accent-light);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: var(--text-soft);
}

.footer-meta a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-meta a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  .hero-panel {
    order: -1;
  }

  .trust-bar-inner {
    justify-content: flex-start;
  }

  .trust-divider {
    display: none;
  }

  .different-grid,
  .fit-panel,
  .case-study-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .principles-grid,
  .cards-grid,
  .steps-grid,
  .chips-grid,
  .faq-grid,
  .faq-grid-full,
  .contact-grid,
  .profile-grid,
  .quotes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .resource-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: max(16px, env(safe-area-inset-left, 0px))
      max(16px, env(safe-area-inset-right, 0px));
  }

  .container {
    padding-inline: max(18px, calc(env(safe-area-inset-left, 0px) + 6px))
      max(18px, calc(env(safe-area-inset-right, 0px) + 6px));
  }

  .hero-copy h1 {
    font-size: clamp(1.55rem, 7.5vw, 2.75rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .btn {
    min-height: 48px;
    touch-action: manipulation;
  }

  .btn-ghost {
    min-height: 48px;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost {
    min-height: 48px;
  }

  .btn-small {
    min-height: 48px;
    padding: 12px 20px;
  }

  .faq-question {
    min-height: 48px;
    padding: 16px 14px;
    touch-action: manipulation;
  }

  .contact-form input,
  .contact-form select {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 8rem;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 18px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .contact-meta a,
  .contact-intro {
    overflow-wrap: anywhere;
  }

  .profile-photo-wrap {
    max-width: min(288px, 86vw);
  }

  .fit-panel {
    padding: 22px 18px;
  }

  .case-study {
    padding: 20px 18px 18px;
  }

  .quote-card {
    padding: 20px 18px 18px;
  }

  .resource-banner {
    padding: 18px 18px;
  }

  .hero-panel-inner {
    padding: 18px 18px 16px;
  }

  .card {
    padding: 18px 18px 16px;
  }

  .footer-nav-btn,
  .footer-legal-btn {
    min-height: 44px;
    padding-block: 8px;
  }

  .legal-dialog-close {
    min-height: 44px;
    touch-action: manipulation;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 40;
    border-radius: 0;
    background: rgba(2, 6, 14, 0.97);
    border: none;
    padding: max(88px, calc(env(safe-area-inset-top, 0px) + 72px)) max(22px, env(safe-area-inset-right, 0px))
      max(28px, env(safe-area-inset-bottom, 0px)) max(22px, env(safe-area-inset-left, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.28s var(--ease-out);
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.btn) {
    padding: 14px 0;
    min-height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 60;
    width: 44px;
    height: 44px;
    touch-action: manipulation;
  }

  .nav-links .btn-small {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    padding: 12px 18px;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    align-items: start;
  }

  .trust-item {
    min-width: 0;
  }

  .trust-value {
    font-size: 1.22rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .metric {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 44px 0;
  }

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