/* ============================================
   FIDGET — Taste-Skill v2 Compliant CSS
   DESIGN_VARIANCE: 8 | MOTION: 7 | DENSITY: 3
   Vibe: Ethereal Glass | Layout: Asymmetric
   ============================================ */

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

:root {
  /* OLED black core */
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-2: #141414;
  --surface-3: #1c1c1c;

  /* Hairline borders (no generic 1px gray — tasted) */
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.13);

  /* Single accent: warm ivory/white — no AI purple (LILA BAN) */
  --accent: #f0ece4;
  --accent-dim: rgba(240, 236, 228, 0.5);
  --accent-glow: rgba(240, 236, 228, 0.08);

  /* Status colors — muted, desaturated */
  --green: rgba(52, 199, 89, 0.85);
  --amber: rgba(255, 196, 0, 0.85);
  --red: rgba(255, 59, 48, 0.85);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  /* Easing — no linear, no ease-in-out */
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --max-w: 1280px;
  --radius: 1.5rem;
  --radius-sm: 0.875rem;
  --radius-full: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--accent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- GRAIN OVERLAY ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ---------- MESH BACKGROUND ---------- */
.mesh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
}

.mesh-orb--1 {
  width: 700px; height: 700px;
  background: var(--accent);
  top: -200px; left: -200px;
  animation: orb1 18s ease-in-out infinite alternate;
}

.mesh-orb--2 {
  width: 500px; height: 500px;
  background: rgba(180, 160, 120, 0.6);
  bottom: 10%; right: -100px;
  animation: orb2 22s ease-in-out infinite alternate;
}

.mesh-orb--3 {
  width: 350px; height: 350px;
  background: rgba(240, 236, 228, 0.4);
  top: 50%; left: 50%;
  animation: orb3 16s ease-in-out infinite alternate;
}

@keyframes orb1 { to { transform: translate(120px, 80px); opacity: 0.05; } }
@keyframes orb2 { to { transform: translate(-80px, -60px); opacity: 0.04; } }
@keyframes orb3 { to { transform: translate(60px, -100px); } }

/* ---------- LAYOUT UTILITIES ---------- */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.section-h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.section-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(240, 236, 228, 0.5);
  max-width: 44ch;
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.45);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem 0.8rem 1.6rem;
  background: var(--accent);
  color: #050505;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 236, 228, 0.18);
}

.btn-primary:active {
  transform: scale(0.98) translateY(0);
}

.btn-arrow-wrap {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.btn-primary:hover .btn-arrow-wrap {
  transform: translate(2px, -1px) scale(1.08);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240, 236, 228, 0.5);
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
}

.btn-full { width: 100%; justify-content: space-between; }

/* ---------- NAV — Floating Glass Pill ---------- */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem;
  pointer-events: none;
}

.nav-pill {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.6rem 0.75rem 0.6rem 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 8px 32px rgba(0,0,0,0.4);
  pointer-events: all;
  transition: border-color 0.3s var(--ease-out);
}

.nav-pill:hover { border-color: var(--border-hover); }

/* Double-bezel nav logo */
.nav-logo-bezel {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-wordmark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(240, 236, 228, 0.45);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #050505;
  background: var(--accent);
  padding: 0.5rem 0.65rem 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  flex-shrink: 0;
}

.nav-cta-btn .btn-arrow-wrap {
  width: 22px; height: 22px;
}

.nav-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(240,236,228,0.15);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.ham-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.2s;
  transform-origin: center;
}

.nav-hamburger.open .ham-line:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-hamburger.open .ham-line:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.mobile-link {
  display: block;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.mobile-overlay.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-overlay.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }

/* ---------- HERO — Video Background + Centered ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(8rem, 12vw, 11rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
}

/* --- VIDEO WRAPPER --- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;           /* dim so text stays legible */
}

/*
  INWARD VIGNETTE MASK
  Radial gradient: transparent at center → opaque #050505 toward all 4 edges.
  This creates the "sunken" look where the video dissolves cleanly into the
  surrounding site background with no hard border.
*/
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    /* top edge */
    linear-gradient(to bottom,  var(--bg) 0%, transparent 28%),
    /* bottom edge */
    linear-gradient(to top,     var(--bg) 0%, transparent 28%),
    /* left edge */
    linear-gradient(to right,   var(--bg) 0%, transparent 20%),
    /* right edge */
    linear-gradient(to left,    var(--bg) 0%, transparent 20%);
}

/* --- CENTERED CONTENT --- */
.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  width: 100%;
}

.hero-center .eyebrow { margin-left: auto; margin-right: auto; }

.hero-h1 {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  /* Subtle text shadow so headline pops over video */
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hero-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(240, 236, 228, 0.6);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

/* Signal pills */
.hero-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.signal-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240, 236, 228, 0.45);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.signal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.signal-dot--amber {
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
}

.signal-dot--white {
  background: rgba(240, 236, 228, 0.5);
  box-shadow: none;
  animation: none;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-track {
  width: 1px;
  height: 60px;
  background: rgba(240,236,228,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.scroll-thumb {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 100px;
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

/* ---------- MARQUEE BELT ---------- */
.marquee-belt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.015);
}

.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-track { overflow: hidden; width: 100%; }

.marquee-run {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-run span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.2);
  white-space: nowrap;
}

.marquee-dot { font-size: 0.4rem; color: rgba(240,236,228,0.1); }

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

/* ---------- APPROACH ---------- */
.approach {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

.approach-header {
  margin-bottom: 4rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.approach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.35s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: default;
}

.approach-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 20px 60px rgba(0,0,0,0.3);
}

.approach-card--hero .approach-card-inner {
  padding: 3rem;
}

.approach-card-inner {
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.approach-number {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: rgba(240,236,228,0.2);
  margin-bottom: 1.5rem;
}

.approach-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.approach-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(240,236,228,0.45);
  flex: 1;
}

.approach-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.approach-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- BENTO GRID ---------- */
.services {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

.services-header { margin-bottom: 4rem; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.35s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(80% 80% at 10% 10%, rgba(240,236,228,0.03) 0%, transparent 100%);
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card--dark {
  background: #0a0a0a;
}

.bento-inner {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-inner--row {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.bento-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.3);
  margin-bottom: 0.75rem;
}

.bento-eyebrow--light { color: rgba(240,236,228,0.4); }

.bento-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.bento-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(240,236,228,0.45);
  flex: 1;
  max-width: 50ch;
}

.bento-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.bento-accent-line {
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0.15;
}

.bento-text { flex: 1; }

/* Signal health visual */
.bento-signal-visual { flex-shrink: 0; }

.signal-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.sig-block {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid;
  min-width: 80px;
}

.sig-block--green {
  background: rgba(52,199,89,0.07);
  border-color: rgba(52,199,89,0.2);
}

.sig-block--amber {
  background: rgba(255,196,0,0.07);
  border-color: rgba(255,196,0,0.2);
}

.sig-block--red {
  background: rgba(255,59,48,0.07);
  border-color: rgba(255,59,48,0.2);
}

.sig-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.sig-block--green .sig-label { color: #34c759; }
.sig-block--amber .sig-label { color: #ffc400; }
.sig-block--red .sig-label { color: #ff3b30; }

.sig-desc {
  font-size: 0.63rem;
  color: rgba(240,236,228,0.35);
  white-space: nowrap;
}

/* ---------- PRINCIPLES ---------- */
.principles {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

.principles-header { margin-bottom: 4rem; }

.principles-list {
  max-width: 740px;
}

.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  padding-bottom: 2rem;
  position: relative;
}

.principle-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(240,236,228,0.2);
  padding-top: 0.15rem;
  grid-row: 1;
}

.principle-body {
  grid-column: 2;
  grid-row: 1;
}

.principle-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.principle-body p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(240,236,228,0.45);
}

.principle-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border);
  margin-top: 1rem;
}

/* ---------- STATEMENT ---------- */
.statement {
  padding: var(--section-py) 0;
  text-align: left;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: rgba(240,236,228,0.75);
  max-width: 18ch;
  position: relative;
}

.quote-mark {
  display: block;
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(240,236,228,0.1);
  margin-bottom: 0.5rem;
  font-style: normal;
}

.statement-attr {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.25);
  margin-top: 2rem;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2.5rem;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.25);
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(240,236,228,0.6);
}

/* Form double-bezel */
.contact-form-bezel {
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.contact-form-inner {
  background: var(--surface);
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 2.25rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.04);
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cform-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cform-row label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.35);
}

.cform-row input,
.cform-row textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s var(--ease-out), background 0.25s;
  resize: none;
}

.cform-row input::placeholder,
.cform-row textarea::placeholder {
  color: rgba(240,236,228,0.2);
}

.cform-row input:focus,
.cform-row textarea:focus {
  border-color: rgba(240,236,228,0.25);
  background: rgba(255,255,255,0.05);
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-wordmark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(240,236,228,0.3);
  text-align: right;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(240,236,228,0.2);
}

.footer-links-row {
  display: flex;
  gap: 1.5rem;
}

.footer-links-row a {
  font-size: 0.72rem;
  color: rgba(240,236,228,0.2);
  transition: color 0.25s;
}

.footer-links-row a:hover { color: rgba(240,236,228,0.5); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-body { max-width: 100%; }

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

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }

  .bento-inner--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top { flex-direction: column; gap: 1rem; }
  .footer-tagline { text-align: left; }

  .section-h2 { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .signal-row { flex-direction: column; }
  .principles-list { max-width: 100%; }
  .nav-pill { padding: 0.5rem 0.75rem 0.5rem 1rem; }
}
