/* ============================================
   Local Loop Digital — styles.css
   Brand: #2D7FF9 → #A020F0 on #0B0B14 ink
   ============================================ */

:root {
  --ink: #0B0B14;
  --ink-2: #12121F;
  --ink-3: #1C1C2E;
  --surface: #F7F7FB;
  --text: #0B0B14;
  --text-dim: #52526B;            /* WCAG AA: 7.4:1 on #F7F7FB */
  --text-dim-on-dark: #B4B4C9;    /* WCAG AA: 8.1:1 on #0B0B14 */
  --blue: #2D7FF9;
  --purple: #A020F0;
  --gradient: linear-gradient(135deg, #2D7FF9 0%, #7A3FF5 50%, #A020F0 100%);
  --gradient-soft: linear-gradient(135deg, rgba(45,127,249,.18), rgba(160,32,240,.18));
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px -30px rgba(45,127,249,.35);
  --container: 1200px;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* Accessible focus ring — keyboard only */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #A020F0;
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }

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

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--text-dim-on-dark); }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  max-width: 16ch;
}
.grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.stat {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  will-change: transform;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 40px 90px -30px rgba(160,32,240,.55); }
.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(11,11,20,.18);
}
.section--dark .btn--ghost { border-color: rgba(255,255,255,.18); color: #fff; }
.btn--ghost:hover { border-color: var(--purple); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: var(--container);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 12px 12px 22px;
  background: rgba(11,11,20,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  z-index: 100;
  color: #fff;
  transition: background .3s;
}
.nav__logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 18px; min-height: 44px; }
.nav__logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  box-shadow: 0 6px 20px -6px rgba(160,32,240,.5);
  object-fit: contain;
}
.nav__links { display: flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 500; }
.nav__links a { opacity: .85; transition: opacity .2s; padding: 8px 4px; min-height: 44px; display: inline-flex; align-items: center; }
.nav__links a:hover { opacity: 1; }
.nav__links .mobile-cta { display: none; }  /* desktop: hidden */
.nav__cta { padding: 12px 20px; font-size: 14px; min-height: 44px; }
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .25s, transform .25s;
}
.nav__burger:hover { background: rgba(255,255,255,.14); }
.nav__burger span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s, top .35s cubic-bezier(.2,.8,.2,1);
  margin-left: -9px;
}
.nav__burger span:nth-child(1) { top: calc(50% - 6px); }
.nav__burger span:nth-child(2) { top: 50%; margin-top: -1px; }
.nav__burger span:nth-child(3) { top: calc(50% + 4px); }
.nav.is-open .nav__burger span:nth-child(1) { top: 50%; margin-top: -1px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.is-open .nav__burger span:nth-child(3) { top: 50%; margin-top: -1px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav {
    padding: 10px 10px 10px 16px;
    border-radius: 28px;
    transition: border-radius .4s, background .25s;
  }
  .nav.is-open {
    border-radius: 28px;
    background: rgba(11,11,20,.92);
  }
  .nav__logo { font-size: 16px; }
  .nav__logo img { width: 34px; height: 34px; }

  /* Hide desktop nav CTA on mobile (menu has its own) */
  .nav > .nav__cta { display: none; }
  .nav__burger { display: block; margin-left: auto; }

  /* Slide-down panel */
  .nav__links {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    gap: 2px;
    padding: 14px;
    background: rgba(11,11,20,.96);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .3s cubic-bezier(.2,.8,.2,1), transform .3s cubic-bezier(.2,.8,.2,1);
  }
  .nav__links a {
    padding: 16px 20px;
    min-height: 52px;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    border-radius: 16px;
    transition: background .2s;
  }
  .nav__links a:hover,
  .nav__links a:focus-visible { background: rgba(255,255,255,.06); }
  .nav__links::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.12), transparent);
    margin: 10px 16px;
  }
  .nav.is-open .nav__links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links .mobile-cta {
    display: flex;
    justify-content: center;
    padding: 18px 24px;
    margin: 6px 4px 4px;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff !important;
    font-weight: 600;
    box-shadow: var(--shadow);
    min-height: 56px;
  }
  .nav__links .mobile-cta:hover { background: var(--gradient); }

  /* Lock body scroll when menu open */
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 0 140px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__inner { position: relative; z-index: 2; max-width: 980px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 108px);
  line-height: .98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero__sub {
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-dim-on-dark);
  margin: 0 0 40px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-dim-on-dark);
}
.stars { color: #FFCB3C; font-size: 16px; letter-spacing: 2px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); display: inline-block; box-shadow: 0 0 16px rgba(160,32,240,.7); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .6; } 50% { opacity: 1; } }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  z-index: 0;
  will-change: transform;
}
.hero__orb--1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--blue), transparent 65%);
  top: -180px; left: -140px;
}
.hero__orb--2 {
  width: 760px; height: 760px;
  background: radial-gradient(circle, var(--purple), transparent 65%);
  bottom: -260px; right: -200px;
}
.hero__asset {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 42vw;
  max-width: 720px;
  opacity: .22;
  z-index: 1;
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}
.hero__asset img { width: 100%; filter: drop-shadow(0 30px 80px rgba(160,32,240,.4)); }
@keyframes float { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 18px)); } }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim-on-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--purple));
}

/* ---------- Logo bar ---------- */
.logos {
  padding: 48px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.logos__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim-on-dark);
  margin: 0 0 24px;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  color: #fff;
  opacity: .55;
}
.logos__row span { transition: opacity .3s; }
.logos__row span:hover { opacity: 1; }
.logos__headline {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  margin: 0 auto;
  max-width: 22ch;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ---------- Section base ---------- */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .stat { color: transparent; }

/* ---------- Loop grid ---------- */
.loop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.loop__card {
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(11,11,20,.06);
  box-shadow: 0 20px 60px -40px rgba(11,11,20,.2);
  transition: transform .4s, box-shadow .4s;
}
.loop__card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -40px rgba(160,32,240,.3); }
.loop__icon {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.loop__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 10px; }
.loop__card p { margin: 0; color: var(--text-dim); }

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

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity .4s;
}
.service:hover { transform: translateY(-4px); border-color: rgba(160,32,240,.35); }
.service:hover::before { opacity: 1; }
.service > * { position: relative; z-index: 1; }
.service__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 20px;
}
.service h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 0 0 10px; }
.service p { margin: 0; color: var(--text-dim-on-dark); }

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

/* ---------- Process vertical timeline ---------- */
.process__lede {
  max-width: 58ch;
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 19px);
  margin: -32px 0 72px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 820px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--purple), rgba(160,32,240,0));
  border-radius: 2px;
}
.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--gradient) border-box;
  transition: transform .4s;
}
.timeline__marker span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.timeline__item:hover .timeline__marker { transform: scale(1.05); }
.timeline__content {
  flex: 1;
  padding: 8px 0;
}
.timeline__content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.timeline__content p {
  color: var(--text-dim);
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
}

@media (max-width: 640px) {
  .timeline::before { left: 29px; }
  .timeline__item { gap: 22px; padding-bottom: 40px; }
  .timeline__marker { flex: 0 0 60px; height: 60px; font-size: 16px; }
}

/* ---------- Work ---------- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .4s;
}
.work__card:hover { transform: translateY(-6px); }
.work__thumb {
  aspect-ratio: 4/5;
  position: relative;
}
.work__thumb--1 { background: linear-gradient(135deg, #2D7FF9, #0B0B14); }
.work__thumb--2 { background: linear-gradient(135deg, #A020F0, #0B0B14); }
.work__thumb--3 { background: linear-gradient(135deg, #7A3FF5, #0B0B14); }
.work__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/icon.png') center/40% no-repeat;
  opacity: .08;
}
.work__meta { padding: 24px 28px; }
.work__meta h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 6px; }
.work__meta span { color: var(--text-dim-on-dark); font-size: 14px; }

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

/* ---------- Proof ---------- */
.proof__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.proof blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.proof blockquote footer {
  margin-top: 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dim);
}
.proof__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof__stats > div { text-align: left; }
.proof__stats span { display: block; font-size: 13px; color: var(--text-dim); }

@media (max-width: 820px) {
  .proof__inner { grid-template-columns: 1fr; gap: 50px; }
  .proof__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ---------- Pricing ---------- */
.pricing__sub { color: var(--text-dim-on-dark); margin: -32px 0 56px; max-width: 50ch; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  padding: 48px 36px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .4s, border-color .4s;
}
.tier:hover { transform: translateY(-6px); }
.tier--featured {
  background: var(--ink-3);
  border-color: rgba(160,32,240,.4);
  box-shadow: 0 60px 100px -50px rgba(160,32,240,.35);
}
.tier__badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--gradient);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tier h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 0 0 14px; }
.tier__price { font-family: var(--font-mono); font-size: 14px; color: var(--text-dim-on-dark); margin-bottom: 28px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tier__price strong { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: #fff; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tier__note { color: var(--text-dim-on-dark); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.tier ul { list-style: none; padding: 0; margin: 0; }
.tier li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--text-dim-on-dark); font-size: 14px; }
.tier li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 14px; height: 14px;
  background: var(--gradient);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

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

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(11,11,20,.1);
  padding: 24px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--purple);
  transition: transform .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 14px 0 0; color: var(--text-dim); max-width: 60ch; }

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__copy p { color: var(--text-dim-on-dark); max-width: 42ch; }
.contact__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 12px;
  color: var(--text-dim-on-dark);
  font-size: 14px;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 44px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim-on-dark);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #fff;
  transition: border-color .2s, background .2s;
  font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: rgba(255,255,255,.06);
}
.contact__form button { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }

@media (max-width: 820px) {
  .contact__inner { grid-template-columns: 1fr; gap: 50px; }
  .contact__form { padding: 28px; grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 80px 0 32px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 18px; margin-bottom: 14px; }
.footer__logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 5px;
  background: #fff;
  object-fit: contain;
}
.footer__tag { color: var(--text-dim-on-dark); max-width: 34ch; margin: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin: 0 0 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer__cols a, .footer__cols span { display: block; color: var(--text-dim-on-dark); font-size: 14px; padding: 4px 0; transition: color .2s; }
.footer__cols a:hover { color: #fff; }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  color: var(--text-dim-on-dark);
  font-size: 13px;
}

@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- Founding client section ---------- */
.founding__lede {
  max-width: 62ch;
  color: var(--text-dim-on-dark);
  font-size: clamp(16px, 1.3vw, 19px);
  margin: -32px 0 56px;
}
.founding__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.founding__card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
}
.founding__card--alt {
  background: var(--ink-3);
  border-color: rgba(160,32,240,.35);
  box-shadow: 0 60px 100px -50px rgba(160,32,240,.3);
}
.founding__card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 22px;
}
.founding__card ul { list-style: none; padding: 0; margin: 0; }
.founding__card li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--text-dim-on-dark);
  font-size: 15px;
}
.founding__card li:last-child { border-bottom: 0; }
.founding__card li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 14px; height: 14px;
  background: var(--gradient);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.founding__cta { text-align: center; }

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

/* ---------- Reveal animation (fallback without JS) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__asset { animation: none; }
  .grad { animation: none; }
}
