/* ════════════════════════════════════════════════════════════
   Kluno shared design system
   Used by: index, product, how-it-works, pricing, docs, contact
   ════════════════════════════════════════════════════════════ */

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

:root {
  --bg:      #080810;
  --bg2:     #0d0d1a;
  --bg3:     #111120;
  --card:    #13131f;
  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);
  --green:   #16a34a;
  --green-l: #22c55e;
  --green-xl:#4ade80;
  --green-bg:rgba(22,163,74,.1);
  --green-border:rgba(22,163,74,.25);
  --red:     #dc2626;
  --red-tx:  #f87171;
  --amber:   #f59e0b;
  --amber-tx:#fbbf24;
  --tx:  #f1f5f9;
  --tx2: #94a3b8;
  --tx3: #475569;
  --r:  10px;
  --r2: 16px;
  --maxw: 1180px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--tx);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageFadeIn .35s ease both;
}

/* Smooth page arrivals: each page eases in on load so navigation between
   pages feels smooth instead of an instant hard cut. Opacity-only (no layout
   shift, safe with sticky nav). */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Native cross-page View Transitions in Chrome/Edge, silently ignored by
   browsers that don't support it (they just use the fade-in above). */
@view-transition { navigation: auto; }

/* Respect users who prefer no motion. */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(8,8,16,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.nav-logo-name { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--tx2); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--tx); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border-radius: 9px; background: transparent; border: 1px solid var(--border2); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--tx); border-radius: 2px; transition: transform .2s, opacity .2s; }
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn-ghost {
  padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--tx2); background: transparent;
  border: 1px solid var(--border2);
  transition: all .15s;
}
.btn-ghost:hover { color: var(--tx); border-color: var(--border2); background: rgba(255,255,255,.04); }
.btn-primary {
  padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 700;
  background: var(--green); color: #fff;
  transition: all .15s;
  box-shadow: 0 0 20px rgba(22,163,74,.3);
}
.btn-primary:hover { background: #15803d; box-shadow: 0 0 28px rgba(22,163,74,.45); }

/* ── SHARED HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 48px 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(22,163,74,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 99px;
  background: var(--green-bg); border: 1px solid var(--green-border);
  font-size: 13px; font-weight: 600; color: var(--green-xl);
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-l); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--green-xl); }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--tx2);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* sub-page (smaller) hero used on inner pages */
.page-hero { padding: 84px 48px 56px; }
.page-hero h1 { font-size: clamp(34px, 5.5vw, 54px); margin-bottom: 18px; }
.page-hero .hero-sub { margin-bottom: 0; max-width: 640px; }

/* ── SECTION COMMONS ───────────────────────────────────── */
section { padding: 96px 48px; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.section-tag {
  display: inline-block;
  padding: 5px 14px; border-radius: 99px;
  background: var(--green-bg); border: 1px solid var(--green-border);
  font-size: 12px; font-weight: 700; color: var(--green-xl);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -1.5px;
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.section-sub {
  font-size: 17px; color: var(--tx2);
  max-width: 520px; line-height: 1.65;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-num  { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.trust-label{ font-size: 12px; color: var(--tx3); font-weight: 500; margin-top: 2px; }

/* ── FEATURE / LAYER CARDS ─────────────────────────────── */
.layers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.layer-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.layer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0; transition: opacity .2s;
}
.layer-card:hover { border-color: var(--green-border); box-shadow: 0 0 30px rgba(22,163,74,.08); }
.layer-card:hover::before { opacity: 1; }
.lc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--green-border);
  font-size: 12px; font-weight: 800; color: var(--green-xl);
  margin-bottom: 14px;
}
.lc-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.lc-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.lc-desc  { font-size: 13px; color: var(--tx2); line-height: 1.6; }
.lc-badge { display: inline-flex; margin-top: 12px; padding: 3px 9px; border-radius: 99px; font-size: 11px; font-weight: 700; }
.lc-badge.api    { background: rgba(37,99,235,.15); color: #93c5fd; }
.lc-badge.fast   { background: rgba(22,163,74,.12); color: var(--green-xl); }
.lc-badge.smart  { background: rgba(124,58,237,.15); color: #c4b5fd; }
.lc-badge.smtp   { background: rgba(245,158,11,.12); color: #fbbf24; }

/* ── STEPS ─────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px; background: linear-gradient(90deg, var(--green-border), transparent 50%, var(--green-border));
}
.step { text-align: center; }
.step-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--green-bg); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 20px;
}
.step-num { font-size: 11px; font-weight: 800; color: var(--green-xl); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.step h3  { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.step p   { font-size: 14px; color: var(--tx2); line-height: 1.65; }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; max-width: 960px; margin: 0 auto; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px 24px;
  position: relative; overflow: hidden;
}
.price-card.featured {
  border-color: var(--green-border);
  background: linear-gradient(180deg, rgba(22,163,74,.08) 0%, var(--card) 40%);
  box-shadow: 0 0 40px rgba(22,163,74,.12);
}
.pc-pop {
  position: absolute; top: 0; right: 0;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 0 var(--r2) 0 10px;
}
.pc-name  { font-size: 13px; font-weight: 700; color: var(--tx2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pc-usd   { font-size: 20px; font-weight: 800; color: var(--tx2); }
.pc-amt   { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; }
.pc-mo    { font-size: 14px; color: var(--tx3); }
.pc-vol   { font-size: 13px; color: var(--green-xl); font-weight: 700; margin-bottom: 20px; }
.pc-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pc-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--tx2); line-height: 1.4; }
.pc-features li::before { content: '✓'; color: var(--green-l); font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pc-btn { width: 100%; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center; transition: all .15s; display: block; }
.pc-btn-outline { background: transparent; border: 1.5px solid var(--border2); color: var(--tx2); }
.pc-btn-outline:hover { border-color: var(--green-border); color: var(--green-xl); }
.pc-btn-solid { background: var(--green); color: #fff; border: none; box-shadow: 0 0 20px rgba(22,163,74,.3); }
.pc-btn-solid:hover { background: #15803d; }

/* ── CODE BLOCKS ───────────────────────────────────────── */
.code-block {
  background: #0a0a12; border: 1px solid var(--border2);
  border-radius: 12px; padding: 20px 22px;
  font-family: 'Fira Code', monospace; font-size: 12.5px;
  line-height: 1.8; overflow-x: auto; position: relative;
}
.ck { color: #7dd3fc; } .cs { color: #86efac; } .cn { color: #fbbf24; } .cc { color: #475569; } .cp { color: #c4b5fd; }
.copy-btn {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.07); color: var(--tx2);
  border: 1px solid var(--border2); border-radius: 6px;
  padding: 4px 11px; font-size: 11px; font-family: inherit;
  cursor: pointer; transition: all .12s;
}
.copy-btn:hover { background: rgba(255,255,255,.12); color: var(--tx); }
.api-endpoint {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 10px; margin-bottom: 16px;
  font-family: 'Fira Code', monospace; font-size: 13px; overflow-x: auto;
}
.m-badge { padding: 2px 9px; border-radius: 5px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; flex-shrink: 0; }
.m-get  { background: rgba(22,163,74,.15);  color: var(--green-xl); }
.m-post { background: rgba(37,99,235,.15);  color: #93c5fd; }

/* ── DATA TABLE (docs + comparison) ────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th, .data-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table th { color: var(--tx3); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.data-table td { color: var(--tx2); vertical-align: top; }
.data-table td code, .data-table th code { font-family: 'Fira Code', monospace; font-size: 12px; color: var(--green-xl); background: rgba(255,255,255,.05); padding: 2px 6px; border-radius: 4px; }
.data-table tr:last-child td { border-bottom: none; }
.table-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; overflow-x: auto; }

/* comparison table specifics */
.cmp-table td, .cmp-table th { text-align: center; }
.cmp-table td:first-child, .cmp-table th:first-child { text-align: left; color: var(--tx); font-weight: 600; }
.cmp-table .col-us { background: rgba(22,163,74,.06); }
.cmp-yes { color: var(--green-xl); font-weight: 800; }
.cmp-no  { color: var(--red-tx); font-weight: 800; }
.cmp-mid { color: var(--amber-tx); font-weight: 700; }

/* ── FAQ ACCORDION ─────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: transparent; color: var(--tx);
  padding: 20px 24px; font-size: 15px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { color: var(--green-xl); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--tx2); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 320px; }

/* ── DASHBOARD SCREENSHOT MOCK ─────────────────────────── */
.shot {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r2); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg2); }
.shot-dot { width: 11px; height: 11px; border-radius: 50%; }
.shot-dot.r { background: #ef4444; } .shot-dot.y { background: #f59e0b; } .shot-dot.g { background: #22c55e; }
.shot-url { margin-left: 10px; font-family: 'Fira Code', monospace; font-size: 11px; color: var(--tx3); }
.shot-body { padding: 22px; }

/* result grid used in screenshot mocks */
.res-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 10px 10px 0 0; border: 1px solid var(--border2); border-bottom: none; background: rgba(22,163,74,.1); border-color: rgba(22,163,74,.25); }
.res-email { font-family: 'Fira Code', monospace; font-size: 13px; font-weight: 600; color: var(--tx); }
.res-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--border2); border-radius: 0 0 10px 10px; overflow: hidden; }
.res-cell { padding: 11px 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.res-cell:nth-child(3n) { border-right: none; }
.res-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--tx3); margin-bottom: 3px; }
.res-val { font-size: 13px; font-weight: 700; color: var(--tx); }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.b-green  { background: rgba(22,163,74,.15);  color: #4ade80; }
.b-red    { background: rgba(220,38,38,.15);  color: #f87171; }
.b-yellow { background: rgba(245,158,11,.15); color: #fbbf24; }
.b-gray   { background: rgba(148,163,184,.1); color: #94a3b8; }

/* ── SPLIT / FEATURE ROWS ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: -1; }
.feat-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-ic { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; background: var(--green-bg); border: 1px solid var(--green-border); }
.feat-h { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.feat-d { font-size: 13.5px; color: var(--tx2); line-height: 1.6; }

/* ── CTA ───────────────────────────────────────────────── */
.cta-sec { position: relative; text-align: center; padding: 100px 48px; overflow: hidden; }
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(22,163,74,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  max-width: 640px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--green-border);
  border-radius: 24px; padding: 60px 48px;
  position: relative; z-index: 1;
  box-shadow: 0 0 80px rgba(22,163,74,.1);
}
.cta-box h2 { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -1.2px; margin-bottom: 14px; }
.cta-box p  { font-size: 16px; color: var(--tx2); margin-bottom: 32px; }
.cta-row    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  padding: 14px 32px; border-radius: 10px;
  background: var(--green); color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: 0 0 30px rgba(22,163,74,.35); transition: all .15s;
}
.btn-cta-primary:hover { background: #15803d; }
.btn-cta-ghost {
  padding: 14px 28px; border-radius: 10px;
  background: transparent; color: var(--tx2);
  border: 1.5px solid var(--border2); font-size: 15px; font-weight: 600; transition: all .15s;
}
.btn-cta-ghost:hover { color: var(--tx); border-color: var(--tx3); }

/* ── FOOTER (rich, multi-column) ───────────────────────── */
footer.site-foot { border-top: 1px solid var(--border); padding: 64px 48px 40px; }
.foot-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-logo-icon { width: 30px; height: 30px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.foot-logo-icon img { width: 65%; height: 65%; object-fit: contain; display: block; }
.foot-logo-name { font-size: 16px; font-weight: 800; color: #fff; }
.foot-tag { font-size: 13.5px; color: var(--tx2); line-height: 1.6; max-width: 280px; }
.foot-col h4 { font-size: 12px; font-weight: 700; color: var(--tx3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: var(--tx2); margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: var(--tx); }
.foot-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-copy { font-size: 12.5px; color: var(--tx3); }
.foot-mini-links { display: flex; gap: 20px; }
.foot-mini-links a { font-size: 12.5px; color: var(--tx3); transition: color .15s; }
.foot-mini-links a:hover { color: var(--tx2); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .layers-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; }
  .split         { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .foot-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  /* collapsible dropdown nav */
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,8,16,.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  nav.nav-open .nav-links { max-height: 340px; }
  .nav-links a { padding: 15px 24px; font-size: 15px; border-top: 1px solid var(--border); }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-cta   { gap: 8px; }
  .btn-ghost   { padding: 7px 13px; font-size: 13px; }
  .btn-primary { padding: 8px 14px; font-size: 13px; }
  section, .hero { padding: 64px 20px; }
  .page-hero { padding: 56px 20px 40px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .layers-grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 28px 20px; gap: 24px; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 27px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .copy-btn { padding: 13px 16px; font-size: 12px; }
  .res-grid { grid-template-columns: 1fr; }
  .res-cell:nth-child(3n) { border-right: none; }
}
@media (max-width: 560px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row a { width: 100%; text-align: center; }
  .btn-cta-primary, .btn-cta-ghost { display: block; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}
