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

/* ── Variables ── */
:root {
  --primary:       hsl(33deg 100% 55%);
  --primary-dark:  hsl(28deg 100% 55%);
  --primary-light: hsl(33deg 100% 90%);
  --text:          #1A1A2E;
  --muted:         #6B7280;
  --border:        #E5E7EB;
  --bg:            #FFFFFF;
  --bg-alt:        hsl(33deg 100% 97%);
  --radius:        12px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
}

/* ── Base ── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
a { color: inherit; text-decoration: none; }
img { display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,107,53,0.35);
  text-decoration: none;
}
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: 10px; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 1.5rem; color: var(--text);
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img { height: 36px; width: 36px; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 1.75rem; list-style: none;
}
.nav-link { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-links .btn { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 0.75rem;
  padding: 1rem 0; border-top: 1px solid var(--border); margin-top: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: var(--text); font-weight: 500; padding: 0.4rem 0; }
.mobile-menu .btn { text-align: center; margin-top: 0.25rem; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Footer ── */
footer {
  background: var(--text); color: rgba(255,255,255,0.55);
  padding: 1.75rem 0; font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  color: #fff; font-weight: 600; font-size: 1rem;
}
.footer-logo img { height: 22px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════
   index.html — page-specific
   ════════════════════════════════ */

/* ── Hero ── */
.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(204deg, hsl(35deg 100% 90%) 0%, #FFFFFF 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary-light); color: var(--primary);
  font-weight: 600; font-size: 0.85rem;
  padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1.25rem;
}
.hero-badge::before { content: "●"; font-size: 0.55rem; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img {
  max-width: 100%; height: auto;
  border-radius: 16px; 
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-image { display: none; }
  .hero-content p { max-width: 100%; }
}

/* ── Concept strip ── */
.concept-strip {
  background: var(--primary); padding: 1.25rem 0;
  color: #fff; text-align: center;
}
.concept-strip p {
  color: rgba(255,255,255,0.92); font-size: 1rem; font-weight: 500;
}
.concept-strip strong { color: #fff; }

/* ── Section header ── */
.section-header { text-align: center; max-width: 580px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ── Why cards ── */
.why-grid {
  display: grid;
  gap: 1.25rem;

  grid-template-columns: repeat(2, 1fr);

  @media (max-width: 640px) {
    grid-template-columns: 1fr;
  }
}
.why-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { color: var(--muted); font-size: 0.95rem; }

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.step { text-align: center; padding: 1rem; }
.step-num {
  width: 52px; height: 52px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin: 0 auto 1rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ── Use cases ── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.usecase-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
}
.usecase-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.usecase-card:hover img { transform: scale(1.05); }
.usecase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, transparent 75%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.usecase-overlay h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.3rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.usecase-overlay p { color: rgba(255,255,255,0.92); font-size: 0.9rem; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* ── Comparison ── */
.comparison-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; min-width: 520px; }
thead { background: var(--text); color: #fff; }
thead th {
  padding: 1rem 0.75rem; font-weight: 600; font-size: 0.88rem;
  text-align: center; vertical-align: bottom;
}
thead th:first-child { text-align: left; }
.th-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.th-logos {
  display: flex; gap: 4px; justify-content: center; align-items: center;
}
.th-logos img { height: 20px; object-fit: contain; }
tbody { background: var(--bg); color: #fff; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: #FAFAFA; }
tbody td { padding: 0.85rem 0.75rem; font-size: 0.93rem; text-align: center; }
tbody td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.td-pycter { background: var(--primary-light); }
.check { color: #22c55e; font-weight: 700; }
.cross { color: #ef4444; font-weight: 700; }
.partial { color: #f59e0b; font-weight: 700; }
small { color: var(--muted); font-size: 0.8rem; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 1.2rem 0;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.98rem; font-weight: 600; color: var(--text);
  font-family: inherit;
}
.faq-icon { font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.faq-a.open { max-height: 300px; padding-bottom: 1.2rem; }
.faq-a p { color: var(--muted); font-size: 0.95rem; }
.faq-show-more {
  display: block; margin: 1.5rem auto 0;
  background: none; border: 1px solid var(--border); border-radius: 6px;
  padding: 0.6rem 1.4rem; cursor: pointer;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  font-family: inherit; transition: border-color 0.2s, color 0.2s;
}
.faq-show-more:hover { border-color: var(--primary); color: var(--primary); }
#faqMore { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.5s ease, opacity 0.4s ease; }
#faqMore.open { max-height: 3000px; opacity: 1; }

/* ── Platforms ── */
.platforms { padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.platforms-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.platforms-label { font-weight: 600; font-size: 0.9rem; color: var(--muted); margin-right: 0.5rem; }
.platform-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem; border-radius: 20px;
  border: 1px solid var(--border); font-size: 0.88rem; font-weight: 500; color: var(--text);
}

/* ── Waitlist form ── */
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--primary);
}

/* ── Waitlist message ── */
.waitlist-msg {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.waitlist-success { color: #86efac; }
.waitlist-error   { color: #fca5a5; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--text) 0%, #2D3561 100%);
  padding: 6rem 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section .lead { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-note { margin-top: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ════════════════════════════════
   privacy.html — page-specific
   ════════════════════════════════ */

.legal-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #FFF8F5 0%, #FFFFFF 60%);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { margin-bottom: 0.5rem; }
.legal-hero .updated { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.legal-body h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.legal-body p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.legal-body ul {
  margin: 0.5rem 0 0.85rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.legal-body ul li { margin-bottom: 0.3rem; }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--primary); }
.legal-body a:hover { text-decoration: underline; }

.legal-highlight {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.legal-highlight p { color: var(--text); margin: 0; font-size: 0.95rem; }
