/* MM Web Solutions — styles */

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body,h1,h2,h3,h4,p,ol,ul,figure,blockquote{margin:0}
ol,ul{padding:0;list-style:none}
img,svg{display:block;max-width:100%}
button,input,textarea{font:inherit;color:inherit}
a{color:inherit;text-decoration:none}

:root{
  --bg:#fafaf9;
  --bg-alt:#f1f1ef;
  --ink:#0a0a0e;
  --ink-2:#3a3a42;
  --muted:#6b6b75;
  --line:#e6e6e2;
  --line-dark:rgba(255,255,255,.1);
  --accent:#0a0a0e;
  --accent-ink:#fafaf9;
  --grad:linear-gradient(120deg,#a5b4fc 0%,#f0abfc 35%,#fda4af 65%,#fcd34d 100%);
  --grad-soft:linear-gradient(120deg,#8b5cf6 0%,#ec4899 50%,#f59e0b 100%);
  --radius:12px;
  --maxw:1180px;
  --pad:clamp(20px,4vw,32px);
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,system-ui,sans-serif;
}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

.container{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad);position:relative;z-index:1}
.container.narrow{max-width:760px}

/* ============ Accessibility ============ */
.skip-link{
  position:fixed;top:-50px;left:8px;z-index:200;
  background:var(--ink);color:var(--accent-ink);
  padding:.7em 1.1em;border-radius:8px;
  font-weight:600;font-size:.9rem;
  text-decoration:none;
  transition:top .2s ease;
}
.skip-link:focus{top:8px;outline:2px solid #fafaf9;outline-offset:2px}

/* Strong keyboard focus rings — only show on keyboard navigation, not mouse clicks */
:focus{outline:none}
:focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
  border-radius:3px;
}
.section-dark :focus-visible,
.hero-dark :focus-visible,
.error-page :focus-visible,
.industry-hero :focus-visible,
.section-cta :focus-visible,
.marquee-wrap :focus-visible{
  outline-color:#fafaf9;
}
main[tabindex]:focus{outline:none}

/* ============ Reveal animation ============ */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}

/* ============ Aurora background ============ */
.aurora{
  position:absolute;inset:-10%;
  z-index:0;pointer-events:none;
  overflow:hidden;
}
.blob{
  position:absolute;
  width:50vmax;height:50vmax;
  border-radius:50%;
  filter:blur(80px);
  will-change:transform;
  transform:translate3d(0,0,0);
}
.blob-1{
  top:-15vmax;left:-10vmax;
  background:radial-gradient(circle at 40% 40%,#6366f1 0%,transparent 60%);
  opacity:.55;
  animation:drift1 22s ease-in-out infinite;
}
.blob-2{
  top:5vmax;right:-15vmax;
  background:radial-gradient(circle at 60% 40%,#ec4899 0%,transparent 60%);
  opacity:.45;
  animation:drift2 28s ease-in-out infinite;
}
.blob-3{
  bottom:-20vmax;left:25vmax;
  background:radial-gradient(circle at 50% 50%,#06b6d4 0%,transparent 60%);
  opacity:.5;
  animation:drift3 34s ease-in-out infinite;
}
.aurora-soft .blob-1{opacity:.3;background:radial-gradient(circle at 40% 40%,#8b5cf6 0%,transparent 60%)}
.aurora-soft .blob-2{opacity:.25;background:radial-gradient(circle at 60% 40%,#3b82f6 0%,transparent 60%)}
.aurora-soft .blob-3{opacity:.25;background:radial-gradient(circle at 50% 50%,#06b6d4 0%,transparent 60%)}

@keyframes drift1{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(8vmax,6vmax,0) scale(1.1)}
}
@keyframes drift2{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(-10vmax,4vmax,0) scale(.95)}
}
@keyframes drift3{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(6vmax,-8vmax,0) scale(1.05)}
}

/* Grain overlay */
.grain{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  opacity:.08;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.6'/></svg>");
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  padding:.9em 1.6em;border-radius:999px;
  font-weight:600;font-size:.95rem;
  border:1px solid transparent;cursor:pointer;
  transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease;
  white-space:nowrap;position:relative;
}
.btn-primary{background:var(--ink);color:var(--accent-ink)}
.btn-primary:hover{transform:translateY(-2px);background:#1a1a22;box-shadow:0 12px 32px -12px rgba(10,10,14,.5)}
.btn-primary-light{background:#fff;color:var(--ink)}
.btn-primary-light:hover{transform:translateY(-2px);background:#f0f0eb;box-shadow:0 12px 40px -10px rgba(255,255,255,.3)}
.btn-ghost{border-color:var(--line);background:rgba(255,255,255,.7);color:var(--ink);backdrop-filter:blur(6px)}
.btn-ghost:hover{border-color:var(--ink);background:#fff}
.btn-ghost-dark{border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.05);color:#fff;backdrop-filter:blur(8px)}
.btn-ghost-dark:hover{border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.1);transform:translateY(-2px)}
.btn-sm{padding:.55em 1.1em;font-size:.9rem;background:var(--ink);color:var(--accent-ink)}
.btn-sm:hover{background:#1a1a22}
.btn-block{width:100%;margin-top:1.5rem}
.btn-glow{position:relative;overflow:hidden}
.btn-glow::after{
  content:"";position:absolute;inset:-2px;border-radius:inherit;
  background:var(--grad);opacity:0;z-index:-1;filter:blur(14px);
  transition:opacity .3s ease;
}
.btn-glow:hover::after{opacity:.7}

/* ============ Nav ============ */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(250,250,249,.75);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.logo{display:flex;align-items:center;gap:.6em;font-weight:600}
.logo-mark{
  display:inline-grid;place-items:center;
  width:32px;height:32px;border-radius:8px;
  background:var(--ink);color:var(--accent-ink);
  font-size:.85rem;letter-spacing:.5px;
  font-weight:700;
}
.logo-text{font-size:.95rem}
.logo .llp{
  font-size:.62em;font-weight:500;
  opacity:.5;letter-spacing:.08em;
  margin-left:.15em;vertical-align:.05em;
}
.nav nav{display:flex;align-items:center;gap:1.75rem}
.nav nav a{font-size:.95rem;color:var(--ink-2);transition:color .2s ease}
.nav nav a:hover{color:var(--ink)}
.nav nav a.btn{color:var(--accent-ink)}

/* ============ Mobile nav ============ */
.nav-toggle{
  display:none;
  width:42px;height:42px;
  flex-direction:column;justify-content:center;align-items:center;
  gap:5px;padding:0;
  background:transparent;border:1px solid transparent;border-radius:8px;
  cursor:pointer;
  transition:background .15s ease,border-color .15s ease;
}
.nav-toggle:hover{background:rgba(0,0,0,.04);border-color:var(--line)}
.nav-toggle .hb{
  display:block;width:22px;height:2px;
  background:var(--ink);border-radius:2px;
  transition:transform .25s ease,opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .hb:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] .hb:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] .hb:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-menu{
  display:none;
  flex-direction:column;
  padding:.5rem var(--pad) 1.25rem;
  background:rgba(250,250,249,.98);
  backdrop-filter:saturate(180%) blur(14px);
  border-top:1px solid var(--line);
  max-height:calc(100vh - 64px);
  max-height:calc(100dvh - 64px);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}
.mobile-menu.open{display:flex}
.mobile-menu > a{
  display:flex;align-items:center;gap:.55em;
  padding:.95rem .25rem;
  font-size:1.05rem;font-weight:500;
  color:var(--ink);
  border-bottom:1px solid var(--line);
}
.mobile-menu > a:last-child{border-bottom:none}
.mobile-menu > a:hover{color:var(--muted)}
.mobile-menu .mobile-phone svg{opacity:.55}
.mobile-menu .btn{
  margin-top:.85rem;justify-content:center;
  padding:1em 1.4em;font-size:1rem;
  border-bottom:none!important;
}
.mobile-menu .btn-primary{color:var(--accent-ink)}
.mobile-menu .btn-primary:hover{color:var(--accent-ink)}

@media (max-width:780px){
  .nav-links{display:none!important}
  .nav-toggle{display:inline-flex}
}
@media (max-width:380px){
  /* keep the full brand readable on very small phones */
  .logo-text{font-size:.82rem}
  .logo-mark{width:28px;height:28px;font-size:.78rem}
}

/* ============ Hero ============ */
.hero{position:relative;overflow:hidden}
.hero-dark{
  background:#0a0a0e;color:#fafaf9;
  padding:clamp(90px,12vw,140px) 0 clamp(40px,6vw,80px);
}
.hero .aurora{position:absolute;inset:0}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:4rem;align-items:center;
  position:relative;z-index:2;
}
@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr;gap:3rem}
}
.pill{
  display:inline-flex;align-items:center;gap:.55em;
  padding:.4em .9em;border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(8px);
  font-size:.82rem;color:rgba(255,255,255,.85);
  margin-bottom:1.5rem;
}
.pill svg{flex:none;opacity:.85}
.pill-row{
  display:flex;flex-wrap:wrap;gap:.5rem;
  margin-bottom:1.5rem;
}
.pill-row .pill{margin-bottom:0}
.pulse{
  width:7px;height:7px;border-radius:50%;
  background:#22c55e;box-shadow:0 0 0 0 rgba(34,197,94,.7);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.7)}
  70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}
.hero h1{
  font-size:clamp(2.6rem,7vw,5rem);
  line-height:1.02;letter-spacing:-.035em;font-weight:700;
  margin-bottom:1.3rem;
}
.gradient-text{
  background:var(--grad);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
  background-size:200% 200%;
  animation:gradShift 8s ease infinite;
}
@keyframes gradShift{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
.hero .lede{
  font-size:clamp(1.05rem,1.5vw,1.2rem);
  color:rgba(255,255,255,.7);
  max-width:54ch;margin-bottom:2rem;
}
.cta-row{display:flex;flex-wrap:wrap;gap:.75rem}

/* Browser mockup */
.hero-visual{position:relative;perspective:1200px}
.browser{
  background:#13131a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 30px 80px -20px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.04);
  transform:rotateY(-6deg) rotateX(4deg);
  transform-style:preserve-3d;
  animation:hoverFloat 6s ease-in-out infinite;
}
@keyframes hoverFloat{
  0%,100%{transform:rotateY(-6deg) rotateX(4deg) translateY(0)}
  50%{transform:rotateY(-6deg) rotateX(4deg) translateY(-10px)}
}
.browser-bar{
  display:flex;align-items:center;gap:.5em;
  padding:.7rem .9rem;
  background:#1a1a22;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.browser-bar .dot{width:11px;height:11px;border-radius:50%;flex:none}
.dot-r{background:#ff5f57}
.dot-y{background:#febc2e}
.dot-g{background:#28c840}
.browser-bar .url{
  flex:1;text-align:center;font-size:.78rem;
  color:rgba(255,255,255,.4);font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.browser-body{padding:1.4rem 1.5rem;min-height:240px}

/* Website preview inside the browser mockup */
.site-preview{
  padding:0;background:#fafaf9;color:#0a0a0e;
  min-height:280px;
}
.sp-nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:.75rem 1rem;background:#fff;
  border-bottom:1px solid #ececea;
}
.sp-logo-row{
  display:flex;align-items:center;gap:.45em;
  font-weight:700;font-size:.72rem;letter-spacing:-.01em;
}
.sp-logo-mark{
  width:14px;height:14px;border-radius:4px;
  background:var(--grad-soft);flex:none;
}
.sp-links{
  display:flex;align-items:center;gap:.85em;
  font-size:.62rem;color:#6b6b75;font-weight:500;
}
.sp-cta-sm{
  background:#0a0a0e;color:#fff;
  padding:.32em .85em;border-radius:999px;
  font-size:.58rem;font-weight:600;letter-spacing:.02em;
}
.sp-hero-row{
  display:grid;grid-template-columns:1.15fr .85fr;
  gap:1rem;padding:1.1rem 1rem .9rem;align-items:center;
}
.sp-hero-text h4{
  font-size:1.15rem;letter-spacing:-.025em;line-height:1.05;
  margin:0 0 .4rem;color:#0a0a0e;font-weight:700;
}
.sp-hero-text p{
  font-size:.66rem;color:#6b6b75;
  margin:0 0 .7rem;line-height:1.4;
}
.sp-btn{
  display:inline-block;background:#0a0a0e;color:#fff;
  font-size:.6rem;padding:.45em .95em;
  border-radius:999px;font-weight:600;letter-spacing:.02em;
}
.sp-hero-image{
  aspect-ratio:1/1;border-radius:8px;
  background:linear-gradient(135deg,#fda4af 0%,#a5b4fc 60%,#fcd34d 100%);
  position:relative;overflow:hidden;
}
.sp-hero-image::after{
  content:"";position:absolute;inset:25%;
  border-radius:50%;background:rgba(255,255,255,.35);
  filter:blur(14px);
}
.sp-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;
  padding:0 1rem 1rem;
}
.sp-card{
  aspect-ratio:4/3;border-radius:6px;
  background:#ececea;
  border:1px solid #e0e0dc;
}
.sp-card:nth-child(2){background:#e6e6e2}
.sp-card:nth-child(3){background:#dfdfd9}

/* Floating cards */
.float-card{
  position:absolute;
  display:flex;align-items:center;gap:.7rem;
  padding:.7rem .95rem;
  background:rgba(20,20,28,.85);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  backdrop-filter:blur(14px);
  box-shadow:0 20px 50px -20px rgba(0,0,0,.6);
  animation:floatY 5s ease-in-out infinite;
}
.float-card-1{top:18%;left:-8%;animation-delay:-1s}
.float-card-2{bottom:14%;right:-6%;animation-delay:-3s}
.fc-icon{
  display:grid;place-items:center;
  width:34px;height:34px;border-radius:8px;
  background:rgba(255,255,255,.1);color:#fafaf9;
}
.fc-label{font-size:.7rem;color:rgba(255,255,255,.55);margin:0;letter-spacing:.05em;text-transform:uppercase;font-weight:600}
.fc-value{font-size:1rem;color:#fafaf9;margin:0;font-weight:700;letter-spacing:-.01em}
@keyframes floatY{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
@media (max-width:920px){
  .browser{transform:none;animation:none}
  .float-card-1{top:6%;left:0}
  .float-card-2{bottom:6%;right:0}
}
@media (max-width:780px){
  /* keep the floating cards visible, tucked into the mockup corners so they don't overflow */
  .float-card{padding:.5rem .7rem;gap:.5rem}
  .float-card-1{top:4%;left:2%}
  .float-card-2{bottom:4%;right:2%}
  .fc-icon{width:30px;height:30px}
  .fc-value{font-size:.9rem}
  .fc-label{font-size:.62rem}
}

/* Stats strip */
.stats{
  margin-top:clamp(3.5rem,7vw,5.5rem);
  padding:1.75rem 1.5rem;
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  backdrop-filter:blur(10px);
  position:relative;z-index:2;
}
.stats > div{text-align:center;padding:.25rem .5rem}
.stats > div + div{border-left:1px solid rgba(255,255,255,.08)}
.stat-value{
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:700;letter-spacing:-.025em;
  color:#fafaf9;margin-bottom:.2rem;line-height:1.1;
}
.stat-value span{color:rgba(255,255,255,.4);font-weight:600}
.stat-label{
  font-size:.78rem;text-transform:uppercase;letter-spacing:.1em;
  color:rgba(255,255,255,.55);margin:0;
}
@media (max-width:680px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .stats > div:nth-child(odd){border-left:none}
  .stats > div:nth-child(3),.stats > div:nth-child(4){border-top:1px solid rgba(255,255,255,.08);padding-top:1rem;margin-top:.5rem}
}

/* ============ Marquee ============ */
.marquee-wrap{
  background:#0a0a0e;
  padding:1.5rem 0 1.75rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  overflow:hidden;
  position:relative;
}
.marquee-label{
  text-align:center;
  font-size:.72rem;text-transform:uppercase;letter-spacing:.18em;
  color:rgba(255,255,255,.4);font-weight:600;
  margin:0 0 .9rem;
}
.marquee-wrap::before,.marquee-wrap::after{
  content:"";position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none;
}
.marquee-wrap::before{left:0;background:linear-gradient(to right,#0a0a0e,transparent)}
.marquee-wrap::after{right:0;background:linear-gradient(to left,#0a0a0e,transparent)}
.marquee{overflow:hidden}
.marquee-track{
  display:flex;gap:2.5rem;width:max-content;
  animation:marquee 40s linear infinite;
}
.marquee-track span{
  color:rgba(255,255,255,.4);
  font-size:1.05rem;font-weight:600;letter-spacing:-.01em;
  white-space:nowrap;
}
.marquee-track span:nth-child(even){color:rgba(255,255,255,.2);font-weight:400}
@keyframes marquee{
  to{transform:translateX(-50%)}
}

/* ============ Sections ============ */
.section{padding:clamp(72px,11vw,130px) 0;position:relative;overflow:hidden}
.section-alt{
  background:var(--bg-alt);
  border-block:1px solid var(--line);
}
.section-dark{
  background:#0a0a0e;color:#fafaf9;
}
.section-dark .eyebrow-light{color:rgba(255,255,255,.55)}
.section-title{
  font-size:clamp(2rem,4vw,3rem);
  letter-spacing:-.028em;font-weight:700;
  margin-bottom:1.5rem;line-height:1.05;
}
.section-title-light{color:#fafaf9}
.section .eyebrow{margin-bottom:.6rem}
.eyebrow{
  text-transform:uppercase;letter-spacing:.14em;
  font-size:.78rem;font-weight:600;color:var(--muted);
}

/* ============ Grid ============ */
.grid{display:grid;gap:1.5rem;margin-top:3rem}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}

/* ============ Cards ============ */
.card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:2rem;
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
  overflow:hidden;
}
.card-glow::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:var(--grad);opacity:0;transition:opacity .3s ease;
}
.card:hover{
  transform:translateY(-4px);
  border-color:#cfcfc8;
  box-shadow:0 20px 50px -20px rgba(10,10,14,.2);
}
.card:hover.card-glow::before{opacity:1}
.card-icon{
  display:inline-grid;place-items:center;
  width:48px;height:48px;border-radius:12px;
  background:var(--bg-alt);color:var(--ink);
  margin-bottom:1.4rem;
  transition:transform .3s ease,background .3s ease;
}
.card:hover .card-icon{transform:scale(1.05) rotate(-3deg);background:var(--ink);color:var(--accent-ink)}
.card h3{font-size:1.2rem;margin-bottom:.5rem;letter-spacing:-.01em;font-weight:600}
.card p{color:var(--ink-2);font-size:.97rem}
.card-arrow{
  display:inline-block;margin-top:1.2rem;
  font-size:1.1rem;color:var(--muted);
  transition:transform .25s ease,color .25s ease;
}
.card:hover .card-arrow{transform:translateX(6px);color:var(--ink)}

/* ============ Work / projects ============ */
.project{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.project:hover{
  transform:translateY(-4px);
  border-color:#cfcfc8;
  box-shadow:0 20px 50px -20px rgba(10,10,14,.2);
}
.project-thumb{
  position:relative;display:block;
  aspect-ratio:5/3;background:var(--bg-alt);
  border-bottom:1px solid var(--line);overflow:hidden;
}
.project-thumb svg,
.project-thumb img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .5s ease}
.project:hover .project-thumb svg,
.project:hover .project-thumb img{transform:scale(1.04)}
.project-overlay{
  position:absolute;inset:0;
  display:flex;align-items:flex-end;justify-content:flex-start;
  padding:1.25rem 1.5rem;
  background:linear-gradient(to top,rgba(10,10,14,.85) 0%,transparent 60%);
  opacity:0;transition:opacity .3s ease;
}
.project-overlay span{
  color:#fff;font-weight:600;font-size:.95rem;
  display:inline-flex;align-items:center;gap:.4em;
}
.project:hover .project-overlay{opacity:1}
.project-body{padding:1.5rem}
.project-meta{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.85rem}
.tag{
  font-size:.7rem;font-weight:600;letter-spacing:.06em;
  text-transform:uppercase;color:var(--muted);
  padding:.3em .75em;border:1px solid var(--line);
  border-radius:999px;background:var(--bg);
}
.tag-concept{
  background:#fef3c7;color:#92400e;border-color:#fde68a;
}
.project h3{font-size:1.25rem;letter-spacing:-.015em;margin-bottom:.4rem;font-weight:600}
.project p{color:var(--ink-2);font-size:.97rem}

/* ============ Guarantees ============ */
.guarantees{margin-top:3rem}
.guarantee{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  padding:1.85rem;
  backdrop-filter:blur(10px);
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}
.guarantee:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
}
.g-icon{
  display:inline-grid;place-items:center;
  width:46px;height:46px;border-radius:12px;
  background:var(--grad-soft);color:#fff;
  margin-bottom:1.2rem;
}
.guarantee h3{
  font-size:1.15rem;font-weight:600;color:#fafaf9;
  margin-bottom:.5rem;letter-spacing:-.01em;
}
.guarantee p{color:rgba(255,255,255,.7);font-size:.97rem;line-height:1.6}

/* ============ Founder ============ */
.founder{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:3rem;align-items:center;
}
@media (max-width:760px){
  .founder{grid-template-columns:1fr;gap:2rem;text-align:left}
}
.founder-photo{
  position:relative;
  width:280px;height:280px;border-radius:50%;
  background:var(--grad);
  display:grid;place-items:center;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(10,10,14,.3);
}
.founder-photo::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 30% 30%,rgba(255,255,255,.4) 0%,transparent 50%);
}
.founder-photo span{
  position:relative;z-index:1;
  color:#fff;font-size:5rem;font-weight:700;letter-spacing:-.04em;
  text-shadow:0 4px 30px rgba(0,0,0,.2);
}
.founder-photo img{
  width:100%;height:100%;object-fit:cover;
  position:relative;z-index:2;
}
@media (max-width:760px){
  .founder-photo{width:180px;height:180px}
  .founder-photo span{font-size:3.2rem}
}
.founder-copy .section-title{margin-bottom:1.5rem}
.signature{
  margin-top:1.5rem;
  font-size:1rem;font-style:italic;color:var(--ink);
  font-weight:500;
}
.location-line{
  display:flex;align-items:center;gap:.5em;
  font-size:.92rem;color:var(--muted);
  margin-top:1.75rem;
}
.location-line svg{flex:none;opacity:.7}

/* ============ Contact options ============ */
.contact-options{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.75rem;margin-top:2.5rem;
}
@media (max-width:680px){
  .contact-options{grid-template-columns:1fr}
}
.contact-option{
  display:flex;align-items:center;gap:.85rem;
  padding:1rem 1.15rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  backdrop-filter:blur(10px);
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.contact-option:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.2);
}
.co-icon{
  display:grid;place-items:center;
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,.1);color:#fafaf9;flex:none;
}
.co-label{
  font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;
  color:rgba(255,255,255,.55);font-weight:600;margin:0 0 .2rem;
}
.co-value{
  font-size:.95rem;color:#fafaf9;font-weight:600;margin:0;
  letter-spacing:-.01em;
}
.or-divider{
  display:flex;align-items:center;gap:1rem;
  text-align:center;color:rgba(255,255,255,.5);
  font-size:.82rem;letter-spacing:.05em;
  margin:2rem 0 0;
}
.or-divider::before,.or-divider::after{
  content:"";flex:1;height:1px;background:rgba(255,255,255,.12);
}
.or-divider span{padding:0 .5rem}

/* ============ Nav phone ============ */
.nav-phone{
  display:inline-flex;align-items:center;gap:.4em;
  color:var(--ink-2);font-size:.9rem;font-weight:500;
  transition:color .2s ease;
}
.nav-phone:hover{color:var(--ink)}
.nav-phone svg{opacity:.6}
@media (max-width:900px){.nav-phone{display:none!important}}

/* ============ Pricing ============ */
.pricing-grid{align-items:stretch}
.price{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:2.2rem;
  display:flex;flex-direction:column;
  position:relative;
  transition:transform .25s ease,box-shadow .25s ease;
}
.price:hover{transform:translateY(-4px);box-shadow:0 20px 50px -20px rgba(10,10,14,.2)}
.price-featured{
  background:var(--ink);color:var(--accent-ink);
  border-color:var(--ink);
  transform:scale(1.03);
}
.price-featured:hover{transform:scale(1.03) translateY(-4px)}
.price-featured::before{
  content:"";position:absolute;inset:-1px;border-radius:inherit;
  background:var(--grad);z-index:-1;opacity:.6;filter:blur(20px);
}
.price-featured .price-list li{color:rgba(250,250,249,.85)}
.price-featured .price-list li::before{background:var(--accent-ink)}
.price-featured .price-note{color:rgba(250,250,249,.6)}
.price-featured .btn-primary{background:#fff;color:var(--ink)}
.price-featured .btn-primary:hover{background:#e6e6e2}
.badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--grad);color:#fff;
  font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:.45em 1em;border-radius:999px;
}
.price h3{font-size:1.05rem;font-weight:600;margin-bottom:.6rem;letter-spacing:.02em;text-transform:uppercase}
.price-amount{
  font-size:2.6rem;letter-spacing:-.035em;font-weight:700;
  margin-bottom:.3rem;line-height:1;
}
.price-amount .currency{font-size:1.3rem;vertical-align:.4em;margin-right:.05em;font-weight:600}
.price-note{color:var(--muted);font-size:.88rem;margin-bottom:.85rem}
.price-monthly{
  display:inline-block;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:8px;
  padding:.55em .85em;
  font-size:.92rem;color:var(--ink-2);
  margin-bottom:1.75rem;
}
.price-monthly strong{color:var(--ink);font-weight:700}
.price-featured .price-monthly{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.15);
  color:rgba(250,250,249,.85);
}
.price-featured .price-monthly strong{color:#fff}

.monthly-includes{
  margin-top:3rem;
  padding:2rem clamp(1.25rem,2.5vw,2.25rem);
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
}
.monthly-includes .eyebrow{margin-bottom:1.25rem;text-align:center;display:block}
.m-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:.65rem 1.5rem;
}
.m-list > div{
  display:flex;align-items:flex-start;gap:.55em;
  color:var(--ink-2);font-size:.97rem;
  line-height:1.5;
}
.m-list > div::before{
  content:"";flex:none;width:6px;height:6px;border-radius:50%;
  background:var(--ink);margin-top:.6em;
}
.m-note{
  margin-top:1.5rem;padding-top:1.25rem;
  border-top:1px solid var(--line);
  font-size:.88rem;color:var(--muted);text-align:center;
}
.m-note a{color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.prepay-note{
  margin-top:.5rem;text-align:center;
  font-size:.88rem;color:var(--ink-2);
}
.prepay-note strong{color:var(--ink);font-weight:600}
.price-list{display:grid;gap:.7rem;margin-bottom:auto}
.price-list li{
  font-size:.95rem;color:var(--ink-2);
  display:flex;gap:.6em;align-items:flex-start;
}
.price-list li::before{
  content:"";flex:none;
  width:6px;height:6px;border-radius:50%;
  background:var(--ink);margin-top:.65em;
}

/* ============ Steps ============ */
.steps{
  display:grid;gap:1.25rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.steps li{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);padding:1.75rem;
  position:relative;overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease;
}
.steps li:hover{transform:translateY(-3px);box-shadow:0 12px 30px -15px rgba(10,10,14,.15)}
.step-num{
  display:inline-block;font-size:2rem;font-weight:700;
  background:var(--grad);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
  letter-spacing:-.02em;margin-bottom:.5rem;
  line-height:1;
}
.steps h3{font-size:1.1rem;margin-bottom:.35rem;font-weight:600}
.steps p{color:var(--ink-2);font-size:.95rem}

/* ============ FAQ ============ */
.faq{display:grid;gap:.75rem;margin-top:2rem}
.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.25rem 1.5rem;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.faq details:hover{border-color:#cfcfc8}
.faq details[open]{box-shadow:0 8px 24px -12px rgba(10,10,14,.12)}
.faq summary{
  font-weight:600;cursor:pointer;list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  font-size:1.02rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";font-size:1.5rem;font-weight:300;color:var(--muted);
  transition:transform .25s ease;line-height:1;flex:none;
}
.faq details[open] summary::after{transform:rotate(45deg);color:var(--ink)}
.faq details p{
  color:var(--ink-2);font-size:.98rem;
  margin-top:.85rem;padding-right:2rem;
}

/* ============ Prose ============ */
.prose{color:var(--ink-2);font-size:1.05rem;max-width:62ch}
.prose-light{color:rgba(255,255,255,.7)}
.prose + .prose{margin-top:1rem}

/* ============ Contact form ============ */
.section-cta{padding:clamp(80px,12vw,140px) 0}
.contact-form{
  display:grid;gap:1.1rem;margin-top:2.5rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;padding:clamp(24px,3vw,36px);
}
.contact-form-dark{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.1);
  backdrop-filter:blur(14px);
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
@media (max-width:560px){.field-row{grid-template-columns:1fr}}
.field{display:grid;gap:.4rem}
.field label{font-size:.88rem;font-weight:600}
.contact-form-dark .field label{color:rgba(255,255,255,.85)}
.field .muted{color:var(--muted);font-weight:400}
.contact-form-dark .field .muted{color:rgba(255,255,255,.5)}
.field input,.field textarea{
  width:100%;padding:.85rem 1rem;
  background:var(--bg);
  border:1px solid var(--line);border-radius:8px;
  font-size:1rem;line-height:1.4;
  transition:border-color .15s ease,background .15s ease,box-shadow .15s ease;
}
.contact-form-dark .field input,.contact-form-dark .field textarea{
  background:rgba(0,0,0,.25);
  border-color:rgba(255,255,255,.12);
  color:#fafaf9;
}
.contact-form-dark .field input::placeholder,.contact-form-dark .field textarea::placeholder{color:rgba(255,255,255,.35)}
.field input:focus,.field textarea:focus{
  outline:none;border-color:var(--ink);background:#fff;
  box-shadow:0 0 0 4px rgba(10,10,14,.06);
}
.contact-form-dark .field input:focus,.contact-form-dark .field textarea:focus{
  border-color:rgba(255,255,255,.5);background:rgba(0,0,0,.35);
  box-shadow:0 0 0 4px rgba(255,255,255,.06);
}
.field textarea{resize:vertical;min-height:130px}
.hp{position:absolute;left:-9999px;opacity:0;pointer-events:none}
.contact-form .btn{justify-self:start;margin-top:.5rem}
.form-status{font-size:.93rem;color:var(--muted);min-height:1.2em;margin:0}
.form-status.ok{color:#22c55e}
.form-status.err{color:#f87171}

/* ============ Footer ============ */
.footer{
  border-top:1px solid var(--line);
  padding:3.5rem 0 1.75rem;
  background:var(--bg-alt);
  color:var(--ink-2);font-size:.92rem;
}
.footer-grid{
  display:grid;gap:2rem;
  grid-template-columns:1.4fr repeat(3,1fr);
  margin-bottom:2.5rem;
}
@media (max-width:760px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.75rem}
}
@media (max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}
.footer-brand .logo{margin-bottom:.85rem}
.footer-tag{color:var(--muted);font-size:.9rem;max-width:28ch}
.footer-location{
  display:flex;align-items:center;gap:.4em;
  font-size:.85rem;color:var(--muted);
  margin-top:.85rem;
}
.footer-location svg{flex:none;opacity:.65}
.footer-col{display:grid;gap:.55rem;align-content:start}
.footer-col h4{
  font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;
  color:var(--ink);font-weight:700;margin-bottom:.4rem;
}
.footer-col a{color:var(--ink-2);transition:color .2s ease}
.footer-col a:hover{color:var(--ink)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;
  gap:.5rem;color:var(--muted);font-size:.85rem;
  padding-top:1.75rem;border-top:1px solid var(--line);
}
.footer-bottom a:hover{color:var(--ink)}

/* ============ Legal pages ============ */
.legal{padding:clamp(72px,10vw,120px) 0}
.legal h1{
  font-size:clamp(2rem,4vw,2.8rem);
  letter-spacing:-.025em;font-weight:700;
  margin-bottom:.5rem;line-height:1.15;
}
.legal .updated{color:var(--muted);font-size:.9rem;margin-bottom:2.5rem}
.legal h2{
  font-size:1.3rem;letter-spacing:-.01em;font-weight:600;
  margin:2.5rem 0 .75rem;
}
.legal p,.legal li{color:var(--ink-2);font-size:1.02rem;line-height:1.7}
.legal ul{list-style:disc;padding-left:1.5rem;display:grid;gap:.4rem}
.legal a{color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.legal .back{
  display:inline-flex;align-items:center;gap:.4em;
  font-size:.9rem;color:var(--muted);margin-bottom:2rem;
}
.legal .back:hover{color:var(--ink)}

/* ============ Industry landing pages ============ */
.industry-hero{
  position:relative;overflow:hidden;
  background:#0a0a0e;color:#fafaf9;
  padding:clamp(80px,11vw,130px) 0 clamp(60px,9vw,100px);
}
.industry-hero .aurora{position:absolute;inset:0}
.industry-hero .container{position:relative;z-index:2}
.industry-hero .back{
  display:inline-flex;align-items:center;gap:.4em;
  font-size:.88rem;color:rgba(255,255,255,.6);
  margin-bottom:1.75rem;transition:color .2s ease;
}
.industry-hero .back:hover{color:#fafaf9}
.industry-hero .eyebrow{color:rgba(255,255,255,.55);margin-bottom:1rem}
.industry-hero h1{
  font-size:clamp(2.4rem,6vw,4rem);
  line-height:1.05;letter-spacing:-.03em;font-weight:700;
  margin-bottom:1.3rem;max-width:18ch;
}
.industry-hero h1 .gradient-text{display:inline}
.industry-hero .lede{
  font-size:clamp(1.05rem,1.5vw,1.2rem);
  color:rgba(255,255,255,.7);
  max-width:60ch;margin-bottom:2rem;
}
.hero-note{
  margin-top:1.25rem;
  font-size:.9rem;
  color:rgba(255,255,255,.55);
  letter-spacing:.01em;
}

.industry-included{padding:clamp(64px,9vw,100px) 0}
.industry-cta{
  padding:clamp(64px,9vw,100px) 0;
  text-align:center;background:var(--bg-alt);
  border-block:1px solid var(--line);
}
.industry-cta h2{
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  letter-spacing:-.025em;font-weight:700;
  margin-bottom:1rem;line-height:1.1;
}
.industry-cta .cta-row{justify-content:center;margin-top:1.5rem}

/* ============ 404 page ============ */
.error-page{
  position:relative;overflow:hidden;
  background:#0a0a0e;color:#fafaf9;
  min-height:calc(100vh - 64px);
  min-height:calc(100dvh - 64px);
  display:grid;place-items:center;
  padding:clamp(60px,9vw,100px) 0;
}
.error-page .aurora{position:absolute;inset:0}
.error-page .container{position:relative;z-index:2;text-align:center}
.error-page .eyebrow{margin-bottom:1rem}
.error-code{
  font-size:clamp(7rem,18vw,12rem);
  line-height:1;letter-spacing:-.05em;font-weight:800;
  margin:0 0 1.5rem;
}
.error-title{
  font-size:clamp(1.6rem,3.5vw,2.4rem);
  letter-spacing:-.025em;font-weight:700;color:#fafaf9;
  margin-bottom:1rem;line-height:1.15;
}
.error-lede{
  font-size:clamp(1rem,1.5vw,1.15rem);
  color:rgba(255,255,255,.7);max-width:50ch;
  margin:0 auto 2.25rem;
}
.error-page .cta-row{justify-content:center;margin-bottom:3rem}
.error-suggestions{
  padding-top:2.5rem;
  border-top:1px solid rgba(255,255,255,.1);
  max-width:520px;margin:0 auto;
}
.error-suggestions-label{
  font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;
  color:rgba(255,255,255,.55);font-weight:600;
  margin:0 0 1rem;
}
.error-suggestions ul{
  display:flex;flex-wrap:wrap;gap:.5rem .9rem;justify-content:center;
}
.error-suggestions li{font-size:.95rem}
.error-suggestions a{
  color:rgba(255,255,255,.85);
  border-bottom:1px solid rgba(255,255,255,.2);
  padding-bottom:1px;transition:color .2s ease,border-color .2s ease;
}
.error-suggestions a:hover{color:#fafaf9;border-color:#fafaf9}

/* ============ Mobile polish ============ */

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

/* Subtle tap highlight color */
html{-webkit-tap-highlight-color:rgba(10,10,14,.06)}

/* Safe-area padding for notched phones */
@supports (padding:env(safe-area-inset-left)){
  .container{
    padding-left:max(var(--pad),env(safe-area-inset-left));
    padding-right:max(var(--pad),env(safe-area-inset-right));
  }
}

/* Kill sticky :hover on touch devices */
@media (hover:none){
  .card:hover,
  .project:hover,
  .steps li:hover,
  .price:hover,
  .price-featured:hover,
  .guarantee:hover,
  .contact-option:hover,
  .quote:hover,
  .footer-col a:hover,
  .nav-phone:hover,
  .mobile-menu > a:hover{
    transform:none;
    box-shadow:none;
    background:initial;
  }
  .btn:hover{transform:none;box-shadow:none}
  .btn-primary:hover{background:var(--ink)}
  .btn-primary-light:hover{background:#fff}
  .btn-ghost:hover{border-color:var(--line);background:rgba(255,255,255,.7)}
  .btn-ghost-dark:hover{border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.05)}
  .btn-glow:hover::after{opacity:0}
  .card:hover .card-icon{transform:none;background:var(--bg-alt);color:var(--ink)}
  .card:hover .card-arrow{transform:none;color:var(--muted)}
  .card:hover.card-glow::before{opacity:0}
  .project:hover .project-thumb svg,
  .project:hover .project-thumb img{transform:none}
  .project-overlay{display:none}
}

/* Tablet & large phone (≤920px) */
@media (max-width:920px){
  .hero-dark{padding-top:clamp(72px,10vw,110px)}
  .hero-grid{gap:2.5rem}
  .hero h1{font-size:clamp(2.4rem,8vw,3.6rem)}
}

/* Phone (≤720px) */
@media (max-width:720px){
  /* Tighter section padding */
  .section{padding:clamp(52px,11vw,80px) 0}
  .section-title{font-size:clamp(1.6rem,7vw,2rem);margin-bottom:1.25rem;line-height:1.1}

  /* Hero */
  .hero h1{font-size:clamp(2rem,9vw,2.8rem);line-height:1.08}
  .hero .lede{font-size:1rem;margin-bottom:1.5rem}
  .pill{margin-bottom:1rem}
  .cta-row .btn{flex:1 1 auto;min-width:0}

  /* Pricing: remove scale + tighten */
  .price-featured{transform:none}
  .price-featured:hover{transform:none}
  .price{padding:1.6rem}
  .price-amount{font-size:2.2rem}

  /* Stats strip */
  .stats{padding:1.25rem .75rem;gap:.5rem;margin-top:2.5rem}
  .stat-value{font-size:1.45rem}
  .stat-label{font-size:.72rem;letter-spacing:.08em}

  /* Browser site preview: stack content */
  .browser-body{min-height:200px}
  .site-preview{min-height:200px}
  .sp-hero-row{grid-template-columns:1fr;gap:.5rem;padding:.85rem .85rem .6rem}
  .sp-hero-image{aspect-ratio:16/8;border-radius:6px}
  .sp-hero-text h4{font-size:1rem}
  .sp-cards{padding:0 .85rem .85rem}

  /* Cards / projects / forms tighter */
  .card{padding:1.5rem}
  .project-body{padding:1.25rem}
  .guarantee{padding:1.5rem}
  .contact-form{padding:1.25rem}
  .contact-options{margin-top:1.75rem;gap:.6rem}
  .contact-option{padding:.85rem 1rem}

  /* Founder: center photo, full-width text */
  .founder{text-align:center;gap:1.5rem}
  .founder-photo{margin:0 auto;width:160px;height:160px}
  .founder-photo span{font-size:2.8rem}
  .founder-copy .section-title{margin-bottom:1rem}

  /* Industry hero: relax constraints */
  .industry-hero h1{max-width:none;font-size:clamp(2rem,8vw,3rem)}

  /* FAQ */
  .faq details{padding:1rem 1.15rem}
  .faq summary{font-size:.98rem}

  /* Footer */
  .footer{padding:2.5rem 0 1.5rem}
  .footer-grid{gap:1.5rem;margin-bottom:2rem}

  /* Aurora: lighter blur for perf */
  .blob{filter:blur(60px);opacity:.4}

  /* 404 */
  .error-code{font-size:clamp(5.5rem,22vw,8rem)}
  .error-title{font-size:clamp(1.4rem,5vw,1.8rem)}

  /* Better tap targets */
  .footer-col a,
  .mobile-menu > a,
  .nav-phone,
  .faq summary{min-height:44px}
  .mobile-menu > a{padding:.85rem .25rem}
}

/* Tiny phones (≤420px) */
@media (max-width:420px){
  :root{--pad:18px}
  .hero h1{font-size:clamp(1.85rem,10vw,2.4rem)}
  .lede{font-size:.96rem}

  /* Stack stats in one column on very narrow */
  .stats > div:nth-child(odd){border-left:none}

  /* Marquee tighter */
  .marquee-track{gap:1.75rem}
  .marquee-track span{font-size:.95rem}
  .marquee-label{font-size:.68rem}

  /* CTA buttons full-width */
  .cta-row{flex-direction:column;align-items:stretch}
  .cta-row .btn{width:100%}

  /* Founder photo tighter */
  .founder-photo{width:140px;height:140px}
  .founder-photo span{font-size:2.4rem}

  /* Browser bar text */
  .browser-bar .url{font-size:.7rem}

  /* Floating fixes: hero stats need single column */
  .stats{grid-template-columns:1fr}
  .stats > div + div{border-left:none;border-top:1px solid rgba(255,255,255,.08);padding-top:.85rem;margin-top:.35rem}
}

/* Prevent horizontal scroll from any aurora / floating element */
html,body{overflow-x:clip}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion:reduce){
  *{transition:none!important;animation:none!important}
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none}
}
