@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --cream: #fff8f7;
  --blush: #fceced;
  --rose: #e91e63;
  --wine: #8f4852;
  --wine-dark: #66323a;
  --green: #173f2d;
  --ink: #211d1e;
  --muted: #6f6264;
  --line: rgba(90, 52, 59, .13);
  --white: #fffdfc;
  --shadow: 0 28px 70px rgba(77, 37, 45, .14);
  --shell: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, select:focus-visible { outline: 3px solid rgba(143, 72, 82, .35); outline-offset: 4px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}
.section-shell, .nav-shell, .footer-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 247, .84);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { border-radius: 12px; box-shadow: 0 7px 18px rgba(72, 39, 45, .12); }
.brand span { font-family: 'Fraunces', Georgia, serif; font-size: 1.45rem; font-weight: 600; letter-spacing: -.02em; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: var(--muted); font-size: .91rem; font-weight: 600; text-decoration: none; }
nav a:hover, nav a.active { color: var(--wine); }
.language-picker { position: relative; display: inline-flex; align-items: center; width: 100%; }
.language-picker::after {
  content: '⌄';
  position: absolute;
  right: 11px;
  top: 50%;
  color: var(--wine);
  font-size: .82rem;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-58%);
}
.language-picker select {
  width: 100%;
  min-height: 36px;
  appearance: none;
  padding: 6px 31px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--wine-dark);
  font: 600 .84rem/1.2 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  cursor: pointer;
}
.language-picker select:hover { background: rgba(255, 255, 255, .9); }
.nav-cta { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); }

.hero { min-height: 730px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding-block: 80px 96px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--wine); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
h1, h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -.045em; line-height: 1.04; }
h1 { max-width: 710px; font-size: clamp(3.5rem, 6vw, 6rem); }
h1 em, h2 em { color: var(--wine); font-style: italic; }
.hero-lede { max-width: 620px; margin: 30px 0 34px; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.store-badge { display: flex; min-width: 176px; align-items: center; gap: 11px; padding: 9px 17px 10px; border: 0; border-radius: 12px; background: #1d1a1b; color: white; font-family: inherit; text-align: left; opacity: 1; cursor: default; }
.store-badge:disabled { color: white; opacity: 1; }
.store-badge small, .store-badge strong { display: block; line-height: 1.05; }
.store-badge small { margin-bottom: 4px; color: rgba(255,255,255,.72); font-size: .6rem; font-weight: 600; letter-spacing: .02em; }
.store-badge strong { font-size: 1.03rem; font-weight: 600; }
.store-icon { width: 27px; height: 27px; fill: currentColor; flex: 0 0 27px; }
.text-link { color: var(--wine); font-size: .88rem; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 51px; padding: 0 22px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: white; box-shadow: 0 13px 26px rgba(112, 54, 65, .22); }
.button-primary:hover { background: var(--wine-dark); box-shadow: 0 17px 32px rgba(112, 54, 65, .28); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.55); color: var(--wine-dark); }
.trust-list { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; list-style: none; color: var(--muted); font-size: .84rem; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #e4eee8; color: var(--green); font-size: .68rem; font-weight: 700; }

.hero-art { position: relative; min-height: 570px; display: grid; place-items: center; }
.icon-card { position: relative; z-index: 2; width: min(390px, 85%); padding: 30px 30px 25px; border: 1px solid rgba(255,255,255,.75); border-radius: 42px; background: rgba(255,255,255,.58); box-shadow: var(--shadow); backdrop-filter: blur(18px); transform: rotate(2.4deg); }
.icon-card > img { width: 100%; border-radius: 28%; box-shadow: 0 20px 42px rgba(64, 38, 45, .12); }
.icon-caption { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 9px; padding: 20px 7px 2px; }
.icon-caption .caption-label { color: var(--wine); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.icon-caption strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.6rem; }
.icon-caption > span:last-child { grid-column: 1 / -1; color: var(--muted); font-size: .88rem; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 430px; height: 430px; background: radial-gradient(circle at 35% 28%, #ffd8c8, #f8aec8 57%, #d6bdff); transform: translate(45px, -40px); opacity: .7; }
.orb-two { width: 300px; height: 300px; background: #dce9dc; transform: translate(-150px, 165px); opacity: .72; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,255,255,.84); box-shadow: 0 14px 30px rgba(81, 46, 53, .13); color: var(--muted); font-size: .8rem; font-weight: 600; backdrop-filter: blur(14px); }
.floating-note span { color: var(--wine); font-weight: 800; }
.note-top { top: 90px; right: -12px; }
.note-bottom { bottom: 80px; left: -15px; }

.marquee { overflow: hidden; padding: 17px 0; border-block: 1px solid var(--line); background: var(--wine); color: #fff8f7; white-space: nowrap; }
.marquee div { width: max-content; margin: auto; font-family: 'Fraunces', Georgia, serif; font-size: 1rem; letter-spacing: .015em; word-spacing: 10px; }
.marquee span { color: #facccd; }

.showcase { padding-block: 130px 150px; }
.section-heading { max-width: 740px; margin: 0 auto 70px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .feature-intro h2, .closing h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.section-heading > p:last-child { max-width: 610px; margin: 24px auto 0; color: var(--muted); font-size: 1.05rem; }
.phone-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: 24px; }
.swipe-hint { display: none; }
.phone-card { min-width: 0; }
.phone-left { transform: translateY(42px) rotate(-2deg); }
.phone-inner-left { transform: rotate(-.65deg); }
.phone-inner-right { transform: rotate(.65deg); }
.phone-right { transform: translateY(42px) rotate(2deg); }
.phone-frame { position: relative; overflow: hidden; padding: 10px; border: 1px solid rgba(59, 34, 39, .2); border-radius: 42px; background: #211d1e; box-shadow: 0 32px 65px rgba(66, 31, 39, .2); }
.phone-frame img { width: 100%; aspect-ratio: 428 / 930; border-radius: 33px; object-fit: cover; object-position: top; }
.phone-speaker { position: absolute; z-index: 2; top: 19px; left: 50%; width: 78px; height: 20px; border-radius: 99px; background: #211d1e; transform: translateX(-50%); }
.phone-card figcaption { display: grid; grid-template-columns: 31px 1fr; margin-top: 24px; color: var(--muted); font-size: .88rem; line-height: 1.45; }
.phone-card figcaption span { grid-row: 1 / 3; color: var(--wine); font-family: 'Fraunces', Georgia, serif; }
.phone-card figcaption strong { color: var(--ink); font-size: 1rem; }

.feature-section { padding-block: 130px; border-top: 1px solid var(--line); }
.feature-intro { display: grid; grid-template-columns: .65fr 1.35fr; align-items: end; gap: 50px; margin-bottom: 65px; }
.feature-intro .eyebrow { margin-bottom: 8px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card { position: relative; min-height: 330px; overflow: hidden; padding: 40px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.56); }
.feature-card.feature-wide { grid-column: span 2; min-height: 300px; }
.feature-number { position: absolute; top: 26px; right: 28px; color: var(--wine); font-family: 'Fraunces', Georgia, serif; font-size: .82rem; }
.feature-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 45px; border-radius: 20px; background: var(--blush); color: var(--wine); font-size: 2rem; }
.feature-card h3 { max-width: 520px; margin-bottom: 12px; font-family: 'Fraunces', Georgia, serif; font-size: 1.75rem; line-height: 1.15; }
.feature-card p { max-width: 550px; color: var(--muted); }
.status-demo { display: flex; gap: 10px; margin-top: 30px; }
.status-demo span { padding: 7px 13px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.fresh { background: #e3f0e7; color: #256541; }.soon { background: #fff1c9; color: #8b6410; }.past { background: #fae1e1; color: #a33d49; }
.memory-card { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 45px; background: var(--green); color: white; }
.memory-card p { color: rgba(255,255,255,.7); }
.memory-card a { display: inline-block; margin-top: 18px; color: white; font-weight: 700; text-underline-offset: 5px; }
.memory-mark { display: grid; place-items: center; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%); font-family: 'Fraunces', Georgia, serif; font-size: 4.5rem; }

.how-it-works { padding-block: 120px; border-top: 1px solid var(--line); }
.section-heading.compact { max-width: 760px; margin-bottom: 55px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; }
.steps li { display: flex; gap: 17px; padding: 26px 24px; border-top: 1px solid var(--wine); }
.steps li > span { display: grid; flex: 0 0 30px; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blush); color: var(--wine); font-size: .8rem; font-weight: 700; }
.steps strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; }
.steps p { margin-top: 7px; color: var(--muted); font-size: .9rem; }

.closing { position: relative; overflow: hidden; margin-bottom: 100px; padding: 100px 30px; border-radius: 40px; background: linear-gradient(145deg, #f9c7d0, #f8dfd4 48%, #e7d9f5); text-align: center; }
.closing::before, .closing::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.4); filter: blur(4px); }
.closing::before { width: 300px; height: 300px; left: -130px; top: -120px; }.closing::after { width: 260px; height: 260px; right: -120px; bottom: -140px; }
.closing img { position: relative; z-index: 1; width: 105px; height: 105px; margin: 0 auto 24px; border-radius: 32px; object-fit: contain; }
.eyebrow.centered { position: relative; z-index: 1; justify-content: center; }
.closing h2, .closing > p, .closing .button { position: relative; z-index: 1; }
.closing > p { margin: 24px 0; color: var(--muted); }

footer { padding: 52px 0; border-top: 1px solid var(--line); }
.footer-shell { display: grid; grid-template-columns: 1fr auto; gap: 14px 30px; align-items: center; }
.footer-shell > p { color: var(--muted); font-size: .88rem; }
.footer-links { grid-column: 2; grid-row: 1; display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: .85rem; font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--wine); }
.copyright { text-align: right; }

/* Legal pages */
body:not(.home) main { width: min(calc(100% - 48px), 760px); margin: 0 auto; padding: 85px 0 110px; }
.policy-page { position: relative; }
.policy-language {
  position: absolute;
  top: 91px;
  left: -178px;
  width: 146px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 14px 35px rgba(77, 37, 45, .07);
  backdrop-filter: blur(12px);
}
.policy-language > span {
  display: block;
  margin: 0 0 8px 3px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
body:not(.home) main h1 { margin-bottom: 8px; font-size: clamp(2.7rem, 6vw, 4.2rem); }
body:not(.home) main h2 { margin: 46px 0 12px; font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; letter-spacing: -.025em; }
body:not(.home) main h3 { margin: 26px 0 8px; font-size: 1rem; }
body:not(.home) main p, body:not(.home) main li { color: var(--muted); }
body:not(.home) main p { margin-bottom: 17px; }
body:not(.home) main ul { margin: 8px 0 20px; padding-left: 22px; }
body:not(.home) main li { margin-bottom: 9px; }
body:not(.home) main a { color: var(--wine); text-underline-offset: 3px; }
.effective-date { display: inline-block; margin: 8px 0 36px !important; padding: 6px 12px; border-radius: 999px; background: var(--blush); color: var(--wine) !important; font-size: .8rem; font-weight: 700; }
body:not(.home) > header:not(.site-header) { border-bottom: 1px solid var(--line); }
body:not(.home) > header:not(.site-header) { min-height: 82px; display: flex; align-items: center; justify-content: space-between; width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
body:not(.home) > header:not(.site-header) h1 a { font-family: 'Fraunces', Georgia, serif; font-size: 1.45rem; text-decoration: none; }
body:not(.home) nav a { display: inline !important; }
body:not(.home) > footer { color: var(--muted); font-size: .85rem; text-align: center; }

@media (max-width: 1120px) {
  .policy-language {
    position: static;
    display: grid;
    grid-template-columns: auto 136px;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin-bottom: 30px;
    padding: 9px 10px 9px 13px;
    border-radius: 999px;
  }
  .policy-language > span { margin: 0; }
}

/* Open-source acknowledgements */
body.open-source main h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
.oss-hero { padding-bottom: 58px; border-bottom: 1px solid var(--line); }
.oss-hero .eyebrow { margin-bottom: 18px; }
.oss-hero > h1 { max-width: none; }
.oss-lede { max-width: 800px; margin-top: 28px; color: var(--ink) !important; font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.45; }
.oss-scope { max-width: 790px; margin-top: 20px; padding-left: 18px; border-left: 2px solid var(--wine); font-size: .92rem; }
.oss-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 50px 0 76px; }
.oss-summary-card { position: relative; min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.58); }
.oss-summary-card > span { color: var(--wine); font-family: 'Fraunces', Georgia, serif; font-size: .78rem; }
body.open-source main .oss-summary-card h2 { margin: 42px 0 10px; font-size: 1.35rem; }
.oss-summary-card p { font-size: .9rem; }
.oss-packages > h2, .oss-fonts > h2 { margin-top: 0; }
.oss-packages > p, .oss-fonts > p { max-width: 780px; }
.oss-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.oss-group { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.55); }
.oss-group-label { margin-bottom: 18px !important; color: var(--wine) !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.oss-package-list { margin: 0 !important; padding: 0 !important; list-style: none; }
.oss-package-list li { margin: 0 !important; padding: 16px 0; border-top: 1px solid var(--line); }
.oss-package-list li:first-child { border-top: 0; }
.oss-package-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--ink) !important; text-decoration: none; }
.oss-package-list a:hover strong { color: var(--wine); }
.oss-package-list strong { min-width: 0; overflow-wrap: anywhere; font-size: .92rem; transition: color .2s ease; }
.oss-package-list p { margin: 4px 0 0 !important; font-size: .78rem; line-height: 1.45; }
.oss-license { flex: 0 0 auto; padding: 4px 8px; border-radius: 999px; background: var(--blush); color: var(--wine); font-size: .62rem; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.oss-note { margin: 28px 0 0 !important; padding: 20px 22px; border-radius: 18px; background: rgba(23,63,45,.08); color: var(--green) !important; font-size: .86rem; }
.oss-open-data { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; margin: 78px 0; padding: 44px; border-radius: 28px; background: var(--green); color: white; }
body.open-source main .oss-open-data h2 { margin: 0; color: white; }
.oss-open-data .oss-group-label { color: rgba(255,255,255,.65) !important; }
.oss-open-data p { color: rgba(255,255,255,.76) !important; }
.oss-open-data a { color: white !important; }
.oss-fonts { padding-top: 4px; }
.oss-font-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0 22px; }
.oss-font-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.55); }
body.open-source main .oss-font-card h3 { margin: 0 0 7px; font-family: 'Fraunces', Georgia, serif; font-size: 1.7rem; }
.oss-font-card p { margin-bottom: 16px !important; }
.oss-font-card a { font-size: .84rem; font-weight: 700; }
.oss-font-card > .oss-license { position: absolute; top: 27px; right: 27px; }
.oss-license-disclosure { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.55); }
.oss-license-disclosure summary { padding: 20px 22px; color: var(--wine); font-weight: 700; cursor: pointer; }
.oss-license-disclosure[open] summary { border-bottom: 1px solid var(--line); }
.oss-license-text { max-height: 520px; overflow: auto; padding: 24px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .74rem; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.oss-contact { margin-top: 76px; padding: 38px; border-radius: 26px; background: linear-gradient(145deg, var(--blush), rgba(231,217,245,.7)); }
body.open-source main .oss-contact h2 { margin: 0 0 12px; }
.oss-contact p { margin: 0 !important; }

@media (max-width: 900px) {
  .site-header { position: sticky; top: 0; }
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 70px; text-align: center; }
  .hero .eyebrow, .trust-list, .hero-actions, .store-buttons { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-art { min-height: 520px; }
  .phone-gallery { gap: 14px; }
  .phone-frame { padding: 7px; border-radius: 30px; }
  .phone-frame img { border-radius: 24px; }
  .phone-speaker { top: 14px; width: 58px; height: 15px; }
  .feature-intro { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; }
  .oss-summary-grid { grid-template-columns: 1fr; }
  .oss-summary-card { min-height: 0; }
  .oss-open-data { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 650px) {
  .section-shell, .nav-shell, .footer-shell { width: min(calc(100% - 30px), var(--shell)); }
  .nav-shell { min-height: 66px; gap: 12px; }
  .brand img { width: 36px; height: 36px; }
  .brand span { font-size: 1.25rem; }
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 14px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero { min-height: auto; gap: 12px; padding-block: 48px 58px; }
  .eyebrow { margin-bottom: 18px; font-size: .69rem; letter-spacing: .12em; }
  .hero-lede { font-size: 1rem; }
  .store-buttons { max-width: 300px; margin: 0 auto 18px; }
  .store-badge { width: 100%; min-height: 54px; }
  .hero-actions { gap: 22px; }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .trust-list { display: grid; width: max-content; max-width: 100%; grid-template-columns: 1fr; justify-items: start; gap: 9px; margin: 24px auto 0; }
  .hero-art { min-height: 390px; }
  .icon-card { width: min(270px, 78%); padding: 18px 18px 16px; border-radius: 29px; transform: rotate(1deg); }
  .icon-caption { padding-top: 14px; }
  .icon-caption strong { font-size: 1.4rem; }
  .floating-note { gap: 6px; padding: 9px 12px; font-size: .72rem; }
  .note-top { right: 2px; top: 56px; }.note-bottom { left: 2px; bottom: 48px; }
  .orb-one { width: 280px; height: 280px; transform: translate(30px, -22px); }
  .orb-two { width: 190px; height: 190px; transform: translate(-95px, 115px); }
  .marquee div { margin-left: 16px; font-size: .9rem; }
  .showcase { padding-block: 76px 88px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .feature-intro h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .section-heading > p:last-child { margin-top: 18px; font-size: .96rem; }
  .swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 6px; color: var(--wine); font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
  .swipe-hint span { font-size: 1rem; }
  .phone-gallery { display: flex; overflow-x: auto; align-items: flex-start; gap: 18px; margin-inline: -15px; padding: 18px 28px 46px; scroll-padding-inline: 28px; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .phone-gallery::-webkit-scrollbar { display: none; }
  .phone-card { flex: 0 0 82vw; max-width: 320px; scroll-snap-align: center; transform: none; }
  .phone-card figcaption { margin-top: 18px; }
  .feature-section { padding-block: 76px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.feature-wide { grid-column: auto; min-height: 0; padding: 28px; }
  .feature-icon { margin-bottom: 32px; }
  .feature-card h3 { font-size: 1.55rem; }
  .status-demo { flex-wrap: wrap; margin-top: 24px; }
  .memory-card { grid-template-columns: 1fr; gap: 24px; }
  .memory-mark { width: 90px; height: 90px; font-size: 2.7rem; }
  .memory-card a { min-height: 44px; display: inline-flex; align-items: center; }
  .how-it-works { padding-block: 76px; }
  .steps { gap: 8px; }
  .steps li { padding: 22px 12px; }
  .closing { margin-bottom: 60px; padding: 60px 18px; border-radius: 28px; }
  .closing img { width: 92px; height: 92px; border-radius: 27px; }
  .closing h2 { font-size: clamp(2.2rem, 10vw, 2.7rem); }
  .closing .eyebrow > span { width: 18px; }
  .closing .button { width: min(100%, 240px); }
  .footer-shell { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links { justify-self: center; }
  .footer-links { grid-column: 1; grid-row: auto; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .copyright { text-align: center; }
  body:not(.home) main { width: min(calc(100% - 30px), 760px); padding-top: 60px; }
  body:not(.home) > header:not(.site-header) { width: min(calc(100% - 30px), var(--shell)); flex-direction: column; justify-content: center; gap: 5px; padding: 15px 0; }
  body:not(.home) nav { gap: 16px; }
  body:not(.home) nav a:not(.nav-cta) { display: inline; }
  .oss-hero { padding-bottom: 44px; }
  .oss-summary-grid { margin: 38px 0 58px; }
  .oss-summary-card { padding: 24px; }
  body.open-source main .oss-summary-card h2 { margin-top: 24px; }
  .oss-group-grid, .oss-font-grid { grid-template-columns: 1fr; }
  .oss-group { padding: 24px; }
  .oss-open-data { margin: 58px 0; padding: 30px 24px; }
  .oss-font-card { padding: 24px; }
  .oss-font-card > .oss-license { top: 22px; right: 22px; }
  .oss-contact { margin-top: 58px; padding: 28px 24px; }
}

@media (max-width: 360px) {
  .section-shell, .nav-shell, .footer-shell { width: min(calc(100% - 24px), var(--shell)); }
  .brand span { font-size: 1.15rem; }
  .nav-cta { padding-inline: 11px; font-size: .82rem; }
  h1 { font-size: 2.65rem; }
  .hero-lede { line-height: 1.65; }
  .hero-art { min-height: 350px; }
  .icon-card { width: 235px; }
  .floating-note { padding: 8px 10px; font-size: .67rem; }
  .note-top { top: 48px; }.note-bottom { bottom: 38px; }
  .phone-card { flex-basis: 86vw; }
  .feature-card, .feature-card.feature-wide { padding: 24px; }
  .closing { padding-inline: 14px; }
}

@media (hover: none) {
  .button:hover { transform: none; }
}

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