
/* ============================================
   READLIS — Design tokens
   ============================================ */
:root {
  --ink: #0E0E10;
  --paper: #FAFAF7;
  --paper-dim: #F2F0E9;
  --signal: #FF5A1F;
  --signal-soft: #FFE8DB;
  --muted: #6B6B70;
  --surface-dark: #1A1A1D;
  --surface-dark-2: #232326;
  --line: #E8E6DF;
  --line-dark: #33333700;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* subtle paper grain for warmth, not decoration-for-decoration's-sake */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.nav-logo-mark {
  color: var(--signal);
  font-size: 1.1rem;
  transform: rotate(90deg);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: var(--signal); transform: translateY(-1px); }

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

/* ============================================
   HERO
   ============================================ */
.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px 56px;
}
.hero-top {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.05s forwards;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 11vw, 8.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}
.hero-title-strike {
  position: relative;
  color: var(--signal);
  font-style: italic;
  font-weight: 500;
}
.hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-form { max-width: 520px; }
.hero-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 1px 2px rgba(14,14,16,0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-input-wrap:focus-within {
  border-color: var(--ink);
  box-shadow: 0 4px 16px rgba(14,14,16,0.08);
}
.hero-input-icon { color: var(--muted); flex-shrink: 0; }
.hero-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.96rem;
  font-family: inherit;
  padding: 12px 10px;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.hero-input-wrap input::placeholder { color: #A8A6A0; }
.hero-submit {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.hero-submit:hover { background: var(--signal); transform: translateY(-1px); }
.hero-submit svg { transition: transform 0.15s ease; }
.hero-submit:hover svg { transform: translateX(2px); }
.hero-form-hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 20px;
}
.hero-form-hint a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; }

/* Compression demo */
.compress-demo {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}
.compress-panel {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(14,14,16,0.09);
}
.compress-panel--before { transform: rotate(-1.6deg); }
.compress-panel--after { transform: rotate(1.1deg); border-color: var(--signal); box-shadow: 0 16px 44px rgba(255,90,31,0.16); }
.compress-panel-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot--red { background: #FF5F57; }
.dot--yellow { background: #FEBC2E; }
.dot--green { background: #28C840; }
.compress-panel-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 4px;
}
.compress-panel--after .compress-panel-label { background: var(--signal-soft); justify-content: space-between; }
.compress-panel-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--signal);
  background: #fff;
  padding: 3px 8px;
  border-radius: 100px;
}
.compress-lines {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 300px;
  overflow: hidden;
}
.compress-line {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  animation: lineflow 6s linear infinite;
}
@keyframes lineflow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-300px); }
}
.compress-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  flex-shrink: 0;
}
.compress-ratio {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}
.compress-summary {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.summary-point { display: flex; gap: 10px; align-items: flex-start; }
.summary-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--signal);
  background: var(--signal-soft);
  padding: 2px 7px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
}
.summary-point p { font-size: 0.86rem; line-height: 1.45; color: var(--ink); }

.hero-trust {
  text-align: center;
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}
.hero-trust p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .compress-demo { flex-direction: column; }
  .compress-arrow { transform: rotate(90deg); }
  .compress-panel--before, .compress-panel--after { transform: none; width: 100%; }
  .hero-top { text-align: left; }
}

/* ============================================
   SOURCES STRIP
   ============================================ */
.sources {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}
.sources-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sources-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
}
.sources-divider { color: var(--line); font-weight: 300; }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--signal); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  max-width: 680px;
}
.section-title--light { color: var(--paper); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { padding: 110px 32px; }
.how-inner { max-width: var(--container); margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.how-card {
  background: #fff;
  padding: 36px 32px;
}
.how-mark {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--signal);
  display: block;
  margin-bottom: 18px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

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

/* ============================================
   HONEST COMPARISON
   ============================================ */
.honest { background: var(--paper-dim); padding: 110px 32px; }
.honest-inner { max-width: var(--container); margin: 0 auto; }
.honest-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 560px;
}
.honest-table {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.honest-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.honest-row:last-child { border-bottom: none; }
.honest-row--head {
  background: var(--paper-dim);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 14px 28px;
}
.honest-label { font-weight: 600; font-size: 0.95rem; }
.honest-x {
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  padding-left: 18px;
}
.honest-x::before {
  content: "−";
  position: absolute;
  left: 0;
  color: #C9453F;
  font-weight: 700;
}
.honest-check {
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  padding-left: 18px;
}
.honest-check::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--signal);
}
.honest-row--us { color: var(--ink); }
.honest-row--head .honest-row--us { color: var(--signal); }

@media (max-width: 760px) {
  .honest-row { grid-template-columns: 1fr; gap: 6px; padding: 18px; }
  .honest-row--head { display: none; }
  .honest-label { margin-bottom: 4px; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--ink);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,90,31,0.18), transparent 70%);
  pointer-events: none;
}
.pricing-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.pricing-sub {
  color: #A8A6A0;
  font-size: 1.05rem;
  margin-top: 16px;
  margin-bottom: 44px;
  max-width: 480px;
}
.pricing-toggle {
  display: inline-flex;
  background: var(--surface-dark);
  border: 1px solid #33333a;
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 44px;
}
.toggle-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #A8A6A0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn.active { background: var(--paper); color: var(--ink); }
.toggle-save {
  font-size: 0.68rem;
  background: var(--signal);
  color: #fff;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 700;
}
.toggle-btn.active .toggle-save { background: var(--signal); color: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
}
.price-card {
  background: var(--surface-dark);
  border: 1px solid #2C2C30;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 18px;
}
.price-card--featured {
  background: var(--surface-dark-2);
  border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal), 0 20px 50px rgba(255,90,31,0.15);
}
.price-tag {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--signal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.price-period { color: #A8A6A0; font-size: 0.88rem; }
.price-desc { color: #A8A6A0; font-size: 0.88rem; margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-features li {
  font-size: 0.88rem;
  color: #D4D2CC;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--signal);
  font-weight: 700;
}
.price-btn {
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}
.price-btn--ghost {
  background: transparent;
  border: 1.5px solid #3A3A40;
  color: var(--paper);
}
.price-btn--ghost:hover { border-color: var(--paper); }
.price-btn--solid {
  background: var(--signal);
  color: #fff;
}
.price-btn--solid:hover { background: #ff7140; transform: translateY(-1px); }

.pricing-footnote {
  margin-top: 28px;
  font-size: 0.85rem;
  color: #6B6B70;
}

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 110px 32px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--signal);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 620px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--signal);
  padding: 100px 32px;
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 32px;
}
.final-cta-btn {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease;
}
.final-cta-btn:hover { transform: translateY(-2px) scale(1.02); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ink); padding: 48px 32px 36px; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links { display: flex; gap: 28px; font-size: 0.85rem; color: #A8A6A0; }
.footer-links a:hover { color: var(--paper); }
.footer-copy { font-size: 0.8rem; color: #6B6B70; width: 100%; margin-top: 8px; }

@media (max-width: 760px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   FOCUS STATES (accessibility)
   ============================================ */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}
