/* ==========================================================================
   Corepoint Solutions — base styles
   Dark editorial-tech system, derived from the Claude Design homepage export.
   Tokens first; component styles are layered on in later phases.
   ========================================================================== */

:root {
  /* --- Corporate palette (exact) ------------------------------------------ */
  --dark-blue: #004687;   /* primary: headings, wordmark, key emphasis */
  --mid-blue: #0078d7;    /* accent: links, buttons, anything clickable */
  --light-blue: #78b4f0;  /* sparing highlights, mono labels, soft tints */
  --dark-grey: #33393a;
  --light-grey: #5c5c66;

  /* --- Dark surfaces ------------------------------------------------------- */
  --bg: #05080f;                          /* page background (near-black) */
  --panel: rgba(10, 16, 28, 0.6);         /* glass panel fill */
  --panel-2: rgba(14, 21, 35, 0.7);       /* raised card fill */
  --border: rgba(120, 180, 240, 0.14);    /* hairline on dark */
  --border-strong: rgba(120, 180, 240, 0.34);

  /* --- Text on dark -------------------------------------------------------- */
  --text: #aeb7c2;          /* default body */
  --text-strong: #f4f8ff;   /* headings, key lines */
  --text-body: #c2cbd6;     /* long-form paragraphs */
  --text-soft: #d7dee7;     /* lead paragraphs */
  --text-muted: #8d99a8;    /* captions, secondary */
  --text-dim: #6c7a88;      /* faint meta, section numbers — #6c7a88 passes WCAG AA 4.5:1 on #05080f */

  /* --- Accent gradients ---------------------------------------------------- */
  --grad-blue: linear-gradient(180deg, #1a8ced, #0078d7);
  --accent-glow: 0 10px 30px -6px rgba(0, 120, 215, 0.6);

  /* --- Type --------------------------------------------------------------- */
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* --- Layout ------------------------------------------------------------- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-lg: 28px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--mid-blue);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}

::selection {
  background: rgba(0, 120, 215, 0.32);
  color: #fff;
}

/* Respect users who ask for less motion: the JS layer also checks this,
   but disable CSS-driven animation here as a baseline. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Shared layout helpers ------------------------------------------------ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-blue);
}

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

/* Skip-to-main link (keyboard) */
.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--mid-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Global focus baseline for any interactive element not explicitly styled */
*:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Override for elements that have their own focus treatment */
.site-nav a:focus-visible,
.site-nav .nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.site-footer__contact a:focus-visible,
.site-footer__nav a:focus-visible,
.contact-details__links a:focus-visible {
  outline: none;
}

/* ==========================================================================
   Background system — fixed layers behind all content
   ========================================================================== */

/* WebGL aurora canvas. If WebGL is unavailable or motion is reduced, it stays
   transparent and the fallback gradient + page background show through. */
.cp-aurora {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.cp-aurora-fallback {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 70% -10%, rgba(0, 120, 215, 0.16), transparent 55%),
    radial-gradient(90% 70% at 10% 110%, rgba(0, 70, 135, 0.2), transparent 60%);
}

.cp-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 180, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 240, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(130% 100% at 50% 0%, #000 30%, transparent 80%);
  mask-image: radial-gradient(130% 100% at 50% 0%, #000 30%, transparent 80%);
}

.cp-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2"/></filter><rect width="100%25" height="100%25" filter="url(%23n)" opacity="0.5"/></svg>');
}

/* Everything visible sits above the background layers. */
.cp-shell {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 15, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: rgba(120, 180, 240, 0.12);
}

.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  height: 30px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-nav a {
  color: #9aa6b4;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--light-blue);
}

/* Contact rendered as the accent pill (per the design). */
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  background: var(--grad-blue);
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 120, 215, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-active {
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 120, 215, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Mobile nav toggle — hidden on desktop. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text-soft);
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: rgba(5, 8, 15, 0.94);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    /* Hidden until toggled. */
    display: none;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  border-top: 1px solid rgba(120, 180, 240, 0.1);
  margin-top: clamp(40px, 6vw, 80px);
}

.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) var(--gutter) clamp(28px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 44ch;
}

.site-footer__logo {
  height: 34px;
  width: auto;
  /* The brand column is a flex column (align-items: stretch by default);
     pin the logo so it keeps its aspect ratio instead of stretching. */
  align-self: flex-start;
}

.site-footer__tag {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
}

.site-footer__contact {
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--text-soft);
}

.site-footer__contact a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: var(--light-blue);
}

.site-footer__creds {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--text-dim);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.site-footer__nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--light-blue);
}

.site-footer__legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(28px, 4vw, 40px);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes cp-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes cp-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 120, 215, 0.45);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(0, 120, 215, 0);
  }
}

/* On-load entrance, used by the hero. Pure CSS so it works without JS;
   fully neutralised under reduced-motion below. */
.rise {
  animation: cp-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .rise {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__pulse,
  .chip {
    animation: none !important;
  }
}

/* ==========================================================================
   Homepage — hero
   ========================================================================== */

.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(120px, 17vh, 180px) var(--gutter) clamp(60px, 9vw, 110px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-blue);
}

.hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mid-blue);
  box-shadow: 0 0 12px 2px rgba(0, 120, 215, 0.8);
  animation: cp-pulse 2.6s infinite;
}

.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}

.hero__title-accent {
  background: linear-gradient(100deg, #78b4f0, #0078d7 60%, #1f9bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  margin: clamp(24px, 3vw, 34px) 0 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 30ch;
  text-wrap: pretty;
}

.hero__support {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.62;
  color: #a4b1c0;
  max-width: 44ch;
  text-wrap: pretty;
}

.hero__actions {
  margin-top: clamp(30px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Shared buttons -------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--grad-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 17px 30px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 40px -6px rgba(0, 120, 215, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 500;
  color: #9aa6b4;
  text-decoration: none;
  border-bottom: 1px solid rgba(120, 180, 240, 0.3);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--light-blue);
  border-color: var(--light-blue);
}

/* Hero media (photo + depth) ------------------------------------------- */
.hero__media {
  position: relative;
  align-self: stretch;
  min-height: clamp(400px, 48vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card {
  position: absolute;
  width: min(94%, 440px);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(120, 180, 240, 0.16), rgba(0, 70, 135, 0.1));
  border: 1px solid rgba(120, 180, 240, 0.18);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero__glow {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 120, 215, 0.5), transparent 70%);
  filter: blur(8px);
}

.hero__photo {
  position: relative;
  z-index: 2;
  height: clamp(400px, 48vw, 580px);
  width: auto;
  max-width: 108%;
  object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.6));
}

/* Floating glass chips -------------------------------------------------- */
.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(10, 16, 28, 0.55);
  border: 1px solid rgba(120, 180, 240, 0.22);
  border-radius: 13px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
}

.chip--stat {
  left: -2%;
  top: 26%;
  animation: cp-float 6s ease-in-out infinite;
}

.chip__num {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.chip__num span {
  color: var(--light-blue);
}

.chip__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.25;
  color: #9aa6b4;
  letter-spacing: 0.04em;
}

.chip--status {
  right: -3%;
  bottom: 20%;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #cdd6e2;
  animation: cp-float 7s ease-in-out infinite;
  animation-delay: 0.8s;
}

.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37d39a;
  box-shadow: 0 0 10px 1px rgba(55, 211, 154, 0.8);
}

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
    min-height: clamp(340px, 80vw, 460px);
  }
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section-pad-xl {
  padding-block: clamp(64px, 10vw, 140px);
}
.section-pad-lg {
  padding-block: clamp(64px, 9vw, 120px);
}
.section-pad-md {
  padding-block: clamp(56px, 8vw, 110px);
}
.section-pad-sm {
  padding-block: clamp(40px, 5vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow__num {
  color: var(--text-dim);
}

.eyebrow--dim {
  color: var(--text-dim);
}

.section-title {
  margin: 0 0 clamp(34px, 5vw, 56px);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--text-strong);
  text-wrap: balance;
}

/* ==========================================================================
   Homepage — "Most providers skip the hard part" set-piece
   ========================================================================== */

.approach__panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 15, 27, 0.78), rgba(6, 11, 21, 0.86));
  border: 1px solid rgba(120, 180, 240, 0.14);
  box-shadow: 0 60px 120px -50px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.panel-hairline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 180, 240, 0.6), transparent);
}

.approach__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 85% 0%, rgba(0, 120, 215, 0.16), transparent 60%);
}

.approach__inner {
  position: relative;
  padding: clamp(40px, 6vw, 88px);
}

.approach__title {
  margin: 0 0 clamp(34px, 5vw, 56px);
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  max-width: 18ch;
  text-wrap: balance;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.approach__prose {
  max-width: 540px;
}

.approach__prose p {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.72;
  color: var(--text-body);
  text-wrap: pretty;
}

.approach__prose p + p {
  margin-top: clamp(22px, 3vw, 30px);
}

.approach__prose strong {
  font-weight: 600;
  color: #fff;
}

.steps__label {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--panel-2);
  border: 1px solid rgba(120, 180, 240, 0.16);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  transform-style: preserve-3d;
}

.step:hover {
  border-color: rgba(120, 180, 240, 0.4);
  box-shadow: 0 30px 60px -24px rgba(0, 120, 215, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step--accent {
  background: linear-gradient(180deg, rgba(0, 120, 215, 0.16), rgba(14, 21, 35, 0.7));
  border-color: rgba(120, 180, 240, 0.34);
  box-shadow: 0 24px 50px -22px rgba(0, 120, 215, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--light-blue);
  background: rgba(0, 120, 215, 0.14);
  border: 1px solid rgba(120, 180, 240, 0.3);
}

.step--accent .step__num {
  color: #fff;
  background: var(--grad-blue);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 18px rgba(0, 120, 215, 0.5);
}

.step__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.step--accent .step__title {
  color: #fff;
}

.step__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #0a0f1a;
  background: var(--light-blue);
  padding: 3px 7px;
  border-radius: 5px;
}

/* ==========================================================================
   Homepage — "This is for you if"
   ========================================================================== */

.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}

.who__card {
  padding: clamp(26px, 3vw, 34px);
  border-radius: 20px;
  background: rgba(10, 16, 28, 0.6);
  border: 1px solid rgba(120, 180, 240, 0.14);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  transform-style: preserve-3d;
}

.who__card:hover {
  border-color: rgba(120, 180, 240, 0.36);
  box-shadow: 0 40px 70px -30px rgba(0, 120, 215, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.who__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(0, 120, 215, 0.14);
  border: 1px solid rgba(120, 180, 240, 0.28);
  color: var(--light-blue);
}

.who__card p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.6;
  color: var(--text-body);
  text-wrap: pretty;
}

.who__card strong {
  color: #fff;
  font-weight: 600;
}

.who__card em {
  font-style: italic;
  color: var(--light-blue);
}

.who__not {
  margin-top: clamp(18px, 2.4vw, 24px);
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 40px);
  display: flex;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(110deg, rgba(120, 180, 240, 0.1), rgba(10, 16, 28, 0.5));
  border: 1px dashed rgba(120, 180, 240, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.who__not-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-blue);
}

.who__not-ring {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--light-blue);
}

.who__not p {
  margin: 0;
  flex: 1;
  min-width: 280px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* ==========================================================================
   Homepage — proof strip
   ========================================================================== */

.proof__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof__tile {
  flex: 1;
  min-width: 180px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(10, 16, 28, 0.55);
  border: 1px solid rgba(120, 180, 240, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s, border-color 0.25s;
  transform-style: preserve-3d;
}

.proof__tile:hover {
  border-color: rgba(120, 180, 240, 0.34);
}

.proof__tile--accent {
  flex: 1.4;
  min-width: 200px;
  background: linear-gradient(160deg, rgba(0, 120, 215, 0.18), rgba(10, 16, 28, 0.55));
  border-color: rgba(120, 180, 240, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof__big {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.proof__big span {
  color: var(--light-blue);
}

.proof__mid {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.proof__sub {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof__tile--accent .proof__sub {
  color: #9fb4cc;
}

/* ==========================================================================
   Homepage — close ("No sales team. No surprises.")
   ========================================================================== */

.close__panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px) clamp(32px, 6vw, 80px);
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 70, 135, 0.3), rgba(8, 13, 23, 0.7));
  border: 1px solid rgba(120, 180, 240, 0.22);
  box-shadow: 0 60px 120px -50px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.close__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 80% at 50% 0%, rgba(0, 120, 215, 0.22), transparent 65%);
}

.close__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.close__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.close__inner p {
  max-width: 60ch;
  margin: clamp(16px, 2vw, 20px) auto 0;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.66;
  color: var(--text-body);
  text-wrap: pretty;
}

.close__inner p:first-of-type {
  margin-top: clamp(26px, 3vw, 34px);
}

.close__actions {
  margin-top: clamp(34px, 4.5vw, 48px);
  display: flex;
  justify-content: center;
}

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

/* ==========================================================================
   Inner pages — shared patterns (How I Work, Work, About, Contact)
   ========================================================================== */

.hero--simple .hero__inner {
  grid-template-columns: 1fr;
}

.hero--simple .hero__content {
  max-width: 740px;
}

.hero--simple {
  padding-bottom: clamp(40px, 6vw, 72px);
}

/* Generic long-form paragraph rhythm, same treatment as .approach__prose */
.prose p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.7;
  color: var(--text-body);
  text-wrap: pretty;
}

.prose p + p {
  margin-top: 1.1em;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

/* Method steps (How I Work) — numbered cards with full body copy */
.method {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 18px);
}

.method__item {
  padding: clamp(26px, 3vw, 34px);
  border-radius: 18px;
  background: rgba(10, 16, 28, 0.55);
  border: 1px solid rgba(120, 180, 240, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.method__item--accent {
  background: linear-gradient(160deg, rgba(0, 120, 215, 0.16), rgba(10, 16, 28, 0.55));
  border-color: rgba(120, 180, 240, 0.3);
}

.method__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.method__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--light-blue);
}

.method__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 22px);
  color: var(--text-strong);
}

.method__item .prose p {
  font-size: clamp(15.5px, 1.5vw, 16.5px);
}

/* Two-up card grid (How I Work — "In practice") */
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 22px);
}

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

/* Case studies (Work page) */
.case-study {
  margin-top: clamp(18px, 2.4vw, 24px);
}

.case-study__title {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--text-strong);
}

/* Quiet credentials line (About page foot) */
.credentials {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(120, 180, 240, 0.14);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Contact details block */
.contact-details {
  margin-top: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-details__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text-strong);
}

.contact-details__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 15px;
}

.contact-details__links a {
  color: var(--light-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(120, 180, 240, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-details__links a:hover,
.contact-details__links a:focus-visible {
  color: #fff;
  border-color: #fff;
}

.contact-details__note {
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
}
