/* ============================================================
   SHEFFY TECHNOLOGIES — COMPONENT SYSTEM
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-black);
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--color-white);
  background: transparent;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--space-10);
}

/* ── UTILITY CLASSES ── */
.text-yellow { color: var(--color-yellow); }

/* ── CSS @PROPERTY (hardware-accelerated gradient angle) ── */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* ── ANIMATIONS ── */
@keyframes beam-spin {
  from { --gradient-angle: 0deg; }
  to   { --gradient-angle: 360deg; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes motion-fade {
  0%, 100% { opacity: 0.2; transform: translateY(12px); }
  50%       { opacity: 1;   transform: translateY(0); }
}
@keyframes motion-slide {
  0%, 100% { opacity: 0.2; transform: translateX(-12px); }
  50%       { opacity: 1;   transform: translateX(0); }
}
@keyframes motion-scale {
  0%, 100% { opacity: 0.2; transform: scale(0.94); }
  50%       { opacity: 1;   transform: scale(1); }
}
@keyframes dot-heading-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              backdrop-filter var(--duration-fast) var(--ease-standard),
              -webkit-backdrop-filter var(--duration-fast) var(--ease-standard);
}

/* Blurs as soon as anything scrolls upward */
.nav--scrolled {
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 16 px above & below · 32 px left & right — overrides .container padding */
  padding: 16px 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 100px;
  overflow: hidden;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-white);
}
.logo-accent { color: var(--color-yellow); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  position: relative;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #A1A1A1;
  border-radius: 0;
  transition: color var(--duration-fast) var(--ease-standard);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: #FFFFFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-standard);
}
.nav__link:hover {
  color: var(--color-white);
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link.active {
  color: var(--color-white);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #FFFFFF;
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity   320ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Open state — hamburger becomes × */
.nav--open .nav__hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav--open .nav__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav--open .nav__hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@keyframes nav-link-in {
  from { transform: translateX(16px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── MOBILE SLIDE-IN PANEL ── */
@media (max-width: 680px) {
  .nav__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(280px, 84vw, 360px);
    z-index: calc(var(--z-nav) - 1);
    padding: max(72px, env(safe-area-inset-top)) 24px max(32px, env(safe-area-inset-bottom)) 32px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                opacity   300ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 300ms;
  }

  .nav--open .nav__links {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                opacity   300ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }

  .nav--open .nav__link {
    font-size: clamp(18px, 5vw, 22px);
    color: rgba(255, 255, 255, 0.45);
    padding: 12px 0;
    letter-spacing: 0.04em;
    animation: nav-link-in 280ms cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  .nav--open .nav__link:nth-child(1) { animation-delay:  80ms; }
  .nav--open .nav__link:nth-child(2) { animation-delay: 130ms; }
  .nav--open .nav__link:nth-child(3) { animation-delay: 180ms; }
  .nav--open .nav__link:nth-child(4) { animation-delay: 230ms; }
  .nav--open .nav__link:nth-child(5) { animation-delay: 280ms; }

  .nav--open .nav__link:hover,
  .nav--open .nav__link.active { color: var(--color-white); }

  .nav--open .nav__link::after { display: none; }

  .nav__overlay {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-nav) - 2);
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 300ms;
  }
  .nav__overlay--visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0;
  transition: background var(--duration-fast) var(--ease-hover),
              color var(--duration-fast) var(--ease-hover),
              border-color var(--duration-fast) var(--ease-hover),
              transform var(--duration-fast) var(--ease-hover),
              box-shadow var(--duration-fast) var(--ease-hover);
  white-space: nowrap;
  will-change: transform;
}
.btn:active {
  transform: scale(0.98);
}

/* Beam primary: black fill + spinning beam border by default */
.btn--primary {
  position: relative;
  isolation: isolate;
  background: transparent;
  color: var(--color-white);
  border: none;
  transition: box-shadow var(--duration-base) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}

/* Rotating yellow beam — always on */
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: conic-gradient(
    from var(--gradient-angle),
    transparent 0%,
    transparent 28%,
    #7a5200 33%,
    #FFD600 40%,
    #FFF59D 50%,
    #FFD600 60%,
    #7a5200 67%,
    transparent 72%,
    transparent 100%
  );
  animation: beam-spin 4.5s linear infinite;
}

/* Black inner fill — 1px inset reveals the beam as a border */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: var(--color-black);
  transition: background var(--duration-fast) var(--ease-standard);
}

.btn--primary:hover {
  color: var(--color-yellow);
  box-shadow: 0 0 28px rgba(255, 214, 0, 0.18);
}
.btn--primary:hover::before {
  animation-duration: 2.5s;
}
.btn--primary:hover::after {
  background: #2D2102;
}
.btn--primary:active::after {
  background: #1f1601;
}
.btn--primary:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.btn--primary:disabled::before {
  animation: none;
  background: rgba(255, 214, 0, 0.1);
}
.btn--primary:disabled::after {
  background: var(--color-black);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-divider);
}
.btn--secondary:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid transparent;
}
.btn--ghost:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
}

.btn--sm  { padding: 9px 18px; font-size: 17px; }
.btn--lg  { padding: 18px 36px; font-size: 21px; font-weight: var(--weight-bold); }


/* ============================================================
   STATUS TAG & EYEBROW
============================================================ */
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.5);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.eyebrow {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,214,0,0.06) 0%, transparent 70%);
  filter: blur(80px);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.divider-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-yellow);
}

.hero__heading {
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 24px;
}
.hero__heading--accent {
  display: block;
  color: var(--color-yellow);
  font-style: italic;
}

.hero__body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-size: 28px;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-dark-grey);
}

/* Spec Card (hero right col) */
.hero__card {
  display: flex;
  justify-content: flex-end;
}
.spec-card {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-card);
}
.spec-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.spec-card__title {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.35);
}
.spec-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
  animation: pulse 2s infinite;
}
.spec-card__list { display: flex; flex-direction: column; gap: 12px; }
.spec-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-dark-grey);
  font-size: 13px;
}
.spec-card__list li:last-child { border-bottom: none; padding-bottom: 0; }
.spec-key { color: rgba(255,255,255,0.45); }
.spec-val {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--color-white);
  font-weight: var(--weight-medium);
}
.swatch-yellow::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--color-yellow);
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}


/* ============================================================
   RULE BREAK
============================================================ */
.rule-break {
  height: 3px;
  background: var(--color-yellow);
  width: 100%;
}


/* ============================================================
   SECTIONS
============================================================ */
.section {
  padding: var(--space-24) 0;
}
.section--alt {
  background: #0c0c0c;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: var(--border-subtle);
}
.section-index {
  font-size: var(--text-label);
  font-family: 'Courier New', monospace;
  color: var(--color-yellow);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  padding-top: 6px;
  flex-shrink: 0;
  min-width: 32px;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-bottom: 8px;
}
.section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
}


/* ============================================================
   COLOR SYSTEM
============================================================ */
.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.color-chip {
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  overflow: hidden;
}
.color-chip--xl .color-chip__swatch { height: 120px; }
.color-chip__swatch {
  height: 80px;
  background: var(--chip-bg, #111);
}
.color-chip__info {
  padding: 16px;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.color-chip__name {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}
.color-chip__hex {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--color-yellow);
  letter-spacing: 0.05em;
}
.color-chip__role {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.usage-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.usage-rule {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usage-rule p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.usage-rule__tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.usage-rule__tag.do   { background: rgba(255,214,0,0.12); color: var(--color-yellow); }
.usage-rule__tag.dont { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }


/* ============================================================
   TYPOGRAPHY SHOWCASE
============================================================ */
.type-showcase { display: flex; flex-direction: column; }
.type-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}
.type-meta { padding-top: 8px; }
.type-label {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  line-height: 1.6;
}
.type-divider { height: 1px; background: var(--color-dark-grey); }

.type-h1-demo {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
.type-h2-demo {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: var(--leading-snug);
}
.type-h3-demo {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.02em;
  line-height: var(--leading-snug);
}
.type-body-demo {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: var(--leading-normal);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}
.type-label-demo {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   CARDS
============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--duration-base) var(--ease-standard);
}
.card:hover { border-color: rgba(255,255,255,0.1); }

.card--accent { border-color: rgba(255,214,0,0.3); }
.card--accent:hover { border-color: rgba(255,214,0,0.6); }

.card__eyebrow { display: flex; align-items: center; }
.card__title {
  font-size: 18px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-white);
}
.card__title--yellow { color: var(--color-yellow); }
.card__body { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; flex: 1; }
.card__footer { margin-top: auto; }
.card__link {
  font-size: 13px;
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.45);
  transition: color var(--duration-fast) var(--ease-standard);
}
.card__link:hover { color: var(--color-yellow); }

/* Stat card */
.card--stat { justify-content: center; }
.stat-badge {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.3);
}
.card__stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-big {
  font-size: 52px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  color: var(--color-white);
}
.stat-unit {
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: var(--color-yellow);
}
.card__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.stat-bar {
  height: 3px;
  background: var(--color-dark-grey);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.stat-bar__fill {
  height: 100%;
  background: var(--color-yellow);
  border-radius: 2px;
}

/* Feature card */
.card--feature {}
.card__icon-wrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
}


/* ============================================================
   BADGES
============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.badge--default {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border-color: var(--color-divider);
}
.badge--yellow {
  background: rgba(255,214,0,0.1);
  color: var(--color-yellow);
  border-color: rgba(255,214,0,0.25);
}
.badge--outline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.15);
}
.badge--ghost {
  background: transparent;
  color: rgba(255,255,255,0.3);
  border-color: transparent;
}


/* ============================================================
   FORM INPUTS
============================================================ */
.inputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 13px;
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.input {
  padding: 12px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-dark-grey);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-white);
  transition: border-color var(--duration-fast) var(--ease-standard),
              background var(--duration-fast) var(--ease-standard);
  outline: none;
  width: 100%;
}
.input::placeholder { color: rgba(255,255,255,0.2); }
.input:hover { border-color: rgba(255,255,255,0.1); }
.input:focus, .input--focus {
  border-color: var(--color-yellow);
  background: rgba(255,214,0,0.03);
}
.input--error { border-color: rgba(255,80,80,0.6); }
.input--error:focus { border-color: rgba(255,80,80,0.9); }
.input:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.field__hint {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.field__error {
  font-size: 12px;
  color: rgba(255,100,100,0.8);
}


/* ============================================================
   TABLE
============================================================ */
.table-wrap {
  overflow-x: auto;
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table thead tr {
  border-bottom: 1px solid var(--color-dark-grey);
}
.table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.3);
}
.table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--duration-fast) var(--ease-standard);
}
.table tbody tr:last-child { border-bottom: none; }
.table tbody tr:hover { background: rgba(255,255,255,0.03); }
.table td { padding: 16px 20px; }
.table-name {
  font-weight: var(--weight-medium);
  color: var(--color-white);
}
.table-mono {
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.5);
}
.table-secondary { color: rgba(255,255,255,0.35); }
.table-action {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--duration-fast);
}
.table-action:hover { color: var(--color-yellow); }


/* ============================================================
   ALERTS
============================================================ */
.alerts-stack { display: flex; flex-direction: column; gap: 12px; }
.alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-dark-grey);
}
.alert--info  { border-left-color: rgba(255,255,255,0.2); }
.alert--success { border-left-color: var(--color-yellow); }
.alert--warning { border-left-color: rgba(255,255,255,0.1); }

.alert__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.3);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-sm);
  font-style: normal;
}
.alert__icon--yellow { color: var(--color-yellow); border-color: rgba(255,214,0,0.3); }
.alert__icon--grey   { color: rgba(255,255,255,0.25); }

.alert__title {
  display: block;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  margin-bottom: 4px;
}
.alert__body {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}


/* ============================================================
   COMPONENT GROUPS
============================================================ */
.component-group {
  margin-bottom: 64px;
}
.component-group:last-child { margin-bottom: 0; }
.component-group__title {
  font-size: 18px;
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-dark-grey);
}
.component-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.component-row.flex-wrap { gap: 12px; }
.component-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.component-label {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.25);
}


/* ============================================================
   SPACING SCALE
============================================================ */
.spacing-scale {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spacing-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
}
.spacing-bar {
  background: var(--color-yellow);
  flex-shrink: 0;
  border-radius: 1px;
}
.spacing-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.spacing-token {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}


/* ============================================================
   MOTION SECTION
============================================================ */
.motion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.motion-card {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.motion-demo {
  height: 120px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--color-dark-grey);
  background: #0D0D0D;
}
.motion-box {
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: var(--weight-medium);
}
.motion-box--sm { padding: 8px 16px; font-size: 12px; }

.motion-demo--fade   .motion-box { animation: motion-fade  2.4s var(--ease-standard) infinite; }
.motion-demo--slide  .motion-box { animation: motion-slide 2.4s var(--ease-standard) infinite; }
.motion-demo--expand .motion-box { animation: motion-scale 2.4s var(--ease-standard) infinite; }

.motion-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.motion-name {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}
.motion-spec {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.motion-rule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.motion-rule__col {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.motion-rule__tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.motion-rule__tag.use   { background: rgba(255,214,0,0.1); color: var(--color-yellow); }
.motion-rule__tag.avoid { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.motion-rule__list { display: flex; flex-direction: column; gap: 10px; }
.motion-rule__list li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.motion-rule__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  font-size: 10px;
  top: 1px;
}


/* ============================================================
   METHODOLOGY SECTION
============================================================ */
.methodology {
  background: #f0f0f0;
  padding: var(--space-24) 0;
  border-radius: 4rem 4rem 0 0;
}
.methodology__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.methodology .eyebrow { color: rgba(0,0,0,0.45); }
.methodology__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  color: #0A0A0A;
  margin-top: 12px;
  margin-bottom: 48px;
}

.principle-list { display: flex; flex-direction: column; gap: 0; }
.principle-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  align-items: start;
}
.principle-item:last-child { border-bottom: none; }
.principle-num {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: #0A0A0A;
  padding-top: 3px;
  opacity: 0.4;
}
.principle-title {
  display: block;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  color: #0A0A0A;
  margin-bottom: 6px;
}
.principle-desc {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
}

/* Right column */
.methodology__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.quote-card {
  background: #0A0A0A;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.quote-card__text {
  font-size: 20px;
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.quote-card__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.quote-card__name {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-yellow);
}
.quote-card__role {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: 'Courier New', monospace;
}
.quote-card__accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(40px);
}
.brand-mark-lg {
  font-size: 100px;
  font-weight: var(--weight-bold);
  color: rgba(0,0,0,0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  align-self: flex-end;
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #120F05;
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,214,0,0.08);
}
.footer__inner { position: relative; z-index: 1; }

.footer__cta {
  text-align: center;
  padding-bottom: 80px;
}
.footer__cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-bottom: 40px;
}
.footer__cta-btn {
  min-width: 220px;
}
.footer__cta-btn:hover {
  box-shadow: 0 0 48px rgba(255, 214, 0, 0.28);
}
.footer__cta-btn:hover::before {
  animation-duration: 1s;
}

.footer__social { display: flex; gap: 10px; }
.social-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-divider);
  color: rgba(255,255,255,0.4);
  transition: border-color var(--duration-fast), color var(--duration-fast);
}
.social-icon:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

/* ── Footer layout extensions ── */
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 100px;
  overflow: hidden;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-top: 6px;
}

.container-rule {
  height: 1px;
  background: var(--color-dark-grey);
  max-width: 1360px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #848484;
  margin-bottom: 20px;
}

.footer__col-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 17px;
  color: rgba(255,255,255,0.35);
  transition: color var(--duration-fast);
  font-family: var(--font-display);
}

.footer__link:hover { color: var(--color-white); }

.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.footer__contact-line svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.footer__copy {
  font-size: 16px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .footer__top  { flex-direction: column; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

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

/* ============================================================
   FOOTER BRAND MARQUEE
============================================================ */
@keyframes footer-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.footer-brand {
  position: relative;
  width: 100%;
  height: 20vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,214,0,0.06);
}

.footer-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: footer-marquee-scroll 36s linear infinite;
}

.footer-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.footer-marquee-item svg {
  height: 80%;
  width: auto;
  display: block;
  opacity: 0.5;
  transition: filter var(--duration-base) var(--ease-standard);
}

.footer-art-path {
  fill: none;
  stroke: #848484;
  stroke-width: 1.5;
}

.footer-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle 110px at 200px 50%, rgba(0,0,0,0.28) 0%, transparent 100%);
  mask-image: radial-gradient(circle 110px at 200px 50%, rgba(0,0,0,0.28) 0%, transparent 100%);
}

.footer-marquee-track--highlight .footer-art-path {
  stroke: #FFD600;
  stroke-width: 2.5;
}

.footer-marquee-track--highlight .footer-marquee-item svg {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}


/* ============================================================
   SCROLL REVEAL — THREE-TIER MOTION HIERARCHY
   Primary   (reveal-lg)  900ms  30px — headlines, key visuals
   Secondary (reveal)     700ms  20px — cards, content blocks
   Tertiary  (reveal-sm)  400ms   8px — buttons, labels, small UI
============================================================ */

/* ── TIER 1: PRIMARY ── */
.reveal-lg {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-standard),
              transform var(--duration-slower) var(--ease-standard);
}
.reveal-lg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TIER 2: SECONDARY ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-standard),
              transform var(--duration-slow) var(--ease-standard);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TIER 3: TERTIARY ── */
.reveal-sm {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease-standard),
              transform 400ms var(--ease-standard);
}
.reveal-sm.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WITHIN-SECTION SEQUENCE DELAYS ──
   Heading (primary) fires first, body follows, CTA last.
   Delays are offset from the primary trigger. */

/* Who We Are */
.whoweare-content .whoweare-body { transition-delay: 120ms; }
.whoweare-content .whoweare-cta  { transition-delay: 220ms; }

/* Closing CTA */
.closing-body { transition-delay: 120ms; }
.closing-cta  { transition-delay: 220ms; }

/* Process items — each item is self-contained, no extra delay needed */

/* Insight cards — delay set by JS stagger */

/* Footer columns — delay set by JS stagger */


/* ============================================================
   LAMP HERO
============================================================ */

/* ============================================================
   DOT HERO  (Three.js wave particle field)
============================================================ */

.dot-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: calc(24vh + 50px);
}

/* Heading */
.dot-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  animation: dot-heading-rise var(--duration-slow) 0.3s var(--ease-standard) both;
}

.dot-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #727272;
  max-width: 960px;
}

.h-gray  { color: #727272; }
.h-white { color: #E0E0E0; }

/* ── BRAND MARQUEE (fixed bottom watermark, continuous scroll) ── */
@keyframes brand-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-brand {
  position: fixed;
  bottom: 32px;
  left: 32px;
  right: 32px;
  height: 24vh;
  pointer-events: auto;
  z-index: 1;
  overflow: hidden;
}

.brand-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: brand-marquee-scroll 36s linear infinite;
}

.brand-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.brand-marquee-item svg {
  height: 80%;
  width: auto;
  display: block;
  opacity: 0.5;
  transition: filter var(--duration-base) var(--ease-standard);
}

/* Base layer — always dim outline */
.brand-art-path {
  fill: none;
  stroke: #848484;
  stroke-width: 1.5;
}

/*
 * Highlight wrapper — position:absolute, fills hero-brand exactly,
 * does NOT scroll. The mask-image is applied here so its coordinates
 * are always in viewport-relative space, matching e.clientX/Y perfectly.
 * The scrolling highlight track lives INSIDE this wrapper.
 */
.brand-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  /* Default: very subtle ambient hint at the left — JS overrides on hover */
  -webkit-mask-image: radial-gradient(circle 110px at 200px 50%, rgba(0,0,0,0.28) 0%, transparent 100%);
  mask-image: radial-gradient(circle 110px at 200px 50%, rgba(0,0,0,0.28) 0%, transparent 100%);
}

/* The scrolling highlight track inside the wrapper — no position, no mask here */
.brand-marquee-track--highlight .brand-art-path {
  stroke: #FFD600;
  stroke-width: 2.5;
}

.brand-marquee-track--highlight .brand-marquee-item svg {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}


/* ============================================================
   MAGIC TEXT SECTION
============================================================ */
.magic-section {
  position: relative;
  min-height: 300vh;
}

.magic-sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.magic-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  max-width: 900px;
}

.magic-word {
  display: inline;
  color: #848484;
  will-change: color;
  transition: color var(--duration-fast) var(--ease-standard);
  margin-right: 0.22em;
}

/* ── FEATURED WORK MARQUEE ── */
@keyframes featured-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.featured-brand {
  position: relative;
  width: 100%;
  height: 20vh;
  margin-top: 150px;
  overflow: hidden;
  pointer-events: auto;
}


.featured-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: featured-marquee-scroll 28s linear infinite;
}

.featured-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.featured-marquee-item svg {
  height: 80%;
  width: auto;
  display: block;
  opacity: 0.5;
}

.featured-art-path {
  fill: none;
  stroke: #848484;
  stroke-width: 1.5;
}

.featured-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.featured-marquee-track--highlight .featured-art-path {
  stroke: #FFD600;
  stroke-width: 2.5;
}

.featured-marquee-track--highlight .featured-marquee-item svg {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}

/* ============================================================
   WORK SECTION
============================================================ */
/* ── JOURNEY LINE — moving 40px segment, behind all content ── */
.page-journey {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.journey-svg {
  width: 100%;
  height: 100%;
}

.journey-progress {
  fill: none;
  stroke: var(--color-yellow);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 214, 0, 0.6))
          drop-shadow(0 0 16px rgba(255, 214, 0, 0.25));
}

.work-section {
  position: relative;
  margin-top: 120px;
}

.work-sticky {
  position: sticky;
  overflow: hidden;
  padding-bottom: 32px;
  transition: top var(--duration-base) var(--ease-standard), height var(--duration-base) var(--ease-standard);
  /* top and height set by JS */
}

.work-cards-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 0 0 0 30vw;
  height: 100%;
  will-change: transform;
}

.work-card {
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
  width: calc((100vw - 80px) / 3);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: transform var(--duration-fast) var(--ease-hover),
              box-shadow var(--duration-fast) var(--ease-hover);
  will-change: transform;
}
.work-card:hover {
  transform: translateY(-4px);
}

/* Rotating yellow beam border */
.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: conic-gradient(
    from var(--gradient-angle),
    transparent 0%,
    transparent 28%,
    #7a5200 33%,
    #FFD600 40%,
    #FFF59D 50%,
    #FFD600 60%,
    #7a5200 67%,
    transparent 72%,
    transparent 100%
  );
  animation: beam-spin 2.5s linear infinite paused;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

/* Dark fill — 1px inset reveals beam as border */
.work-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: #0A0A0A;
}

.work-card:hover::before {
  animation-play-state: running;
  animation-duration: 4.5s;
  opacity: 1;
}

.work-card:hover {
  box-shadow: 0 0 28px rgba(255, 214, 0, 0.18);
}

.work-card__image {
  flex: 1;
  background: rgba(200, 200, 200, 0.08);
  margin-bottom: 20px;
  min-height: 0;
}

.work-card__desc {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--color-white);
  flex-shrink: 0;
  padding: 0 16px 16px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .motion-grid   { grid-template-columns: repeat(2, 1fr); }
  .color-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner         { grid-template-columns: 1fr; gap: 48px; }
  .hero__card          { justify-content: flex-start; }
  .methodology__inner  { grid-template-columns: 1fr; gap: 48px; }
  .type-row            { grid-template-columns: 1fr; gap: 12px; }
  .inputs-grid         { grid-template-columns: 1fr; }
  .footer__bottom      { grid-template-columns: 1fr; gap: 24px; }
  .usage-rules         { grid-template-columns: 1fr; }
  .motion-rule         { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root {
    --text-h1: clamp(48px, 11vw, 72px);
    --text-h2: clamp(32px, 8vw, 48px);
  }
  .container        { padding: 0 20px; }
  .cards-grid       { grid-template-columns: 1fr; }
  .color-grid       { grid-template-columns: repeat(2, 1fr); }
  .motion-grid      { grid-template-columns: 1fr 1fr; }
  .nav__hamburger   { display: flex; }
  .nav__cta         { display: none; }
  .spacing-item     { grid-template-columns: auto 1fr; }
  .spacing-token    { display: none; }
  .section-header   { flex-direction: column; gap: 8px; }

  .dot-heading   { font-size: clamp(20px, 6.5vw, 34px); letter-spacing: 0.04em; }
  .hero-brand    { height: 18vh; bottom: 16px; left: 16px; right: 16px; }
  .dot-hero      { padding-top: 72px; padding-bottom: calc(18vh + 40px); }
  .work-card     { width: calc(100vw - 48px); }
}


/* ============================================================
   PROCESS BRAND MARQUEE — "Built for real-world use."
============================================================ */
@keyframes process-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.process-brand {
  position: relative;
  width: 100%;
  height: 20vh;
  margin-top: 120px;
  overflow: hidden;
  pointer-events: auto;
}

.process-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: process-marquee-scroll 44s linear infinite;
}

.process-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.process-marquee-item svg {
  height: 80%;
  width: auto;
  display: block;
  opacity: 0.5;
}

.process-art-path {
  fill: none;
  stroke: #848484;
  stroke-width: 1.5;
}

.process-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.process-marquee-track--highlight .process-art-path {
  stroke: #FFD600;
  stroke-width: 2.5;
}

.process-marquee-track--highlight .process-marquee-item svg {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}


/* ============================================================
   PROCESS SECTION
============================================================ */
.process-section {
  padding: 120px 0 160px;
}

.process-intro {
  padding-left: 20vw;
  padding-right: 40px;
}

.process-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  max-width: 820px;
}

.ps-accent { color: #E0E0E0; }
.ps-gray   { color: #727272; }

/* ── PROCESS LIST ── */
.process-list {
  margin-top: 80px;
  padding: 0 40px;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.process-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.process-item__num {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 14px;
}

.process-item__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 11vw, 160px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--color-white);
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 10px;
}

.process-item__body {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  grid-column: 2;
  grid-row: 2;
  max-width: 720px;
}


/* ============================================================
   WHAT WE DO BRAND MARQUEE
============================================================ */
@keyframes whatwedo-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.whatwedo-brand {
  position: relative;
  width: 100%;
  height: 20vh;
  margin-top: 120px;
  overflow: hidden;
  pointer-events: auto;
}

.whatwedo-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: whatwedo-marquee-scroll 44s linear infinite;
}

.whatwedo-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.whatwedo-marquee-item svg {
  height: 80%;
  width: auto;
  display: block;
  opacity: 0.5;
}

.whatwedo-art-path {
  fill: none;
  stroke: #848484;
  stroke-width: 1.5;
}

.whatwedo-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.whatwedo-marquee-track--highlight .whatwedo-art-path {
  stroke: #FFD600;
  stroke-width: 2.5;
}

.whatwedo-marquee-track--highlight .whatwedo-marquee-item svg {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}


/* ============================================================
   SERVICES BRAND MARQUEE
============================================================ */
@keyframes services-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.services-brand {
  position: relative;
  width: 100%;
  height: 20vh;
  margin-top: 120px;
  overflow: hidden;
  pointer-events: auto;
}

.services-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: services-marquee-scroll 44s linear infinite;
}

.services-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.services-marquee-text {
  font-family: var(--font-display);
  font-size: 16vh;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #848484;
  text-stroke: 1.5px #848484;
  opacity: 0.5;
  white-space: nowrap;
  flex-shrink: 0;
}

.services-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-marquee-track--highlight .services-marquee-text {
  color: #FFD600;
  -webkit-text-stroke: 2.5px #FFD600;
  text-stroke: 2.5px #FFD600;
  opacity: 1;
}

.services-marquee-track--highlight .services-marquee-item {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}


/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
  padding: 80px 0 160px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.svc-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--duration-fast) var(--ease-hover);
  will-change: transform;
}
.svc-card:hover {
  transform: translateY(-4px);
}

.svc-card--one   { background: #FD7043; }
.svc-card--two   { background: #FE7DA6; }
.svc-card--three { background: #1E7DC1; }

.svc-card__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 53px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: #000;
}

.svc-card__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.7;
  color: #000;
}

.svc-card__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.svc-card__list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.svc-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(0, 0, 0, 0.55);
  position: relative;
  isolation: isolate;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-hover),
              transform var(--duration-fast) var(--ease-hover);
}
.svc-card__list li:active {
  transform: scale(0.98);
}

.svc-card__list li::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: conic-gradient(
    from var(--gradient-angle),
    transparent 0%, transparent 28%,
    #000 33%, #222 40%, #444 50%, #222 60%, #000 67%,
    transparent 72%, transparent 100%
  );
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

.svc-card__list li::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
}

.svc-card--one   .svc-card__list li::after { background: #FD7043; }
.svc-card--two   .svc-card__list li::after { background: #FE7DA6; }
.svc-card--three .svc-card__list li::after { background: #1E7DC1; }

.svc-card__list li:hover::before {
  opacity: 1;
  animation: beam-spin 2.5s linear infinite;
}

.svc-card__list li:hover {
  color: rgba(0, 0, 0, 0.75);
}

.svc-li-arrow {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .services-brand   { margin-top: 60px; }
  .services-section { padding: 48px 0 80px; }
  .services-grid    { grid-template-columns: 1fr; gap: 12px; }
  .svc-card         { min-height: auto; padding: 16px; }
  .svc-card__bottom { margin-top: 32px; }
}


/* ============================================================
   WHO WE ARE SECTION
============================================================ */
.whoweare-section {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  margin-top: 120px;
  overflow: hidden;
}

.whoweare-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 100px 120px;
}

.whoweare-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-white);
}

.whoweare-body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: var(--weight-regular);
  line-height: 1.75;
  color: var(--color-grey);
  max-width: 480px;
}

.whoweare-cta {
  align-self: flex-start;
}

.whoweare-image {
  width: 45%;
  flex-shrink: 0;
  min-height: 100%;
  display: flex;
}

.whoweare-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  flex: 1;
}

@media (max-width: 900px) {
  .whoweare-section  { flex-direction: column; margin-top: 80px; min-height: auto; }
  .whoweare-content  { padding: 72px 32px; gap: 32px; }
  .whoweare-image    { width: 100%; min-height: 56vw; }
}


/* ============================================================
   NEWS & INSIGHTS BRAND MARQUEE
============================================================ */
@keyframes insights-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.insights-brand {
  position: relative;
  width: 100%;
  height: 20vh;
  margin-top: 120px;
  overflow: hidden;
  pointer-events: auto;
}

.insights-marquee-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: insights-marquee-scroll 52s linear infinite;
}

.insights-marquee-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.insights-marquee-item svg {
  height: 80%;
  width: auto;
  display: block;
  opacity: 0.5;
}

.insights-art-path {
  fill: none;
  stroke: #848484;
  stroke-width: 1.5;
}

.insights-highlight-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.insights-marquee-track--highlight .insights-art-path {
  stroke: #FFD600;
  stroke-width: 2.5;
}

.insights-marquee-track--highlight .insights-marquee-item svg {
  filter:
    drop-shadow(0 0 4px rgba(255, 214, 0, 0.35))
    drop-shadow(0 0 13px rgba(255, 214, 0, 0.14));
}


/* ============================================================
   NEWS & INSIGHTS SECTION
============================================================ */
.insights-section {
  padding: 80px 0 160px;
}

.insights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.insights-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-grey);
}

.insights-viewall {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.insights-viewall:hover { color: var(--color-yellow); }

.insights-viewall-arrow { font-size: 18px; }

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

.insight-card {
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-hover),
              box-shadow var(--duration-fast) var(--ease-hover);
  will-change: transform;
}
.insight-card:hover {
  transform: translateY(-4px);
}

/* Spinning beam border */
.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  background: conic-gradient(
    from var(--gradient-angle),
    transparent 0%, transparent 28%,
    #7a5200 33%, #FFD600 40%, #FFF59D 50%, #FFD600 60%, #7a5200 67%,
    transparent 72%, transparent 100%
  );
  /* Clip gradient to the 1px border ring only — interior stays transparent */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-standard);
}

/* Dark fill — 1px gap reveals beam as border */
.insight-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: var(--color-black);
}

.insight-card:hover::before {
  opacity: 1;
  animation: beam-spin 4.5s linear infinite;
}

.insight-card:hover {
  box-shadow: 0 0 28px rgba(255, 214, 0, 0.12);
}

.insight-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  flex-shrink: 0;
}

.insight-card__body {
  flex: 1;
  padding: 28px 24px 24px;
}

.insight-card__title {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: var(--weight-regular);
  line-height: 1.35;
  color: var(--color-white);
}

.insight-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.insight-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 8px;
  flex-shrink: 0;
}

.insight-date {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-grey);
  flex-shrink: 0;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.insight-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  overflow: hidden;
}

.insight-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-grey);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .insights-brand  { margin-top: 60px; }
  .insights-grid   { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
   CLOSING CTA SECTION
============================================================ */
.closing-section {
  padding: 120px 0 160px;
  text-align: center;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 160px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--color-white);
  margin-bottom: 40px;
}

.closing-body {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 680px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .closing-section { padding: 80px 0 100px; }
  .closing-body    { font-size: 15px; }
}

/* ============================================================
   MOBILE OPTIMIZATION — COMPREHENSIVE RESPONSIVE RULES
============================================================ */

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  /* Process */
  .process-intro { padding-left: 5vw; padding-right: 24px; }
  .process-list  { padding: 0 24px; }
  .process-section { padding: 80px 0 100px; }
}

/* ── MOBILE (≤ 680px) ── */
@media (max-width: 680px) {
  /* Base */
  .container { padding: 0 20px; }

  /* Navigation */
  .nav__inner {
    padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
    min-height: 64px;
  }

  /* Process section */
  .process-section  { padding: 56px 0 72px; }
  .process-intro    { padding: 0; }
  .process-list     { padding: 0; margin-top: 48px; }
  .process-item     { grid-template-columns: 44px 1fr; padding: 28px 0; }
  .process-item__title { line-height: 1.0; margin-bottom: 8px; }
  .process-item__body  { font-size: 15px; line-height: 1.6; }

  /* Closing section */
  .closing-section  { padding: 56px 0 72px; }
  .closing-title    { letter-spacing: 0.02em; line-height: 1.0; margin-bottom: 28px; }
  .closing-body     { font-size: 15px; line-height: 1.6; padding: 0 8px; }

  /* Services / What we build */
  .services-section { padding: 40px 0 64px; }
  .svc-card__desc   { font-size: 13px; }
  .svc-card__list li { font-size: 11px; padding: 12px 14px; }

  /* Who We Are */
  .whoweare-content  { padding: 56px 20px; gap: 24px; }
  .whoweare-title    { font-size: clamp(32px, 8vw, 60px); }
  .whoweare-body     { font-size: 15px; line-height: 1.65; max-width: 100%; }

  /* Insights */
  .insights-section  { padding: 56px 0 72px; }
  .insight-card__body { padding: 20px 18px 18px; }
  .insight-card__footer { padding: 12px 18px; flex-wrap: wrap; gap: 8px; }
  .insight-name      { white-space: normal; }

  /* Footer */
  .footer__top       { padding-top: 40px; padding-bottom: 28px; }
  .footer__grid      { padding-top: 28px; padding-bottom: 28px; gap: 28px; }
  .footer-brand      { height: 14vh; }

  /* Buttons — slightly more compact */
  .btn     { font-size: 16px; padding: 12px 20px; }
  .btn--sm { font-size: 15px; padding: 10px 16px; }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  /* Base */
  .container { padding: 0 16px; }

  /* Process */
  .process-item        { grid-template-columns: 36px 1fr; gap: 0; }
  .process-item__num   { font-size: 11px; padding-top: 10px; }
  .process-item__title { font-size: clamp(36px, 10vw, 160px); }
  .process-item__body  { font-size: 14px; }

  /* Closing */
  .closing-title { font-size: clamp(30px, 9vw, 160px); }
  .closing-body  { font-size: 14px; }

  /* Who We Are */
  .whoweare-content { padding: 44px 16px; }
  .whoweare-image   { min-height: 72vw; }

  /* Services card */
  .svc-card__bottom { margin-top: 24px; }

  /* Insight cards */
  .insight-card__title { font-size: 16px; }
  .insight-card__footer { flex-direction: column; align-items: flex-start; }
  .insight-author { margin-left: 0; }

  /* Footer */
  .footer__brand-name { font-size: 18px; }
  .footer__tagline    { font-size: 15px; }
  .footer__link       { font-size: 14px; }
  .footer__copy       { font-size: 13px; }
  .footer__col-title  { font-size: 14px; }
  .footer-brand       { height: 12vh; }

  /* Buttons */
  .btn     { font-size: 15px; padding: 11px 18px; }
  .btn--sm { font-size: 14px; }
}
