:root {
  --bg: #fdfbf7;
  --bg-soft: #f6f2ea;
  --surface: #ffffff;
  --ink: #0c0c0c;
  --muted: #5f6368;
  --subtle: #9aa0a6;
  --line: #e8e4dc;
  --line-soft: #f0ece4;
  --accent: #1a73e8;
  --accent-soft: #e8f0fe;
  --google-blue: #4285f4;
  --google-red: #ea4335;
  --google-yellow: #fbbc04;
  --google-green: #34a853;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(12, 12, 12, 0.04);
  --shadow-md: 0 8px 32px rgba(12, 12, 12, 0.07);
  --shadow-lg: 0 24px 64px rgba(12, 12, 12, 0.08);
  --max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  margin: 0;
}

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

h1, h2, h3, p {
  margin: 0;
}

/* Logo images */

.logo-img {
  display: block;
  height: auto;
  width: auto;
}

.logo-header { height: 24px; }
.logo-footer { height: 20px; margin-bottom: 10px; }
.logo-mockup { height: 18px; }
.logo-flow { height: 22px; }
.logo-mark { height: 28px; width: 28px; }

/* Legacy SVG (unused) */

.svg-logo,
.svg-mark {
  color: var(--ink);
  display: block;
}

.svg-logo-header,
.svg-logo-footer,
.svg-logo-mockup,
.svg-logo-flow:not(.svg-logo-youtube) {
  aspect-ratio: 380 / 32;
}

.svg-logo-header { height: 24px; }
.svg-logo-footer { height: 20px; margin-bottom: 10px; }
.svg-logo-mockup { height: 18px; }
.svg-logo-flow:not(.svg-logo-youtube) { height: 22px; }

.svg-logo-youtube.svg-logo-flow { aspect-ratio: 1; height: 26px; }
.svg-logo-mini,
.svg-logo-icon { aspect-ratio: 1; height: 18px; }

.svg-mark { aspect-ratio: 1; height: 28px; }
.svg-mark-btn { height: 16px; width: 16px; }

/* Header */

.site-header {
  align-items: center;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  gap: 24px;
  height: 64px;
  left: 0;
  margin: 0;
  max-width: none;
  padding-left: max(32px, calc((100% - var(--max)) / 2 + 32px));
  padding-right: max(32px, calc((100% - var(--max)) / 2 + 32px));
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 20;
}

.site-header,
.hero-inner,
.features,
.steps,
.pricing,
.install,
.faq,
.site-footer {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.site-header {
  max-width: none;
  width: 100%;
}

.site-header .logo {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  gap: 10px;
}

.logo-mark-header {
  flex-shrink: 0;
  height: 32px;
  width: 32px;
}

.logo-text {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex: 1;
  gap: 32px;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--ink);
}

/* Buttons */

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  padding: 11px 20px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-sm);
  color: #fff;
}

.button-primary:hover {
  background: #222;
  box-shadow: var(--shadow-md);
}

.button-ghost {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: #c8c4bc;
}

.button-sm {
  font-size: 13px;
  padding: 9px 16px;
}

.button-lg {
  font-size: 15px;
  padding: 14px 24px;
}

/* Hero */

.hero {
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
}

.hero-glow {
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(66, 133, 244, 0.09), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 10%, rgba(52, 168, 83, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 85%, rgba(251, 188, 4, 0.06), transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 72px 32px 88px;
  position: relative;
}

.eyebrow {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 20px;
  max-width: 12ch;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  max-width: 480px;
}

.brand-flow {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  gap: 16px;
  margin-top: 32px;
  padding: 10px 18px;
}

.brand-flow-arrow {
  color: var(--subtle);
  font-size: 16px;
}

.flow-pill {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
}

.visual-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.visual-tab {
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  padding: 5px 10px;
}

.visual-tab.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-trust {
  color: var(--subtle);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 24px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.hero-trust li::before {
  color: var(--google-green);
  content: "✓ ";
  font-weight: 700;
}

/* Hero visual */

.hero-visual {
  min-height: 360px;
  position: relative;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.visual-card-yt {
  max-width: 300px;
  padding: 16px;
  position: relative;
  z-index: 2;
}

.visual-card-popup {
  bottom: 0;
  max-width: 280px;
  padding: 20px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.visual-top {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.visual-line {
  background: var(--line);
  border-radius: 2px;
  flex: 1;
  height: 10px;
}

.visual-actions {
  display: flex;
  gap: 8px;
}

.chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 12px;
}

.chip-brand {
  align-items: center;
  background: #fff;
  border-color: rgba(12, 12, 12, 0.1);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  gap: 6px;
}

.visual-popup-head {
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.visual-card-popup label {
  color: var(--subtle);
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  margin-top: 12px;
  text-transform: uppercase;
}

.field {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  padding: 10px 11px;
}

.field.muted {
  color: var(--subtle);
}

.visual-cta {
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  padding: 11px;
  text-align: center;
}

/* Sections */

.section-head {
  margin-bottom: 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.features,
.steps,
.pricing,
.install {
  border-bottom: 1px solid var(--line-soft);
  padding: 80px 32px;
}

/* Pricing */

.pricing {
  background: linear-gradient(180deg, transparent, rgba(232, 240, 254, 0.35));
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  max-width: 520px;
  padding: 40px 36px;
  position: relative;
  text-align: center;
}

.pricing-card::before {
  background: linear-gradient(90deg, var(--google-blue), var(--google-green), var(--google-yellow), var(--google-red));
  border-radius: calc(var(--radius-lg) + 4px) calc(var(--radius-lg) + 4px) 0 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.pricing-badge {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.pricing-price span {
  color: var(--muted);
  font-size: 16px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  color: var(--google-green);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.pricing-features li:last-child {
  border-bottom: 0;
}

/* Feature grid */

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.feature-icon-text {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Steps */

.step-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.step-num {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  height: 32px;
  justify-content: center;
  margin-bottom: 18px;
  width: 32px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Upcoming */

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

.upcoming-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.upcoming-card:hover {
  border-color: #d4cfc6;
  box-shadow: var(--shadow-sm);
}

.upcoming-tag {
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--subtle);
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  padding: 4px 8px;
  text-transform: uppercase;
}

.upcoming-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.upcoming-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Install */

.install {
  padding: 80px 32px 96px;
}

.install-panel {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.install-panel::before {
  background: linear-gradient(
    90deg,
    var(--google-blue),
    var(--google-green),
    var(--google-yellow),
    var(--google-red)
  );
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.install-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.install-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.install-note {
  color: var(--subtle);
  font-size: 12px;
  margin-top: 14px;
}

.install-copy .button-lg + .button-lg,
.install-copy .button-lg + .install-secondary {
  margin-top: 12px;
}

.install-secondary {
  display: inline-block;
}

.install-benefits {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  list-style: none;
  margin: 0;
  padding: 0;
}

.install-benefits li {
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}

.install-benefits li:last-child {
  border-bottom: 0;
}

.install-benefits a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 32px;
  width: 100%;
}

.footer-brand p {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--ink);
}

/* FAQ */

.faq {
  margin: 0 auto;
  max-width: 720px;
  padding: 72px 32px;
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  padding: 18px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--subtle);
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
  padding-right: 24px;
}

.faq-answer a {
  color: var(--accent);
}

.faq-more {
  color: var(--subtle);
  font-size: 14px;
  margin-top: 24px;
  text-align: center;
}

.faq-more a {
  color: var(--accent);
}

/* Blog — Medium-inspired */

.blog-page {
  --blog-serif: Lora, Georgia, "Times New Roman", serif;
}

/* Blog hub — sidebar + cards */

.blog-hub {
  margin: 0 auto;
  max-width: 1100px;
  padding: 40px 32px 80px;
  width: 100%;
}

.blog-hub-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.blog-hub-head h1 {
  font-family: Lora, Georgia, serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 10px 0 14px;
}

.blog-hub-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.blog-layout {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 200px 1fr;
}

.blog-sidebar {
  position: sticky;
  top: 88px;
}

.blog-sidebar-label {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-category-link {
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 10px 14px;
  transition: color 0.15s, border-color 0.15s;
}

.blog-category-link:hover,
.blog-category-link.is-active {
  border-left-color: var(--accent);
  color: var(--ink);
}

.blog-cards {
  display: grid;
  gap: 20px;
}

.blog-card-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.blog-card-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-item-link {
  display: block;
  padding: 28px 32px;
}

.blog-card-tag {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.blog-card-item h2 {
  font-family: Lora, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card-item-meta {
  align-items: center;
  color: var(--subtle);
  display: flex;
  font-size: 13px;
  gap: 8px;
}

.blog-article-header .blog-card-tag {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 20px;
    position: static;
  }

  .blog-categories {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-category-link {
    border: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
  }

  .blog-category-link.is-active {
    background: var(--accent-soft);
    border-color: var(--accent);
  }
}

.blog-article {
  margin: 0 auto;
  max-width: 680px;
  padding: 48px 32px 80px;
  width: 100%;
}

.blog-index-head {
  margin-bottom: 48px;
  text-align: center;
}

.blog-index-head h1 {
  font-family: var(--blog-serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.blog-index-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-card {
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
}

.blog-card-date {
  color: var(--subtle);
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.blog-card h2 {
  font-family: var(--blog-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.blog-card-meta {
  color: var(--subtle);
  font-size: 13px;
  margin-bottom: 12px;
}

.blog-card-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.blog-breadcrumb {
  color: var(--subtle);
  font-size: 13px;
  margin-bottom: 32px;
}

.blog-breadcrumb a:hover {
  color: var(--accent);
}

.blog-breadcrumb span {
  margin: 0 6px;
}

.blog-article-header {
  margin-bottom: 40px;
}

.blog-article-header h1 {
  font-family: var(--blog-serif);
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-article-byline {
  color: var(--subtle);
  font-size: 14px;
}

.blog-article-dot {
  margin: 0 8px;
}

.blog-article-body {
  font-size: 19px;
  line-height: 1.75;
}

.blog-article-body p {
  color: var(--ink);
  margin-bottom: 1.4em;
}

.blog-lead {
  font-size: 21px !important;
  line-height: 1.65 !important;
}

.blog-article-body h2 {
  font-family: var(--blog-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 2em 0 0.6em;
}

.blog-article-body h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 1.6em 0 0.5em;
}

.blog-article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article-body em {
  font-style: italic;
}

.blog-article-footer {
  border-top: 1px solid var(--line-soft);
  margin-top: 48px;
  padding-top: 40px;
  text-align: center;
}

.blog-article-footer-note {
  color: var(--subtle);
  font-size: 14px;
  margin-top: 16px;
}

.blog-article-footer-note a {
  color: var(--accent);
}

/* Privacy page */

.page-main {
  margin: 0 auto;
  max-width: 720px;
  padding: 56px 32px 80px;
}

.page-main h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-main .lead {
  margin-bottom: 32px;
}

.page-main h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 28px 0 10px;
}

.page-main p,
.page-main li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.page-main ul {
  margin: 0;
  padding-left: 20px;
}

.page-main a {
  color: var(--accent);
}

/* Support page */

.support-main .eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.support-lead {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}

.support-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
}

.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.support-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.support-label {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-value {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.support-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.support-faq h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.support-faq ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.support-faq li {
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */

@media (max-width: 960px) {
  .site-nav { display: none; }

  .hero-inner,
  .feature-grid,
  .step-grid,
  .upcoming-grid,
  .install-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 { max-width: none; }

  .hero-visual {
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
  }

  .visual-card-popup {
    position: relative;
    right: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .upcoming-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero-inner,
  .features,
  .steps,
  .upcoming,
  .install,
  .faq,
  .blog-index,
  .blog-article,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-cta { display: none; }
  .feature-grid,
  .upcoming-grid { grid-template-columns: 1fr; }
  .install-panel { padding: 28px 22px; }
  .site-footer { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 8px; }
}
