:root {
  color-scheme: light;
  --bg: #f5ecdf;
  --bg-deep: #eadcc7;
  --paper: rgba(255, 252, 246, 0.88);
  --paper-strong: #fffaf2;
  --ink: #1f1a17;
  --muted: #685c52;
  --accent: #21544d;
  --accent-strong: #163630;
  --accent-soft: rgba(33, 84, 77, 0.12);
  --gold: #d7ab67;
  --rule: rgba(61, 40, 26, 0.12);
  --shadow: 0 24px 60px rgba(41, 28, 18, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --content-width: 1140px;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --mono: "SFMono-Regular", "Menlo", "Monaco", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255, 248, 238, 0.95), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(215, 171, 103, 0.18), transparent 22%),
    linear-gradient(180deg, #f8efe3 0%, #f4eadf 42%, #efe3d3 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.locale-block,
.locale-inline {
  display: none;
}

html:not([data-laughshot-locale="en"]) .locale-block[data-locale="zh-Hans"] {
  display: block;
}

html:not([data-laughshot-locale="en"]) .locale-inline[data-locale="zh-Hans"] {
  display: inline;
}

html[data-laughshot-locale="en"] .locale-block[data-locale="en"] {
  display: block;
}

html[data-laughshot-locale="en"] .locale-inline[data-locale="en"] {
  display: inline;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(24px);
  opacity: 0.45;
}

.site-shell::before {
  top: -140px;
  right: -120px;
  background: rgba(215, 171, 103, 0.24);
}

.site-shell::after {
  left: -160px;
  bottom: -100px;
  background: rgba(33, 84, 77, 0.18);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 20px 0;
}

.topbar-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(45, 32, 24, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: 0 14px 40px rgba(45, 32, 24, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(215, 171, 103, 0.92), rgba(33, 84, 77, 0.92)),
    #fff;
  color: #fffaf5;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.brand-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 171, 103, 0.15);
}

.brand-title {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-link {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(33, 84, 77, 0.08);
  color: var(--accent);
  transform: translateY(-1px);
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(33, 84, 77, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.locale-switcher button {
  border: 0;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.locale-switcher button[data-active] {
  background: var(--accent);
  color: #fff7ef;
}

.page {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 32px 20px 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
  margin-top: 24px;
}

.hero-copy,
.hero-visual,
.panel,
.shot-card,
.info-card,
.cta-panel {
  position: relative;
  border: 1px solid rgba(50, 34, 22, 0.08);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(215, 171, 103, 0.24);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 0.84rem;
}

.meta-pill code {
  font-family: var(--mono);
  color: var(--accent-strong);
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(33, 84, 77, 0.08);
  color: var(--accent);
  font-weight: 700;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #2e7469);
  color: #fffaf5;
  box-shadow: 0 16px 30px rgba(33, 84, 77, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent);
  border: 1px solid rgba(33, 84, 77, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.hero-visual {
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.92), rgba(245, 235, 220, 0.84)),
    rgba(255, 252, 247, 0.92);
}

.showcase-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(22, 54, 48, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.phone-shot {
  overflow: hidden;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(180deg, #35281f, #0d1114);
  box-shadow: 0 18px 40px rgba(24, 16, 10, 0.2);
}

.phone-shot img {
  border-radius: 22px;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
}

.phone-shot.is-offset {
  transform: translateY(22px);
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  margin-top: 70px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.three-grid,
.two-grid,
.doc-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.info-card,
.shot-card {
  border-radius: var(--radius-lg);
}

.panel,
.info-card {
  padding: 24px;
}

.panel h3,
.info-card h3,
.shot-caption h3,
.doc-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.panel p,
.info-card p,
.doc-content p,
.doc-content li {
  color: var(--muted);
}

.panel ul,
.doc-content ul {
  margin: 14px 0 0 18px;
  padding: 0;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shot-card {
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
}

.shot-caption {
  padding: 18px 18px 20px;
}

.shot-caption p {
  margin: 10px 0 0;
  color: var(--muted);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(33, 84, 77, 0.08);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 14px;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: center;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent);
  font-weight: 700;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  margin-top: 70px;
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  border-top: 1px solid rgba(50, 34, 22, 0.08);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.doc-hero {
  padding: 38px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(252, 246, 238, 0.82));
  border: 1px solid rgba(50, 34, 22, 0.08);
  box-shadow: var(--shadow);
}

.doc-hero h1 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
}

.doc-hero p {
  max-width: 44rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.doc-grid {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  margin-top: 26px;
}

.doc-content {
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(50, 34, 22, 0.08);
  box-shadow: var(--shadow);
}

.doc-content section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.doc-content h2 {
  font-size: 1.6rem;
}

.doc-content ul {
  display: grid;
  gap: 10px;
}

.doc-aside {
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid rgba(50, 34, 22, 0.08);
  box-shadow: 0 16px 34px rgba(45, 32, 24, 0.08);
}

.aside-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.aside-card p,
.aside-card li {
  margin: 0;
  color: var(--muted);
}

.aside-card ul {
  margin: 12px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-link {
  color: var(--accent);
  font-weight: 700;
}

body.page-home {
  color: #f5f1ea;
  background:
    radial-gradient(circle at top, rgba(255, 189, 115, 0.18), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(90, 127, 236, 0.16), transparent 18%),
    radial-gradient(circle at 14% 76%, rgba(255, 126, 92, 0.14), transparent 20%),
    linear-gradient(180deg, #050608 0%, #090b10 26%, #0c1016 58%, #06070a 100%);
}

.page-home .site-shell::before,
.page-home .site-shell::after {
  opacity: 0.78;
  filter: blur(58px);
}

.page-home .site-shell::before {
  top: -180px;
  right: -80px;
  background: rgba(255, 154, 84, 0.24);
}

.page-home .site-shell::after {
  left: -180px;
  bottom: 4%;
  background: rgba(84, 132, 255, 0.18);
}

.home-topbar {
  padding-top: 18px;
}

.home-topbar-inner {
  max-width: 1260px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 9, 13, 0.46);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.home-brand-mark {
  background:
    linear-gradient(160deg, rgba(244, 178, 94, 0.98), rgba(78, 118, 231, 0.92)),
    #fff;
  color: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.home-eyebrow {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 241, 233, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-eyebrow::before {
  background: #ffb36b;
  box-shadow: 0 0 0 4px rgba(255, 179, 107, 0.14);
}

.home-brand-title,
.home-nav-link,
.home-footer {
  color: rgba(243, 238, 231, 0.7);
}

.home-nav-link {
  padding-inline: 10px;
}

.home-nav-link:hover,
.home-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #fff9f2;
}

.home-topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-topbar-download {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0b470, #db8d55);
  color: #0c0d11;
  box-shadow: 0 14px 28px rgba(219, 141, 85, 0.16);
}

.home-locale-switcher {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.page-home .locale-switcher button {
  color: rgba(243, 238, 231, 0.72);
}

.page-home .locale-switcher button[data-active] {
  background: #f5efe6;
  color: #111318;
}

.home-page {
  max-width: 1260px;
  padding-top: 24px;
  padding-bottom: 116px;
}

.home-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-reveal[data-visible] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - 128px);
  padding: 28px 0 18px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.home-kicker {
  margin: 0;
  color: rgba(243, 238, 231, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-title {
  margin: 20px 0 0;
  max-width: 8.6ch;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.home-lead {
  max-width: 31rem;
  margin: 22px 0 0;
  color: rgba(243, 238, 231, 0.8);
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
  line-height: 1.72;
}

.home-hero-actions,
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-button-primary,
.home-button-secondary {
  min-height: 54px;
  border-radius: 999px;
  padding: 15px 24px;
}

.home-button-primary {
  background: linear-gradient(135deg, #f0b470, #db8d55);
  color: #0b0d11;
  box-shadow: 0 20px 46px rgba(219, 141, 85, 0.2);
}

.home-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f7f1e8;
}

.home-button-primary:hover,
.home-button-primary:focus-visible,
.home-button-secondary:hover,
.home-button-secondary:focus-visible,
.home-topbar-download:hover,
.home-topbar-download:focus-visible {
  transform: translateY(-2px);
}

.home-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.home-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 241, 233, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-proof-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb56a;
  box-shadow: 0 0 0 4px rgba(255, 181, 106, 0.12);
}

.home-hero-note {
  max-width: 28rem;
  margin: 22px 0 0;
  color: rgba(243, 238, 231, 0.52);
  font-size: 0.95rem;
}

.home-hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: stretch;
}

.home-hero-glow {
  position: absolute;
  inset: 10% 4% 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 186, 104, 0.32), rgba(255, 186, 104, 0) 58%),
    radial-gradient(circle at 68% 38%, rgba(103, 137, 255, 0.24), rgba(103, 137, 255, 0) 48%);
  filter: blur(22px);
}

.home-device-cluster {
  position: relative;
  width: min(100%, 560px);
  min-height: 760px;
}

.home-device {
  --parallax-offset: 0px;
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(180deg, #2b2d35, #090a0d);
  box-shadow:
    0 42px 96px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease;
  transform: translate3d(0, var(--parallax-offset), 0) rotate(var(--device-rotate));
}

.home-device img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  aspect-ratio: 1206 / 2622;
}

.home-device-main {
  --device-rotate: -3deg;
  z-index: 2;
  width: 348px;
  top: 14px;
  left: 118px;
}

.home-device-back {
  --device-rotate: -12deg;
  width: 248px;
  top: 202px;
  left: 12px;
  opacity: 0.9;
}

.home-device-float {
  --device-rotate: 11deg;
  width: 236px;
  right: 4px;
  bottom: 36px;
  z-index: 3;
}

.home-device-caption {
  position: relative;
  z-index: 1;
  max-width: 23rem;
  margin-top: 10px;
  color: rgba(243, 238, 231, 0.58);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-section {
  margin-top: 120px;
}

.home-section-intro {
  max-width: 50rem;
}

.home-section-intro h2 {
  max-width: 15ch;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 48px;
  align-items: start;
  margin-top: 30px;
}

.story-rail {
  display: grid;
  gap: 26px;
}

.story-step {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-step-index {
  display: inline-block;
  color: rgba(255, 179, 107, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-step h3 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
}

.story-step p {
  margin: 12px 0 0;
  color: rgba(243, 238, 231, 0.68);
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.8fr);
  gap: 32px;
  align-items: end;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-feature-label {
  color: rgba(255, 179, 107, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-feature h3 {
  max-width: 12ch;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.story-feature p {
  max-width: 30rem;
  margin: 18px 0 0;
  color: rgba(243, 238, 231, 0.7);
}

.story-feature-visual {
  justify-self: end;
  width: min(100%, 330px);
  padding: 10px;
  border-radius: 40px;
  background: linear-gradient(180deg, #2a2c34, #090a0d);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-feature-visual img {
  border-radius: 30px;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
}

.compare-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.compare-panel {
  position: relative;
  min-height: 100%;
  padding: 0 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-before {
  color: rgba(243, 238, 231, 0.72);
}

.compare-after {
  color: #fff8ef;
}

.compare-after::before {
  content: "";
  position: absolute;
  inset: -12% -6% 24% 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 113, 0.2), rgba(255, 188, 113, 0) 68%);
  filter: blur(18px);
  pointer-events: none;
}

.compare-label {
  display: inline-block;
  margin-top: 20px;
  color: rgba(243, 238, 231, 0.52);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-panel h3 {
  max-width: 12ch;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.compare-panel p {
  max-width: 29rem;
  margin: 18px 0 0;
  color: rgba(243, 238, 231, 0.68);
}

.compare-shot {
  position: relative;
  width: min(100%, 320px);
  margin: 34px 0 0;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #2a2c34, #090a0d);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.compare-shot img {
  border-radius: 28px;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
}

.compare-after .compare-shot {
  margin-left: auto;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-copy-home h2 {
  max-width: 13ch;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.trust-copy-home p {
  max-width: 32rem;
  margin: 18px 0 0;
  color: rgba(243, 238, 231, 0.72);
}

.trust-points {
  display: grid;
  gap: 18px;
}

.trust-point {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-point-title {
  display: inline-block;
  color: #fff7ef;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-point p {
  margin: 10px 0 0;
  color: rgba(243, 238, 231, 0.64);
}

.trust-link-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f7f1e8;
  transition: transform 160ms ease, background-color 160ms ease;
}

.trust-link-home:hover,
.trust-link-home:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.home-cta-panel {
  display: grid;
  justify-items: start;
  gap: 0;
  max-width: 50rem;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-cta-panel h2 {
  max-width: 13ch;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.home-cta-panel p {
  max-width: 30rem;
  margin: 18px 0 0;
  color: rgba(243, 238, 231, 0.72);
}

.home-footer {
  max-width: 1260px;
  color: rgba(243, 238, 231, 0.56);
}

.home-footer-inner {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-band,
  .doc-grid,
  .cta-panel,
  .three-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }

  .home-hero,
  .story-layout,
  .story-feature,
  .compare-stage,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 18px;
  }

  .home-device-cluster {
    min-height: 700px;
  }

  .story-feature-visual,
  .compare-shot {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding-top: 12px;
  }

  .topbar-inner,
  .brand-lockup,
  .nav-links {
    align-items: flex-start;
  }

  .topbar-inner,
  .nav-links,
  .footer-inner {
    flex-direction: column;
  }

  .page {
    padding-top: 18px;
  }

  .hero-copy,
  .hero-visual,
  .doc-hero,
  .doc-content,
  .cta-panel,
  .panel,
  .info-card {
    padding: 22px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .phone-stack,
  .shot-grid,
  .two-grid {
    grid-template-columns: 1fr;
  }

  .phone-shot.is-offset {
    transform: none;
  }

  .home-page {
    padding-top: 12px;
    padding-bottom: 80px;
  }

  .home-topbar {
    padding-top: 12px;
  }

  .home-topbar-inner {
    padding: 14px;
  }

  .home-topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .home-topbar-download {
    flex: 1 1 auto;
    justify-content: center;
  }

  .home-title {
    max-width: 9.6ch;
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .home-lead {
    max-width: 100%;
  }

  .home-hero-actions,
  .home-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-button-primary,
  .home-button-secondary,
  .trust-link-home {
    width: 100%;
  }

  .home-proof-list {
    flex-direction: column;
    align-items: stretch;
  }

  .home-device-cluster {
    width: min(100%, 360px);
    min-height: 560px;
  }

  .home-device-main {
    width: 224px;
    top: 24px;
    left: 76px;
  }

  .home-device-back {
    width: 164px;
    top: 148px;
    left: 0;
  }

  .home-device-float {
    width: 150px;
    right: 0;
    bottom: 36px;
  }

  .home-section {
    margin-top: 88px;
  }

  .home-section-intro h2,
  .story-feature h3,
  .compare-panel h3,
  .trust-copy-home h2,
  .home-cta-panel h2 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-reveal,
  .home-device,
  .button-primary,
  .button-secondary,
  .trust-link-home,
  .nav-link {
    transition: none;
    animation: none;
  }

  .home-reveal {
    opacity: 1;
    transform: none;
  }

  .home-device {
    transform: rotate(var(--device-rotate));
  }
}
