/* Maz — mazmobility.com — SHIPZY SARL */

:root {
  /* Primary palette */
  --primary-50: #f1ecfd;
  --primary-100: #d3c5f8;
  --primary-200: #bda9f4;
  --primary-300: #9f82f0;
  --primary-400: #8d6aed;
  --primary-500: #7045e8;
  --primary-600: #663fd3;
  --primary-700: #5031a5;
  --primary-800: #3e2680;
  --primary-900: #2f1d61;

  --bg: #ffffff;
  --bg-soft: #f8f7fc;
  --surface: #ffffff;
  --line: #e8e5f2;
  --text: #1c1830;
  --text-dim: #5d5876;
  --brand: var(--primary-500);
  --brand-strong: var(--primary-600);
  --gradient-blue: #1f1bcf;
  --gradient-purple: #7b02d5;
  --brand-gradient: linear-gradient(135deg, var(--gradient-blue), var(--gradient-purple) 60%);
  --ink-on-brand: #ffffff;

  /* Dark showcase */
  --night: #120e26;
  --night-2: #1b1438;
  --night-line: rgba(255, 255, 255, 0.09);

  --font-display: "Space Grotesk", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --radius: 16px;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); }

a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

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

/* ---------- Reveal on scroll ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}
.logo:hover { text-decoration: none; }

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a {
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
  transition: right 0.25s ease;
}
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.site-nav a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  background: var(--brand-gradient);
  color: var(--ink-on-brand) !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { filter: brightness(1.12); transform: translateY(-1px); text-decoration: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

/* faint blueprint grid, faded out toward the edges */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 90% at 50% 0%, #000 30%, transparent 100%);
  opacity: 0.7;
  pointer-events: none;
}

/* drifting brand-colored glow */
.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  top: -420px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(112, 69, 232, 0.18), rgba(31, 27, 207, 0.08) 55%, transparent 75%);
  filter: blur(20px);
  animation: heroGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  from { transform: translateX(-62%) scale(1); }
  to   { transform: translateX(-38%) scale(1.12); }
}

.hero .container { position: relative; z-index: 1; }

.hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-600);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--primary-100);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(112, 69, 232, 0.08);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
}
.btn-primary {
  background: var(--brand-gradient);
  color: var(--ink-on-brand);
  box-shadow: 0 6px 18px rgba(70, 40, 220, 0.30);
  transition: filter 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(70, 40, 220, 0.4);
  text-decoration: none;
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn-ghost:hover { border-color: var(--primary-300); color: var(--primary-700); transform: translateY(-2px); text-decoration: none; }

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--brand); font-size: 0.85rem; }

.hero-note { margin-top: 18px; font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Sections ---------- */

section { padding: 84px 0; }
section + section:not(.app-section) { border-top: 1px solid var(--line); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* ---------- Bento feature grid ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 1px 3px rgba(47, 29, 97, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* pointer-tracking glow (set via --mx/--my in a tiny script) */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, -20%), rgba(112, 69, 232, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-200);
  box-shadow: 0 14px 34px rgba(47, 29, 97, 0.12);
}
.card:hover::before { opacity: 1; }

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(70, 40, 220, 0.28);
}

.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* Featured card: live bidding demo */

.bid-demo {
  margin-top: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  user-select: none;
}

.bid-demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0e9a4e;
  background: #e6f8ee;
  border: 1px solid #bdedd2;
  border-radius: 999px;
  padding: 3px 11px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14c064;
  animation: livePulse 1.6s ease-out infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(20, 192, 100, 0.55); }
  100% { box-shadow: 0 0 0 8px rgba(20, 192, 100, 0); }
}

.bid-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #d97400;
}

.bid-demo-mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.bid-car { display: block; font-weight: 700; font-size: 0.95rem; }
.bid-meta { display: block; font-size: 0.8rem; color: var(--text-dim); }

.bid-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  animation: pricePop 4s ease-in-out infinite;
}
.bid-price small { font-size: 0.85rem; font-weight: 700; color: var(--text-dim); }

@keyframes pricePop {
  0%, 86%, 100% { color: var(--text); transform: none; }
  90%, 94% { color: var(--primary-600); transform: scale(1.04); }
}

.bid-bar {
  height: 5px;
  border-radius: 5px;
  background: var(--line);
  overflow: hidden;
  margin: 14px 0;
}
.bid-bar span {
  display: block;
  height: 100%;
  border-radius: 5px;
  background: var(--brand-gradient);
  animation: countdown 8s linear infinite;
}
@keyframes countdown {
  from { width: 92%; }
  to   { width: 12%; }
}

.bid-demo-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bid-chip {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0e9a4e;
  background: #e6f8ee;
  border-radius: 999px;
  padding: 4px 12px;
}

.bid-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 20px;
  box-shadow: 0 5px 14px rgba(70, 40, 220, 0.3);
}

/* Featured card: verified network demo */

.network-demo {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  user-select: none;
}

.avatar-row { display: flex; }

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
}
.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2) { background: linear-gradient(135deg, #4f46e5, #2f1d61); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #8d6aed, #5031a5); }
.avatar:nth-child(4) { background: linear-gradient(135deg, #1f1bcf, #663fd3); }
.avatar.more { background: var(--text); font-size: 0.68rem; }

.verify-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: 999px;
  padding: 6px 14px;
}
.verify-pill i { color: #14c064; }

/* ---------- Steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--primary-200);
  box-shadow: 0 12px 28px rgba(47, 29, 97, 0.1);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 6px 14px rgba(70, 40, 220, 0.26);
  margin-bottom: 16px;
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- App showcase (dark) ---------- */

.app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 18% 8%, rgba(123, 2, 213, 0.28), transparent 65%),
    radial-gradient(50% 45% at 85% 85%, rgba(31, 27, 207, 0.3), transparent 65%),
    var(--night);
  color: #fff;
}

/* subtle star-grid texture */
.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000 20%, transparent 100%);
  mask-image: radial-gradient(75% 75% at 50% 40%, #000 20%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.app-section .container { position: relative; z-index: 1; }

.app-section .section-head h2 { color: #fff; }
.app-section .section-head p { color: rgba(255, 255, 255, 0.72); }
.app-section .section-head strong { color: #fff; }

.app-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-200);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--night-line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* Phone stage */

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 60px 0 76px;
}

.phone {
  width: 236px;
  margin: 0 -16px;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.phone img, .browser img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.phone img {
  width: 100%;
  display: block;
  border-radius: 34px;
  border: 8px solid #0b0819;
  background: #0b0819;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 34px 70px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(112, 69, 232, 0.22);
}

.phone img { transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.phone-left  { transform: translateY(30px); z-index: 1; }
.phone-right { transform: translateY(30px); z-index: 1; }
.phone-left img  { transform: rotate(-7deg); }
.phone-right img { transform: rotate(7deg); }
.phone-center { width: 280px; z-index: 2; }
.phone-center img { box-shadow:
  0 0 0 1px rgba(255, 255, 255, 0.14),
  0 44px 90px rgba(0, 0, 0, 0.6),
  0 0 120px rgba(112, 69, 232, 0.35);
}

.phone-left:hover  { transform: translateY(14px); }
.phone-right:hover { transform: translateY(14px); }
.phone-left:hover img  { transform: rotate(-2deg); }
.phone-right:hover img { transform: rotate(2deg); }
.phone-center:hover { transform: translateY(-10px); }

.phone figcaption {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* floating auction chips */

.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 17px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  animation: floatChip 6s ease-in-out infinite;
  pointer-events: none;
}
.float-chip i { color: var(--brand); }
.float-chip.chip-1 { top: 5%; left: 8%; animation-delay: 0s; }
.float-chip.chip-2 { top: 32%; right: 5%; animation-delay: 1.8s; }
.float-chip.chip-3 { bottom: 14%; left: 4%; animation-delay: 3.2s; }
.float-chip.chip-2 i { color: #d97400; }
.float-chip.chip-3 i { color: #14c064; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Browser mockup */

.browser {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.browser-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--night-line);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 110px rgba(112, 69, 232, 0.2);
}

.browser-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  padding: 11px 16px;
}

.browser-dots { display: flex; gap: 7px; }
.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  max-width: 340px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--night-line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 16px;
}
.browser-url i { font-size: 0.7rem; color: #28c840; }

.browser img { width: 100%; display: block; }

.browser figcaption {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* Store badges */

.store-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--night-line);
  color: #ffffff;
  border-radius: 14px;
  padding: 10px 22px;
  line-height: 1.25;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.store-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.store-badge i { font-size: 1.5rem; color: #fff; }

.store-badge .store-text { display: flex; flex-direction: column; align-items: flex-start; }

.store-badge small {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.store-badge strong { font-size: 1.05rem; font-weight: 700; font-family: var(--font-display); }

/* ---------- Company strip ---------- */

.company {
  background: var(--bg-soft);
}

.company-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.company h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; }
.company p { color: var(--text-dim); margin-bottom: 14px; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-grid .card { text-align: center; }
.contact-grid .card .icon { margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 36px;
  background: var(--bg-soft);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo img.logo-lockup { height: 88px; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; }

.footer-address { margin-top: 12px; font-size: 0.85rem !important; }
.footer-address i { color: var(--brand); margin-right: 4px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text); font-size: 0.92rem; font-weight: 500; }

.legal-line {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ---------- Legal / doc pages ---------- */

.doc { padding: 64px 0 88px; max-width: 780px; margin: 0 auto; }
.doc h1 { font-size: 2.1rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.doc .doc-meta { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 36px; }
.doc h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; }
.doc h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--text-dim); margin-bottom: 12px; font-size: 0.98rem; }
.doc ul, .doc ol { padding-left: 24px; margin-bottom: 16px; }
.doc li { margin-bottom: 6px; }
.doc strong { color: var(--text); }
.doc .notice {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 20px 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }

  .phone-stage { flex-wrap: wrap; align-items: center; gap: 26px; }
  .phone { margin: 0; }
  .phone-left, .phone-right { transform: none; }
  .phone-left img, .phone-right img { transform: none; }
  .float-chip { display: none; }
}

@media (max-width: 760px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 72px 0 64px; }
  section { padding: 60px 0; }

  .bento { grid-template-columns: 1fr; }
  .bento .span-2 { grid-column: auto; }

  .phone-center { width: 250px; }
}
