/* ===================================================================
   MowSolo — graffiti-meets-Apple design system
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Vivid palette */
  --green:  #00D26A;
  --green-2:#00B85C;
  --orange: #FF6B1A;
  --blue:   #2A5BFF;
  --pink:   #FF2D87;
  --yellow: #FFD21E;
  --purple: #8B3CFF;

  /* Base */
  --ink:    #14161A;
  --ink-2:  #3A3F47;
  --white:  #FFFFFF;
  --paper:  #F6F7F2;
  --line:   #E7E9E2;

  --radius:    22px;
  --radius-lg: 34px;
  --shadow-sm: 0 4px 18px rgba(20,22,26,.07);
  --shadow:    0 18px 50px rgba(20,22,26,.13);
  --shadow-lg: 0 40px 90px rgba(20,22,26,.20);

  --maxw: 1180px;
  --display: 'Anton', 'Archivo', system-ui, sans-serif;
  --head: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: #FBFCF8 url('mowsolo-bg.png') center center / cover fixed;
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Frosted glass panels ---------- */
.panel {
  position: relative;
  background: rgba(255,255,255,.74);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(20,22,26,.20), inset 0 1px 0 rgba(255,255,255,.7);
  padding: 40px;
}
.panel.tight { padding: 26px 30px; }
.panel.inline { display: inline-block; padding: 22px 30px; }
.panel.dark {
  background: rgba(18,20,24,.78);
  color: #fff;
  border-color: var(--ink);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}
.panel.dark .lead, .panel.dark p { color: rgba(255,255,255,.86); }
.panel.dark .eyebrow { color: var(--green); }
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .panel { background: rgba(255,255,255,.93); }
  .panel.dark { background: rgba(18,20,24,.93); }
  .card, .mini, .price, .stat, .q, .form-card, .app-row { background: #fff; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; font-size: 13px; color: var(--ink-2);
}
h1, h2, h3 { margin: 0; line-height: 1.0; letter-spacing: -.01em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 118px);
}
.h-section {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(38px, 6.5vw, 78px);
  line-height: 1.0;
  letter-spacing: .01em;
}
.lead { font-size: clamp(18px, 2.2vw, 23px); color: var(--ink-2); line-height: 1.55; }

/* Highlighter / marker swipe behind text */
.mark { position: relative; white-space: nowrap; }
.mark > span { position: relative; z-index: 1; }
.mark::after {
  content: ""; position: absolute; left: -5px; right: -5px; top: 5%; bottom: 10%;
  background: var(--yellow); z-index: 0;
  transform: rotate(-1.2deg); border-radius: 5px;
}
.mark.green::after  { background: var(--green); }
.mark.pink::after   { background: var(--pink); opacity:.9; }
.mark.blue::after   { background: var(--blue); opacity:.85; }
.mark.orange::after { background: var(--orange); }

/* Outline / spray text */
.spray {
  color: transparent;
  -webkit-text-stroke: 2.4px var(--ink);
  text-shadow: 5px 5px 0 var(--pink);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  display: inline-flex; align-items: center; justify-content:center; gap: 10px;
  font-family: var(--head); font-weight: 800; letter-spacing: .01em;
  font-size: 18px;
  padding: 18px 30px; border-radius: 999px;
  background: var(--bg); color: #fff; border: 2px solid var(--ink);
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s;
  box-shadow: 4px 5px 0 rgba(20,22,26,.9);
  min-height: 58px;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 9px 0 rgba(20,22,26,.9); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(20,22,26,.9); }
.btn.green  { --bg: var(--green); color: var(--ink); }
.btn.orange { --bg: var(--orange); }
.btn.blue   { --bg: var(--blue); }
.btn.pink   { --bg: var(--pink); }
.btn.purple { --bg: var(--purple); }
.btn.ghost {
  background: #fff; color: var(--ink); box-shadow: 4px 5px 0 rgba(20,22,26,.18);
}
.btn.ghost:hover { box-shadow: 7px 9px 0 rgba(20,22,26,.2); }
.btn.lg { font-size: 21px; padding: 22px 38px; min-height: 66px; }
.btn.block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  backdrop-filter: saturate(170%) blur(18px);
  border-bottom: 2px solid var(--ink);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--head); font-weight: 900; font-size: 23px; letter-spacing: -.01em; }
.brand .logo { width: 40px; height: 40px; flex: 0 0 auto; }
.brand b { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--head); font-weight: 700; font-size: 16px;
  padding: 10px 16px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--paper); }
.nav-links a.active { background: var(--ink); color: #fff; }
.nav-cta { margin-left: 6px; }
.burger { display: none; background: none; border: 2px solid var(--ink); border-radius: 12px; width: 48px; height: 44px; cursor: pointer; align-items:center; justify-content:center; }
.burger span, .burger span::before, .burger span::after {
  content:""; display:block; width: 22px; height: 2.6px; background: var(--ink); border-radius: 3px; position: relative; transition: .25s;
}
.burger span::before { position:absolute; top:-7px; } .burger span::after { position:absolute; top:7px; }
.burger.open span { background: transparent; }
.burger.open span::before { top:0; transform: rotate(45deg); }
.burger.open span::after  { top:0; transform: rotate(-45deg); }

/* ---------- Sections ---------- */
section { position: relative; }
.pad { padding: 96px 0; }
.pad-sm { padding: 64px 0; }
.center { text-align: center; }
.tagchip {
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing:.08em;
  font-size: 13px; padding: 9px 16px; border-radius: 999px; border: 2px solid var(--ink);
  background: #fff; box-shadow: 3px 3px 0 rgba(20,22,26,.9);
}

/* Floating graffiti accent words */
.accent-word {
  position: absolute; font-family: var(--display); text-transform: uppercase;
  -webkit-text-stroke: 2px var(--ink); color: transparent;
  font-size: clamp(26px, 5vw, 64px); pointer-events: none; z-index: 2; opacity:.9;
}
.accent-word.fill { -webkit-text-stroke: 0; }

/* Doodle helpers */
.doodle { position: absolute; pointer-events: none; z-index: 1; }
.spin-slow { animation: spin 14s linear infinite; }
.float { animation: floaty 5s ease-in-out infinite; }
.float-2 { animation: floaty 6.5s ease-in-out infinite; }
.wiggle { animation: wiggle 4s ease-in-out infinite; }

@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes wiggle { 0%,100%{transform:rotate(-5deg)} 50%{transform:rotate(5deg)} }
@keyframes dashdraw { to { stroke-dashoffset: 0; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

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

/* ---------- Hero ---------- */
.hero { padding: 70px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 15px; color: var(--ink-2); margin-top: 16px; font-weight: 600; }
.hero-art { position: relative; display:flex; justify-content:center; }

/* Confetti dots background */
.dot { position:absolute; border-radius:50%; z-index:0; }

/* ---------- Phone mockup ---------- */
.phone {
  position: relative; width: 300px; aspect-ratio: 300/620;
  background: var(--ink); border-radius: 46px; padding: 13px;
  box-shadow: var(--shadow-lg); border: 2px solid var(--ink);
}
.phone::before { /* notch */
  content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width: 110px; height: 26px; background: var(--ink); border-radius: 0 0 16px 16px; z-index: 3;
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--paper); position: relative; display:flex; flex-direction:column;
}
.tilt-l { transform: rotate(-7deg); } .tilt-r { transform: rotate(7deg); }
.tilt-l2 { transform: rotate(-4deg); }

/* App screen UI bits */
.app-top { padding: 30px 18px 14px; color:#fff; }
.app-top.green { background: var(--green); color: var(--ink); }
.app-top.blue  { background: var(--blue); }
.app-top.purple{ background: var(--purple); }
.app-top.orange{ background: var(--orange); }
.app-kpi { font-family: var(--display); font-size: 46px; line-height:1; }
.app-label { font-family: var(--head); font-weight:800; text-transform:uppercase; letter-spacing:.1em; font-size:11px; opacity:.85; }
.app-body { padding: 14px; display:flex; flex-direction:column; gap:10px; flex:1; }
.app-row {
  background:#fff; border:1.5px solid var(--line); border-radius:14px; padding:11px 12px;
  display:flex; align-items:center; gap:10px; font-size:13px; box-shadow: var(--shadow-sm);
}
.app-row .ic { width:34px; height:34px; border-radius:10px; flex:0 0 auto; display:flex; align-items:center; justify-content:center; }
.app-row .t { font-family: var(--head); font-weight:800; font-size:13.5px; }
.app-row .s { font-size:11.5px; color: var(--ink-2); }
.app-row .amt { margin-left:auto; font-family: var(--head); font-weight:900; }
.pill { font-family:var(--head); font-weight:800; font-size:10px; text-transform:uppercase; letter-spacing:.06em; padding:4px 9px; border-radius:999px; }

/* ---------- Logo strip ---------- */
.strip { border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); background: var(--ink); color:#fff; overflow:hidden; }
.marquee { display:flex; gap:48px; white-space:nowrap; animation: scrollx 22s linear infinite; padding: 16px 0; }
.marquee span { font-family: var(--display); text-transform:uppercase; font-size: 26px; letter-spacing:.04em; display:inline-flex; align-items:center; gap: 18px; }
.marquee .star { color: var(--yellow); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat { border:2px solid var(--ink); border-radius: var(--radius); padding: 28px; box-shadow: 6px 7px 0 var(--ink); background:rgba(255,255,255,.80); -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%); }
.stat .n { font-family: var(--display); font-size: clamp(40px,6vw,64px); line-height:.9; }
.stat .l { font-family: var(--head); font-weight:700; color: var(--ink-2); margin-top:6px; }
.stat.green { background: var(--green); } .stat.green .l{color:var(--ink)}
.stat.yellow { background: var(--yellow); } .stat.yellow .l{color:var(--ink)}
.stat.pink { background: var(--pink); color:#fff; } .stat.pink .l{color:rgba(255,255,255,.9)}

/* ---------- Feature cards ---------- */
.cards { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.card {
  position: relative;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border:2px solid var(--ink); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: 8px 9px 0 var(--ink); transition: transform .18s ease, box-shadow .18s ease;
  overflow:hidden;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: 12px 14px 0 var(--ink); }
.card .badge {
  width: 64px; height: 64px; border-radius: 18px; display:flex; align-items:center; justify-content:center;
  border:2px solid var(--ink); margin-bottom: 20px; box-shadow: 3px 3px 0 var(--ink);
}
.card h3 { font-family: var(--display); text-transform:uppercase; font-size: 30px; margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 16.5px; margin: 0; }
.card .tag { position:absolute; top:18px; right:-2px; }
.card.feat { grid-column: span 1; }
.card .corner { position:absolute; right:-30px; bottom:-30px; opacity:.10; }

.mini-cards { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.mini {
  border:2px solid var(--ink); border-radius: var(--radius); padding: 24px;
  background: rgba(255,255,255,.80);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 5px 6px 0 var(--ink);
}
.mini h4 { font-family: var(--head); font-weight:900; font-size:20px; margin:0 0 6px; text-transform:uppercase; letter-spacing:.01em; }
.mini p { margin:0; font-size:15px; color:var(--ink-2); }
.mini .badge { width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center;border:2px solid var(--ink);margin-bottom:16px; }

/* ---------- Steps ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: s; }
.step { position:relative; padding-top: 14px; }
.step .num { font-family: var(--display); font-size: 70px; line-height:.8; color: var(--green); -webkit-text-stroke:2px var(--ink); }
.step h4 { font-family:var(--head); font-weight:900; font-size:22px; margin:10px 0 6px; text-transform:uppercase; }
.step p { color: var(--ink-2); margin:0; font-size:16px; }

/* ---------- Pricing ---------- */
.prices { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.price {
  position: relative;
  background: rgba(255,255,255,.80);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border:2px solid var(--ink); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: 8px 9px 0 var(--ink); display:flex; flex-direction:column;
}
.price .plan { font-family: var(--head); font-weight:900; text-transform:uppercase; letter-spacing:.06em; font-size:15px; color: var(--ink-2); }
.price .amt { font-family: var(--display); font-size: 72px; line-height:.85; margin: 14px 0 2px; }
.price .amt small { font-size: 20px; font-family: var(--head); color: var(--ink-2); -webkit-text-stroke:0; }
.price .blurb { font-size: 15.5px; color: var(--ink-2); margin: 4px 0 22px; }
.price ul { list-style:none; margin:0 0 28px; padding:0; display:flex; flex-direction:column; gap:12px; }
.price li { display:flex; gap:11px; align-items:flex-start; font-size:15.5px; }
.price li .ck { flex:0 0 auto; margin-top:2px; }
.price .btn { margin-top:auto; }
.price.feature {
  background: var(--ink); color:#fff; transform: scale(1.04); box-shadow: 10px 12px 0 var(--green); z-index:2;
}
.price.feature .plan { color: var(--green); }
.price.feature .blurb, .price.feature li { color: rgba(255,255,255,.85); }
.price .ribbon {
  position:absolute; top:-16px; left:50%; transform:translateX(-50%);
  background: var(--green); color: var(--ink); border:2px solid var(--ink);
  font-family:var(--head); font-weight:900; text-transform:uppercase; letter-spacing:.08em;
  font-size:12px; padding:8px 18px; border-radius:999px; box-shadow:3px 3px 0 var(--ink); white-space:nowrap;
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap:14px; }
.q { border:2px solid var(--ink); border-radius: var(--radius); background:rgba(255,255,255,.82); -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%); box-shadow:5px 6px 0 var(--ink); overflow:hidden; }
.q summary { cursor:pointer; list-style:none; padding:20px 24px; font-family:var(--head); font-weight:900; font-size:19px; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.q summary::-webkit-details-marker { display:none; }
.q summary .pm { font-size:26px; line-height:1; transition: transform .2s; }
.q[open] summary .pm { transform: rotate(45deg); }
.q p { margin:0; padding: 0 24px 22px; color: var(--ink-2); font-size:16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); overflow:hidden; }
.cta-band .h-section { color: var(--ink); }

/* ---------- Form ---------- */
.form-wrap { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.form-card {
  background:rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border:2px solid var(--ink); border-radius: var(--radius-lg);
  padding: 38px; box-shadow: 10px 12px 0 var(--ink);
}
.field { margin-bottom: 18px; }
.field label { display:block; font-family:var(--head); font-weight:800; font-size:14px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; }
.field input {
  width:100%; font-family: var(--body); font-size:17px; padding:16px 16px;
  border:2px solid var(--ink); border-radius:14px; background: var(--paper); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus { outline:none; background:#fff; box-shadow: 4px 4px 0 var(--green); }
.field .err { color: var(--pink); font-weight:700; font-size:13.5px; margin-top:6px; display:none; }
.field.bad input { border-color: var(--pink); }
.field.bad .err { display:block; }
.form-foot { font-size:13.5px; color: var(--ink-2); margin-top:14px; text-align:center; }
.form-ok {
  display:none; background: var(--green); border:2px solid var(--ink); border-radius:16px;
  padding:16px 18px; font-family:var(--head); font-weight:800; margin-bottom:20px; box-shadow:4px 4px 0 var(--ink);
}
.bullet-list { list-style:none; padding:0; margin:24px 0 0; display:flex; flex-direction:column; gap:16px; }
.bullet-list li { display:flex; gap:14px; align-items:flex-start; font-size:17px; }
.bullet-list .ic { flex:0 0 auto; width:42px; height:42px; border-radius:12px; border:2px solid var(--ink); display:flex; align-items:center; justify-content:center; box-shadow:3px 3px 0 var(--ink); }

/* ---------- Footer ---------- */
.footer { background: rgba(18,20,24,.86); -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%); color:#fff; padding: 60px 0 34px; border-top: 2px solid var(--ink); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { color:#fff; margin-bottom:14px; }
.footer p { color: rgba(255,255,255,.6); font-size:15px; }
.footer h5 { font-family:var(--head); font-weight:900; text-transform:uppercase; letter-spacing:.06em; font-size:14px; margin:0 0 16px; color: var(--green); }
.footer ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer ul a { color: rgba(255,255,255,.78); font-size:15px; }
.footer ul a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.14); margin-top:42px; padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; color:rgba(255,255,255,.55); font-size:14px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .form-wrap { grid-template-columns: 1fr; }
  .hero-art { margin-top: 30px; }
  .cards, .prices, .steps, .mini-cards, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price.feature { transform:none; }
  .nav-links { display:none; }
  .burger { display:flex; }
  .nav-links.show {
    display:flex; flex-direction:column; align-items:stretch; gap:8px;
    position:absolute; top:76px; left:0; right:0; background:#fff; border-bottom:2px solid var(--ink);
    padding: 16px 24px 22px; box-shadow: var(--shadow);
  }
  .nav-links.show a { font-size:18px; padding:13px 16px; }
  .nav-links.show .nav-cta { margin: 6px 0 0; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .pad { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone { width: 250px; }
  .stat { box-shadow: 4px 5px 0 var(--ink); }
  .accent-word { display:none; }
}

/* MOW MORE hero tag (foreground, sits in open white space) */
.mow-accent {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: .9;
  letter-spacing: .03em;
  color: var(--green);
  -webkit-text-stroke: 2.5px var(--ink);
  paint-order: stroke fill;
  transform: rotate(-3deg);
  text-shadow: 3px 4px 0 rgba(20,22,26,.9), 0 0 14px rgba(255,255,255,.92), 0 0 14px rgba(255,255,255,.92);
}

/* Brand: bold graffiti text on a patch of grass (header + footer, matched) */
.brand { gap: 0; position: relative; padding-bottom: 14px; line-height: 1; }
.brand span {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: .5px;
  color: var(--green);
  -webkit-text-stroke: 1.4px var(--ink);
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(20,22,26,.92);
  transform: rotate(-1.5deg);
  transform-origin: left center;
}
.brand b { color: #fff; }
.brand::after {
  content: ""; position: absolute; left: -3px; right: -6px; bottom: 0; height: 14px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 20'><g fill='none' stroke-linecap='round'><g stroke='%2314161A' stroke-width='4'><path d='M6 20 Q2 9 0 3'/><path d='M10 20 Q10 7 9 1'/><path d='M14 20 Q18 9 21 3'/><path d='M22 20 Q22 8 21 2'/><path d='M26 20 Q29 10 32 4'/></g><g stroke='%2300D26A' stroke-width='2.4'><path d='M6 20 Q2 9 0 3'/><path d='M10 20 Q10 7 9 1'/><path d='M14 20 Q18 9 21 3'/><path d='M22 20 Q22 8 21 2'/><path d='M26 20 Q29 10 32 4'/></g></g></svg>") repeat-x left bottom;
  background-size: auto 14px;
}

/* Hero headline spacing so highlight bars never reach the next line */
.hero h1.display { line-height: 1.06; }

/* Feature mini-cards: solid dark, high-contrast body text */
.mini p { color: var(--ink); }
.mini h4 { color: var(--ink); }

/* =====================================================================
   CART + CHECKOUT
   ===================================================================== */

/* Nav cart button (injected by cart.js) */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 800; font-size: 15px;
  padding: 10px 16px; border-radius: 999px; border: 2px solid var(--ink);
  background: #fff; cursor: pointer; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease; margin-left: 6px; line-height: 1;
}
.cart-btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-badge {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: var(--pink); color: #fff; border: 2px solid var(--ink);
  font-family: var(--head); font-weight: 900; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-badge.empty { display: none; }

/* Overlay + drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,22,26,.45);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; z-index: 90;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%);
  border-left: 2px solid var(--ink); box-shadow: -24px 0 60px rgba(20,22,26,.25);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.8,.2,1);
  z-index: 95; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 2px solid var(--ink);
}
.cart-head h3 { font-family: var(--display); text-transform: uppercase; font-size: 30px; }
.cart-close {
  width: 42px; height: 42px; border-radius: 12px; border: 2px solid var(--ink);
  background: #fff; cursor: pointer; font-size: 22px; line-height: 1; box-shadow: 3px 3px 0 var(--ink);
}
.cart-close:hover { background: var(--paper); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { text-align: center; color: var(--ink-2); margin: 40px 0; font-weight: 600; }
.cart-line {
  display: flex; align-items: flex-start; gap: 12px;
  border: 2px solid var(--ink); border-radius: 16px; background: #fff;
  padding: 14px 16px; box-shadow: 3px 3px 0 var(--ink);
}
.cart-line .ci-main { flex: 1; }
.cart-line .ci-name { font-family: var(--head); font-weight: 900; font-size: 16px; }
.cart-line .ci-tag {
  display: inline-block; margin-top: 4px; font-family: var(--head); font-weight: 800;
  font-size: 10px; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 999px; border: 2px solid var(--ink);
}
.cart-line .ci-tag.plan { background: var(--green); }
.cart-line .ci-tag.addon { background: var(--yellow); }
.cart-line .ci-price { font-family: var(--head); font-weight: 900; white-space: nowrap; }
.cart-line .ci-rm {
  background: none; border: none; cursor: pointer; color: var(--pink);
  font-family: var(--head); font-weight: 800; font-size: 12px; padding: 4px 0 0; text-decoration: underline;
}
.cart-note {
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 14px;
  padding: 12px 14px; font-size: 13.5px; font-weight: 600; box-shadow: 3px 3px 0 var(--ink);
}
.cart-foot { border-top: 2px solid var(--ink); padding: 20px 24px; background: rgba(255,255,255,.6); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total-row .lbl { font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 14px; }
.cart-total-row .val { font-family: var(--display); font-size: 40px; line-height: 1; }
.cart-total-row .val small { font-size: 16px; font-family: var(--head); color: var(--ink-2); }

/* Add-on cards */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.addon {
  position: relative; display: flex; flex-direction: column;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: rgba(255,255,255,.80);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 6px 7px 0 var(--ink); padding: 24px;
}
.addon .a-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.addon h4 { font-family: var(--head); font-weight: 900; font-size: 19px; text-transform: uppercase; margin: 0; }
.addon .a-price { font-family: var(--display); font-size: 30px; line-height: 1; white-space: nowrap; }
.addon .a-price small { font-size: 14px; font-family: var(--head); color: var(--ink-2); }
.addon p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 18px; }
.addon .btn { margin-top: auto; }
.addon-state {
  font-family: var(--head); font-weight: 800; font-size: 13px; text-align: center;
  padding: 14px; border-radius: 999px; border: 2px dashed var(--ink-2); color: var(--ink-2); margin-top: auto;
}
.btn.added { background: var(--ink); color: #fff; }
.btn:disabled { opacity: 1; cursor: not-allowed; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.order-summary .os-line { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.order-summary .os-line:last-of-type { border-bottom: none; }
.order-summary .os-name { font-family: var(--head); font-weight: 800; }
.order-summary .os-sub { font-size: 12.5px; color: var(--ink-2); }
.order-summary .os-price { font-family: var(--head); font-weight: 900; white-space: nowrap; }
.order-summary .os-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--ink); }
.order-summary .os-total .val { font-family: var(--display); font-size: 44px; line-height: 1; }
.order-summary .os-total .val small { font-size: 16px; font-family: var(--head); color: var(--ink-2); }
.pay-note {
  background: var(--blue); color: #fff; border: 2px solid var(--ink); border-radius: 16px;
  padding: 14px 16px; font-weight: 600; font-size: 14.5px; box-shadow: 4px 4px 0 var(--ink); margin: 4px 0 22px;
}

@media (max-width: 940px) {
  .addons { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { order: -1; }
}
@media (max-width: 560px) {
  .cart-btn span.lbl-txt { display: none; }
  .cart-head h3 { font-size: 26px; }
}
