/* ===== Reset & tokens ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-alt: #f5f4f1;
  --ink: #0b0b0c;
  --ink-soft: #57575b;
  --line: #e6e4df;
  --accent: #4b2fe8;
  --radius: 18px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
em { font-style: italic; font-weight: 500; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: #26262b; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.logo { font-size: 33px; font-weight: 600; letter-spacing: -0.02em; }
.logo .dot { color: #8b7bff; }
.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a { font-size: 15px; color: var(--ink-soft); transition: color .2s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav-cta { margin-left: 4px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { padding: 12px 0; font-size: 18px; font-weight: 500; }

/* ===== Hero ===== */
.hero { padding: 96px 0 80px; }
.eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 15ch;
}
.hero-title em { color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 72px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; }
.stat-label { font-size: 14px; color: var(--ink-soft); }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 48px; }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.section-title em { color: var(--accent); }
.section-desc { margin-top: 12px; font-size: 1.1rem; color: var(--ink-soft); }

/* ===== App previews carousel ===== */
.previews { padding-bottom: 92px; overflow: hidden; }
.previews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.carousel-controls { display: flex; gap: 10px; flex-shrink: 0; }
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}
.carousel-btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; transform: none; background: var(--bg); color: var(--ink); }

.carousel { width: 100%; }
.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* align first/last card with the container edges */
  padding: 6px max(24px, calc((100vw - var(--maxw)) / 2 + 24px)) 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-track.dragging * { pointer-events: none; }

.phone {
  flex: 0 0 auto;
  width: 244px;
  scroll-snap-align: center;
  margin: 0;
  text-align: center;
}
.phone-frame {
  aspect-ratio: 9 / 19.3;
  background: #0b0b0c;
  border-radius: 42px;
  padding: 9px;
  box-shadow: 0 30px 60px -30px rgba(11,11,12,0.4), inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .4s var(--ease);
}
.phone:hover .phone-frame { transform: translateY(-8px); }
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 22px;
  background: rgba(11,11,12,0.55);
  border-radius: 100px;
}
.phone-glyph { font-size: 60px; color: rgba(255,255,255,0.95); }
.phone-name { font-size: 20px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.phone figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.screen-1 { background: linear-gradient(160deg, #6a5cff, #4b2fe8); }
.screen-2 { background: linear-gradient(160deg, #ff8a5c, #ff5470); }
.screen-3 { background: linear-gradient(160deg, #2bd67b, #12a89d); }
.screen-4 { background: linear-gradient(160deg, #1c1c22, #45454f); }
.screen-5 { background: linear-gradient(160deg, #f6c76b, #ef6d5a); }
.screen-6 { background: linear-gradient(160deg, #4facfe, #2b6cf6); }

/* ===== App portfolio (icon grid) ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 34px 20px;
  margin-top: 8px;
}
.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 10px 6px;
  border-radius: 18px;
  transition: transform .3s var(--ease);
}
.app-item:hover { transform: translateY(-6px); }
.app-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.app-icon {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -14px rgba(11,11,12,0.35), inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.app-item:hover .app-icon { box-shadow: 0 22px 40px -16px rgba(11,11,12,0.45), inset 0 0 0 1px rgba(255,255,255,0.14); }
.app-icon-img { overflow: hidden; box-shadow: 0 14px 30px -14px rgba(11,11,12,0.35); }
.app-icon-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.app-icon-glyph { font-size: 46px; color: rgba(255,255,255,0.96); }
.app-info { display: flex; flex-direction: column; gap: 3px; }
.app-title { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.app-cat { font-size: 0.85rem; color: var(--ink-soft); }

/* ===== Work grid ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ===== Work section: concave product wall ===== */
.section-dark { background: #08080a; color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-title em { color: #8b7bff; }
.section-dark .section-desc { color: rgba(255,255,255,0.55); }

/* Hero on dark: recolor text, borders and buttons */
.hero.section-dark .eyebrow { color: rgba(255,255,255,0.5); }
.hero.section-dark .hero-title em { color: #8b7bff; }
.hero.section-dark .hero-sub { color: rgba(255,255,255,0.6); }
.hero.section-dark .stat-label { color: rgba(255,255,255,0.5); }
.hero.section-dark .hero-stats { border-top-color: rgba(255,255,255,0.12); }
.hero.section-dark .btn { background: #fff; color: #0b0b0c; border-color: #fff; }
.hero.section-dark .btn:hover { background: rgba(255,255,255,0.86); }
.hero.section-dark .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.hero.section-dark .btn-ghost:hover { background: #fff; color: #0b0b0c; border-color: #fff; }

/* Merge hero + wall into one continuous dark block */
.hero.section-dark { padding-bottom: 12px; }
.work-merged { padding-top: 4px; }

.coverflow {
  --card-s: 258px;   /* square tile side; gap = arc-chord (~290px) − card */
  --step: 30deg;     /* 12 tiles × 30° = full cylinder (6 apps × 2, no adjacent repeats) */
  --radius: 560px;   /* cylinder radius tuned to keep ~30px gap at this step */
  perspective: 1350px;
  perspective-origin: center 46%;
  height: 540px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* stage brings the front of the wall out to the viewer */
.coverflow-stage {
  transform-style: preserve-3d;
  transform: translateZ(var(--radius));
}
.coverflow-ring {
  position: relative;
  width: var(--card-s);
  height: var(--card-s);
  transform-style: preserve-3d;
  animation: drum-spin 60s linear infinite;
  will-change: transform;
}

.coverflow-card {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--card-s);
  height: var(--card-s);
  /* negative Z = concave wall wrapping around the viewer; step set on .coverflow */
  transform: rotateY(calc(var(--i) * var(--step))) translateZ(calc(var(--radius) * -1));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: calc(var(--card-s) * 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.65);
  animation: tile-pulse 3.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.28s);
}
/* keep the 3D placement, breathe only the scale */
@keyframes tile-pulse {
  0%, 100% { transform: rotateY(calc(var(--i) * var(--step))) translateZ(calc(var(--radius) * -1)) scale(1); }
  50%      { transform: rotateY(calc(var(--i) * var(--step))) translateZ(calc(var(--radius) * -1)) scale(1.045); }
}
.tile-glyph { font-size: 54px; line-height: 1; color: rgba(255,255,255,0.92); }
.tile-name { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.coverflow-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes drum-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

@media (max-width: 820px) {
  .coverflow {
    --card-s: 120px;
    --radius: 300px;
    perspective: 820px;
    perspective-origin: center center;
    height: 216px;
  }
  /* higher specificity so it beats the later mobile `.section { padding }` rule */
  .section.work-merged { padding-top: 4px; padding-bottom: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .coverflow-ring,
  .coverflow-card { animation: none; }
}
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(11,11,12,0.22);
  border-color: transparent;
}
.work-thumb {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.app-glyph {
  font-size: 84px;
  color: rgba(255,255,255,0.92);
  transition: transform .5s var(--ease);
}
.work-card:hover .app-glyph { transform: scale(1.12) rotate(6deg); }
.thumb-1 { background: linear-gradient(135deg, #6a5cff, #4b2fe8); }
.thumb-2 { background: linear-gradient(135deg, #ff8a5c, #ff5470); }
.thumb-3 { background: linear-gradient(135deg, #2bd67b, #12a89d); }
.thumb-4 { background: linear-gradient(135deg, #1c1c22, #45454f); }
.work-body { padding: 24px 24px 28px; }
.work-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.work-name { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.work-desc { margin-top: 8px; color: var(--ink-soft); font-size: 1rem; }
.work-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  transition: gap .2s var(--ease), opacity .2s var(--ease);
}
.work-link:hover { opacity: 0.7; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p { font-size: 1.15rem; color: var(--ink-soft); margin-top: 18px; max-width: 52ch; }
.about-text p:first-of-type { margin-top: 24px; }
.about-text strong { color: var(--ink); font-weight: 600; }
.stack-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 18px; }
.stack-list { list-style: none; }
.stack-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 500;
}
.stack-list li:last-child { border-bottom: 1px solid var(--line); }

/* ===== Contact ===== */
.contact { text-align: center; padding: 120px 0; }
.contact-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin-top: 14px;
}
.contact-title em { color: var(--accent); }
.contact-sub { margin: 20px auto 34px; font-size: 1.2rem; color: var(--ink-soft); max-width: 40ch; }

/* ===== Legal / content pages ===== */
.page { padding: 72px 0 96px; }
.page-narrow { max-width: 760px; }
.page h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page .updated { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }
.page h2 {
  margin-top: 44px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.page p, .page li { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }
.page ul { margin-top: 14px; padding-left: 22px; }
.page li { margin-top: 8px; }
.page a.inline { color: var(--accent); }
.page a.inline:hover { text-decoration: underline; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.back-link:hover { color: var(--ink); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.support-card h3 { font-size: 1.2rem; font-weight: 600; }
.support-card p { margin-top: 10px; }
.support-card a { display: inline-block; margin-top: 14px; color: var(--accent); font-weight: 500; }
.support-card a:hover { opacity: 0.7; }

/* ===== App detail page ===== */
.app-page { padding: 64px 0 96px; }
.app-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 32px 0 64px;
  flex-wrap: wrap;
}
.app-hero-icon {
  width: 148px;
  height: 148px;
  border-radius: 34px;
  box-shadow: 0 24px 50px -20px rgba(11,11,12,0.4);
  flex-shrink: 0;
}
.app-hero-text { flex: 1 1 340px; }
.app-hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 6px;
}
.app-hero-title .plus { color: var(--accent); }
.app-hero-tag {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink-soft);
}
.app-hero-sub {
  margin-top: 14px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.app-hero-actions { margin-top: 24px; }
.app-store-btn { background: var(--ink); }
.app-features {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.app-features li {
  position: relative;
  padding: 8px 16px 8px 34px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
}
.app-features li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: #22a565;
  font-weight: 700;
}

.shots {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.shots::-webkit-scrollbar { display: none; }
.shot {
  flex: 0 0 auto;
  width: 260px;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px -24px rgba(11,11,12,0.3);
  scroll-snap-align: center;
}

@media (max-width: 620px) {
  .app-hero { gap: 24px; }
  .app-hero-icon { width: 104px; height: 104px; border-radius: 24px; }
  .shot { width: 220px; }
}

/* ===== App "what it does" ===== */
.app-about { margin: 64px 0 8px; }
.app-about h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 24px;
  background: var(--bg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(11,11,12,0.28);
  border-color: transparent;
}
.feature-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-left: 16px;
  position: relative;
}
.feature-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.feature-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ===== Google API disclosure block ===== */
.disclosure {
  max-width: 760px;
  margin: 72px 0 8px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.disclosure .crumb { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.disclosure .crumb a { color: var(--accent); }
.disclosure .crumb a:hover { text-decoration: underline; }
.disclosure h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.disclosure p { margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }
.disclosure a.inline { color: var(--accent); }
.disclosure a.inline:hover { text-decoration: underline; }

/* ===== 404 page ===== */
.notfound {
  min-height: 68vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.notfound .container { width: 100%; }
.nf-code {
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.nf-title {
  margin-top: 8px;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.nf-title em { color: var(--accent); }
.nf-sub { margin-top: 16px; font-size: 1.15rem; color: var(--ink-soft); }
.nf-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; margin: 0 auto; }
.footer-links a { font-size: 15px; color: var(--ink-soft); transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--ink); }
.copyright { font-size: 14px; color: var(--ink-soft); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 820px) {
  .work-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 68px 0; }
  .hero-stats { gap: 36px; }
}
