/* Clear Coat Systems - Landing page */
:root {
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --purple-400: #A78BFA;
  --purple-500: #8B5CF6;
  --purple-600: #7C3AED;
  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50: #F8FAFC;
  --white: #FFFFFF;
  --bg: #FBFCFE;
  --green-500: #22C55E;
  --amber-500: #F59E0B;
  --red-500: #EF4444;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 40px -12px rgba(30,64,175,0.18), 0 8px 16px -8px rgba(15,23,42,0.08);
  --shadow-xl: 0 30px 60px -15px rgba(30,64,175,0.25), 0 12px 24px -12px rgba(15,23,42,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

.cc-landing * { box-sizing: border-box; }
.cc-landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-feature-settings: "cv11", "ss01";
}
.cc-landing h1,
.cc-landing h2,
.cc-landing h3,
.cc-landing h4 { margin: 0; font-family: 'Geist', 'Inter', sans-serif; letter-spacing: -0.02em; line-height: 1.1; }
.cc-landing p { margin: 0; }
.cc-landing a { color: inherit; text-decoration: none; }
.cc-landing button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Nav ===== */
.cc-landing .nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  background: rgba(251,252,254,0.82);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.cc-landing .nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cc-landing .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600; font-size: 20px; letter-spacing: -0.035em;
  color: var(--ink-900);
}
.cc-landing .logo .c-accent { color: var(--blue-500); }
.cc-landing .logo-mark { width: 32px; height: 32px; display: block; }
.cc-landing .nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-700);
}
.cc-landing .nav-links a:hover { color: var(--blue-600); }
.cc-landing .nav-cta { display: flex; align-items: center; gap: 10px; }

.cc-landing .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 14.5px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.cc-landing .btn-primary {
  background: var(--blue-600); color: white;
  box-shadow: 0 1px 2px rgba(37,99,235,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}
.cc-landing .btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 6px 14px -4px rgba(37,99,235,0.4); }
.cc-landing .btn-ghost { color: var(--ink-700); }
.cc-landing .btn-ghost:hover { color: var(--blue-600); }
.cc-landing .btn-outline {
  background: white; color: var(--ink-800); border: 1px solid var(--ink-200);
}
.cc-landing .btn-outline:hover { border-color: var(--blue-400); color: var(--blue-600); }
.cc-landing .btn-lg { padding: 14px 24px; font-size: 15.5px; }

/* ===== Hero ===== */
.cc-landing .hero {
  position: relative; overflow: hidden;
  padding: 80px 32px 60px;
}
.cc-landing .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cc-landing .hero-bg::before {
  content: ''; position: absolute; inset: -10%;
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(59,130,246,0.14), transparent 60%),
    radial-gradient(700px 350px at 85% 20%, rgba(139,92,246,0.12), transparent 60%);
}
.cc-landing .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
}
.cc-landing .hero-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }
.cc-landing .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: white; border: 1px solid var(--ink-200);
  font-size: 13px; font-weight: 500; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.cc-landing .hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green-500); box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.cc-landing .hero-title {
  margin-top: 20px;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 980px;
}
.cc-landing .hero-title .accent {
  background: linear-gradient(100deg, var(--blue-600), var(--purple-500) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cc-landing .hero-sub {
  margin-top: 22px; font-size: 19px; color: var(--ink-600);
  max-width: 620px; line-height: 1.55;
}
.cc-landing .hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.cc-landing .hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
  font-size: 13.5px; color: var(--ink-500);
}
.cc-landing .hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

.cc-landing .hero-visual {
  position: relative; margin: 60px auto 0; max-width: 1140px;
  perspective: 2000px;
}

/* ===== Sections ===== */
.cc-landing section { padding: 100px 32px; }
.cc-landing .container { max-width: 1240px; margin: 0 auto; }
.cc-landing .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.cc-landing .section-head.left { text-align: left; margin-left: 0; }
.cc-landing .section-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-600);
}
.cc-landing .section-title {
  margin-top: 14px; font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.03em;
}
.cc-landing .section-sub {
  margin-top: 18px; font-size: 18px; color: var(--ink-600); line-height: 1.55;
}

/* ===== Two paths ===== */
.cc-landing .paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cc-landing .path-card {
  position: relative; overflow: hidden;
  background: white; border-radius: var(--radius-xl);
  padding: 40px; border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cc-landing .path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cc-landing .path-card h3 { font-size: 28px; margin-bottom: 12px; letter-spacing: -0.025em; }
.cc-landing .path-card p { color: var(--ink-600); font-size: 15.5px; line-height: 1.55; }
.cc-landing .path-card .path-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  color: var(--blue-600);
}
.cc-landing .path-card.mobile .path-icon {
  background: linear-gradient(135deg, #EDE9FE, #F5F3FF);
  color: var(--purple-600);
}
.cc-landing .path-tags { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.cc-landing .path-tag {
  font-size: 12.5px; font-weight: 500; color: var(--ink-700);
  background: var(--ink-100); padding: 5px 10px; border-radius: 6px;
}

/* ===== Feature grid ===== */
.cc-landing .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cc-landing .feature {
  background: white; border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.cc-landing .feature:hover { border-color: var(--blue-200); transform: translateY(-2px); }
.cc-landing .feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; margin-bottom: 18px;
}
.cc-landing .feature h4 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.cc-landing .feature p { color: var(--ink-600); font-size: 14.5px; line-height: 1.55; }

/* ===== Showcase ===== */
.cc-landing .showcase {
  padding: 120px 32px;
  background: linear-gradient(180deg, #F4F7FC 0%, #FBFCFE 100%);
}
.cc-landing .showcase-row {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px;
  align-items: center;
  margin-bottom: 120px;
}
.cc-landing .showcase-row.reverse { grid-template-columns: 1.3fr 1fr; }
.cc-landing .showcase-row.reverse .showcase-copy { order: 2; }
.cc-landing .showcase-row:last-child { margin-bottom: 0; }
.cc-landing .showcase-copy h3 { font-size: clamp(28px, 3.5vw, 38px); letter-spacing: -0.03em; }
.cc-landing .showcase-copy p { color: var(--ink-600); font-size: 17px; line-height: 1.55; margin-top: 14px; }
.cc-landing .showcase-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; }
.cc-landing .showcase-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-700); }
.cc-landing .showcase-list svg { flex-shrink: 0; margin-top: 3px; color: var(--blue-500); }

/* ===== Mock app UI ===== */
.cc-landing .app-mock {
  background: white; border: 1px solid var(--ink-200);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotateX(2deg) rotateY(-2deg);
  transform-origin: center;
}
.cc-landing .app-mock-tall { transform: rotateX(1deg) rotateY(2deg); }
.cc-landing .browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: #F8FAFC;
  border-bottom: 1px solid var(--ink-200);
}
.cc-landing .browser-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--ink-300); }
.cc-landing .browser-url {
  margin-left: 10px; flex: 1;
  background: white; border: 1px solid var(--ink-200); border-radius: 6px;
  padding: 4px 10px; font-size: 11px; color: var(--ink-500);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.cc-landing .app-body { display: grid; grid-template-columns: 180px 1fr; min-height: 380px; background: white; }
.cc-landing .app-sidebar { background: white; border-right: 1px solid var(--ink-200); padding: 16px 10px; }
.cc-landing .app-brand {
  display: flex; align-items: center; gap: 8px; padding: 0 8px 14px;
  font-size: 14px; font-weight: 700; color: var(--blue-600);
}
.cc-landing .app-brand svg { width: 20px; height: 20px; }
.cc-landing .app-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  font-size: 12.5px; color: var(--ink-600); border-radius: 6px;
  margin-bottom: 2px;
}
.cc-landing .app-nav-item.active { background: var(--blue-50); color: var(--blue-700); font-weight: 600; }
.cc-landing .app-nav-item svg { width: 14px; height: 14px; }
.cc-landing .app-main { padding: 20px; background: #FAFBFD; }
.cc-landing .app-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.cc-landing .app-head h4 { font-size: 17px; font-weight: 700; }
.cc-landing .app-head .sub { font-size: 12px; color: var(--ink-500); margin-top: 4px; }
.cc-landing .app-user { text-align: right; font-size: 11px; }
.cc-landing .app-user b { color: var(--ink-800); font-size: 12px; }
.cc-landing .app-user .role { color: var(--ink-400); display: block; }

.cc-landing .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cc-landing .stat {
  background: white; border: 1px solid var(--ink-200); border-radius: 10px;
  padding: 12px; display: flex; align-items: center; gap: 10px;
}
.cc-landing .stat-ico { width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; flex-shrink: 0; }
.cc-landing .stat-ico.b { background: var(--blue-500); color: white; }
.cc-landing .stat-ico.g { background: var(--green-500); color: white; }
.cc-landing .stat-ico.a { background: var(--amber-500); color: white; }
.cc-landing .stat-ico.p { background: var(--purple-500); color: white; }
.cc-landing .stat-num { font-size: 16px; font-weight: 700; color: var(--ink-900); }
.cc-landing .stat-label { font-size: 10px; color: var(--ink-500); }

.cc-landing .card-panel {
  background: white; border: 1px solid var(--ink-200); border-radius: 10px;
  padding: 14px; margin-top: 12px;
}
.cc-landing .card-panel h5 { font-size: 13px; font-weight: 700; margin: 0 0 10px; }

/* Calendar mock */
.cc-landing .cal { background: white; border: 1px solid var(--ink-200); border-radius: 10px; padding: 14px; }
.cc-landing .cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cc-landing .cal-title { font-weight: 700; font-size: 14px; }
.cc-landing .cal-nav { display: flex; gap: 6px; align-items: center; }
.cc-landing .cal-nav button { width: 22px; height: 22px; border: 1px solid var(--ink-200); border-radius: 6px; color: var(--ink-600); display: grid; place-items: center; }
.cc-landing .cal-today { background: var(--blue-500); color: white; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.cc-landing .cal-legend { display: flex; gap: 14px; font-size: 11px; color: var(--ink-600); margin-bottom: 8px; }
.cc-landing .cal-legend span { display: inline-flex; align-items: center; gap: 5px; }
.cc-landing .cal-legend .sw { width: 8px; height: 8px; border-radius: 2px; }
.cc-landing .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--ink-200); border: 1px solid var(--ink-200); border-radius: 6px; overflow: hidden; }
.cc-landing .cal-dow { background: #F8FAFC; padding: 6px; font-size: 10px; color: var(--ink-500); font-weight: 600; text-align: left; }
.cc-landing .cal-cell { background: white; padding: 5px; min-height: 48px; font-size: 10px; color: var(--ink-700); position: relative; }
.cc-landing .cal-cell.other { background: #FAFBFD; color: var(--ink-300); }
.cc-landing .cal-cell.today { background: var(--blue-50); }
.cc-landing .cal-cell .dnum { font-weight: 600; }
.cc-landing .cal-cell .dnum.circle { background: var(--blue-500); color: white; width: 18px; height: 18px; border-radius: 999px; display: inline-grid; place-items: center; font-size: 10px; }
.cc-landing .cal-evt { display: block; margin-top: 3px; padding: 2px 4px; border-radius: 3px; font-size: 9px; font-weight: 500; color: white; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-landing .cal-evt.c { background: var(--green-500); }
.cc-landing .cal-evt.p { background: var(--amber-500); }
.cc-landing .cal-evt.r { background: var(--red-500); }
.cc-landing .cal-evt.a { background: var(--blue-500); }
.cc-landing .cal-evt.g { background: var(--green-500); }

/* Reports */
.cc-landing .reports-head h5 { font-size: 16px; }
.cc-landing .reports-tabs { display: flex; gap: 14px; font-size: 12px; color: var(--ink-500); margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--ink-100); }
.cc-landing .reports-tabs .active { color: var(--blue-600); font-weight: 600; position: relative; }
.cc-landing .reports-tabs .active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -11px; height: 2px; background: var(--blue-500); }
.cc-landing .reports-toggle { margin-left: auto; display: inline-flex; background: var(--ink-100); border-radius: 6px; padding: 2px; }
.cc-landing .reports-toggle button { padding: 3px 10px; font-size: 11px; color: var(--ink-600); border-radius: 4px; }
.cc-landing .reports-toggle .active-t { background: var(--blue-500); color: white; font-weight: 600; }

.cc-landing .kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cc-landing .kpi { background: white; border: 1px solid var(--ink-200); border-radius: 10px; padding: 14px; }
.cc-landing .kpi-label { font-size: 10px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; }
.cc-landing .kpi-num { font-size: 20px; font-weight: 700; margin-top: 4px; }
.cc-landing .kpi-delta { font-size: 10px; margin-top: 2px; color: var(--green-500); font-weight: 600; }

.cc-landing .bar-panel { margin-top: 12px; background: white; border: 1px solid var(--ink-200); border-radius: 10px; padding: 14px; }
.cc-landing .bar-panel h6 { font-size: 13px; font-weight: 700; margin: 0 0 12px; }
.cc-landing .bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.cc-landing .bars .b {
  flex: 1; background: linear-gradient(180deg, var(--blue-500), var(--blue-400));
  border-radius: 4px 4px 0 0; position: relative;
}
.cc-landing .bars .b.alt { background: linear-gradient(180deg, var(--purple-500), var(--purple-400)); }
.cc-landing .bars-x { display: flex; gap: 8px; margin-top: 6px; font-size: 9px; color: var(--ink-400); }
.cc-landing .bars-x span { flex: 1; text-align: center; }

/* ===== Phone mocks ===== */
.cc-landing .phone-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  align-items: end; max-width: 1000px; margin: 0 auto;
}
.cc-landing .phone {
  position: relative;
  width: 260px; height: 540px;
  margin: 0 auto;
  background: #0F172A; border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
}
.cc-landing .phone-screen {
  background: white; border-radius: 32px; overflow: hidden;
  width: 100%; height: 100%; display: flex; flex-direction: column;
  position: relative;
}
.cc-landing .phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #0F172A; border-radius: 999px;
  z-index: 2;
}
.cc-landing .phone-status {
  display: flex; justify-content: space-between; padding: 10px 20px 6px;
  font-size: 11px; font-weight: 600; color: var(--ink-900);
}
.cc-landing .phone-app { flex: 1; padding: 18px 16px; overflow: hidden; }
.cc-landing .phone-tab-bar {
  display: flex; justify-content: space-around; padding: 10px 0 18px;
  border-top: 1px solid var(--ink-100); background: white;
}
.cc-landing .phone-tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 9px; color: var(--ink-400);
}
.cc-landing .phone-tab.active { color: var(--blue-600); }
.cc-landing .phone-label { margin-top: 18px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink-700); }

/* ===== Square integration ===== */
.cc-landing .square-section {
  padding: 100px 32px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
}
.cc-landing .square-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; max-width: 1240px; margin: 0 auto;
}
.cc-landing .square-grid h2 { color: white; font-size: clamp(32px, 4vw, 44px); letter-spacing: -0.03em; }
.cc-landing .square-grid p { color: rgba(255,255,255,0.7); font-size: 17px; margin-top: 18px; line-height: 1.55; }
.cc-landing .square-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cc-landing .square-features .sf {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px; font-size: 14px;
}
.cc-landing .square-features b { display: block; margin-bottom: 4px; }
.cc-landing .square-features span { color: rgba(255,255,255,0.6); font-size: 13px; }

.cc-landing .square-visual { position: relative; height: 420px; }
.cc-landing .reader {
  position: absolute; width: 220px; aspect-ratio: 1;
  background: #1A1A1A; border-radius: 28px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  display: grid; place-items: center;
  border: 1px solid #333;
}
.cc-landing .reader::before {
  content: 'square'; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; font-weight: 500;
}
.cc-landing .reader-screen {
  width: 70%; aspect-ratio: 1.4; background: linear-gradient(135deg, #1F2937, #0F172A);
  border-radius: 10px; padding: 14px; color: white;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: space-between;
}
.cc-landing .reader .amt { font-size: 22px; font-weight: 700; }
.cc-landing .reader .lbl { font-size: 9px; color: rgba(255,255,255,0.5); }
.cc-landing .reader .tap { font-size: 10px; color: var(--blue-400); }
.cc-landing .reader-1 { top: 40px; left: 20px; transform: rotate(-6deg); }
.cc-landing .reader-2 { bottom: 30px; right: 20px; transform: rotate(4deg); }

/* ===== Testimonial ===== */
.cc-landing .testimonial {
  background: linear-gradient(135deg, var(--blue-50), #F5F3FF);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid; grid-template-columns: 120px 1fr; gap: 36px;
  align-items: center;
}
.cc-landing .testimonial-photo {
  width: 120px; height: 120px; border-radius: 999px;
  background: repeating-linear-gradient(45deg, var(--ink-200) 0 10px, var(--ink-100) 10px 20px);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; color: var(--ink-500); text-align: center; padding: 8px;
  border: 2px solid white; box-shadow: var(--shadow-md);
}
.cc-landing .testimonial blockquote {
  margin: 0; font-size: 22px; line-height: 1.5; letter-spacing: -0.01em;
  color: var(--ink-800); font-weight: 500;
}
.cc-landing .testimonial cite {
  display: block; margin-top: 18px; font-size: 14px; color: var(--ink-600);
  font-style: normal;
}
.cc-landing .testimonial cite b { color: var(--ink-900); font-weight: 600; }

/* ===== CTA band ===== */
.cc-landing .cta-band {
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
.cc-landing .cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 40%);
}
.cc-landing .cta-band h2 { font-size: clamp(32px, 4vw, 44px); letter-spacing: -0.03em; position: relative; }
.cc-landing .cta-band p { margin-top: 14px; font-size: 18px; opacity: 0.9; position: relative; }
.cc-landing .cta-band .btns { margin-top: 28px; display: flex; gap: 12px; justify-content: center; position: relative; flex-wrap: wrap; }
.cc-landing .cta-band .btn-primary { background: white; color: var(--blue-700); }
.cc-landing .cta-band .btn-primary:hover { background: var(--blue-50); }
.cc-landing .cta-band .btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.35); }
.cc-landing .cta-band .btn-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }

/* ===== Footer ===== */
.cc-landing footer {
  padding: 60px 32px 40px;
  border-top: 1px solid var(--ink-200);
  background: white;
}
.cc-landing .footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.cc-landing .footer-brand p { font-size: 14px; color: var(--ink-500); margin-top: 12px; max-width: 300px; }
.cc-landing .footer-col h5 { font-size: 13px; color: var(--ink-900); margin-bottom: 12px; font-weight: 600; }
.cc-landing .footer-col a { display: block; font-size: 14px; color: var(--ink-600); padding: 4px 0; }
.cc-landing .footer-col a:hover { color: var(--blue-600); }
.cc-landing .footer-bottom {
  max-width: 1240px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--ink-100);
  display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-500);
}

/* ===== Nav dropdown + solution tabs ===== */
.cc-landing .nav-dropdown { position: relative; }
.cc-landing .nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-700); padding: 0;
}
.cc-landing .nav-dropdown-toggle:hover { color: var(--blue-600); }
.cc-landing .nav-dropdown-toggle svg { transition: transform .15s ease; }
.cc-landing .nav-dropdown:hover .nav-dropdown-toggle svg,
.cc-landing .nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
/* invisible hover-bridge so the menu doesn't close in the gap below the toggle */
.cc-landing .nav-dropdown::after { content: ''; position: absolute; top: 100%; left: -16px; right: -16px; height: 18px; }
.cc-landing .nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 268px; background: white; border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.cc-landing .nav-dropdown:hover .nav-dropdown-menu,
.cc-landing .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cc-landing .nav-dropdown-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: var(--radius);
}
.cc-landing .nav-dropdown-menu a:hover { background: var(--ink-50); }
.cc-landing .ndi-title { font-size: 14.5px; font-weight: 600; color: var(--ink-900); }
.cc-landing .nav-dropdown-menu a:hover .ndi-title { color: var(--blue-600); }
.cc-landing .ndi-sub { font-size: 12.5px; color: var(--ink-500); font-weight: 400; }
.cc-landing .nav-link-coming { display: inline-flex; align-items: center; gap: 7px; }

/* Coming-soon / available badges (reused across nav, footer, pages) */
.cc-landing .nav-soon, .cc-landing .badge-soon {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--amber-500); background: rgba(245,158,11,0.12);
  padding: 2px 8px; border-radius: 999px; line-height: 1.5;
}
.cc-landing .badge-live {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-500); background: rgba(34,197,94,0.12);
  padding: 2px 8px; border-radius: 999px; line-height: 1.5;
}
.cc-landing .hero-eyebrow .dot.amber { background: var(--amber-500); box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }

/* ===== Shop-size grid (brick & mortar page) ===== */
.cc-landing .size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.cc-landing .size-card {
  position: relative; background: white; border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl); padding: 32px 28px; box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cc-landing .size-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cc-landing .size-card .size-status { position: absolute; top: 20px; right: 20px; }
.cc-landing .size-card h3 { font-size: 22px; margin-bottom: 8px; }
.cc-landing .size-card p { color: var(--ink-600); font-size: 14.5px; line-height: 1.55; }
.cc-landing .size-card.soon { background: var(--ink-50); border-style: dashed; box-shadow: none; }
.cc-landing .size-card.soon h3 { color: var(--ink-500); }

/* ===== Centered "coming soon" page ===== */
.cc-landing .soon-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.cc-landing .soon-wrap .hero-title { margin-left: auto; margin-right: auto; }
.cc-landing .soon-wrap .hero-sub { margin-left: auto; margin-right: auto; }
.cc-landing .soon-wrap .hero-ctas { justify-content: center; }

/* Responsive */
@media (max-width: 900px) {
  .cc-landing .nav-links { display: none; }
  .cc-landing .size-grid { grid-template-columns: 1fr; }
  .cc-landing .paths,
  .cc-landing .features-grid,
  .cc-landing .phone-row,
  .cc-landing .square-grid,
  .cc-landing .footer-inner { grid-template-columns: 1fr; }
  .cc-landing .showcase-row,
  .cc-landing .showcase-row.reverse { grid-template-columns: 1fr; }
  .cc-landing .showcase-row.reverse .showcase-copy { order: 0; }
  .cc-landing .testimonial { grid-template-columns: 1fr; text-align: center; }
  .cc-landing .testimonial-photo { margin: 0 auto; }
  .cc-landing section { padding: 70px 24px; }
  .cc-landing .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ===== Why Clear Coat (differentiators) ===== */
.cc-landing .why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.cc-landing .why-card {
  background: var(--white); border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg); padding: 30px 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cc-landing .why-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-400);
}
.cc-landing .why-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.14em; color: var(--blue-600);
  margin-bottom: 12px;
}
.cc-landing .why-card h3 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-900); line-height: 1.3; margin-bottom: 10px;
}
.cc-landing .why-card h3 em { font-style: italic; color: var(--blue-600); }
.cc-landing .why-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-600); }

.cc-landing .why-compare {
  margin-top: 28px; background: var(--white);
  border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.cc-landing .why-compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px;
  padding: 13px 22px; font-size: 13.5px; align-items: center;
  border-top: 1px solid var(--ink-100);
}
.cc-landing .why-compare-row:first-child { border-top: none; }
.cc-landing .why-compare-row > span:first-child { color: var(--ink-800); font-weight: 500; }
.cc-landing .why-compare-head {
  background: var(--ink-50);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
}
.cc-landing .why-compare-head > span:first-child { color: var(--ink-400); font-weight: 400; }
.cc-landing .why-compare-head .wc-us { color: var(--blue-600); }
.cc-landing .why-compare-head .wc-them { color: var(--ink-400); }
.cc-landing .why-compare-row .wc-us { color: var(--ink-900); }
.cc-landing .why-compare-row .wc-us b { color: var(--green-500); margin-right: 4px; }
.cc-landing .why-compare-row .wc-them { color: var(--ink-400); }

@media (max-width: 900px) {
  .cc-landing .why-grid { grid-template-columns: 1fr; }
  .cc-landing .why-compare-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .cc-landing .why-compare-head { display: none; }
  .cc-landing .why-compare-row .wc-them { font-size: 12.5px; }
  .cc-landing .why-compare-row .wc-them::before { content: "Others: "; }
}
