:root {
  --ink: #32358a;
  --green: #4e54a5;
  --ink-dark: #20234f;
  --sage: #9ba1db;
  --sage-dark: #5c6196;
  --sage-soft: #e6e8fb;
  --mist: #eef0ff;
  --lavender: #dfe2fa;
  --ivory: #f7f7fc;
  --paper: #ffffff;
  --muted: #65687b;
  --line: #d9dbea;
  --coral: #b55350;
  --shadow: 0 28px 70px rgba(42, 45, 105, .15);
  --radius: 32px;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-dark);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #6b70cf;
  outline-offset: 4px;
}
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; padding: 10px 16px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(50, 53, 138, .1); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; }
.brand-mark { position: relative; width: 34px; height: 30px; display: inline-block; }
.brand-mark i { position: absolute; top: 4px; width: 20px; height: 25px; border-radius: 70% 35% 70% 35%; background: var(--ink); transform: rotate(-28deg); }
.brand-mark i:last-child { right: 0; background: #7379cf; transform: rotate(28deg) scaleX(-1); }
.brand-logo { width: 44px; height: 44px; object-fit: cover; border-radius: 13px; box-shadow: 0 5px 16px rgba(50, 53, 138, .14); }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a { text-decoration: none; font-size: .95rem; font-weight: 650; }
.site-nav > a:not(.button):hover { color: var(--sage-dark); }
.menu-button { display: none; }
.language-picker { position: relative; }
.language-picker summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 750;
  list-style: none;
}
.language-picker summary::-webkit-details-marker { display: none; }
.language-picker summary::after { content: "▾"; position: static; margin-left: 7px; color: var(--sage-dark); font-family: var(--sans); font-size: .75rem; }
.language-picker[open] summary::after { content: "▴"; }
.language-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 4px;
  width: min(580px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  padding: 12px;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.language-menu a {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 9px;
  text-decoration: none;
  font-size: .88rem;
}
.language-menu a:hover { background: var(--sage-soft); }
.language-menu a[aria-current="page"] { color: white; background: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 28px; color: white; background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; font-weight: 750; box-shadow: 0 12px 28px rgba(50, 53, 138, .22); transition: transform .2s ease, background .2s ease; }
.button:hover { background: var(--ink-dark); transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); white-space: nowrap; }
.text-link { font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--sage); padding-block: 10px 6px; }

.hero { min-height: 760px; overflow: hidden; padding-top: 84px; background: linear-gradient(135deg, #f8f8ff 0%, #f0f1ff 56%, #e9ebff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-block; color: var(--sage-dark); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, blockquote {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: anywhere;
  hyphens: auto;
}
h1 { max-width: 760px; margin: 20px 0 24px; font-size: clamp(3.35rem, 5.1vw, 4.8rem); line-height: .98; }
.hero h1 { overflow-wrap: normal; hyphens: none; }
h1 em { display: inline-block; margin-top: .12em; color: var(--ink); font-style: normal; font-weight: 600; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: 1.22rem; line-height: 1.65; }
.hero-mobile-preview { display: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 34px 0; }
.hero .text-link { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; padding: 0 26px; border: 1px solid #bfc2dc; border-radius: 999px; background: rgba(255, 255, 255, .72); box-shadow: 0 8px 22px rgba(50, 53, 138, .07); }
.hero .text-link:hover { border-color: var(--ink); background: white; }
.trust-list { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; font-size: .96rem; }
.trust-list span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 7px; color: white; background: var(--ink); border-radius: 50%; font-weight: 900; }

.hero-visual { position: relative; min-height: 660px; display: grid; place-items: center; margin: 0; padding: 38px 26px 30px; border-radius: 56px 56px 20px 56px; background: linear-gradient(145deg, #d9ddfb, #eef0ff); }
.hero-visual > img { position: relative; z-index: 2; width: auto; height: 620px; object-fit: contain; border-radius: 42px; border: 8px solid var(--paper); box-shadow: var(--shadow); }
.image-halo { position: absolute; inset: 9% 8% 7%; width: auto; height: auto; border-radius: 42px; background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .9), rgba(146, 153, 220, .24) 48%, transparent 72%); transform: none; }
.screen-proof { position: absolute; z-index: 3; right: 18px; bottom: 18px; margin: 0; padding: 11px 15px; color: var(--ink); background: rgba(255, 255, 255, .95); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 12px 28px rgba(42, 45, 105, .13); font-size: .8rem; font-weight: 760; }
.screen-proof span { color: var(--coral); }
.floating-card { position: absolute; z-index: 3; width: 235px; padding: 17px 19px; background: rgba(255, 253, 248, .95); border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 18px 40px rgba(31, 57, 43, .14); }
.floating-card span { display: block; color: var(--sage-dark); font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 1.05rem; line-height: 1.25; }
.floating-card-top { top: 84px; right: -5px; }
.floating-card-bottom { bottom: 72px; left: -12px; }
.hero-orb { position: absolute; pointer-events: none; border-radius: 48% 52% 70% 30%; background: rgba(156, 175, 145, .15); }
.orb-one { width: 390px; height: 320px; top: -90px; right: -100px; background: rgba(128, 135, 211, .12); }
.orb-two { width: 300px; height: 390px; bottom: -180px; left: -130px; background: rgba(201, 95, 90, .07); transform: rotate(25deg); }

.reassurance { padding: 24px 0; background: var(--ink); color: white; }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.reassurance p { margin: 0; padding: 4px 20px; font-size: .9rem; font-weight: 750; }
.reassurance p + p { border-left: 1px solid rgba(255,255,255,.24); }
.reassurance p:last-child { color: #ffb5ae; }

.moment-section { overflow: hidden; background: var(--mist); }
.moment-section::before {
  position: absolute;
  top: 90px;
  right: -170px;
  width: 460px;
  height: 460px;
  background: #d9ddfb;
  border-radius: 48% 52% 36% 64%;
  content: "";
  opacity: .6;
  transform: rotate(12deg);
}
.moment-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.moment-copy h2 { max-width: 610px; overflow-wrap: normal; hyphens: none; font-size: clamp(2.9rem, 4.1vw, 4.2rem); }
.moment-copy > p:not(.example-note) { max-width: 580px; color: var(--muted); font-size: 1.12rem; }
.example-note { max-width: 580px; margin-top: 28px; padding-top: 20px; color: var(--muted); border-top: 1px solid var(--line); font-size: .86rem; line-height: 1.55; }
.moment-flow { position: relative; display: grid; gap: 14px; padding: 36px; background: var(--lavender); border: 10px solid white; border-radius: 42px; box-shadow: var(--shadow); }
.moment-flow::before { position: absolute; top: 46px; bottom: 46px; left: 20px; width: 3px; background: var(--ink); border-radius: 999px; content: ""; opacity: .72; }
.moment-card { position: relative; margin-left: 4px; padding: 24px 28px; background: white; border: 1px solid rgba(50, 53, 138, .08); border-radius: 26px; box-shadow: 0 10px 25px rgba(42, 45, 105, .07); }
.moment-card span { display: block; margin-bottom: 8px; color: var(--ink); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.moment-card p { margin: 0; font-size: 1.12rem; line-height: 1.5; }
.moment-situation, .moment-phrase, .moment-next { background: white; }
.moment-phrase p { font-family: var(--serif); font-size: clamp(1.45rem, 2.1vw, 2rem); font-weight: 650; line-height: 1.3; }
.moment-next span { color: var(--coral); }
.evidence-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.evidence-strip p { display: grid; gap: 2px; margin: 0; padding: 24px 28px; }
.evidence-strip p + p { border-left: 1px solid var(--line); }
.evidence-strip strong { font-family: var(--serif); font-size: 1.08rem; }
.evidence-strip span { color: var(--muted); font-size: .82rem; }

.app-showcase { background: var(--paper); }
.app-showcase .section-heading { max-width: 850px; }
.app-showcase .section-heading h2 { font-size: clamp(2.8rem, 4.7vw, 4.8rem); }
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 64px 54px;
  width: min(100%, 960px);
  margin: 64px auto 72px;
}
.screenshot-card { min-width: 0; margin: 0; padding: 24px; background: var(--mist); border-radius: 40px; }
.screenshot-card:nth-child(even) { margin-top: 72px; }
.screenshot-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 22px 52px rgba(42, 45, 105, .15);
}
.screenshot-card figcaption { display: grid; gap: 4px; padding: 20px 6px 4px; }
.screenshot-card strong { font-family: var(--serif); font-size: 1.45rem; }
.screenshot-card span { max-width: 390px; color: var(--muted); font-size: .95rem; line-height: 1.5; }

.section-heading { max-width: 760px; }
h2 { margin: 18px 0 22px; font-size: clamp(2.8rem, 4.8vw, 4.7rem); }
.section-heading > p, .benefit-copy > p { max-width: 660px; color: var(--muted); font-size: 1.1rem; }
.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0; margin: 60px 0 0; list-style: none; }
.step-card { position: relative; min-height: 330px; padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 38px rgba(42, 45, 105, .07); }
.step-card.featured { background: var(--lavender); transform: translateY(-18px); }
.step-number { position: absolute; right: 28px; top: 25px; color: var(--sage-dark); font-family: var(--serif); font-size: 1.25rem; }
.step-icon { display: grid; place-items: center; width: 56px; height: 56px; color: var(--ink); background: var(--ivory); border-radius: 50%; font-family: var(--serif); font-size: 1.75rem; }
.step-card h3 { margin: 45px 0 12px; font-family: var(--serif); font-size: 1.65rem; }
.step-card p { color: var(--muted); }

.benefits { background: var(--mist); }
.benefit-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 90px; align-items: center; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 35px 0 0; list-style: none; }
.check-list li { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.check-list li > span { display: grid; place-items: center; flex: 0 0 40px; height: 40px; color: white; background: var(--ink); border-radius: 50%; font-weight: 900; }
.check-list strong, .check-list small { display: block; }
.check-list small { margin-top: 3px; color: var(--muted); font-size: .9rem; }
.lifestyle-card { position: relative; margin: 0; }
.lifestyle-card::before { content: ""; position: absolute; inset: -25px 25px 35px -30px; background: var(--lavender); border-radius: 52px 52px 20px 52px; transform: rotate(-3deg); }
.lifestyle-card img { position: relative; width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.lifestyle-card figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 16px 18px; color: var(--ink); background: rgba(255, 253, 248, .92); backdrop-filter: blur(10px); border-radius: 14px; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }

.feature-screenshot { margin: 0; text-align: center; }
.feature-screenshot img { width: min(390px, 100%); max-height: 700px; margin-inline: auto; object-fit: contain; border: 1px solid var(--line); border-radius: 38px; box-shadow: var(--shadow); }
.feature-screenshot figcaption { margin-top: 16px; color: var(--muted); font-size: .85rem; }

.safety-section { color: white; background: var(--ink); }
.safety-section .section-heading { max-width: 880px; }
.safety-section .eyebrow { color: #c9ccff; }
.safety-section .section-heading > p { color: #e0e1f2; }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: rgba(255,255,255,.22); }
.safety-grid article { padding: 30px; background: var(--ink); }
.safety-grid h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 1.5rem; }
.safety-grid p { margin: 0; color: #e0e1f2; }
.safety-link { margin: 26px 0 0; }
.safety-link a { color: white; font-weight: 750; text-underline-offset: 4px; }

.quote-section { color: white; background: var(--ink); text-align: center; overflow: hidden; }
.quote-wrap { max-width: 920px; }
.quote-mark { font-family: var(--serif); font-size: 5rem; line-height: .6; color: var(--sage); }
blockquote { margin: 24px auto 26px; font-size: clamp(2.2rem, 4.2vw, 4.2rem); }
.quote-wrap p { color: #d7d9ef; font-size: .88rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.faq-list { display: grid; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 46px 25px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--sage-dark); font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -8px 0 25px; padding-right: 40px; color: var(--muted); }

.final-cta { padding-top: 40px; }
.cta-panel { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding: 65px; color: white; background: linear-gradient(135deg, var(--ink), #464ba5); border-radius: 42px; overflow: hidden; }
.cta-panel h2 { max-width: 720px; margin-bottom: 15px; font-size: clamp(2.4rem, 4.2vw, 4.1rem); }
.cta-panel p { margin: 0; color: #e0e1f2; }
.cta-panel .eyebrow { color: #c9ccff; }

/* Lovable-inspired caregiver journey */
.human-hero { min-height: 0; padding: 72px 0 96px; }
.human-hero .hero-grid { grid-template-columns: .88fr 1.12fr; gap: 54px; }
.human-hero h1 { max-width: 650px; font-size: clamp(3.25rem, 5.8vw, 5.75rem); line-height: .95; }
.hero-trust { display: flex; align-items: flex-start; gap: 10px; max-width: 600px; margin: 30px 0 0; color: var(--muted); font-size: .95rem; }
.hero-trust span { display: grid; place-items: center; flex: 0 0 24px; height: 24px; color: white; background: var(--ink); border-radius: 50%; font-weight: 900; }
.hero-photo { min-height: 620px; padding: 0; place-items: stretch; overflow: hidden; background: #d8d3cb; box-shadow: var(--shadow); }
.hero-photo > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center; border: 0; border-radius: inherit; box-shadow: none; }
.hero-response { position: absolute; z-index: 3; right: 24px; bottom: 24px; left: 24px; display: grid; grid-template-columns: minmax(120px, .32fr) 1fr; gap: 7px 18px; margin: 0; padding: 22px 24px; background: rgba(255, 255, 255, .94); border: 1px solid rgba(255,255,255,.75); border-radius: 24px; box-shadow: 0 18px 44px rgba(34, 32, 49, .18); backdrop-filter: blur(14px); }
.hero-response span, .coach-answer dt, .step-demo span, .personal-answer span, .profile-card > span { color: var(--sage-dark); font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.hero-response strong, .hero-response p { margin: 0; font-size: .94rem; line-height: 1.45; }
.hero-response strong { font-family: var(--serif); font-size: 1.08rem; }

.audience-section { background: var(--paper); }
.audience-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: end; }
.question-grid { display: grid; gap: 14px; }
.question-grid p { margin: 0; padding: 22px 24px; color: var(--ink); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); }
.question-grid p:nth-child(2) { margin-left: 34px; background: var(--lavender); }
.question-grid p:nth-child(3) { margin-left: 68px; }

.story-section { background: var(--ink-dark); color: white; }
.story-section .eyebrow { color: #c9ccff; }
.story-section .section-heading { max-width: 900px; }
.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 56px; }
.story-panel { min-width: 0; margin: 0; overflow: hidden; color: var(--ink-dark); background: white; border-radius: 30px; }
.story-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-panel > div { padding: 28px; }
.story-panel span { color: var(--sage-dark); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.story-panel h3 { margin: 10px 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.1; }
.story-panel p { margin: 10px 0 0; color: var(--muted); }
.story-coach { display: grid; align-content: center; color: white; background: linear-gradient(145deg, #464ba5, var(--ink)); }
.story-coach span { color: #dfe2fa; }
.coach-answer { display: grid; gap: 10px; margin: 26px 0 0; }
.coach-answer > div { padding: 16px 18px; color: var(--ink-dark); background: white; border-radius: 16px; }
.coach-answer dt { margin-bottom: 5px; }
.coach-answer dd { margin: 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 650; line-height: 1.35; }

.preserved-example { background: #f5f3fb; }
.lovable-steps { background: var(--paper); }
.lovable-steps .steps { align-items: stretch; }
.lovable-steps .step-card { min-height: 560px; display: flex; flex-direction: column; }
.lovable-steps .step-card.featured { background: var(--lavender); }
.step-demo { display: grid; gap: 7px; margin-top: auto; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.step-demo span:not(:first-child) { margin-top: 10px; }
.step-demo strong { font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; }
.step-demo small { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.center-action { margin: 46px 0 0; text-align: center; }

.support-pillars { background: var(--mist); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 48px; }
.pillar-card { padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 36px rgba(42,45,105,.06); }
.pillar-card > span { display: grid; place-items: center; width: 54px; height: 54px; color: white; background: var(--ink); border-radius: 18px; font-size: 1.55rem; }
.pillar-card h3, .moment-library-grid h3, .expertise-grid h3 { margin: 26px 0 12px; font-family: var(--serif); font-size: 1.65rem; line-height: 1.15; }
.pillar-card p, .moment-library-grid p, .expertise-grid p { margin: 0; color: var(--muted); }

.moment-library { background: var(--paper); }
.moment-library-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 48px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); }
.moment-library-grid article { min-height: 210px; padding: 30px; background: var(--ivory); }
.moment-library-grid h3 { margin-top: 0; }

.personal-coach { overflow: hidden; background: linear-gradient(135deg, #e8eaff, #f6f6fc); }
.personal-coach::after { position: absolute; right: -130px; bottom: -180px; width: 440px; height: 440px; background: rgba(115,121,207,.14); border-radius: 44% 56% 68% 32%; content: ""; }
.profile-compare { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; margin-top: 48px; }
.profile-card { padding: 34px; background: rgba(255,255,255,.84); border: 1px solid white; border-radius: var(--radius); box-shadow: 0 14px 38px rgba(42,45,105,.08); }
.profile-card h3 { margin: 18px 0; font-family: var(--serif); font-size: 1.75rem; }
.profile-card p { color: var(--muted); }
.profile-card-rich { background: white; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.profile-tags li { padding: 8px 12px; color: var(--ink); background: var(--sage-soft); border-radius: 999px; font-size: .82rem; font-weight: 750; }
.personal-premium { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .95fr; gap: 60px; align-items: center; margin-top: 22px; padding: 48px; color: white; background: var(--ink-dark); border-radius: 38px; }
.personal-premium h3 { margin: 16px 0; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.05; }
.personal-premium p { color: #dfe2fa; }
.personal-premium .button { margin-top: 12px; color: var(--ink); background: white; border-color: white; }
.personal-premium small { display: block; margin-top: 18px; color: #c9ccdf; line-height: 1.5; }
.personal-answer { display: grid; gap: 8px; padding: 28px; color: var(--ink-dark); background: white; border-radius: 24px; }
.personal-answer span:not(:first-child) { margin-top: 12px; }
.personal-answer strong { font-family: var(--serif); font-size: 1.18rem; line-height: 1.35; }
.personal-answer p { margin: 0; color: var(--muted); }

.expertise-section { background: var(--paper); }
.expertise-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.expertise-grid article { padding: 32px; background: var(--ivory); border-left: 5px solid var(--ink); border-radius: 0 22px 22px 0; }
.expertise-grid h3 { margin-top: 0; }

.founder-section { background: #ece9e4; }
.founder-grid { display: grid; grid-template-columns: 1fr; }
.founder-copy { width: min(100%, 940px); margin-inline: auto; }
.founder-copy blockquote { margin: 30px 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.45; }
.founder-copy ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.founder-copy li { padding: 10px 14px; color: var(--ink); background: white; border-radius: 999px; font-size: .85rem; font-weight: 750; }

.community-section { background: var(--paper); }
.community-card { display: grid; grid-template-columns: 1fr auto; gap: 28px 60px; align-items: center; padding: 56px; color: white; background: linear-gradient(135deg, #4a4fa7, var(--ink-dark)); border-radius: 38px; }
.community-card .eyebrow { color: #c9ccff; }
.community-card h2 { max-width: 760px; margin-bottom: 16px; }
.community-card p { max-width: 760px; color: #e4e5f4; }
.community-links { display: grid; gap: 12px; }
.community-links .button:first-child { background: white; color: var(--ink); border-color: white; }
.community-card > small { grid-column: 1 / -1; color: #c9ccdf; }

.testimonials { background: var(--mist); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 48px; }
.testimonial-grid blockquote { min-height: 220px; margin: 0; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--serif); font-size: 1.5rem; line-height: 1.35; }
.testimonial-grid blockquote::before { display: block; margin-bottom: 18px; color: var(--ink); content: "“"; font-size: 3rem; line-height: .5; }

.disclaimer-section { padding-top: 0; background: var(--mist); }
.disclaimer-card { padding: 44px; text-align: center; background: white; border: 1px solid var(--line); border-radius: 28px; }
.disclaimer-card h2 { margin-block: 12px; font-size: clamp(2.4rem, 4vw, 3.8rem); }
.disclaimer-card p { max-width: 820px; margin: 0 auto; color: var(--muted); }

.emotional-cta .cta-panel { display: grid; grid-template-columns: .85fr 1.15fr; padding: 0; background: var(--ink-dark); }
.emotional-cta .cta-panel > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.emotional-cta .cta-panel > div { padding: 56px 56px 56px 0; }
.emotional-cta .cta-panel h2 { font-size: clamp(2.35rem, 3.7vw, 3.7rem); }
.emotional-cta .cta-panel .button { margin-top: 28px; }
.emotional-cta .cta-panel small { display: block; margin-top: 14px; color: #c9ccdf; }

.site-footer { padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-grid > p { margin: 0; color: var(--muted); text-align: center; font-size: .8rem; }
.footer-grid nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; font-size: .8rem; }

.resource-section { background: var(--paper); }
.content-main { min-height: 70vh; }
.content-hero { padding: 92px 0 62px; background: var(--paper); }
.content-hero h1,
.article-header h1 {
  max-width: 960px;
  margin: 18px 0 24px;
  font-size: clamp(3rem, 7vw, 6rem);
}
.content-hero p,
.article-lead { max-width: 780px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.65; }
.content-narrow { width: min(100% - 40px, 880px); }
.content-library { padding-top: 52px; }
.topic-cluster + .topic-cluster { margin-top: 72px; }
.topic-cluster-header { max-width: 760px; }
.topic-cluster-header h2 { margin: 12px 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; }
.topic-cluster-header p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.content-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 46px; }
.content-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.content-card h2,
.content-card h3 { margin: 16px 0 12px; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; }
.content-card h2 a,
.content-card h3 a { text-decoration: none; }
.content-card p { flex: 1; margin: 0 0 20px; color: var(--muted); }
.resource-all { margin: 34px 0 0; text-align: center; }
.seo-article { padding: 50px 0 100px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; color: var(--muted); font-size: .86rem; }
.breadcrumbs a { color: inherit; }
.article-header { padding-bottom: 34px; }
.article-meta { color: var(--muted); font-size: .86rem; }
.article-meta a { color: inherit; }
.quick-answer,
.safety-note,
.article-cta {
  margin: 34px 0;
  padding: 26px 28px;
  border-radius: 16px;
}
.quick-answer { background: var(--sage-soft); border: 1px solid rgba(18, 63, 46, .1); }
.quick-answer h2 { margin: 0 0 10px; font-size: 1.45rem; }
.quick-answer p { margin: 0; font-size: 1.08rem; }
.safety-note { display: grid; gap: 6px; color: #293633; background: #f5efe2; border-left: 5px solid #b6894d; }
.safety-note strong { color: var(--ink); }
.article-body { font-size: 1.04rem; line-height: 1.72; }
.article-body section { padding: 36px 0; border-top: 1px solid var(--line); }
.article-body h2,
.article-sources h2 { margin: 0 0 18px; font-size: clamp(1.8rem, 4vw, 2.65rem); line-height: 1.15; }
.article-body h3 { font-family: var(--serif); font-size: 1.4rem; }
.article-body li + li { margin-top: 10px; }
.content-steps { display: grid; gap: 14px; padding: 0; list-style: none; counter-reset: content-step; }
.content-steps li {
  display: grid;
  grid-template-columns: minmax(150px, .38fr) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.content-steps span { color: var(--muted); }
.phrase-list { display: grid; gap: 10px; margin: 24px 0; }
.phrase-list p { margin: 0; padding: 17px 20px; background: var(--paper); border-left: 4px solid var(--sage); border-radius: 0 12px 12px 0; font-family: var(--serif); font-size: 1.2rem; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: var(--ink); }
.article-cta h2 { margin: 8px 0; font-size: clamp(1.9rem, 4vw, 3rem); }
.article-cta p { max-width: 590px; margin: 0; color: #d7e1d9; }
.article-cta .eyebrow { color: #bad0bf; }
.article-cta .button { flex: 0 0 auto; color: var(--ink); background: white; border-color: white; }
.article-sources { padding: 38px 0 0; border-top: 1px solid var(--line); }
.article-sources li + li { margin-top: 10px; }
.article-sources small { color: var(--muted); }
.related-guides { margin: 38px 0; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-guides h2 { margin: 10px 0 22px; font-size: clamp(1.8rem, 4vw, 2.65rem); line-height: 1.15; }
.related-guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.related-guide-link {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.related-guide-link:hover { border-color: var(--sage); transform: translateY(-2px); }
.related-guide-link span { color: var(--muted); font-size: .76rem; }
.related-guide-link strong { font-family: var(--serif); font-size: 1.12rem; line-height: 1.25; }
.related-guides > p { margin: 22px 0 0; }

.legal-page { background: var(--paper); }
.legal-header { position: static; border-bottom: 1px solid var(--line); background: rgba(247,243,234,.96); }
.legal-header .legal-nav { margin-top: 0; }
.legal-main { padding: 72px 0 100px; }
.legal-hero { max-width: 820px; margin-bottom: 56px; }
.legal-hero h1 { max-width: 900px; margin: 10px 0 20px; font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: .98; }
.legal-hero p { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.legal-updated { display: inline-block; margin-top: 14px; color: var(--muted); font-size: .85rem; }
.legal-content { max-width: 820px; }
.legal-content section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 14px; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.15; }
.legal-content h3 { margin: 24px 0 8px; font-size: 1.08rem; }
.legal-content p, .legal-content li { color: #36413e; }
.legal-content ul, .legal-content ol { padding-left: 1.35rem; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-content address { font-style: normal; line-height: 1.7; }
.legal-note { padding: 20px 22px; border-left: 4px solid var(--green); background: #eef5ee; border-radius: 0 12px 12px 0; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; }
.legal-nav a { color: var(--muted); font-size: .9rem; }
.language-switch { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; font-size: .86rem; white-space: nowrap; }
.language-switch a { color: var(--muted); text-underline-offset: 3px; }
.language-switch [aria-current="page"] { color: var(--ink); font-weight: 800; text-decoration: none; }
.legal-source-links { display: grid; gap: 8px; padding-left: 1.2rem; }
.support-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.support-actions .button { color: white; text-decoration: none; }

.consent-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(940px, calc(100% - 44px));
  margin-inline: auto;
  padding: 24px;
  color: white;
  background: var(--ink-dark);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(11, 46, 34, .28);
}
.consent-banner[hidden] { display: none; }
.consent-copy { max-width: 610px; }
.consent-copy strong { font-family: var(--serif); font-size: 1.35rem; }
.consent-copy p { margin: 5px 0 0; color: #d7e1d9; font-size: .9rem; line-height: 1.5; }
.consent-copy a { color: white; text-underline-offset: 3px; }
.consent-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.consent-button, .consent-settings {
  min-height: 44px;
  padding: 0 16px;
  font: inherit;
  font-size: .86rem;
  font-weight: 750;
  cursor: pointer;
  border-radius: 8px;
}
.consent-button { border: 1px solid white; }
.consent-decline { color: white; background: transparent; }
.consent-accept { color: var(--ink-dark); background: white; }
.consent-settings {
  position: fixed;
  z-index: 19;
  bottom: 12px;
  left: 12px;
  min-height: 38px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(31, 57, 43, .12);
}
.consent-settings[hidden] { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: fade-up .65s both; }
  .reveal:nth-child(2) { animation-delay: .08s; }
  .reveal:nth-child(3) { animation-delay: .16s; }
  @keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .hero-grid, .benefit-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero { padding-top: 65px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .trust-list { display: inline-grid; text-align: left; }
  .hero-visual { min-height: 600px; }
  .hero-visual > img { height: 600px; }
  .screen-proof { right: 50%; transform: translateX(50%); white-space: nowrap; }
  .moment-grid { grid-template-columns: 1fr; gap: 48px; }
  .moment-copy { max-width: 700px; }
  .moment-flow { max-width: 760px; }
  .steps { grid-template-columns: 1fr; max-width: 650px; }
  .step-card, .step-card.featured { min-height: 0; transform: none; }
  .step-card h3 { margin-top: 28px; }
  .benefit-grid, .faq-grid { gap: 55px; }
  .screenshot-grid { gap: 48px 28px; }
  .screenshot-card:nth-child(even) { margin-top: 40px; }
  .safety-grid { grid-template-columns: 1fr; }
  .lifestyle-card { max-width: 600px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-grid nav { justify-content: center; }
  .content-card-grid { grid-template-columns: 1fr; }
  .related-guide-grid { grid-template-columns: 1fr; }
  .legal-main { padding-top: 48px; }
  .human-hero .hero-grid,
  .audience-layout { grid-template-columns: 1fr; }
  .human-hero .hero-copy { text-align: left; }
  .human-hero .hero-lead { margin-inline: 0; }
  .human-hero .hero-actions { justify-content: flex-start; }
  .hero-photo { min-height: 560px; }
  .hero-photo > img { height: 560px; min-height: 560px; }
  .audience-layout { gap: 48px; }
  .question-grid { max-width: 700px; }
  .lovable-steps .step-card { min-height: 0; }
  .pillar-grid, .moment-library-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-compare, .personal-premium, .emotional-cta .cta-panel { grid-template-columns: 1fr; }
  .personal-premium { gap: 38px; }
  .community-card { grid-template-columns: 1fr; }
  .community-links { display: flex; flex-wrap: wrap; }
  .community-card > small { grid-column: auto; }
  .emotional-cta .cta-panel > img { min-height: 360px; max-height: 520px; }
  .emotional-cta .cta-panel > div { padding: 0 44px 48px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 600px); }
  .menu-button { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; color: var(--ink); background: transparent; border: 0; }
  .menu-button span:not(.sr-only) { width: 22px; height: 2px; background: currentColor; }
  .site-nav { display: none; position: absolute; top: 72px; left: 14px; right: 14px; padding: 18px; flex-direction: column; align-items: stretch; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 44px; display: flex; align-items: center; padding-inline: 12px; }
  .site-nav .button { justify-content: center; color: white; }
  .site-nav .language-picker { padding-inline: 12px; }
  .site-nav .language-picker summary { min-height: 44px; }
  .language-menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-height: 46vh;
    margin-bottom: 10px;
    box-shadow: none;
  }
  h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(2.35rem, 10.5vw, 3.6rem); }
  .hero .eyebrow { display: block; max-width: 100%; line-height: 1.5; white-space: normal; }
  .hero h1 { max-width: 100%; overflow-wrap: break-word; }
  .hero h1 em { display: block; max-width: 100%; white-space: normal; }
  .hero-actions { display: grid; }
  .hero-mobile-preview { display: block; width: 190px; margin: 30px auto; }
  .hero-mobile-preview img { width: 100%; border: 5px solid var(--paper); border-radius: 24px; box-shadow: 0 18px 44px rgba(31, 57, 43, .16); }
  .hero-grid > .hero-visual { display: grid; }
  .floating-card { display: none; }
  .hero-visual { min-height: 500px; }
  .hero-visual > img { width: auto; height: 500px; border-radius: 30px; }
  .image-halo { width: 390px; height: 390px; }
  .screen-proof { bottom: 5px; max-width: calc(100% - 12px); white-space: normal; text-align: center; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .reassurance p { padding: 9px; }
  .reassurance p + p { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .moment-section::before { top: 280px; right: -250px; }
  .moment-grid { gap: 34px; }
  .moment-copy h2 { font-size: clamp(2.35rem, 10.5vw, 3.6rem); }
  .moment-flow { gap: 10px; padding: 20px; border-radius: 26px; }
  .moment-flow::before { left: 10px; }
  .moment-card { padding: 20px; border-radius: 18px; }
  .moment-card p { font-size: 1rem; }
  .moment-phrase p { font-size: 1.4rem; }
  .evidence-strip { grid-template-columns: 1fr; margin-top: 50px; }
  .evidence-strip p { padding: 18px 0; }
  .evidence-strip p + p { border-top: 1px solid var(--line); border-left: 0; }
  .cta-panel { display: grid; grid-template-columns: minmax(0, 1fr); padding: 38px 25px; }
  .cta-panel > * { min-width: 0; }
  .cta-panel h2 { overflow-wrap: anywhere; }
  .button-light { width: 100%; }
  .content-narrow { width: min(100% - 28px, 880px); }
  .content-hero { padding-top: 64px; }
  .content-card { padding: 24px; }
  .article-cta { display: grid; }
  .article-cta .button { width: 100%; }
  .content-steps li { grid-template-columns: 1fr; gap: 6px; }
  .quick-answer, .safety-note, .article-cta { padding: 22px; }
  .screenshot-grid { grid-template-columns: 1fr; width: min(100%, 360px); gap: 44px; margin: 44px auto 0; }
  .screenshot-card:nth-child(even) { margin-top: 0; }
  .legal-header .nav-wrap { flex-wrap: wrap; padding-block: 16px; }
  .legal-header .brand { white-space: nowrap; }
  .legal-header .legal-nav { width: 100%; padding-top: 12px; border-top: 1px solid var(--line); }
  .legal-header .language-switch { margin-left: 0; }
  .consent-banner { align-items: stretch; flex-direction: column; gap: 18px; padding: 20px; }
  .consent-actions { display: grid; grid-template-columns: 1fr; }
  .consent-button { width: 100%; }
  .consent-settings { max-width: calc(100% - 24px); }
  .brand { font-size: 1.05rem; }
  .brand-logo { width: 38px; height: 38px; border-radius: 11px; }
  .human-hero { padding-top: 52px; }
  .human-hero .hero-copy { text-align: left; }
  .human-hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .human-hero .hero-actions { justify-content: stretch; }
  .human-hero .hero-actions > * { width: 100%; }
  .hero-photo { display: block; min-height: 0; border-radius: 30px; }
  .hero-photo > img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 30px 30px 0 0;
  }
  .hero-response {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: minmax(82px, .42fr) 1fr;
    gap: 6px 10px;
    margin: -16px 12px 12px;
    padding: 15px;
    border-radius: 18px;
  }
  .hero-response strong, .hero-response p { margin: 0; font-size: .84rem; line-height: 1.35; }
  .hero-response strong { font-size: .94rem; }
  .audience-layout { gap: 36px; }
  .question-grid p, .question-grid p:nth-child(2), .question-grid p:nth-child(3) { margin-left: 0; border-radius: 22px; }
  .story-grid, .pillar-grid, .moment-library-grid, .expertise-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .story-panel img { max-height: 200px; aspect-ratio: 16 / 9; }
  .story-panel > div { padding: 22px; }
  .lovable-steps .step-card { padding: 26px; }
  .profile-compare { grid-template-columns: 1fr; }
  .profile-card, .personal-premium { padding: 26px; border-radius: 26px; }
  .profile-tags li { font-size: .76rem; }
  .founder-copy blockquote { font-size: 1.25rem; }
  .community-card { padding: 34px 24px; border-radius: 28px; }
  .community-links { display: grid; }
  .testimonial-grid blockquote { min-height: 0; }
  .disclaimer-card { padding: 32px 22px; }
  .emotional-cta .cta-panel { border-radius: 30px; }
  .emotional-cta .cta-panel > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .emotional-cta .cta-panel > div { padding: 0 24px 34px; }

  /* Keep the tall in-app screens available without making the page four screens longer. */
  .screenshot-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 72vw);
    gap: 14px;
    width: auto;
    max-width: none;
    margin: 32px -14px 0;
    padding: 4px 14px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .screenshot-card {
    scroll-snap-align: start;
    padding: 12px;
    border-radius: 24px;
  }
  .screenshot-card img {
    width: auto;
    max-width: 100%;
    max-height: 52svh;
    margin-inline: auto;
    border-radius: 20px;
  }
  .screenshot-card figcaption { padding: 14px 2px 2px; }
  .screenshot-card strong { font-size: 1.2rem; }
  .screenshot-card span { font-size: .88rem; line-height: 1.4; }
  .feature-screenshot img { width: auto; max-width: 100%; max-height: 52svh; }
}

[dir="rtl"] .site-nav,
[dir="rtl"] .hero-copy,
[dir="rtl"] .benefit-copy,
[dir="rtl"] .section-heading,
[dir="rtl"] .faq-list,
[dir="rtl"] .site-footer { text-align: right; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .trust-list span { margin-right: 0; margin-left: 7px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
