/* ============================================================
   OmnitriSoft — editorial light SaaS theme
   Fraunces (display serif) · Hanken Grotesk (UI) · JetBrains Mono (labels)
   ============================================================ */

:root {
  /* surfaces */
  --paper: #FBF8F2;        /* warm cream */
  --paper-2: #F5F0E6;      /* deeper panel */
  --card: #FFFFFF;
  --ink: #1B1726;          /* near-black, violet undertone */
  --ink-2: #423B53;
  --muted: #6E6780;
  --faint: #A09AAC;
  --line: rgba(27, 23, 38, 0.10);
  --line-2: rgba(27, 23, 38, 0.16);

  /* brand — indigo / violet */
  --brand: #5B3BF0;
  --brand-deep: #3F22C7;
  --brand-tint: #ECE7FF;
  --brand-tint-2: #F5F2FF;

  /* sentinel — emerald */
  --emerald: #0C9B6A;
  --emerald-deep: #067A53;
  --emerald-tint: #DEF3EA;

  /* warm accent (status) */
  --amber: #B9791C;
  --rose: #C8456A;

  --max: 1180px;
  --r: 16px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 2px 10px rgba(27, 23, 38, 0.05);
  --shadow: 0 18px 50px -22px rgba(27, 23, 38, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(63, 34, 199, 0.40);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* subtle film grain over the whole page */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  font-optical-sizing: auto;
}

h1 em, h2 em, h3 em, .cta-title em {
  color: var(--brand);
  font-weight: 500;
}

p { margin: 0; color: var(--muted); }
strong { color: var(--ink-2); font-weight: 700; }

/* mono kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0 0 22px;
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-tint);
}
.kicker-on-dark { color: #C9BEFF; }
.kicker-on-dark .kicker-dot { box-shadow: 0 0 0 4px rgba(255,255,255,0.12); }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: inline-flex; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand-soft { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--brand-deep); color: #fff !important; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(91, 59, 240, 0.6);
}
.btn-brand:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(91, 59, 240, 0.7); }

.btn-emerald {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(12, 155, 106, 0.55);
}
.btn-emerald:hover { background: var(--emerald-deep); transform: translateY(-2px); }

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-line:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.5); }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 92px 0 76px; }
.hero-aura {
  position: absolute;
  top: -160px; right: -120px;
  width: 720px; height: 720px;
  background:
    radial-gradient(circle at 65% 35%, rgba(91, 59, 240, 0.16), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.10), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.hero-lead {
  font-size: 18.5px;
  line-height: 1.62;
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--ink-2);
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.trust-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.trust-pill:hover { transform: translateY(-2px); border-color: var(--line-2); }
.tp-dot { width: 8px; height: 8px; border-radius: 50%; }
.tp-indigo { background: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.tp-emerald { background: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-tint); }

/* ---------------- Sections ---------------- */
.section { padding: 96px 0; position: relative; }
.sec-head { max-width: 660px; margin-bottom: 56px; }
.sec-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.sec-lead { font-size: 17.5px; color: var(--muted); }

.subhead { margin: 8px 0 30px; }
.subhead-2 { margin-top: 88px; }
.sub-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brand-tint);
}
.sub-title { font-size: clamp(24px, 3vw, 34px); margin-top: 26px; max-width: 600px; }

/* ---------------- Product blocks ---------------- */
.product {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 50px;
  align-items: center;
  padding: 46px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.product::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.product-indigo::before { background: radial-gradient(700px 320px at 0% 0%, var(--brand-tint-2), transparent 60%); }
.product-emerald::before { background: radial-gradient(700px 320px at 100% 0%, var(--emerald-tint), transparent 60%); }
.product-rev .product-info { order: 2; }
.product-rev .product-visual { order: 1; }
.product > * { position: relative; z-index: 1; }

.prod-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.product-indigo .prod-eyebrow { color: var(--brand); }
.product-emerald .prod-eyebrow { color: var(--emerald-deep); }
.product-emerald h3 em { color: var(--emerald-deep); }

.prod-title { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; }
.prod-desc { font-size: 16px; color: var(--ink-2); margin-bottom: 28px; max-width: 520px; }

.mods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-bottom: 30px; }
.mod { display: flex; gap: 12px; align-items: flex-start; }
.mod-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.product-emerald .mod-ic { background: var(--emerald-tint); color: var(--emerald-deep); }
.mod-ic svg { width: 20px; height: 20px; }
.mod div { display: flex; flex-direction: column; }
.mod b { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.mod span { font-size: 13px; color: var(--muted); line-height: 1.45; }

.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.prod-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.meta-chips { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--faint); letter-spacing: 0.04em; }

.demo-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--brand-tint-2);
  border: 1px solid var(--brand-tint);
  border-radius: 12px;
}
.demo-tag {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 4px 11px;
  border-radius: 999px;
}
.demo-cred { font-size: 13.5px; color: var(--ink-2); }
.demo-cred b { color: var(--brand-deep); font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 13px; }

/* ---------------- Cards (consulting) ---------------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  padding: 28px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card-ic {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  margin-bottom: 18px;
}
.card-ic svg { width: 22px; height: 22px; }
.card h4 { font-size: 19px; margin-bottom: 9px; }
.card p { font-size: 14px; line-height: 1.55; }

/* ---------------- Browser mocks ---------------- */
.mock {
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-float { transform: rotate(0.6deg); }
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 15px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.mb-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.mock-url {
  margin-left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--faint);
}

/* suite mock */
.mock-app { display: grid; grid-template-columns: 64px 1fr; min-height: 240px; }
.mock-side {
  background: var(--paper-2);
  border-right: 1px solid var(--line);
  padding: 16px 0;
  display: flex; flex-direction: column; align-items: center; gap: 13px;
}
.ms-logo { width: 24px; height: 24px; border-radius: 7px; background: var(--brand); }
.ms-item { width: 26px; height: 9px; border-radius: 5px; background: var(--line-2); }
.ms-item.is-active { background: var(--brand); width: 30px; }
.mock-main { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.mm-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; }
.mm-chip {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: var(--brand-deep); background: var(--brand-tint);
  padding: 3px 9px; border-radius: 999px;
}
.mm-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
}
.mm-check { width: 16px; height: 16px; border-radius: 5px; border: 1.6px solid var(--line-2); flex-shrink: 0; }
.mm-check.on { background: var(--brand); border-color: var(--brand); position: relative; }
.mm-check.on::after { content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mm-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mm-bars i { height: 6px; border-radius: 4px; background: var(--line-2); display: block; }
.tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.tag-done { color: var(--emerald-deep); background: var(--emerald-tint); }
.tag-prog { color: var(--brand-deep); background: var(--brand-tint); }
.tag-todo { color: var(--faint); background: var(--paper-2); border: 1px solid var(--line); }

/* sentinel mock */
.mock-sec { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.sec-stat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 4px; }
.ss-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px;
  display: flex; flex-direction: column; gap: 2px; background: var(--paper);
}
.ss-card.ss-ok { background: var(--emerald-tint); border-color: transparent; }
.ss-card.ss-warn { background: #FBEDD7; border-color: transparent; }
.ss-n { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--ink); }
.ss-ok .ss-n { color: var(--emerald-deep); }
.ss-warn .ss-n { color: var(--amber); }
.ss-l { font-size: 11px; color: var(--muted); }
.ep {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper);
}
.ep-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ep-dot.ok { background: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-tint); }
.ep-dot.warn { background: var(--amber); box-shadow: 0 0 0 3px #FBEDD7; }
.ep-name { flex: 1; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--ink-2); }
.ep-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; padding: 3px 9px; border-radius: 999px; }
.ep-tag.ok { color: var(--emerald-deep); background: var(--emerald-tint); }
.ep-tag.warn { color: var(--amber); background: #FBEDD7; }

/* ---------------- CTA ---------------- */
.section-cta { padding-bottom: 110px; }
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 60px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #221a3d 0%, #2a1a4e 55%, #3a1f63 100%);
  color: #F4F1FF;
  overflow: hidden;
}
.cta-aura {
  position: absolute; top: -40%; right: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45), transparent 60%);
  pointer-events: none;
}
.cta > *:not(.cta-aura) { position: relative; z-index: 1; }
.cta-title { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 12px; color: #fff; }
.cta-title em { color: #C9BEFF; }
.cta-lead { font-size: 16.5px; color: #C8C0E0; max-width: 440px; }
.cta-side { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-meta { font-size: 13px; color: #A99ED0; }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 30px; background: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.foot-tag { font-size: 14px; color: var(--muted); max-width: 280px; margin-top: 12px; }
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 4px;
}
.foot-col a { font-size: 14.5px; color: var(--ink-2); transition: color 0.18s ease; }
.foot-col a:hover { color: var(--brand); }
.foot-base {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; font-size: 13px; color: var(--faint);
}
.foot-mono { font-family: 'JetBrains Mono', monospace; }

/* ---------------- Reveal animations ---------------- */
.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.reveal-1 { animation-delay: 0.08s; }
.reveal-2 { animation-delay: 0.16s; }
.reveal-3 { animation-delay: 0.24s; }
.reveal-4 { animation-delay: 0.32s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.product, .card, .sec-head, .subhead, .cta {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product.in, .card.in, .sec-head.in, .subhead.in, .cta.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .product, .card, .sec-head, .subhead, .cta { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------------- OmniCrew "yakında" pill ---------------- */
.tp-amber { background: var(--amber); box-shadow: 0 0 0 3px #FBEDD7; }
.trust-pill-soon { border-style: dashed; }
.trust-pill-soon:hover { border-color: var(--amber); }
.tp-soon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--amber);
  background: #FBEDD7;
  padding: 2px 7px;
  border-radius: 999px;
}

/* ---------------- Süreç (flow) ---------------- */
.section-flow { background: linear-gradient(180deg, var(--paper-2) 0%, transparent 78%); }
.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.flow-step {
  position: relative;
  padding: 26px 24px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--faint);
  z-index: 2;
}
.flow-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.flow-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.flow-ic svg { width: 22px; height: 22px; }
.flow-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--faint); }
.flow-step h4 { font-size: 18px; margin-bottom: 8px; }
.flow-step p { font-size: 13.5px; line-height: 1.5; }

@media (max-width: 940px) {
  .flow { grid-template-columns: 1fr 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .product { grid-template-columns: 1fr; gap: 34px; padding: 34px; }
  .product-rev .product-info { order: 1; }
  .product-rev .product-visual { order: 2; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; gap: 28px; padding: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 70px 0; }
  .mods { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .prod-foot { flex-direction: column; align-items: flex-start; }
  .foot-base { flex-direction: column; gap: 8px; align-items: flex-start; }
}
