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

:root {
  --green: #4E7A65;
  --green-light: #F0F5F2;
  --green-mid: #D4E6DC;
  --black: #1A1A1A;
  --grey-dark: #444;
  --grey-mid: #888;
  --grey-light: #C8C8C8;
  --grey-bg: #F7F7F5;
  --white: #FFFFFF;
  --border: #E8E8E4;
  --hero-bg: #E7F0EC;
  --yellow: #E8C547;
  --dark: #222;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  background: var(--hero-bg);
  padding: 80px 40px 100px;
  text-align: center;
}

.hero-wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 64px;
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 56px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--yellow);
}

.hero h1 .highlight {
  display: inline-block;
  line-height: 1;              /* key fix */
  background-color: yellow;
  padding: 0.04em 0.06em 0.02em;
  vertical-align: baseline;
}

.hero-mockup {
  max-width: 520px;
  margin: 0 auto 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: #3d6150;
  transform: translateY(-1px);
}

.hero-sub {
  font-size: 14px;
  color: var(--grey-mid);
}

/* ── STATEMENT ── */
.statement {
  padding: 100px 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.statement h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.scribble {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 40vw;
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--grey-bg);
  padding: 100px 0;
}

.problem-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.problem-inner > * {
  max-width: 680px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-align: center;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}

.problem-item:first-child { border-top: 1px solid var(--border); }

.problem-x {
  color: var(--grey-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}

.problem-text {
  color: var(--grey-dark);
  line-height: 1.7;
}

.problem-text strong {
  color: var(--black);
  font-weight: 500;
}

/* ── FEATURES ── */
.features {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.feature:first-child { border-top: 1px solid var(--border); }

.feature-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  position: sticky;
  top: 40px;
}

.feature-body p {
  color: var(--grey-dark);
  line-height: 1.75;
  font-size: 16px;
  margin-bottom: 16px;
}

.feature-body p:last-of-type {
  margin-bottom: 0;
}

.feature-visual {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 28px;
}

/* ── MOCK UI ── */
.mock-ui {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.mock-search {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 11px;
  color: var(--grey-mid);
  flex: 1;
  margin: 0 12px;
}

.mock-btn {
  background: white;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 10px;
  color: var(--grey-dark);
}

.mock-sidebar {
  width: 120px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 12px;
  margin-right: 16px;
}

.mock-content-area {
  display: flex;
  gap: 0;
  flex: 1;
  min-height: 0;
}

.mock-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
  margin-bottom: 8px;
  font-weight: 500;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  font-size: 10px;
  color: var(--grey-dark);
  border-radius: 4px;
}

.mock-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.mock-item-count {
  margin-left: auto;
  color: var(--grey-light);
  font-size: 9px;
}

.mock-collection {
  padding: 10px 0;
  border-bottom: 1px solid #F0F0EE;
}

.mock-collection-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
}

.mock-chevron {
  color: var(--grey-light);
  font-size: 9px;
}

.mock-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0 4px 16px;
  font-size: 10px;
  color: var(--grey-mid);
}

.mock-favicon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--grey-bg);
  flex-shrink: 0;
}

.mock-favicon.green { background: #C8DDD4; }
.mock-favicon.blue { background: #C8D4E0; }
.mock-favicon.orange { background: #E0D4C8; }
.mock-favicon.purple { background: #4B3F8C; border-radius: 50%; }

.mock-highlight {
  background: var(--green-light);
  border-radius: 4px;
  padding: 0 4px;
  color: var(--green);
}

.mock-date {
  margin-left: auto;
  font-size: 9px;
  color: var(--grey-light);
}

.mock-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 500;
}

.mock-prune-bar {
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 10px;
  color: var(--green);
  display: flex;
  justify-content: space-between;
}

.mock-actions {
  display: flex;
  gap: 4px;
}

.mock-action {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 9px;
  color: var(--grey-dark);
}

.mock-action.keep { color: var(--green); border-color: var(--green-mid); }

/* ── FOUNDER ── */
.founder {
  background: var(--dark);
  color: white;
  padding: 100px 0;
}

.founder-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.founder-inner > * {
  max-width: 680px;
  margin: 0 auto;

  
}

.founder h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
  color: white;
}

.founder p {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 17px;
}

.founder p strong {
  color: white;
  font-weight: 500;
}

.founder p.founder-sig {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
}

.founder-signoff {
  max-width: 680px;
  margin: 36px auto 0;   /* keeps it in the same centered text column */
  text-align: left;      /* aligns name with the paragraphs */
}

.founder-signoff .founder-sig {
  margin: 0 0 14px 0;
}

.me {
  display: block;
  width: 50px;
  height: auto;
  margin: 0;             /* sits under the name, left-aligned */
}

/* ── FAQ ── */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 40px;
}

.faq > * {
  max-width: 680px;
  margin: 0 auto;
}

.faq h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-q {
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 0;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item.open .faq-q {
  margin-bottom: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--grey-light);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-q::after {
  content: '−';
}

.faq-a {
  color: var(--grey-dark);
  line-height: 1.7;
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  opacity: 1;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--grey-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
}

.cta-block h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta-block h2 em {
  font-style: italic;
  color: var(--green);
}

.cta-block p {
  color: var(--grey-mid);
  font-size: 16px;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
footer {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  text-decoration: none;
  color: var(--grey-dark);
  opacity: 0.9;
  transition: opacity 0.15s ease;
}

.footer-logo:hover { opacity: 1; }

.footer-wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.footer-tagline {
  justify-self: center;
  text-align: center;
  font-size: 13px;
  color: var(--grey-mid);

}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--grey-mid);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: white;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  nav { padding: 0 20px; }
  .hero { padding: 120px 20px 80px; }
  .prose-section { padding: 60px 20px; }
  .problem { padding: 60px 0; }
  .problem-inner { padding: 0 20px; }
  .features { padding: 60px 20px; }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature.reverse { direction: ltr; }
  .origin { padding: 60px 0; }
  .origin-inner { padding: 0 20px; }
  .faq { padding: 60px 20px; }
  .cta-block { padding: 60px 20px; }
  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
}

/* ── PRIVACY POLICY ── */
.policy-page {
  padding: 56px 24px 80px;
  background: var(--grey-bg);
  min-height: 100vh;
}

.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.policy-back {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
}

.policy-back:hover {
  text-decoration: underline;
}

.policy-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin: 20px 0 20px;
}

.policy-wrap h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  margin: 30px 0 10px;
}

.policy-wrap p,
.policy-wrap li {
  color: var(--grey-dark);
  font-size: 16px;
  line-height: 1.7;
}

.policy-wrap ul {
  margin: 8px 0 0 22px;
}

.policy-wrap ul ul {
  margin-top: 6px;
}

.policy-wrap code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: var(--green-light);
  color: var(--black);
  border-radius: 4px;
  padding: 2px 6px;
}

@media (max-width: 720px) {
  .policy-wrap {
    padding: 24px;
  }

  .policy-wrap h2 {
    font-size: 22px;
  }
}
