/* ============================================================
   Magic Eraser — landing page
   Theme: dark, glass, violet → pink → cyan magic palette
   ============================================================ */

:root {
  --bg-0: #07041a;
  --bg-1: #0b0418;
  --bg-2: #150830;
  --bg-alt: #100425;
  --card: rgba(255,255,255,0.04);
  --card-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text: #f3eafe;
  --muted: #b3a8d0;
  --muted-2: #7c728f;
  --accent: #b06bff;        /* violet */
  --accent-2: #ff5fb1;      /* pink */
  --accent-3: #5ce1ff;      /* cyan */
  --accent-4: #ffd166;      /* gold sparkle */
  --good: #4ddfa3;
  --shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; }
p { margin: 0; color: var(--muted); }

section { padding: 88px 24px; }
.section-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(176,107,255,0.10);
  border: 1px solid rgba(176,107,255,0.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: 38px; font-weight: 700; line-height: 1.15; margin-bottom: 14px;
}
.section-head .lead { font-size: 17px; color: var(--muted); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  background: rgba(11, 4, 24, 0.65);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.01em;
}
.brand-icon {
  width: 32px; height: 32px; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.brand-name { font-size: 16px; }
.site-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14px;
  color: var(--muted);
}
.site-links a { transition: color .2s ease; }
.site-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 8px 24px -10px rgba(176, 107, 255, 0.6);
}
.nav-cta:hover { filter: brightness(1.1); }

@media (max-width: 760px) {
  .site-links { gap: 14px; }
  .site-links a:not(.nav-cta) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 24px 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% -5% 0 -5%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(176,107,255,0.30) 0%, transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255,95,177,0.22) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(92,225,255,0.18) 0%, transparent 50%);
  filter: blur(20px);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  box-shadow: 0 16px 40px -12px rgba(176,107,255,0.6), 0 0 0 1px rgba(255,255,255,0.06) inset;
  margin-bottom: 22px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  display: flex; flex-direction: column;
  margin-bottom: 22px;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.secondary-cta {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.secondary-cta:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.04); }
.app-store-badge { display: inline-flex; }
.app-store-badge.big svg { filter: drop-shadow(0 8px 24px rgba(176,107,255,0.4)); }

.hero-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-2);
}
.meta-label { color: var(--good); font-weight: 600; }
.meta-sep { color: var(--muted-2); }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-title { align-items: center; font-size: 44px; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; }
}

/* ============================================================
   PHONE MOCKUP — eraser scene
   ============================================================ */
.hero-visual {
  display: flex; justify-content: center;
}
.phone-mock {
  width: 320px;
  height: 640px;
  border-radius: 46px;
  background: linear-gradient(180deg, #1a0d33 0%, #100322 100%);
  position: relative;
  padding: 14px;
  box-shadow:
    0 60px 120px -40px rgba(176, 107, 255, 0.45),
    0 30px 60px -20px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, #0d0322 0%, #050010 100%);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.p-header {
  padding: 50px 18px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.p-back { color: var(--accent); font-size: 22px; font-weight: 300; }
.p-title { font-weight: 600; }
.p-save {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
}

/* canvas with photo to erase */
.canvas {
  position: relative;
  margin: 14px;
  height: 360px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe7a0 0%, #ffb6c8 55%, #c9a3ff 100%);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.canvas-photo { position: absolute; inset: 0; }
.ground {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 32%;
  background: linear-gradient(180deg, #6c4a8a 0%, #2c1a45 100%);
}
.sun {
  position: absolute;
  top: 50px; right: 60px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0%, #ffd166 70%, transparent 100%);
  filter: blur(2px);
}
.hill {
  position: absolute;
  bottom: 30%;
  border-radius: 50% 50% 0 0;
}
.hill.h1 {
  left: -30px; width: 180px; height: 90px;
  background: linear-gradient(180deg, #7a4ea0, #4a2a78);
}
.hill.h2 {
  right: -10px; width: 220px; height: 110px;
  background: linear-gradient(180deg, #9a64bf, #5a3992);
}

/* objects to remove — fading out */
.obj {
  position: absolute;
  animation: erase 5.5s ease-in-out infinite;
}
.obj.person {
  left: 35%; bottom: 26%;
  width: 28px; height: 60px;
  background: linear-gradient(180deg, #2a1538 0%, #2a1538 30%, #5a3a7a 30%, #5a3a7a 100%);
  border-radius: 14px 14px 4px 4px;
  animation-delay: 0.4s;
}
.obj.person::before {
  content: ""; position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: #2a1538;
}
.obj.sign {
  right: 18%; bottom: 30%;
  width: 38px; height: 46px;
  background: linear-gradient(180deg, #c93c6f, #7a1f43);
  border-radius: 4px 4px 0 0;
  animation-delay: 1.5s;
}
.obj.sign::after {
  content: ""; position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 22px;
  background: #5a3a7a;
}

/* brush trail moving over objects */
.brush-trail {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(176,107,255,0.4) 40%, transparent 70%);
  filter: blur(6px);
  animation: brush 5.5s ease-in-out infinite;
  pointer-events: none;
}

/* sparkles */
.sparkles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255,255,255,0.8);
  opacity: 0;
  animation: sparkle 5.5s ease-in-out infinite;
}
.sparkles span:nth-child(1) { left: 38%; top: 40%; animation-delay: 1.0s; }
.sparkles span:nth-child(2) { left: 42%; top: 55%; animation-delay: 1.2s; }
.sparkles span:nth-child(3) { left: 36%; top: 70%; animation-delay: 1.4s; }
.sparkles span:nth-child(4) { right: 22%; top: 45%; animation-delay: 2.0s; }
.sparkles span:nth-child(5) { right: 18%; top: 60%; animation-delay: 2.2s; }
.sparkles span:nth-child(6) { right: 24%; top: 50%; animation-delay: 2.4s; }

.canvas-label {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.04em;
}

@keyframes erase {
  0%, 15% { opacity: 1; transform: scale(1); filter: blur(0); }
  35%, 100% { opacity: 0; transform: scale(0.9); filter: blur(6px); }
}
@keyframes brush {
  0% { left: 30%; top: 35%; opacity: 0; }
  10% { opacity: 1; }
  25% { left: 38%; top: 55%; }
  40% { left: 55%; top: 45%; }
  55% { left: 70%; top: 40%; opacity: 1; }
  75% { left: 75%; top: 50%; opacity: 0; }
  100% { left: 30%; top: 35%; opacity: 0; }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
  60% { opacity: 0; transform: scale(1.4); }
}

/* tool dock at bottom of phone */
.tools {
  margin: 0 14px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.tool {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 11px;
}
.tool .ic { font-size: 22px; margin-bottom: 4px; }
.tool.active {
  background: linear-gradient(135deg, rgba(176,107,255,0.25), rgba(255,95,177,0.18));
  color: #fff;
  border: 1px solid rgba(176,107,255,0.4);
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.strip {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.strip-inner strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 760px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features { background: var(--bg-1); }
.feature-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--card-strong);
}
.f-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: #fff;
}
.grad-a { background: linear-gradient(135deg, #b06bff, #ff5fb1); }
.grad-b { background: linear-gradient(135deg, #5ce1ff, #b06bff); }
.grad-c { background: linear-gradient(135deg, #ff5fb1, #ffd166); }
.grad-d { background: linear-gradient(135deg, #5ce1ff, #4ddfa3); }
.grad-e { background: linear-gradient(135deg, #ffd166, #ff5fb1); }
.grad-f { background: linear-gradient(135deg, #b06bff, #5ce1ff); }
.grad-g { background: linear-gradient(135deg, #4ddfa3, #5ce1ff); }
.grad-h { background: linear-gradient(135deg, #ff5fb1, #b06bff); }
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--muted); }

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg-0); }
.steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   USE CASES
   ============================================================ */
.uses { background: var(--bg-1); }
.use-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.use {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.use:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.use .emoji {
  font-size: 30px;
  margin-bottom: 12px;
}
.use h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.use p { font-size: 14px; }
@media (max-width: 900px) {
  .use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .use-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy { background: var(--bg-0); }
.privacy-inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
}
.privacy-inner h2 { font-size: 30px; margin: 8px 0 22px; }
.privacy-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.privacy-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--muted); font-size: 14px;
}
.privacy-list .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 6px; flex-shrink: 0;
}
@media (max-width: 560px) {
  .privacy-list { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-1); }
.plans {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.plan:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.plan-pop {
  background: linear-gradient(155deg, rgba(176,107,255,0.18) 0%, rgba(255,95,177,0.10) 60%, rgba(92,225,255,0.08) 100%);
  border-color: rgba(176,107,255,0.45);
  box-shadow: 0 30px 60px -30px rgba(176,107,255,0.5);
}
.plan-tag {
  position: absolute;
  top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.plan-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.plan-price .per { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan-sub { color: var(--muted-2); font-size: 13px; margin-bottom: 22px; }
.plan ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  flex: 1;
}
.plan li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan li:last-child { border-bottom: none; }
.plan li::before {
  content: "✓";
  color: var(--accent-3);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transition: filter .2s;
}
.plan-cta:hover { filter: brightness(1.1); }
.plan-cta.ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.plan-cta.ghost:hover { background: rgba(255,255,255,0.10); }
.pricing-fine {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted-2);
}
@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-0); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.faq-list details[open] {
  border-color: rgba(176,107,255,0.35);
  background: var(--card-strong);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background:
    radial-gradient(circle at 30% 40%, rgba(176,107,255,0.30) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,95,177,0.24) 0%, transparent 50%),
    var(--bg-1);
  text-align: center;
  padding: 88px 24px;
}
.cta-inner {
  max-width: 600px; margin: 0 auto;
}
.cta-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  margin: 0 auto 18px;
  box-shadow: 0 16px 40px -12px rgba(176,107,255,0.6);
}
.cta-strip h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-strip p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  padding: 40px 24px 30px;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { width: 36px; height: 36px; border-radius: 9px; }
.fb-name { font-weight: 600; }
.fb-co { font-size: 12px; color: var(--muted-2); }
.foot-links {
  display: flex; gap: 22px;
  font-size: 14px;
  color: var(--muted);
}
.foot-links a:hover { color: var(--text); }
.foot-fine {
  max-width: var(--maxw);
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
}

@media (max-width: 560px) {
  section { padding: 64px 18px; }
  .hero { padding: 60px 18px 40px; }
  .hero-title { font-size: 36px; }
  .section-head h2 { font-size: 28px; }
  .cta-strip h2 { font-size: 28px; }
  .phone-mock { width: 280px; height: 560px; }
  .canvas { height: 300px; }
}
