/* =========================================================
   TopSMMSell — Design tokens
   Concept: "The Growth Kiosk" — a coin-op vending machine for
   social proof. Chunky color-blocked panels, hard offset
   shadows, thick ink outlines, and a mechanical flip-counter
   for the numbers that are the whole point of the product.
   ========================================================= */

:root{
  --paper:      #E4E7EA;   /* cool light base, not cream */
  --paper-hi:   #F4F5F3;   /* card surface, slightly lifted */
  --ink:        #15171A;   /* near-black ink for text/outlines */
  --ink-soft:   #3A3E44;
  --steel:      #6B7078;   /* muted secondary text */
  --line:       #C8CCCF;   /* hairline borders on paper */

  --yellow:     #FFC93C;   /* marquee yellow */
  --yellow-ink: #4A3600;
  --red:        #D62839;   /* coin-slot red / CTA */
  --red-ink:    #ffffff;
  --blue:       #2F5EFF;   /* electric blue accent */
  --blue-ink:   #ffffff;
  --green:      #1F8A57;   /* used sparingly: uptime / success only */

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --shadow-off: 6px 6px 0 var(--ink);
  --shadow-off-sm: 4px 4px 0 var(--ink);
  --shadow-off-lg: 10px 10px 0 var(--ink);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:400; letter-spacing:0.01em; line-height:1.05; text-transform: uppercase; }
p{ margin:0; }
button{ font-family: inherit; }

:focus-visible{
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

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

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background: var(--red); }

h1{ font-size: clamp(38px, 6vw, 74px); }
h2{ font-size: clamp(28px, 4vw, 44px); }
h3{ font-size: clamp(19px, 2.4vw, 24px); }

.lede{
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: var(--shadow-off-sm);
  white-space: nowrap;
}
.btn:hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active{ transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary{ background: var(--red); color:#fff; }
.btn-secondary{ background: var(--paper-hi); color: var(--ink); }
.btn-yellow{ background: var(--yellow); color: var(--ink); }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 18px; font-size: 14px; box-shadow: var(--shadow-off-sm); }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em; }
.brand svg{ width:34px; height:34px; }
.nav-links{ display:flex; align-items:center; gap: 26px; }
.nav-links a{ font-size:14px; font-weight:600; padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"]{ border-bottom-color: var(--red); }
.nav-actions{ display:flex; align-items:center; gap:12px; }
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .nav-links{
    position: fixed; inset: 62px 0 auto 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap:0;
    border-bottom: 2px solid var(--ink);
    transform: translateY(-120%); transition: transform .2s ease;
    padding: 8px 24px 18px;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-links a{ width:100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:42px; height:42px; border:2px solid var(--ink); border-radius: var(--radius-sm);
    background: var(--paper-hi); cursor:pointer;
  }
  .nav-cta-text{ display:none; }
}

/* ---------- Hero / Kiosk panel ---------- */
.hero{
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items:center;
}
@media (max-width: 940px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-copy h1{ margin: 16px 0; }
.hero-copy .lede{ margin-bottom: 26px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom: 26px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap: 18px; font-family: var(--font-mono); font-size:12px; color: var(--steel); letter-spacing: .04em; }
.hero-trust span{ display:inline-flex; align-items:center; gap:6px; }
.hero-trust span::before{ content:"●"; color: var(--green); font-size:9px; }

/* the kiosk panel */
.kiosk{
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-off-lg);
  padding: 26px;
  color: #fff;
}
.kiosk-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; font-family: var(--font-mono); font-size:12px; letter-spacing:.08em; color:#9aa0a8; }
.kiosk-head .lights{ display:flex; gap:6px; }
.kiosk-head .lights i{ width:9px; height:9px; border-radius:50%; display:block; background:#3a3f47; }
.kiosk-head .lights i:nth-child(1){ background: var(--red); }
.kiosk-head .lights i:nth-child(2){ background: var(--yellow); }
.kiosk-head .lights i:nth-child(3){ background: var(--green); }

.counter-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-bottom: 18px; }
.counter{ background:#1E2128; border:1px solid #303540; border-radius: var(--radius-sm); padding: 16px 10px; text-align:center; }
.counter .num{ font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: clamp(20px,3vw,28px); font-weight:700; color: var(--yellow); }
.counter .lbl{ font-size: 11px; color:#9aa0a8; margin-top:6px; letter-spacing:.03em; text-transform:uppercase; }

.kiosk-row{ display:flex; align-items:center; justify-content:space-between; background:#1E2128; border:1px solid #303540; border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom:10px; }
.kiosk-row .name{ font-size:13px; font-weight:600; }
.kiosk-row .tag{ font-family: var(--font-mono); font-size:11px; color: var(--green); background: rgba(31,138,87,.15); padding:3px 8px; border-radius:999px; }

/* ---------- Sections ---------- */
section{ padding: 56px 0; }
.section-head{ max-width: 680px; margin-bottom: 36px; }
.section-head .eyebrow{ margin-bottom: 14px; }
.section-head h2{ margin: 10px 0 12px; }

.band{ background: var(--paper-hi); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.band-ink{ background: var(--ink); color:#fff; border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); }
.band-ink .eyebrow{ background: var(--yellow); }
.band-ink .lede{ color:#c7cbd1; }

/* ---------- Grid of cards ---------- */
.grid{ display:grid; gap: 20px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--paper-hi);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-off);
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{ transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.card .icon-badge{ width:52px; height:52px; margin-bottom:16px; }
.card h3{ margin-bottom:8px; text-transform:none; }
.card p{ color: var(--ink-soft); font-size:14px; }
.card .tag-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:14px; }
.chip{ font-family: var(--font-mono); font-size:11px; border:1.5px solid var(--ink); border-radius:999px; padding:3px 10px; background:#fff; }
.chip-yellow{ background: var(--yellow); }
.chip-blue{ background: var(--blue); color:#fff; border-color: var(--blue);}

.card-flat{
  background: transparent; border: none; box-shadow:none; padding: 0;
}

/* ---------- Steps (legit sequence) ---------- */
.steps{ counter-reset: step; display:grid; gap:20px; grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr;} }
.step{ position:relative; background: var(--paper-hi); border:2px solid var(--ink); border-radius: var(--radius-md); padding: 26px 20px 20px; box-shadow: var(--shadow-off); }
.step::before{
  counter-increment: step; content: counter(step);
  position:absolute; top:-16px; left:20px;
  width:34px; height:34px; border-radius:50%;
  background: var(--red); color:#fff; border:2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-weight:700; font-size:14px;
}
.step h3{ margin: 8px 0 8px; text-transform:none; font-size:17px; }
.step p{ font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Pricing table ---------- */
.price-table{ width:100%; border-collapse: collapse; background: var(--paper-hi); border:2px solid var(--ink); border-radius: var(--radius-md); overflow:hidden; }
.price-table th, .price-table td{ padding: 14px 16px; text-align:left; border-bottom: 1px solid var(--line); font-size: 14px; }
.price-table thead th{ background: var(--ink); color:#fff; font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.05em; font-size:12px; }
.price-table tbody tr:last-child td{ border-bottom:none; }
.price-table tbody tr:hover{ background: #fff; }
.price-table td.svc{ font-weight:700; }
.price-table td.rate{ font-family: var(--font-mono); font-weight:700; color: var(--red); }
.table-wrap{ overflow-x:auto; border-radius: var(--radius-md); box-shadow: var(--shadow-off); }
.table-wrap .price-table{ box-shadow:none; }

.plan-note{ display:flex; gap:14px; align-items:flex-start; background: var(--yellow); border:2px solid var(--ink); border-radius: var(--radius-md); padding:18px 20px; margin-top:24px; font-size:14px; }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{ background: var(--paper-hi); border:2px solid var(--ink); border-radius: var(--radius-md); overflow:hidden; }
.faq-item summary{ list-style:none; cursor:pointer; padding: 18px 22px; font-weight:700; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-family: var(--font-mono); font-size:20px; flex-shrink:0; border:2px solid var(--ink); border-radius:50%; width:28px; height:28px; display:flex; align-items:center; justify-content:center; }
.faq-item[open] summary::after{ content:"–"; background: var(--yellow); }
.faq-item .faq-a{ padding: 0 22px 20px; color: var(--ink-soft); font-size:14.5px; }

/* ---------- Testimonials / quote ---------- */
.quote-card{ background: var(--paper-hi); border:2px solid var(--ink); border-radius: var(--radius-md); padding:22px; box-shadow: var(--shadow-off); }
.quote-card p.quote{ font-size:15px; margin-bottom:14px; }
.quote-who{ display:flex; align-items:center; gap:10px; font-family: var(--font-mono); font-size:12px; color: var(--steel); }
.quote-who .avatar{ width:34px; height:34px; border-radius:50%; border:2px solid var(--ink); background: var(--blue); display:flex; align-items:center; justify-content:center; color:#fff; font-family: var(--font-display); font-size:14px; }

/* ---------- CTA band ---------- */
.cta-band{ background: var(--red); color:#fff; border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); }
.cta-band h2{ color:#fff; }
.cta-band .lede{ color: #ffe4e4; }
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.cta-band .btn-secondary{ background:#fff; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color:#c7cbd1; padding: 56px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-size:19px; color:#fff; margin-bottom:12px; }
.footer-brand svg{ width:30px; height:30px; }
.site-footer p{ font-size: 13.5px; color: #9aa0a8; max-width: 34ch; }
.footer-col h4{ font-family: var(--font-mono); font-size:12px; letter-spacing:.08em; color:#fff; text-transform:uppercase; margin-bottom:14px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:#c7cbd1; }
.footer-col a:hover{ color: var(--yellow); }
.footer-bottom{ border-top:1px solid #2a2d33; padding-top:22px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#767b83; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:34px; height:34px; border:1.5px solid #3a3f47; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }
.footer-social a:hover{ border-color: var(--yellow); }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ font-family: var(--font-mono); font-size:12px; color: var(--steel); padding: 16px 0 0; }
.breadcrumb a:hover{ color: var(--red); }
.breadcrumb .sep{ margin: 0 6px; }

/* ---------- Page header (inner pages) ---------- */
.page-head{ padding: 24px 0 44px; }
.page-head .eyebrow{ margin-bottom:16px; }
.page-head h1{ margin-bottom: 14px; }

/* ---------- Prose (blog / legal) ---------- */
.prose{ max-width: 74ch; }
.prose h2{ text-transform:none; font-size: 26px; margin: 40px 0 14px; }
.prose h3{ text-transform:none; font-size: 19px; margin: 28px 0 10px; }
.prose p{ margin-bottom: 16px; color: var(--ink-soft); font-size:15.5px; }
.prose ul, .prose ol{ margin: 0 0 16px; padding-left: 22px; color: var(--ink-soft); font-size:15.5px; }
.prose li{ margin-bottom:8px; list-style: revert; }
.prose ol{ list-style: decimal; }
.prose ul{ list-style: disc; }
.prose a{ color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote{ border-left: 4px solid var(--yellow); margin: 20px 0; padding: 4px 0 4px 18px; font-style: italic; color: var(--ink); }
.prose strong{ color: var(--ink); }

.meta-row{ display:flex; gap:16px; flex-wrap:wrap; font-family: var(--font-mono); font-size:12px; color: var(--steel); margin: 18px 0 30px; }

.post-card{ display:flex; flex-direction:column; gap:10px; background: var(--paper-hi); border:2px solid var(--ink); border-radius: var(--radius-md); padding:22px; box-shadow: var(--shadow-off); }
.post-card .meta-row{ margin: 4px 0 0; }
.post-card h3{ text-transform:none; }
.post-card a.stretched{ position:relative; }
.post-card a.stretched::after{ content:""; position:absolute; inset:0; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family: var(--font-mono); font-size:12px; letter-spacing:.04em; text-transform:uppercase; margin-bottom:8px; }
.field input, .field textarea, .field select{
  width:100%; padding: 13px 14px; border: 2px solid var(--ink); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; background:#fff; color: var(--ink);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus{ outline: 3px solid var(--blue); outline-offset: 1px; }
.contact-info-card{ background: var(--ink); color:#fff; border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-off-lg); }
.contact-info-card h3{ color:#fff; text-transform:none; margin-bottom: 14px; }
.contact-info-card .row{ display:flex; gap:12px; align-items:flex-start; padding: 12px 0; border-bottom: 1px solid #2a2d33; }
.contact-info-card .row:last-child{ border-bottom:none; }
.contact-info-card svg{ width:20px; height:20px; flex-shrink:0; margin-top:2px; }
.contact-info-card .row strong{ display:block; font-size:13px; color:#9aa0a8; font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.03em; margin-bottom:3px; }

/* ---------- Utility ---------- */
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-40{ margin-top:40px; }
.text-steel{ color: var(--steel); }
.small{ font-size:13px; }
.skip-link{ position:absolute; left:-999px; top:auto; background:var(--yellow); color:var(--ink); padding:10px 16px; z-index:1000; }
.skip-link:focus{ left:16px; top:16px; }

/* Value props row */
.value-row{ display:flex; flex-wrap:wrap; gap: 26px; }
.value-item{ display:flex; gap:12px; align-items:flex-start; flex:1 1 220px; }
.value-item svg{ width:30px; height:30px; flex-shrink:0; }
.value-item h4{ text-transform:none; font-size:15.5px; margin-bottom:4px; }
.value-item p{ font-size:13.5px; color: var(--ink-soft); }
