/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, figure { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
body { -webkit-font-smoothing: antialiased; overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* Palette + type variables */
:root {
  --bg: #F4F1EA;
  --ink: #1A1A1A;
  --ink-soft: rgba(26, 26, 26, 0.62);
  --accent: #B86E1A;
  --accent-strong: #C47D2A;
  --bg-dark: #0D0B09;
  --bg-dark-alt: #1A1612;
  --ink-dark: #E8DCC8;
  --ink-dark-soft: rgba(232, 220, 200, 0.7);
  /* the app's real actionBlue constant (JournalInput.tsx, ConciergePopup.tsx)
     — rust/--accent is reserved for the wordmark only, see STYLE_GUIDE.md */
  --action-blue: #6d89aa;

  --font-display: 'Cormorant', Georgia, serif;
  --font-chrome: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Newsreader', Georgia, serif;
  /* Utility sans, for dense informational content (FAQ/security page) where
     the homepage's literary serif reads as a book report, not a product
     page — confirmed by contrast against every real FAQ/security page
     screenshotted this session (Dropbox, Asana, Basecamp, Linear, Notion,
     1Password): none of them use a display serif for this kind of content. */
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

/* Header — Liquid Glass: real translucency (content must show through and
   blur, not a solid bar with a filter tacked on) plus a specular top sheen
   and inset edge highlights so it reads as a lit material, not flat paint. */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 1120px);
  height: 68px;
  margin: 20px auto;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 20px;
  z-index: 50;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 50%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.brand-mark {
  width: 54px;
  height: auto;
  filter: invert(1);
}
/* Brand wordmark base: bold italic Cormorant Garamond, matching the app's
   real CormorantGaramond-Italic-Bold — see STYLE_GUIDE.md. Every wordmark
   instance must be bold; the app never uses the thin italic cut for the
   brand name. */
.wordmark {
  font-family: var(--font-chrome);
  font-style: italic;
  font-weight: 700;
}
.site-header .wordmark {
  font-size: 28px;
  color: var(--accent);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: 'Albert Sans', var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.site-nav a { color: #FFFFFF; }
.site-nav a:hover { color: #64C8FF; }
.site-nav a.active { color: #64C8FF; }
.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav {
  display: none;
  position: relative;
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #FFFFFF;
  list-style: none;
}
.mobile-nav-toggle::-webkit-details-marker { display: none; }
.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  padding: 16px 20px;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  z-index: 60;
}
.mobile-nav-panel a {
  color: #FFFFFF;
  font-family: 'Albert Sans', var(--font-ui);
  font-size: 16px;
  padding: 6px 0;
}
.mobile-nav-panel a:hover { color: #64C8FF; }
.mobile-channels-dd { border: none; }
.mobile-channels-toggle {
  cursor: pointer;
  color: #FFFFFF;
  font-family: 'Albert Sans', var(--font-ui);
  font-size: 16px;
  padding: 6px 0;
  list-style: none;
}
.mobile-channels-toggle:hover { color: #64C8FF; }
.mobile-channels-toggle::-webkit-details-marker { display: none; }
.mobile-channels-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.mobile-channels-dd[open] .mobile-channels-toggle::after { transform: rotate(-135deg); }
.mobile-channels-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
}
.mobile-channels-list a { font-size: 15px; }
.mobile-channels-row {
  display: none;
}
@media (max-width: 760px) {
  .site-nav { display: none; }
  .mobile-nav { display: block; }
  .header-button { display: none; }
  .mobile-channels-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    margin-bottom: 20px;
  }
  .mobile-channels-row .channel-icon {
    width: 34px;
    height: 34px;
  }
}

.channels-dd { }
.channels-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #FFFFFF;
  list-style: none;
}
.channels-trigger:hover { color: #64C8FF; }
.channels-trigger.active { color: #64C8FF; }
.channels-trigger::-webkit-details-marker { display: none; }
.channels-trigger::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.15s ease;
}
.channels-dd[open] .channels-trigger::after { transform: rotate(-135deg); margin-top: 3px; }
.channels-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(8, 7, 6, 0.58);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  z-index: 40;
}
.channels-panel::before,
.channels-panel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 29px;
  height: 29px;
}
.channels-panel::before {
  left: -29px;
  background: radial-gradient(circle at bottom left, transparent 28px, rgba(8, 7, 6, 0.58) 29px);
}
.channels-panel::after {
  right: -29px;
  background: radial-gradient(circle at bottom right, transparent 28px, rgba(8, 7, 6, 0.58) 29px);
}
.channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.channel-icon:hover { transform: scale(1.08); }
.channel-icon svg { width: 18px; height: 18px; fill: currentColor; }
.channel-hero-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}
.channel-hero-icon svg { width: 36px; height: 36px; }
.channel-hero-icon.notes svg { width: 40px; height: 40px; }
.channel-icon.wa { background: #25D366; color: #fff; }
.channel-icon.tg { background: #26A5E4; color: #fff; }
.channel-icon.notes { background: #FFD426; }
.channel-icon.notes svg { width: 20px; height: 20px; }
.channel-icon.claude { background: #D97757; color: #fff; }
.channel-icon.gpt { background: #000000; color: #fff; border: 1px solid rgba(255, 255, 255, 0.18); }
.header-button {
  font-family: 'Inter', var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  background: linear-gradient(135deg, #5EC8B8 0%, #4FA9D6 50%, #4C8CF0 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 9px 22px;
}
.header-button:hover {
  background: linear-gradient(135deg, #49AE9F 0%, #3A8FBE 50%, #3874D6 100%);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* Shared section rhythm */
section {
  padding: 96px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  max-width: 14ch;
  margin-bottom: 24px;
}
.section-body {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}

/* Footer */
.site-footer {
  padding: 56px 32px 40px;
  text-align: center;
  font-family: var(--font-chrome);
  color: var(--ink-soft);
}

/* Hero */
.hero-banner {
  text-align: center;
  font-family: 'Geist', var(--font-ui);
  font-weight: 700;
  font-size: 96px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0;
  margin: 0 0 32px;
}
.hero {
  display: block;
  width: 100%;
  max-width: none;
  margin: -108px 0 60px;
  padding: 172px 32px 64px;
  position: relative;
  background-size: cover;
  background-position: center bottom;
  min-height: 92vh;
  box-sizing: border-box;
}
.hero-copy {
  max-width: 720px;
  margin: 60px auto 0;
}
.hero .section-title {
  font-size: clamp(24px, 3.75vw, 39px);
  max-width: none;
  color: #FFFFFF;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.hero .section-body {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}
.hero-body-lead {
  font-family: var(--font-display);
  font-size: 1.6em;
  font-weight: 700;
  color: #FFFFFF;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .hero-buttons {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  max-width: 720px;
  margin: 0 auto;
  justify-content: flex-end;
}
@media (max-width: 760px) {
  .hero .hero-buttons {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 24px 0 0;
    justify-content: flex-end;
  }
}
.store-badge img {
  height: 54px;
  width: auto;
  display: block;
}
.store-badge {
  transition: opacity 0.15s ease;
}
.store-badge:hover { opacity: 0.8; }
.mac-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px;
  background: var(--ink);
  border-radius: 8px;
  transition: opacity 0.15s ease;
}
.mac-badge:hover { opacity: 0.85; }
.mac-badge svg { width: 22px; height: 22px; fill: var(--bg); flex: none; }
.mac-badge-text {
  display: flex;
  flex-direction: column;
  color: var(--bg);
  font-family: 'IBM Plex Sans', var(--font-chrome);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.mac-badge-text small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(244, 241, 234, 0.7);
}
.hero-image {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.18);
  width: 100%;
  height: 640px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
}
@media (max-width: 860px) {
  .hero-banner { font-size: 56px; }
  .hero { padding: 140px 20px 48px; }
}
@media (max-width: 760px) {
  .hero { padding-top: 108px; }
}

/* Trust */
.trust {
  position: relative;
  background-color: #000000;
  background-image: url("../images/letsgoyeti.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  border-radius: 32px;
  max-width: 1016px;
  margin: 60px auto;
}
.trust-copy { max-width: 60ch; }
.trust .section-title,
.trust .section-body { color: #FFFFFF; }
.trust .section-body { color: rgba(255, 255, 255, 0.85); }

/* Memory (dark section) */
.memory {
  background-image: linear-gradient(rgba(13, 11, 9, 0.3), rgba(13, 11, 9, 0.3)), url("../images/winding-road.png");
  background-size: cover;
  background-position: center;
  color: var(--ink-dark);
  border-radius: 0;
  width: 100%;
  max-width: none;
  margin: 60px 0;
}
.memory-copy { max-width: 480px; margin-left: auto; }
.memory .section-title { color: #FFFFFF; }
.memory .section-body { color: rgba(255, 255, 255, 0.85); }
.memory-atlas {
  max-height: 640px;
  width: auto;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
@media (max-width: 860px) {
  .memory-copy { max-width: none; margin-left: 0; }
}

/* Breadth */
.breadth-intro {
  align-self: stretch;
  text-align: right;
}
.breadth-intro .section-title,
.breadth-intro .section-body {
  margin-left: auto;
}
.tag-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 24px;
  background: rgba(100, 200, 255, 0.12);
  border-radius: 24px;
  text-align: left;
}
.tag-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.tag-pill {
  display: inline-block;
  flex: none;
  min-width: 140px;
  text-align: center;
  font-family: var(--font-chrome);
  font-style: italic;
  font-size: 17px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--ink-dark);
  cursor: pointer;
  list-style: none;
}
.tag-pill::-webkit-details-marker { display: none; }
.subtag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.subtag-pill {
  font-family: var(--font-chrome);
  font-style: italic;
  font-size: 13px;
  padding: 4px 12px;
  border: 1px solid #64C8FF;
  border-radius: 999px;
  color: var(--ink);
}
.breadth-close {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 0;
}

/* Lenses */
.lenses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.entry-card {
  margin: 0;
  padding: 20px 24px;
  border-left: 3px solid var(--ink);
  background: rgba(26, 26, 26, 0.04);
  border-radius: 0 16px 16px 0;
}
.entry-card p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 8px;
}
.entry-card footer {
  font-family: var(--font-chrome);
  font-size: 15px;
  color: var(--ink-soft);
}
.lenses-images {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.lenses-images img {
  max-height: 640px;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.18);
}
@media (max-width: 860px) {
  .lenses { grid-template-columns: 1fr; }
  .lenses-images { order: -1; }
}

/* Footer content */
.footer-mark {
  width: 259px;
  height: auto;
  margin: 0 auto 12px;
}
.site-footer .wordmark {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-badge img { height: 40px; width: auto; display: block; }
.footer-badge { transition: opacity 0.15s ease; }
.footer-badge:hover { opacity: 0.8; }
.footer-copyright { font-size: 14px; }
.footer-copyright a { color: var(--ink-soft); text-decoration: underline; }
.footer-copyright a:hover { color: var(--ink); }

/* Security / inner content pages — a short plain hero, then a real
   accordion FAQ. Pattern confirmed by directly screenshotting live FAQ
   sections (Dropbox, Asana, Zendesk): plain heading, bold question rows,
   chevron, thin dividers, collapsed by default, no per-item decoration.
   See faq-style-sheet.md for the full research this is built from. */
.sec-hero { padding-top: 40px; padding-bottom: 32px; }
.crumb {
  font-family: var(--font-chrome);
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.crumb a { color: var(--ink-soft); text-decoration: underline; }
.crumb a:hover { color: var(--ink); }
.sec-hero .section-title {
  font-size: 32px;
  max-width: none;
  margin-bottom: 20px;
}
.sec-hero p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 60%;
  margin-bottom: 18px;
}
.sec-hero p:last-child { margin-bottom: 0; }
.sec-banner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding: 40px 0;
}
.sec-banner-image {
  flex: none;
  width: 360px;
  height: auto;
  margin-left: 50px;
}
.sec-banner-copy { flex: 1; max-width: 60ch; }
.sec-banner .section-title {
  color: var(--ink);
  margin-bottom: 16px;
}
.sec-banner p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: none;
  margin-bottom: 14px;
}
.sec-banner p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .sec-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 20px;
  }
  .sec-banner-image { width: 140px; margin: 0 auto; }
}

.pricing-section { padding-top: 0; padding-bottom: 48px; }
.pricing-card {
  background: var(--bg-dark);
  color: var(--ink-dark);
  border-radius: 24px;
  padding: 40px;
  max-width: 460px;
}
.pricing-plan-name {
  font-family: var(--font-chrome);
  font-size: 18px;
  color: var(--ink-dark-soft);
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.pricing-amount span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-dark-soft);
}
.pricing-annual {
  font-size: 15px;
  color: var(--ink-dark-soft);
  margin-bottom: 24px;
}
.pricing-cta {
  display: inline-flex;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}
.pricing-features li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0 8px 22px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64C8FF;
}
.pricing-free-note {
  max-width: 460px;
  margin-top: 24px;
}
.pricing-free-note p {
  font-size: 15px;
  color: var(--ink-soft);
}
.pricing-free-note strong { color: var(--ink); }
@media (max-width: 600px) {
  .pricing-card { padding: 28px; }
  .pricing-amount { font-size: 38px; }
}

.faq-section { padding-top: 24px; padding-bottom: 96px; border-top: 1px solid rgba(26, 26, 26, 0.12); }
.faq-row {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  padding: 20px 0;
}
.faq-row summary {
  font-family: var(--font-chrome);
  font-weight: 600;
  font-size: 19px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-top: -4px;
}
.faq-row[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-row p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 62ch;
}
.faq-row a { color: var(--ink); text-decoration: underline; }
.faq-row code {
  font-family: 'IBM Plex Sans', var(--font-chrome);
  font-size: 15px;
  background: rgba(26, 26, 26, 0.06);
  padding: 2px 7px;
  border-radius: 4px;
}

/* Features page */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 48px;
}
.feature-reverse { direction: rtl; }
.feature-reverse > * { direction: ltr; }
.feature-light .feature-copy .section-title { font-size: clamp(24px, 3.75vw, 39px); max-width: none; margin-bottom: 16px; }
.feature-light .feature-copy .section-body { font-size: 17px; margin-bottom: 0; }
.feature-card:not(.feature-reverse) .feature-copy { text-align: right; }
.feature-card:not(.feature-reverse) .feature-copy .section-title,
.feature-card:not(.feature-reverse) .feature-copy .section-body { margin-left: auto; }
.feature-image {
  max-height: 420px;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.18);
  justify-self: center;
}
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--ink-dark);
  border-radius: 32px;
  max-width: 1016px;
  padding: 56px;
}
.feature-banner .section-title { color: #FFFFFF; font-size: clamp(24px, 3.75vw, 39px); max-width: none; margin-bottom: 16px; }
.feature-tagline {
  font-family: var(--font-chrome);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.feature-banner .section-body { color: rgba(255, 255, 255, 0.85); font-size: 17px; margin-bottom: 0; }
.feature-banner-solo { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.feature-banner-solo .feature-copy { max-width: 640px; }
@media (max-width: 760px) {
  .feature-card, .feature-banner { grid-template-columns: 1fr; }
  .feature-reverse { direction: ltr; }
}

.lenses-section { padding-top: 48px; padding-bottom: 96px; }
.lenses-section > .section-title { font-size: clamp(24px, 3.75vw, 39px); max-width: none; }
.lenses-section > .section-body { max-width: 60ch; }
.lens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.lens-item {
  padding: 20px;
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.03);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.lens-item h3 {
  font-family: var(--font-chrome);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.lens-item p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* Placeholder inner pages */
.placeholder-section {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}
.placeholder-section img { width: 96px; height: auto; margin: 0 auto 24px; }

/* Who It's For page */
.who-section { padding-top: 8px; padding-bottom: 96px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.who-card {
  padding: 28px;
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.03);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.who-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.who-icon {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--action-blue);
}
.who-icon svg { width: 100%; height: 100%; }
.who-card h3 {
  font-family: var(--font-chrome);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 0;
}
.who-card p { font-size: 16px; color: var(--ink-soft); }
.who-card .who-quote {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  font-family: var(--font-chrome);
  font-style: italic;
  color: var(--ink);
}

/* Get started modal */
.get-started-modal {
  border: none;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  max-width: 360px;
  width: 90vw;
}
.get-started-modal::backdrop {
  background: rgba(13, 11, 9, 0.7);
  backdrop-filter: blur(4px);
}
.modal-inner {
  position: relative;
  background: var(--bg);
  border-radius: 24px;
  padding: 28px 32px 32px;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.08);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: rgba(26, 26, 26, 0.16); }
.modal-brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  transform: translateX(-14px);
  margin-bottom: 4px;
}
.modal-mark { width: 180px; height: auto; margin: 0; }
.modal-wordmark {
  font-family: var(--font-chrome);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: var(--accent-strong);
  margin: 0;
  margin-top: 72px;
  margin-left: 12px;
  white-space: nowrap;
}
.modal-tagline {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.modal-buttons .store-badge img { height: 44px; }
