:root {
  --bg: #f6f4f0;
  --surface: #ffffff;
  --text: #1a1a1b;
  --text-muted: #7c7c7c;
  --border: #e8e4dd;
  --accent: #ff4500;
  --accent-text: #ff6a33;
  --link: #0079d3;
  --header-bg: #1a1a1b;
  --header-text: #d7dadc;
  --hover-bg: #f1efe9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font: 16px/1.55 system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--link); }

img { max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid #000;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--header-text);
  text-decoration: none;
  margin-right: auto;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.brand .accent { color: var(--accent-text); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--header-text);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
}

.site-nav a:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: #e03d00; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--input-border, #444);
  color: var(--header-text);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

/* Hero */

.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hero h1 .accent { color: var(--accent-text); }

.hero p.lede {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  padding: 13px 26px;
  font-size: 15px;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

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

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-shot {
  margin-top: 48px;
}

.browser-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  background: var(--surface);
}

.browser-frame .chrome-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--hover-bg);
  border-bottom: 1px solid var(--border);
}

.browser-frame .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.browser-frame img { display: block; width: 100%; }

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 800;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.carousel-dot.active {
  width: 22px;
  background: var(--accent);
}

/* Sections */

section { padding: 64px 0; }

.section-title {
  text-align: center;
  font-size: 30px;
  margin: 0 0 12px;
}

.section-lede {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 16px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.privacy-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.privacy-band .wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px 24px;
}

.privacy-band .copy { flex: 1; }

.privacy-band h2 { font-size: 28px; margin: 0 0 14px; }

.privacy-band p { color: var(--text-muted); margin: 0 0 12px; font-size: 15px; }

.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 10px;
}

.privacy-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
}

.privacy-list .mark { color: var(--accent); font-weight: 700; }

.how-steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}

.how-steps li {
  list-style: none;
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-steps p { margin: 0; color: var(--text-muted); font-size: 15px; padding-top: 4px; }

.cta-band {
  text-align: center;
}

.cta-band h2 { font-size: 30px; margin: 0 0 14px; }
.cta-band p { color: var(--text-muted); margin: 0 0 28px; }

/* Footer */

.site-footer {
  background: var(--header-bg);
  color: var(--header-text);
  padding: 40px 0 28px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer .disclaimer {
  max-width: 480px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.footer-links a { color: var(--header-text); text-decoration: none; opacity: 0.85; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.6;
}

/* Legal / privacy policy page */

.legal {
  padding: 56px 0 80px;
}

.legal .wrap { max-width: 760px; }

.legal h1 { font-size: 32px; margin: 0 0 6px; }

.legal .updated { color: var(--text-muted); font-size: 14px; margin: 0 0 40px; }

.legal h2 { font-size: 20px; margin: 36px 0 12px; }

.legal p, .legal li { color: var(--text); font-size: 15px; }

.legal ul { padding-left: 20px; }

.legal .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 16px 18px;
  margin: 0 0 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.support-form {
  display: grid;
  gap: 18px;
  max-width: 480px;
}

.support-form .bot-field-wrap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  resize: vertical;
}

.support-form .btn {
  justify-self: start;
}

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .privacy-band .wrap { flex-direction: column; }
  .site-nav { display: none; }
}
