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

:root {
  --bg:       #fffcf0;
  --ink:      #1c1400;
  --muted:    #7c6b3a;
  --card:     #ffffff;
  --line:     #ede6c8;
  --brand:    #f4a823;
  --brand-2:  #d4890a;
  --brand-dk: #1c1400;   /* dark text ON yellow buttons */
  --radius:   18px;
  --shadow:   0 18px 40px rgba(100,60,0,.10);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Segoe UI", "Trebuchet MS", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-dk);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212,137,10,.40);
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,137,10,.50);
  text-decoration: none;
  color: var(--brand-dk);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Nav CTA gets a filled dark look to stand out on the light nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.nav-cta:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.nav-cta svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.btn-ghost:hover { background: #fff9e6; border-color: var(--brand); text-decoration: none; }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-2);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.btn-back:hover { text-decoration: underline; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,252,240,.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,.05); text-decoration: none; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding-block: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--brand-2); }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-top: 8px;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  padding-block: 80px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, #fde68a 0%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 85% 55%,  #fef3c7 0%, transparent 60%);
}
.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-dk);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 780px;
  margin-inline: auto;
}
.hero h1 span { color: var(--brand-2); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* ── Section heading ─────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Showcase (interactive screenshot viewer) ────────────────────────── */
.showcase { padding-block: 70px; }

.showcase-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.showcase-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background .15s, border-color .15s, box-shadow .15s;
  width: 100%;
}
.showcase-tab:hover {
  background: #fff;
  border-color: var(--line);
}
.showcase-tab.active {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(212,137,10,.14);
}

.tab-emoji {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fef9e7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.showcase-tab.active .tab-emoji {
  background: linear-gradient(135deg, #fde68a, #fcd34d);
}

.tab-text { flex: 1; min-width: 0; }
.tab-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.tab-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}
.showcase-tab.active .tab-title { color: var(--brand-2); }

.tab-arrow {
  color: var(--brand-2);
  opacity: 0;
  transition: opacity .15s;
  flex-shrink: 0;
}
.showcase-tab.active .tab-arrow,
.showcase-tab:hover .tab-arrow { opacity: 1; }

/* Browser-chrome frame around screenshot */
.showcase-display {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(100,60,0,.14);
  border: 1px solid var(--line);
  background: #1e293b;
}

.browser-bar {
  background: #1e293b;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }
.browser-address {
  flex: 1;
  background: #334155;
  border-radius: 6px;
  height: 24px;
  max-width: 340px;
}

.showcase-img-wrap {
  background: #f8fafc;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.showcase-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .18s ease;
}
.showcase-img-wrap.img-small img {
  width: 50%;
}

@media (max-width: 820px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }
  .showcase-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .showcase-tab {
    flex: 1 1 calc(50% - 4px);
    min-width: 140px;
  }
  .tab-desc { display: none; }
  .tab-arrow { display: none; }
}

/* ── Features grid ───────────────────────────────────────────────────── */
.features { padding-block: 70px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(100,60,0,.13);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef9e7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Why switch / comparison ─────────────────────────────────────────── */
.why-switch { padding-block: 70px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: 15px;
}
.compare-table thead tr {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-dk);
}
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}
.compare-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
.compare-table tr:hover td { background: #fffdf5; }
.check { color: #16a34a; font-size: 17px; font-weight: 700; }
.cross { color: #dc2626; font-size: 17px; }
.badge-free {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Privacy callout ─────────────────────────────────────────────────── */
.privacy-callout {
  background: linear-gradient(135deg, #fffdf0, #fef9e3);
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  margin-block: 70px;
}
.privacy-callout h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.privacy-callout p { color: var(--muted); font-size: 15px; max-width: 520px; margin-inline: auto; }

/* ── Page header (sub-pages) ─────────────────────────────────────────── */
.page-hero {
  padding-block: 60px 48px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #fde68a 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 18px;
  margin-bottom: 10px;
}
.page-hero p { color: var(--muted); font-size: 16px; max-width: 540px; }

/* ── Content card ────────────────────────────────────────────────────── */
.content-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
@media (max-width: 620px) { .content-card { padding: 28px 22px; } }

.content-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.content-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--brand-2);
}
.content-card p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.content-card p:last-child { margin-bottom: 0; }
.content-card ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}
.content-card ul li::marker { color: var(--brand-2); }
.content-card a { color: var(--brand-2); }
.content-card strong { color: var(--ink); font-weight: 600; }

/* ── Support FAQ ─────────────────────────────────────────────────────── */
.faq-item { margin-bottom: 24px; }
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-a code {
  background: #fef9e7;
  border-radius: 4px;
  padding: 1px 6px;
  font-family: monospace;
  font-size: 13px;
  color: var(--ink);
}

/* ── Release notes ───────────────────────────────────────────────────── */
.release-block { margin-bottom: 40px; }
.release-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.version-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-dk);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.release-date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.release-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.change-group { margin-bottom: 16px; }
.change-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 8px;
}
.change-list {
  list-style: none;
  padding: 0;
}
.change-list li {
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}
.change-list li:last-child { border-bottom: none; }
.change-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 620px) {
  .hero { padding-block: 52px 40px; }
  .nav-cta.hide-mobile, .btn-primary.hide-mobile { display: none; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}
