/* ==================================================
   GOODE DIGITALS — Neon Editorial (light-dominant)
   White/grey base · #CBFE00 pop · black is text only
   ================================================== */

:root {
  --bg: #EFEFED;           /* page background — off white, never pure */
  --paper: #FFFFFF;        /* cards / surfaces */
  --ink: #212121;          /* text + dark accent blocks */
  --grey: #6E6E6E;         /* secondary text */
  --grey-soft: #B2B2B2;    /* soft contrast, backdrops */
  --lime: #CBFE00;         /* THE pop */
  --border: rgba(33, 33, 33, 0.1);
  --shadow: 0 14px 34px rgba(33, 33, 33, 0.07);
  --radius: 18px;
  --font-display: "Archivo Black", sans-serif;
  --font-serif: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

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

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

body {
  background-color: var(--bg);
  /* two soft lime glows — editorial, airy, no grid */
  background-image:
    radial-gradient(750px 750px at 88% -8%, rgba(203, 254, 0, 0.28), transparent 62%),
    radial-gradient(900px 900px at -12% 55%, rgba(203, 254, 0, 0.16), transparent 62%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* whisper of film grain so the light background isn't flat */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
h3 { font-size: 1.15rem; }

.serif-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "✦"; font-size: 0.9em; }

.muted { color: var(--grey); }

/* lime highlighter swipe */
.hl {
  background: var(--lime);
  color: var(--ink);
  padding: 0 0.14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- logo lockup (GD monogram + wordmark) ---------- */

.logo { display: inline-flex; align-items: center; gap: 11px; }

.logo .mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: -0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo .word {
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo .word em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  background: var(--lime);
  padding: 0 5px;
  margin-left: 2px;
}

/* big standalone monogram badge (hero sticker, thanks page) */
.monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.btn-lime, .nav-links a.btn-lime:hover { color: var(--ink); }
.nav-links a.btn-ghost, .nav-links a.btn-ghost:hover { color: var(--ink); }

/* mobile hamburger menu */
.menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-menu { display: none; border-top: 1px solid var(--border); padding: 6px 24px 14px; }
.nav.open .mobile-menu { display: grid; }
.mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 620px) {
  .menu-btn { display: flex; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s, color 0.2s;
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}
.btn-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(163, 205, 0, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper) !important; }

.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 104px 0 88px;
  overflow: hidden;
}

.hero h1 { max-width: 15ch; }

.hero .lede {
  max-width: 560px;
  margin: 26px 0 38px;
  font-size: 1.13rem;
  color: var(--grey);
}
.hero .lede strong { color: var(--ink); }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero .monogram {
  position: absolute;
  top: 108px;
  right: 24px;
  transform: rotate(8deg);
}

/* ---------- marquee strip ---------- */

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.strip-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.strip span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-soft);
  margin-right: 18px;
}
.strip span::after { content: "✦"; color: var(--ink); margin-left: 18px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- sections ---------- */

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head p { margin-top: 16px; color: var(--grey); }

/* ---------- stats bar ---------- */

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

.stat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.stat b {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  background: var(--lime);
  padding: 0 10px;
  margin-bottom: 10px;
}
.stat small { color: var(--grey); font-size: 0.9rem; line-height: 1.4; display: block; }

/* ---------- cards / grids ---------- */

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

.card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(33, 33, 33, 0.35); transform: translateY(-3px); }

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 0.96rem; }

.card .more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.card:hover .more { text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 3px; }

/* ---------- how it works ---------- */

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

.step {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  background: var(--lime);
  padding: 0 8px;
  display: inline-block;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 0.95rem; }

/* ---------- packages ---------- */

.pkg {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow);
}

.pkg.featured {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  position: relative;
}

.pkg .tag {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.pkg .pkg-name {
  align-self: flex-start;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--lime);
  padding: 0 7px;
  margin-bottom: 8px;
}

.pkg h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 8px; }

.pkg .pkg-price { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin: 4px 0 10px; }
.pkg .pkg-price em { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 0.5em; color: var(--grey); }
.pkg .pkg-price small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-top: 7px; }

.pkg .pkg-setup { font-size: 0.82rem; font-weight: 600; color: var(--grey); margin: 0 0 12px; }
.pkg .pkg-setup .hl { font-weight: 800; }

/* founding client offer banner */
.offer {
  background: var(--lime);
  border-radius: 14px;
  padding: 16px 26px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 0.98rem;
}
.offer b { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.06em; margin-right: 8px; }

/* price comparison callout (dark accent strip) */
.callout {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 34px 38px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.callout .side small { display: block; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.callout .side .num { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.15; }
.callout .side.them .num { color: rgba(255,255,255,0.55); text-decoration: line-through; text-decoration-color: var(--lime); text-decoration-thickness: 3px; }
.callout .side.us .num { color: var(--lime); }
.callout .side p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

@media (max-width: 700px) {
  .callout { grid-template-columns: 1fr; gap: 24px; }
}
.pkg .pkg-for { color: var(--grey); font-size: 0.94rem; margin-bottom: 24px; }

.pkg ul { list-style: none; margin-bottom: 30px; flex: 1; }
.pkg li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: #3d3d3d;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
}
.pkg li::before { content: "✦"; position: absolute; left: 4px; color: var(--ink); font-size: 0.8em; top: 12px; }

/* ---------- deliverables "shop" (work page) ---------- */

.shop-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.shop-card:hover { border-color: rgba(33, 33, 33, 0.35); transform: translateY(-3px); }

/* grey backdrop + lime glow — the brand-kit photo treatment */
.mock {
  background:
    radial-gradient(300px 210px at 50% 60%, rgba(203, 254, 0, 0.55), transparent 72%),
    linear-gradient(160deg, #D9D9D6, #C4C4C1);
  border-bottom: 1px solid var(--border);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
}

.shop-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.shop-body h3 { margin-bottom: 8px; }
.shop-body p { color: var(--grey); font-size: 0.93rem; flex: 1; }

/* price-tag style chip — "included in" */
.tag-in {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(203, 254, 0, 0.45);
  border: 1px dashed rgba(33, 33, 33, 0.45);
  border-radius: 6px;
  padding: 5px 11px;
  margin-bottom: 14px;
}
.tag-in::before { content: "✦"; font-size: 0.85em; }

.shop-body .want {
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.shop-body .want:hover { text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 3px; }

/* skeleton text bars still used inside some mockups */
.bar { height: 8px; border-radius: 99px; background: rgba(33, 33, 33, 0.22); }
.bar.dim { background: rgba(33, 33, 33, 0.1); }
.bar.lime { background: var(--lime); }

/* phone / reel mockup */
.m-phone {
  width: 176px;
  aspect-ratio: 9 / 17;
  background: linear-gradient(160deg, #4a4a4a 0%, #2b2b2b 55%, #1e1e1e 100%);
  border: 6px solid #141414;
  border-radius: 26px;
  box-shadow: 0 20px 44px rgba(33, 33, 33, 0.35);
  position: relative;
  overflow: hidden;
  color: #fff;
}
#demo-reel { cursor: pointer; }

/* real video — fades in over the demo when assets/reel.mp4 exists and is playing */
.m-phone .reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.m-phone.has-video.playing .reel-video { opacity: 1; }
/* with a real video, hide the fake caption so it doesn't cover her footage */
.m-phone.has-video.playing .cap, .m-phone.has-video.playing .acts { opacity: 0; transition: opacity 0.4s; }

/* fake "footage" that fades in and drifts while playing */
.m-phone .reel-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  background:
    radial-gradient(140px 140px at 70% 30%, rgba(203, 254, 0, 0.45), transparent 70%),
    linear-gradient(120deg, #2b2b2b 0%, #55651a 30%, #232323 55%, #4a4a4a 80%, #2b2b2b 100%);
  background-size: 320% 320%;
}
.m-phone.playing .reel-bg {
  opacity: 1;
  animation: reelpan 5.5s ease-in-out infinite;
}
@keyframes reelpan {
  0%   { background-position: 0% 40%; }
  50%  { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}

.m-phone .user {
  position: absolute;
  top: 14px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
}
.m-phone .user i { width: 16px; height: 16px; border-radius: 50%; background: var(--lime); display: block; }
.m-phone .play {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(203, 254, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.3s, transform 0.3s;
}
.m-phone.playing .play { opacity: 0; transform: translate(-50%, -50%) scale(1.4); }
.m-phone .play::after {
  content: "";
  border-left: 13px solid #161616;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.m-phone .cap {
  position: absolute;
  left: 12px;
  right: 40px;
  bottom: 18px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
.m-phone .cap small { display: block; margin-top: 5px; font-size: 0.56rem; font-weight: 400; color: rgba(255, 255, 255, 0.65); }
.m-phone .acts { position: absolute; right: 10px; bottom: 20px; display: grid; gap: 9px; justify-items: center; font-size: 0.62rem; z-index: 2; }
.m-phone .acts span { display: block; line-height: 1; }

/* reel progress bar */
.m-phone .prog {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  z-index: 2;
}
.m-phone .prog i { display: block; height: 100%; width: 0; background: var(--lime); }
.m-phone.playing .prog i { animation: fillbar 8.8s linear infinite; }
@keyframes fillbar { from { width: 0; } to { width: 100%; } }

/* instagram-style feed grid */
.m-feed {
  width: 100%;
  max-width: 280px;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 44px rgba(33, 33, 33, 0.28);
}
.m-feed .head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.m-feed .head .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.62rem; color: var(--ink);
}
.m-feed .head b { display: block; font-size: 0.78rem; line-height: 1.2; }
.m-feed .head small { color: var(--grey); font-size: 0.66rem; }
.m-feed .tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.m-feed .tiles i {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  padding: 4px;
  text-transform: uppercase;
}
.m-feed .tiles i.t-lime { background: var(--lime); color: var(--ink); font-family: var(--font-display); font-size: 0.6rem; }
.m-feed .tiles i.t-dark { background: linear-gradient(135deg, #383838, #222); color: var(--lime); }
.m-feed .tiles i.t-quote { background: linear-gradient(135deg, #e2e2e0, #bfbfbc); color: var(--ink); font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 0.58rem; text-transform: none; }
.m-feed .tiles i.photo { background-size: cover; background-position: center; }

/* mini browser / website mockup */
.m-browser {
  width: 100%;
  max-width: 320px;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(33, 33, 33, 0.28);
}
.m-browser .chrome { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid rgba(33, 33, 33, 0.08); }
.m-browser .chrome i { width: 9px; height: 9px; border-radius: 50%; background: rgba(33, 33, 33, 0.15); display: block; }
.m-browser .chrome i:first-child { background: var(--lime); }
.m-browser .chrome .url { margin-left: 8px; font-size: 0.6rem; color: var(--grey); letter-spacing: 0.03em; }
.m-browser .page { padding: 16px; }
.m-browser .page .mini-nav { display: flex; justify-content: space-between; align-items: center; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.m-browser .page .mini-nav span { color: var(--grey); font-weight: 500; }
.m-browser .page .headline { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.15; text-transform: uppercase; }
.m-browser .page .headline em { font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: none; background: var(--lime); padding: 0 4px; }
.m-browser .page .sub { font-size: 0.62rem; color: var(--grey); margin: 8px 0 10px; line-height: 1.45; }
.m-browser .page .cta-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 99px;
}
.m-browser .page .img {
  height: 64px;
  border-radius: 8px;
  background:
    radial-gradient(110px 60px at 65% 40%, rgba(203, 254, 0, 0.6), transparent 70%),
    linear-gradient(135deg, #d5d5d2, #b0b0ad);
  margin-top: 12px;
}

/* google review mockup */
.m-review {
  width: 100%;
  max-width: 290px;
  background: var(--paper);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 20px 44px rgba(33, 33, 33, 0.28);
}
.m-review .row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.m-review .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.m-review .row b { display: block; font-size: 0.8rem; line-height: 1.2; }
.m-review .row small { color: var(--grey); font-size: 0.66rem; }
.m-review .stars { color: #9DBF00; letter-spacing: 3px; font-size: 0.95rem; }
.m-review .text { font-size: 0.76rem; color: #3d3d3d; line-height: 1.5; margin-top: 8px; }
.m-review .reply {
  margin-top: 13px;
  border-left: 3px solid var(--lime);
  padding: 6px 0 6px 12px;
}
.m-review .reply small { display: block; color: var(--grey); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.m-review .reply p { font-size: 0.72rem; color: #3d3d3d; line-height: 1.45; }

/* sms / missed-call text-back mockup */
.m-sms { width: 100%; max-width: 270px; display: grid; gap: 10px; }
.m-sms .bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 85%;
}
.m-sms .in { background: var(--paper); color: #3d3d3d; box-shadow: 0 8px 22px rgba(33, 33, 33, 0.15); border-bottom-left-radius: 4px; justify-self: start; }
.m-sms .out { background: var(--ink); color: var(--lime); font-weight: 600; border-bottom-right-radius: 4px; justify-self: end; }
.m-sms .meta { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); text-align: center; }

/* email campaign mockup */
.m-email {
  width: 100%;
  max-width: 300px;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(33, 33, 33, 0.28);
}
.m-email .subj { padding: 14px 16px; border-bottom: 1px solid rgba(33, 33, 33, 0.08); display: flex; align-items: center; gap: 10px; }
.m-email .subj .dot { width: 8px; height: 8px; border-radius: 50%; background: #9DBF00; flex-shrink: 0; }
.m-email .subj b { font-size: 0.8rem; font-weight: 700; }
.m-email .body { padding: 16px; }
.m-email .body p { font-size: 0.74rem; color: #3d3d3d; line-height: 1.55; }
.m-email .body .cta-pill {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 99px;
  margin-top: 12px;
}

/* ai voice call demo */
.m-callui {
  width: 100%;
  max-width: 280px;
  background: var(--paper);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 20px 44px rgba(33, 33, 33, 0.28);
  text-align: center;
}
.m-callui .cav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.m-callui b { display: block; font-size: 0.92rem; }
.m-callui > small { display: block; color: var(--grey); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.m-callui .wave { display: flex; gap: 3px; height: 30px; align-items: center; justify-content: center; margin: 16px 0 14px; }
.m-callui .wave i { display: block; width: 3px; height: 5px; border-radius: 99px; background: rgba(33, 33, 33, 0.25); }
.m-callui.playing .wave i { background: #9DBF00; animation: wv 0.7s ease-in-out infinite alternate; }
.m-callui .wave i:nth-child(2n) { animation-delay: 0.15s; }
.m-callui .wave i:nth-child(3n) { animation-delay: 0.3s; }
.m-callui .wave i:nth-child(5n) { animation-delay: 0.45s; }
@keyframes wv { from { height: 5px; } to { height: 26px; } }
.m-callui .play-call {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 0.15s;
}
.m-callui .play-call:hover { transform: scale(1.08); }
.m-callui .dur { display: block; color: var(--grey); font-size: 0.72rem; margin-top: 10px; }

/* ---------- founder teaser (homepage) ---------- */

.founder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px;
  box-shadow: var(--shadow);
}
.founder .about-photo img { aspect-ratio: 4 / 5; object-fit: cover; }
.founder p { color: var(--grey); margin: 18px 0 26px; max-width: 54ch; }
.founder p strong { color: var(--ink); }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-photo { position: relative; max-width: 400px; }
.about-photo::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(203, 254, 0, 0.55) 0%, transparent 65%);
  z-index: 0;
}
.about-photo img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(1.05);
}

.about-copy p { color: var(--grey); margin-bottom: 18px; }
.about-copy p strong { color: var(--ink); }

/* ---------- pricing block (service pages) ---------- */

.price-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--lime);
  padding: 40px 36px;
  max-width: 560px;
}
.price-card .from {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
}
.price-card .amount em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.45em;
  color: var(--grey);
}
.price-card .note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--grey);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ---------- big CTA (dark accent block — the one place black wins) ---------- */

.cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 254, 0, 0.35), transparent 68%);
  pointer-events: none;
}
.cta h2 { color: var(--paper); position: relative; }
.cta h2 .serif-line { color: var(--lime); }
.cta p { max-width: 520px; margin: 18px auto 34px; color: rgba(255, 255, 255, 0.72); font-weight: 400; position: relative; }
.cta .btn { background: var(--lime); color: var(--ink); position: relative; }
.cta .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45); }

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

input, textarea, select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--ink); box-shadow: 3px 3px 0 var(--lime); }
textarea { min-height: 130px; resize: vertical; }

/* ---------- footer (dark accent) ---------- */

footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 40px;
  margin-top: 40px;
}

footer .logo .word em { color: var(--ink); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-inner .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.footer-links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; }
.footer-links a:hover { color: var(--lime); }
.footer-links .footer-sep { color: rgba(255, 255, 255, 0.25); }
.footer-links a.soc { color: var(--lime); font-weight: 600; }
.footer-links a.soc:hover { color: var(--paper); }

.copyright { margin-top: 40px; color: rgba(255, 255, 255, 0.35); font-size: 0.85rem; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .nav-links { gap: 20px; }
  .nav-links a.btn-ghost { display: none; }
}

@media (max-width: 900px) {
  .grid-3, .steps, .stats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid .about-photo { max-width: 320px; }
  .founder { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .founder .about-photo { max-width: 300px; }
  .hero .monogram { display: none; }
}

@media (max-width: 620px) {
  .grid-3, .grid-2, .steps, .stats, .form-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links a.btn-ghost { display: none; }
  .logo .word { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 60px; }
  .cta { padding: 56px 24px; }
}
