@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Variable.ttf") format("truetype-variations"),
       url("../fonts/Lora-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal-950: #0f3a43;
  --teal-900: #125c6b;
  --teal-800: #16697a;
  --cream-50: #faf5eb;
  --cream-100: #f5efe2;
  --cream-200: #efe6d3;
  --card: #fffaf1;
  --ink: #1c3a3f;
  --ink-soft: #55686b;
  --amber: #dd9c34;
  --amber-dark: #b97e21;
  --green: #3f7d52;
  --yellow: #c08a1e;
  --red: #b8503e;
  --border: #e4d9c3;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 12px 30px -12px rgba(18, 58, 66, 0.18);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: var(--teal-950);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--teal-800);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 235, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--teal-950);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand span {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.96rem;
}

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

.nav-cta {
  background: var(--teal-900);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-950);
  margin: 5px 0;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--teal-950), var(--teal-900) 60%, var(--teal-800));
  color: #f4efe3;
  overflow: hidden;
  position: relative;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.hero h1 {
  color: #fdfaf3;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 0.35em;
}

.hero .lead {
  font-size: 1.15rem;
  color: #dfe9e6;
  max-width: 46ch;
  margin-bottom: 1.6em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--teal-950);
}

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

.btn-ghost {
  border-color: rgba(244, 239, 227, 0.35);
  color: #f4efe3;
}

.btn-ghost:hover {
  border-color: rgba(244, 239, 227, 0.7);
}

.badge-soon {
  font-size: 0.85rem;
  color: #cbd8d4;
  border: 1px dashed rgba(244, 239, 227, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
}

.hero-art {
  position: relative;
  justify-self: center;
}

.hero-art img {
  width: 220px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}

/* Traffic light strip */
.status-strip {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #eef3f1;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green { background: var(--green); }
.dot-yellow { background: var(--yellow); }
.dot-red { background: var(--red); }

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 10px;
  display: block;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-950);
  color: var(--amber);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* How it works */
.how-section {
  background: var(--cream-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 8px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-900);
  color: #fdfaf3;
  font-family: "Lora", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Screenshots */
.shot-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shot-scroll figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow);
}

.shot-scroll img {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.shot-scroll figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-top: 10px;
}

/* Pro / pricing */
.pro-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
}

.pro-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pro-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}

.pro-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.pro-card {
  background: var(--teal-950);
  color: #f4efe3;
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-card .price {
  font-family: "Lora", serif;
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 4px;
}

.pro-card small {
  color: #c9d6d2;
}

/* Privacy note strip */
.privacy-strip {
  background: var(--teal-950);
  color: #eef3f1;
}

.privacy-strip .wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.privacy-strip h2 {
  color: #fdfaf3;
}

.privacy-strip .check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.privacy-strip .check-grid li {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  color: #d7e2de;
}

.privacy-strip .check-grid li::before {
  content: "•";
  color: var(--amber);
}

/* CTA */
.cta-section {
  text-align: center;
}

.cta-section .wrap {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-950));
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  color: #f4efe3;
}

.cta-section h2 {
  color: #fdfaf3;
}

.cta-section p {
  color: #dfe9e6;
  max-width: 50ch;
  margin: 0 auto 28px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--cream-100);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--teal-900);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

/* Legal pages */
.legal main {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 0.2em;
}

.legal .updated {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2.5em;
}

.legal h2 {
  font-size: 1.3rem;
  margin-top: 2em;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.92rem;
}

.legal th, .legal td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  vertical-align: top;
}

.legal th {
  background: var(--cream-200);
  color: var(--teal-950);
}

.legal ul {
  color: var(--ink);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--teal-800);
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 880px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: 160px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .shot-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-section .wrap {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .privacy-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-strip .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .shot-scroll {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 64px 0;
  }
}
