/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F0EBE1;
  --cream-dark: #E6DDD0;
  --terracotta: #D4522A;
  --mustard:    #E8B84B;
  --sage:       #5B7B6F;
  --dark:       #1A1A1A;
  --muted:      #9B9088;
  --border:     #D4C4B8;
  --card-bg:    #F8F4EE;
  --white:      #FAFAF8;

  --font: Helvetica, Arial, sans-serif;
  --max-w: 1080px;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.accent { color: var(--terracotta); }

/* ── Navigation ─────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-name {
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--terracotta); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text { flex: 1; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: #4A4040;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-store-badges .store-badge {
  height: 40px;
  width: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 13px 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: #B8421E;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--dark);
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.hero-platforms {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-tag {
  background: var(--cream-dark);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: clamp(400px, 48vw, 600px);
  height: clamp(400px, 48vw, 600px);
  border-radius: 22%;
  display: block;
}

/* ── Intro strip ────────────────────────────────────────────────────────── */
.intro-strip {
  background: var(--dark);
  padding: 40px 0;
}

.intro-strip p {
  color: rgba(240, 235, 225, 0.80);
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
}

/* ── Section labels ─────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

/* ── Features ───────────────────────────────────────────────────────────── */
.features {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.features h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: bold;
  letter-spacing: -0.8px;
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--card-bg);
  padding: 36px 32px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: #5A504A;
  line-height: 1.65;
}

/* ── How it works ───────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--dark);
  padding: 96px 0;
}

.how-it-works .section-label {
  color: var(--mustard);
}

.how-it-works h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: bold;
  letter-spacing: -0.6px;
  color: var(--cream);
  margin-bottom: 52px;
  max-width: 480px;
  line-height: 1.25;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 24px 28px 24px 0;
}

.step-num {
  display: block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.step h4 {
  font-size: 15px;
  color: var(--cream);
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step p {
  font-size: 13px;
  color: rgba(240, 235, 225, 0.60);
  line-height: 1.6;
}

.step-arrow {
  color: var(--terracotta);
  font-size: 22px;
  padding-top: 26px;
  flex-shrink: 0;
  opacity: 0.7;
}


/* ── On / Off camera ────────────────────────────────────────────────────── */
.oncamera {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.oncamera h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: bold;
  letter-spacing: -0.8px;
  margin-bottom: 52px;
  line-height: 1.2;
}

.oncamera-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.oncamera-card {
  background: var(--card-bg);
  padding: 44px 40px;
}

.oncamera-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.oncamera-card h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.4px;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.3;
}

.oncamera-card p {
  font-size: 15px;
  color: #5A504A;
  line-height: 1.75;
  margin-bottom: 14px;
}

.oncamera-card p:last-child { margin-bottom: 0; }

.diagram {
  display: block;
  width: 100%;
  margin: 20px 0 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 20px 0;
}

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

/* ── Screenshots ────────────────────────────────────────────────────────── */
.screenshots {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.screenshots h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: bold;
  letter-spacing: -0.8px;
  margin-bottom: 32px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.screenshot-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
  background: var(--white);
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.screenshot-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.screenshot-meta strong {
  font-size: 15px;
  letter-spacing: -0.2px;
}

.screenshot-meta span {
  font-size: 13px;
  color: #5A504A;
  line-height: 1.6;
}

.screenshot-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.screenshot-note code {
  font-family: "Courier New", Courier, monospace;
  background: var(--cream-dark);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 12px;
}

/* ── Download ───────────────────────────────────────────────────────────── */
.download {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}

.download h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: bold;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.download-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 52px;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(200px, 320px);
  gap: 16px;
}

.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.download-icon {
  font-size: 36px;
  margin-bottom: 4px;
}

.download-card h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark);
}

.download-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.store-badge-link {
  display: inline-block;
  margin-top: 12px;
  transition: opacity 0.15s, transform 0.1s;
}

.store-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.store-badge {
  display: block;
  height: 44px;
  width: auto;
}

.download-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

/* ── Resource / blog sections ──────────────────────────────────────────── */
.resources {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: var(--card-bg);
}

.resources h2,
.blog-header h1,
.blog-list h2,
.blog-article h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: bold;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.resources h2 {
  max-width: 580px;
  margin-bottom: 16px;
}

.resources-sub,
.blog-header-sub,
.blog-intro {
  color: #4A4040;
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
}

.resources-sub {
  margin-bottom: 40px;
}

.resources-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
}

.resource-card,
.blog-card,
.guide-cta,
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.resource-card,
.blog-card {
  padding: 26px 24px;
}

.resource-card h3,
.blog-card h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.resource-card p,
.blog-card p,
.blog-article p,
.blog-article li {
  color: #3A3030;
  line-height: 1.75;
}

.resource-link,
.blog-card-link,
.blog-inline-link {
  color: var(--terracotta);
  font-weight: bold;
  text-decoration: none;
}

.resource-link:hover,
.blog-card-link:hover,
.blog-inline-link:hover,
.guide-inline-link:hover {
  text-decoration: underline;
}

.guide-cta {
  padding: 24px;
  margin: 24px 0;
  background: linear-gradient(135deg, rgba(212, 82, 42, 0.07), rgba(232, 184, 75, 0.10));
}

.guide-cta h3 {
  margin-top: 0;
}

.guide-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.guide-inline-link {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: bold;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.faq-item p {
  margin: 0;
}

.blog-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.blog-header-sub {
  margin-top: 16px;
}

.blog-list {
  padding: 72px 0 96px;
}

.blog-grid {
  margin-top: 32px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 12px;
}

.blog-card-cta {
  margin-top: 18px;
}

.blog-article-wrap {
  padding: 56px 0 96px;
}

.blog-article {
  max-width: 780px;
}

.blog-article h1 {
  margin-bottom: 16px;
}

.blog-article h2 {
  font-size: 28px;
  letter-spacing: -0.5px;
  margin: 40px 0 14px;
}

.blog-article h3 {
  font-size: 19px;
  margin: 26px 0 10px;
}

.blog-article ul,
.blog-article ol {
  padding-left: 22px;
  margin: 14px 0 18px;
}

.blog-article li {
  margin-bottom: 8px;
}

.blog-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.blog-callout {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 22px 0;
}

.blog-cta {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(212, 82, 42, 0.08), rgba(91, 123, 111, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.blog-breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.blog-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.blog-breadcrumbs a:hover {
  color: var(--terracotta);
}

.blog-next-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ── Consent banner ───────────────────────────────────────────────────── */
.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.16);
}

.consent-banner.is-hidden,
.consent-manage.is-hidden {
  display: none;
}

.consent-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  color: var(--dark);
}

.consent-body {
  font-size: 14px;
  line-height: 1.7;
  color: #3A3030;
}

.consent-link {
  color: var(--terracotta);
  font-weight: bold;
  text-decoration: none;
}

.consent-link:hover {
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.consent-btn {
  appearance: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}

.consent-btn:hover,
.consent-manage:hover {
  transform: translateY(-1px);
}

.consent-btn-primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.consent-btn-primary:hover {
  background: #B8421E;
  border-color: #B8421E;
}

.consent-btn-secondary {
  background: var(--white);
  color: var(--dark);
}

.consent-btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.consent-manage {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1090;
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  padding: 10px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.12);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 52px 0;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--cream);
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 7px;
}

.footer-tag {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 14px;
  color: rgba(240, 235, 225, 0.50);
  margin-bottom: 24px;
}


/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .hero-inner {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }

  .hero-text h1 { letter-spacing: -1px; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-platforms { justify-content: center; }
  .hero-logo img { width: 120px; height: 120px; }

  .nav-links { display: none; }

  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }

  .features-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .resources-grid, .blog-grid { grid-template-columns: 1fr; }
  .consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .consent-manage {
    left: 16px;
    bottom: 16px;
  }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
}

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

/* ── Language Switcher ──────────────────────────────────────────────────── */

.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  border-left: 1px solid var(--border);
  padding-left: 20px;
  margin-left: 8px;
}

.lang-switcher a,
.lang-active {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 3px 7px;
  border-radius: 2px;
}

.lang-switcher a {
  color: var(--muted);
  transition: color 0.15s;
}

.lang-switcher a:hover {
  color: var(--terracotta);
}

.lang-active {
  color: var(--terracotta);
  background: rgba(212, 82, 42, 0.09);
}

/* ── User Guide ─────────────────────────────────────────────────────────── */

/* Page header */
.guide-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.guide-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: bold;
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 8px 0 16px;
}

.guide-header-sub {
  font-size: 17px;
  color: #4A4040;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 20px;
}

.guide-platforms {
  display: flex;
  gap: 8px;
}

/* Two-column layout: TOC + content */
.guide-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 96px;
}

/* Sticky TOC sidebar */
.guide-toc {
  position: sticky;
  top: 88px;
}

.toc-title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.guide-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-toc li {
  margin-bottom: 6px;
}

.guide-toc ul ul {
  padding-left: 14px;
  margin-top: 4px;
}

.guide-toc ul ul li {
  margin-bottom: 4px;
}

.guide-toc a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s;
}

.guide-toc a:hover {
  color: var(--terracotta);
}

/* Main content */
.guide-content {
  min-width: 0;
}

/* Sections */
.guide-section {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.guide-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.guide-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.guide-section h3 {
  font-size: 15px;
  font-weight: bold;
  color: var(--dark);
  margin: 28px 0 12px;
  letter-spacing: -0.2px;
}

.guide-section p {
  font-size: 15px;
  color: #3A3030;
  line-height: 1.75;
  margin-bottom: 16px;
}

.guide-section p:last-child {
  margin-bottom: 0;
}

/* Tables */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 20px;
}

.guide-table th {
  text-align: left;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.guide-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: #3A3030;
  line-height: 1.6;
}

.guide-table tr:last-child td {
  border-bottom: none;
}

.guide-table td:first-child {
  white-space: nowrap;
}

/* Notes / callouts */
.guide-note {
  background: var(--card-bg);
  border-left: 3px solid var(--border);
  padding: 14px 18px;
  font-size: 14px;
  color: #4A4040;
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
}

.guide-note--warning {
  border-left-color: var(--terracotta);
}

/* Two-column callout boxes */
.guide-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.guide-callout {
  padding: 20px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.65;
}

.guide-callout strong {
  display: block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.guide-callout p {
  font-size: 14px;
  margin-bottom: 0;
}

.callout-icon {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1;
}

.guide-callout--terra {
  background: rgba(212, 82, 42, 0.07);
  border: 1px solid rgba(212, 82, 42, 0.18);
  color: #4A2A20;
}

.guide-callout--sage {
  background: rgba(91, 123, 111, 0.08);
  border: 1px solid rgba(91, 123, 111, 0.20);
  color: #2A3A34;
}

/* Numbered workflow blocks */
.guide-workflow {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.workflow-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.workflow-body {
  flex: 1;
  min-width: 0;
}

.workflow-body h3 {
  margin-top: 8px;
  margin-bottom: 6px;
}

.workflow-body > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Ordered steps inside workflows */
.guide-steps {
  padding-left: 20px;
  margin: 0;
}

.guide-steps li {
  font-size: 14px;
  color: #3A3030;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.guide-steps li:last-child {
  margin-bottom: 0;
}

/* Unordered lists */
.guide-list {
  padding-left: 20px;
  margin: 12px 0 16px;
}

.guide-list li {
  font-size: 15px;
  color: #3A3030;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Simulated result card */
.guide-result-card {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid var(--border);
}

.result-card-main {
  flex: 1;
}

.result-big {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -1px;
}

/* State badges (aperture result table) */
.state-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.state-badge--terra {
  background: rgba(212, 82, 42, 0.10);
  color: var(--terracotta);
}

.state-badge--sage {
  background: rgba(91, 123, 111, 0.12);
  color: var(--sage);
}

.state-badge--muted {
  background: var(--cream-dark);
  color: var(--muted);
}

/* Footer legal links */
.footer-legal {
  font-size: 12px;
  color: rgba(240, 235, 225, 0.35);
  margin-top: 8px;
}

.footer-legal a {
  color: rgba(240, 235, 225, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: rgba(240, 235, 225, 0.75);
}

/* Guide responsive */
@media (max-width: 860px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guide-toc {
    position: static;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }

  .guide-table td:first-child {
    white-space: normal;
  }
}

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

  .guide-workflow {
    gap: 16px;
  }

  .result-big {
    font-size: 36px;
  }
}
