/* ============================================================
   Timemark vs CompanyCam — landing page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ink:        #1b1d24;
  --ink-2:      #2a2d3a;
  --ink-soft:   #565a68;
  --line:       #e6e2d6;
  --line-dark:  #34374a;

  --paper:      #faf8f3;
  --paper-2:    #ffffff;
  --paper-3:    #f1ede2;

  --brand:      #ffdf3e;
  --brand-deep: #f5c400;
  --brand-ink:  #1b1d24;

  --good:       #1f8a5b;
  --good-soft:  #e7f3ec;
  --bad:        #c2453a;

  --hero-bg:    #15161c;
  --hero-bg-2:  #1d1f29;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 11px;

  --shadow-sm: 0 1px 2px rgba(20,20,30,.06), 0 4px 14px rgba(20,20,30,.05);
  --shadow-md: 0 8px 30px rgba(20,20,30,.10);
  --shadow-lg: 0 30px 70px -20px rgba(10,10,20,.45);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.02em; }
.section-head { max-width: 760px; margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  text-wrap: balance;
}
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 18px; }

section { padding: 92px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  padding: 13px 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: var(--brand-ink);
  box-shadow: 0 1px 2px rgba(20,20,30,.10), 0 6px 18px -6px rgba(245,196,0,.55);
}
.btn-primary:hover { background: #ffe75c; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(20,20,30,.12), 0 12px 26px -8px rgba(245,196,0,.6); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(20,20,30,.12); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(20,20,30,.12), 0 6px 18px -8px rgba(20,20,30,.4); }
.btn-dark:hover { background: #2a2d3a; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(20,20,30,.16), 0 12px 26px -10px rgba(20,20,30,.45); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 12px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,248,243,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand .name { font-family: var(--font-display); font-weight: 900; font-size: 21px; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .signin { font-weight: 600; font-size: 15px; }
.nav .btn { padding: 10px 18px; font-size: 14.5px; border-radius: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(255,223,62,.16), transparent 60%),
    radial-gradient(800px 500px at 8% 110%, rgba(255,223,62,.07), transparent 60%),
    linear-gradient(180deg, var(--hero-bg), var(--hero-bg-2));
  color: #fff;
  padding: 84px 0 104px;
  min-height: 720px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 600px at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}
/* roofing jobsite background photo */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/hero-roofing-wide.jpg");
  background-size: cover;
  background-position: 50% 42%;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,.4) 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,.4) 84%, transparent 100%);
}
/* dark scrim + brand glow over the photo so text stays legible */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1100px 540px at 78% -8%, rgba(255,223,62,.16), transparent 60%),
    linear-gradient(180deg, rgba(18,19,25,.46) 0%, rgba(18,19,25,.58) 42%, rgba(20,21,27,.88) 88%, var(--hero-bg-2) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-grid.solo {
  display: block; max-width: 1000px; margin: 0 auto; text-align: center;
}
.hero-grid.solo .hero-vs { margin-bottom: 6px; }
.hero-grid.solo .hero-stack { margin-top: 6px; }
.hero-grid.solo .hero-stack .line { font-size: clamp(42px, 7vw, 92px); text-shadow: 0 2px 24px rgba(10,10,16,.45); }
.hero-grid.solo .hero-vs, .hero-grid.solo .hero-sub { text-shadow: 0 1px 14px rgba(10,10,16,.5); }
.hero-grid.solo .hero-sub { margin-left: auto; margin-right: auto; max-width: 680px; font-size: 19px; }
.hero-grid.solo .hero-points { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-top: 30px; }
.hero-grid.solo .hero-actions { justify-content: center; }
.hero-grid.solo .nocard { text-align: center; }
.hero-vs {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(255,223,62,.10);
  border: 1px solid rgba(255,223,62,.32);
  padding: 7px 14px; border-radius: 999px;
}
.hero h1 {
  font-size: clamp(38px, 5.1vw, 62px);
  font-weight: 800;
  margin: 22px 0 0;
  letter-spacing: -.025em;
}
.hero h1 .reg { color: #fff; }
.hero-stack { display: block; margin-top: 4px; }
.hero-stack .line {
  display: block;
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.025em;
}
.hero-stack .line .hl { color: var(--brand); }
.hero-sub { margin-top: 22px; font-size: 18px; line-height: 1.6; color: #c7c9d4; max-width: 540px; }

.hero-points { list-style: none; margin: 26px 0 0; display: flex; flex-direction: column; gap: 11px; }
.hero-points li {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: #e9eaf0;
}
.hero-points .tick {
  width: 22px; height: 22px; flex: none; border-radius: 6px;
  background: var(--brand); color: var(--ink); display: grid; place-items: center;
  font-size: 13px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: 22px; margin-top: 24px; flex-wrap: wrap; }
.stores { display: flex; gap: 10px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #000; border: 1px solid #3a3d4c; color: #fff;
  padding: 9px 15px; border-radius: 11px;
}
.store-badge svg { width: 20px; height: 20px; }
.store-badge .st-sm { font-size: 9px; line-height: 1; opacity: .8; font-family: var(--font-body); }
.store-badge .st-lg { font-size: 15px; font-weight: 700; font-family: var(--font-display); line-height: 1.1; }
.rating { display: flex; align-items: center; gap: 10px; }
.stars { color: var(--brand); font-size: 15px; letter-spacing: 2px; }
.rating .rtxt { font-size: 13px; color: #b9bcc8; }
.rating .rtxt b { color: #fff; }
.nocard { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: #9a9eac; }

/* hero visual */
.hero-visual { position: relative; align-self: end; }
.hero-shot {
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--line-dark);
  border-bottom: none;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.savings-float {
  position: absolute; left: -18px; top: 40px;
  background: var(--paper-2); color: var(--ink);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.savings-float .lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.savings-float .num { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--good); line-height: 1.1; }
.stamp-float {
  position: absolute; right: -10px; bottom: 96px;
  background: rgba(20,21,27,.92); color: #fff;
  border: 1px solid rgba(255,223,62,.4);
  border-radius: 12px; padding: 11px 14px;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.5;
  box-shadow: var(--shadow-md);
}
.stamp-float .sk { color: var(--brand); }

/* placeholder visual */
.ph {
  background-color: #20222c;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,0) 12px 24px);
  display: grid; place-items: center; text-align: center;
  color: #8b8f9e; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  padding: 24px;
}
.ph.light {
  background-color: var(--paper-3);
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.035) 0 12px, rgba(0,0,0,0) 12px 24px);
  color: #9b9684;
}
.ph .ph-tag { border: 1px dashed currentColor; border-radius: 7px; padding: 6px 12px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--ink); color: #fff; padding: 56px 0; }
.trust h3 {
  text-align: center; font-size: clamp(22px, 2.8vw, 30px); font-weight: 800;
  max-width: 720px; margin: 0 auto; text-wrap: balance; color: #fff;
}
.trust-stats { display: flex; justify-content: center; gap: 64px; margin: 34px 0; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat .n { font-family: var(--font-display); font-weight: 900; font-size: 40px; color: var(--brand); line-height: 1; }
.trust-stat .l { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #aeb1bf; margin-top: 8px; }
.logos {
  display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap;
  border-top: 1px solid var(--line-dark); padding-top: 30px; margin-top: 8px;
}
.logos span {
  font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .02em;
  color: #7e8090; opacity: .85; filter: grayscale(1);
}

/* ============================================================
   SAVINGS COMPARE (Project Lens style)
   ============================================================ */
.compare { background: var(--paper); }
.compare-top { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; margin-bottom: 44px; }
.compare-top h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; text-wrap: balance; }
.compare-top p { margin-top: 14px; color: var(--ink-soft); font-size: 18px; }

.calc {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-md);
}
.calc .calc-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #aeb1bf; }
.calc .team-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 6px; }
.calc .team-n { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--brand); }
.calc input[type=range] { width: 100%; margin: 16px 0 4px; accent-color: var(--brand); height: 6px; }
.calc .range-ends { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: #80838f; }
.calc-savings { display: flex; gap: 14px; margin-top: 20px; }
.calc-savings .cs {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm); padding: 14px;
}
.calc-savings .cs .csl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #aeb1bf; }
.calc-savings .cs .csn { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: #fff; margin-top: 4px; }
.calc-savings .cs.hi .csn { color: var(--brand); }

.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; position: relative; }
.vs-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative;
}
.vs-card.them { background: var(--paper-3); }
.vs-card.us { border: 2px solid var(--ink); box-shadow: var(--shadow-md); }
.vs-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.vs-card.us .vs-name { color: var(--ink); }
.vs-plan { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.vs-price { font-family: var(--font-display); font-weight: 900; font-size: 44px; margin-top: 14px; line-height: 1; }
.vs-price .per { font-size: 15px; font-weight: 600; color: var(--ink-soft); font-family: var(--font-body); }
.vs-sub { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-top: 8px; }
.vs-list { list-style: none; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.vs-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.vs-list li .ic { width: 19px; height: 19px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-top: 2px; }
.vs-list li .ic.y { background: var(--good); color: #fff; }
.vs-list li .ic.n { background: #ddd6c6; color: #8a8472; }
.vs-list li .tag { margin-left: auto; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 2px 7px; border-radius: 5px; }
.vs-list li .tag.extra { background: #efe8d3; color: #8a7e57; }
.vs-list li .tag.incl { background: var(--good-soft); color: var(--good); }
.save-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--brand); color: var(--ink);
  font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: .04em;
  padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-sm);
  border: 2px solid var(--ink); white-space: nowrap;
}
.vs-card.us .btn { width: 100%; margin-top: 24px; }
.compare-note { text-align: center; margin-top: 28px; }
.compare-note .strip { display: inline-flex; gap: 26px; flex-wrap: wrap; justify-content: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.compare-note .strip span { display: inline-flex; align-items: center; gap: 7px; }
.compare-note .strip span::before { content: "✓"; color: var(--good); font-weight: 700; }

/* ============================================================
   FEATURES (SiteCapture "why choose" style)
   ============================================================ */
.features { background: var(--paper-2); }
.feat-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; margin-top: 18px; }
.feat-list { display: flex; flex-direction: column; gap: 10px; }
.feat-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start;
  text-align: left; width: 100%; background: transparent; border: 1px solid transparent;
  border-radius: 16px; padding: 18px 20px; cursor: pointer; font: inherit; color: inherit;
  position: relative; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.feat-item::before {
  content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 3px;
  background: var(--brand); transform: scaleY(0); transform-origin: top; opacity: 0;
  transition: transform .3s ease, opacity .25s ease;
}
.feat-item:hover { background: rgba(27,29,36,.025); }
.feat-item.is-active {
  background: var(--paper); border-color: var(--line); box-shadow: var(--shadow-sm);
}
.feat-item.is-active::before { transform: scaleY(1); opacity: 1; }
.feat-ic {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--paper-3); color: var(--ink-soft); box-shadow: none;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.feat-item.is-active .feat-ic { background: var(--brand); color: var(--ink); box-shadow: var(--shadow-sm); transform: scale(1.04); }
.feat-ic svg { width: 26px; height: 26px; }
.feat-item h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.01em; color: var(--ink-soft); transition: color .25s ease; }
.feat-item.is-active h3 { color: var(--ink); }
.feat-item p { margin-top: 6px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s ease, margin .3s ease; }
.feat-item.is-active p { max-height: 200px; opacity: 1; }

.feat-visual { position: sticky; top: 100px; }
.feat-stage { position: relative; aspect-ratio: 4/5; }
.feat-panel { position: absolute; inset: 0; opacity: 0; transform: scale(1.02); transition: opacity .5s ease, transform .5s ease; pointer-events: none; }
.feat-panel.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.feat-panel .ph { width: 100%; height: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.feat-shot {
  position: relative; width: 100%; height: 100%; border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,223,62,.18), transparent 60%),
    linear-gradient(165deg, #f4f1e8, #e9e4d5);
  border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden;
}
.feat-shot img {
  position: absolute; inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px);
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(20,20,30,.28));
}
.feat-shot.collage img { inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); filter: drop-shadow(0 10px 22px rgba(20,20,30,.14)); }
.feat-shot.fade-bottom img { -webkit-mask-image: linear-gradient(to bottom, #000 76%, rgba(0,0,0,.4) 85%, transparent 90%); mask-image: linear-gradient(to bottom, #000 76%, rgba(0,0,0,.4) 85%, transparent 90%); }
.feat-shot.flat { display: grid; place-items: center; }
.feat-shot.flat img { position: static; inset: auto; width: auto; height: auto; max-width: calc(100% - 36px); max-height: calc(100% - 36px); object-fit: contain; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 14px 30px -10px rgba(20,20,30,.3); filter: none; }
.feat-visual .stamp-float { position: absolute; right: -14px; bottom: 28px; z-index: 3; transition: opacity .35s ease; }
.feat-stage.has-shot .stamp-float { opacity: 0; pointer-events: none; }

.features.alt { background: var(--paper); }
.features.alt .feat-grid { grid-template-columns: 1fr 1fr; }
.features.alt .feat-visual { order: -1; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.ctable-sec { background: var(--ink); color: #fff; }
.ctable-sec .section-head h2 { color: #fff; }
.ctable-sec .section-head p { color: #b9bcc8; }
.ctable {
  max-width: 880px; margin: 46px auto 0;
  background: var(--paper-2); color: var(--ink); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ctable .row { display: grid; grid-template-columns: 1fr 150px 150px; align-items: center; border-bottom: 1px solid var(--line); }
.ctable .row:last-child { border-bottom: none; }
.ctable .row.head { background: var(--paper-3); }
.ctable .row.head .c { padding: 18px 20px; }
.ctable .feat-name { padding: 16px 24px; font-weight: 600; font-size: 15px; }
.ctable .row.head .feat-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.ctable .c { text-align: center; padding: 16px 20px; }
.ctable .c.us-col { background: rgba(255,223,62,.10); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.ctable .colname { font-family: var(--font-display); font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ctable .colname .mini { width: 22px; height: 22px; border-radius: 6px; }
.ctable .c .yes { color: var(--good); font-size: 19px; font-weight: 800; }
.ctable .c .no { color: #c9c2b2; font-size: 17px; }
.ctable .c small { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--ink-soft); margin-top: 2px; letter-spacing: .03em; }
.ctable-cta { text-align: center; margin-top: 34px; }

/* ============================================================
   TRADES
   ============================================================ */
.trades { background: var(--paper); padding: 76px 0; }
.trades-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.trade-chip {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--paper-2); color: var(--ink-2);
}
.trade-chip:hover { border-color: var(--ink); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--paper-2); }
.testi-carousel { display: flex; align-items: center; gap: 18px; margin-top: 46px; }
.tc-viewport { flex: 1; overflow: hidden; }
.tc-track { display: flex; transition: transform .45s cubic-bezier(.4,.0,.2,1); }
.tc-slide { flex: 0 0 100%; min-width: 100%; padding: 6px; box-sizing: border-box; display: flex; }
.tc-slide .tcard { width: 100%; min-height: 280px; justify-content: center; }
.tc-arrow {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-display); font-size: 26px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background .18s ease, border-color .18s ease, transform .16s ease;
}
.tc-arrow:hover { border-color: var(--ink); transform: translateY(-1px); }
.tc-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.tc-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--line); transition: width .25s ease, background .2s ease;
}
.tc-dots button.on { width: 28px; border-radius: 999px; background: var(--brand-deep); }
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.tcard.feat { background: var(--ink); color: #fff; border: none; }
.tcard .qstars { color: var(--brand); letter-spacing: 2px; font-size: 16px; }
.tcard blockquote { font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.42; letter-spacing: -.01em; margin: 16px 0 0; text-wrap: pretty; }
.tcard.feat blockquote { font-size: 26px; }
.tcard .qmark { font-family: var(--font-display); font-weight: 900; font-size: 60px; line-height: .6; color: var(--brand); height: 30px; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.tcard .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--brand); color: var(--ink); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
}
.tcard.feat .avatar { background: var(--brand); }
.tcard .who .nm { font-family: var(--font-display); font-weight: 800; font-size: 15.5px; }
.tcard .who .rl { font-size: 13px; color: var(--ink-soft); }
.tcard.feat .who .rl { color: #b9bcc8; }
.tcard .badge-switch {
  align-self: flex-start; margin-bottom: 4px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand); background: rgba(255,223,62,.12); border: 1px solid rgba(255,223,62,.3);
  padding: 5px 11px; border-radius: 999px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--paper); }
.bill-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--paper-3); border-radius: 999px; padding: 5px; margin: 26px auto 0; border: 1px solid var(--line); }
.bill-toggle button {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: 999px; border: none; background: transparent; cursor: pointer; color: var(--ink-soft);
}
.bill-toggle button.on { background: var(--ink); color: #fff; }
.bill-toggle .save-pill { font-family: var(--font-mono); font-size: 10.5px; color: var(--good); margin-left: 2px; }
.pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; align-items: stretch; }
.pcard {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
}
.pcard.pop { border: 2px solid var(--ink); box-shadow: var(--shadow-md); }
.pcard .pop-tag {
  position: absolute; top: -14px; left: 28px;
  background: var(--brand); color: var(--ink); font-family: var(--font-display); font-weight: 900; font-size: 12px;
  letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; border: 2px solid var(--ink);
}
.pcard .pname { font-family: var(--font-display); font-weight: 800; font-size: 21px; }
.pcard .pprice { font-family: var(--font-display); font-weight: 900; font-size: 46px; margin-top: 14px; line-height: 1; }
.pcard .pprice .per { font-size: 14px; font-weight: 600; color: var(--ink-soft); font-family: var(--font-body); }
.pcard .pbill { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-top: 8px; min-height: 18px; }
.pcard .pdesc { font-size: 14.5px; color: var(--ink-soft); margin-top: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.pcard ul { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.pcard ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.pcard ul li::before { content: "✓"; color: var(--good); font-weight: 800; margin-top: 1px; }
.pcard .btn { width: 100%; margin-top: auto; }
.pcard.pop .btn { background: var(--brand); color: var(--ink); box-shadow: 0 1px 2px rgba(20,20,30,.10), 0 6px 18px -6px rgba(245,196,0,.55); }
.price-foot { text-align: center; margin-top: 26px; font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-2); }
.faq-list { max-width: 800px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--font-display); font-weight: 700; font-size: 18.5px; color: var(--ink);
}
.faq-q .pm { font-size: 24px; color: var(--brand-deep); flex: none; transition: transform .2s ease; font-weight: 800; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a .inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 680px; }
.faq-a .inner p + p { margin-top: 12px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background:
    radial-gradient(900px 460px at 80% 0%, rgba(255,223,62,.18), transparent 60%),
    linear-gradient(180deg, var(--hero-bg-2), var(--hero-bg));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(700px 400px at 50% 0%, #000, transparent 75%);
}
.final-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; text-wrap: balance; }
.final h2 .hl { color: var(--brand); }
.final p { margin-top: 18px; font-size: 19px; color: #c7c9d4; }
.final-actions { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.final .nocard { color: #9a9eac; font-size: 11px; }
.final-stores { display: flex; gap: 12px; justify-content: center; margin-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #fff; padding: 56px 0 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 30px; border-bottom: 1px solid var(--line-dark); }
.footer .brand .name { color: #fff; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14.5px; color: #b9bcc8; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--font-mono); font-size: 12px; color: #80838f; }
.footer-bottom .legal-links a { color: #b9bcc8; transition: color .18s ease; }
.footer-bottom .legal-links a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  section { padding: 68px 0; }
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { margin-top: 30px; }
  .compare-top { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid { grid-template-columns: 1fr; gap: 20px; }
  .feat-visual { position: static; top: auto; order: -1; }
  .feat-stage { aspect-ratio: 16/11; }
  .features.alt .feat-visual { order: 0; }
  .ctable .row { grid-template-columns: 1fr 96px 96px; }
  .testi-carousel { gap: 8px; }
  .tc-arrow { width: 42px; height: 42px; font-size: 22px; }
  .tcard { padding: 28px; }
  .pcards { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .trust-stats { gap: 40px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ctable .feat-name { font-size: 13px; padding: 14px 12px; }
  .ctable .row { grid-template-columns: 1fr 70px 70px; }
  .trust-stats { flex-direction: column; gap: 26px; }
  .nav-cta .signin { display: none; }
}
