:root {
  color-scheme: light;
  --scene-cream: #F4F0E8;
  --app-paper: #FAF9F5;
  --paper: var(--app-paper);
  --surface: #FFFEFB;
  --surface-2: #EFEBE2;
  --ink: #211F1A;
  --body-ink: #6B655C;
  --ink-2: #7B7468;
  --ink-3: #938B7E;
  --ink-4: #B1AA9E;
  --hairline: #E4DFD6;
  --hairline-2: #EFECE5;
  --accent: #D97757;
  --accent-ink: #FFFEFB;
  --accent-body: rgba(255, 254, 251, 0.82);
  --accent-soft: #FFE2D3;
  --voice-dark: #262320;
  --voice-text: #FFF7F0;
  --site-white: var(--surface);
  --site-gray: var(--surface-2);
  --site-ink: var(--ink);
  --site-ink-2: var(--body-ink);
  --site-line: var(--hairline);
  --site-dark: var(--voice-dark);
  --site-dark-2: rgba(255, 247, 240, 0.72);
  --liubai-paper: var(--app-paper);
  --liubai-accent: var(--accent);
  --header-surface: rgba(244, 240, 232, 0.92);
  --focus-ring: rgba(217, 119, 87, 0.34);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", system-ui, sans-serif;
  --font-serif: "Songti SC", "STSong", serif;
  --content-width: 1240px;
  --legal-width: 760px;
  --header-height: 68px;
  --story-inner-width: 1160px;
  --story-slot-width: 400px;
  --story-device-width: 316px;
  --story-gap: 112px;
  --story-min-height: 820px;
  --device-width: var(--story-device-width);
  --device-scale: 0.786069652;
}

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

html {
  background: var(--scene-cream);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--scene-cream);
  color: var(--site-ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--liubai-accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--site-ink);
  color: var(--site-white);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  transition: background-color 180ms ease-out, backdrop-filter 180ms ease-out, -webkit-backdrop-filter 180ms ease-out;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--site-line);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease-out;
}

.site-header.is-scrolled {
  background: var(--header-surface);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.header-inner {
  display: flex;
  width: min(var(--content-width), calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--site-ink);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.brand-link img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.store-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link {
  color: var(--site-ink-2);
  transition: color 180ms ease-out;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--site-ink);
}

.store-cta {
  min-width: 166px;
  margin-left: 12px;
  border-radius: 999px;
  background: var(--site-ink);
  color: var(--site-white);
  cursor: default;
  font-size: 15px;
  font-weight: 600;
}

.store-cta-short {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--site-ink);
  color: var(--site-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.button-disabled {
  cursor: default;
  opacity: 0.88;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--site-ink);
  font-size: 15px;
  font-weight: 500;
  text-underline-offset: 4px;
}

.hero-section {
  position: relative;
  z-index: 1;
  min-height: max(var(--story-min-height), calc(100svh - 48px));
  padding: var(--header-height) 40px 0;
  overflow: hidden;
  background: var(--scene-cream);
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--story-slot-width)));
  width: min(1160px, 100%);
  min-height: calc(max(var(--story-min-height), calc(100svh - 48px)) - var(--header-height));
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  column-gap: var(--story-gap);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--story-slot-width);
  text-align: left;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 78px;
  font-weight: 600;
  line-height: 1.04;
}

.hero-tagline {
  margin: 14px 0 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.28;
}

.hero-lede {
  margin: 38px 0 0;
  color: var(--body-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.hero-actions .button {
  background: var(--accent);
  color: var(--accent-ink);
}

.hero-actions .button-disabled {
  opacity: 1;
}

.hero-device {
  --hero-device-y: -8px;
  position: relative;
  z-index: 2;
  width: var(--device-width);
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  filter: none;
  transform: translateY(var(--hero-device-y));
}

.hero-device picture,
.hero-device img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  box-shadow: none;
}

.hero-device picture {
  filter: none;
}

.hero-device img {
  filter:
    drop-shadow(0 24px 44px rgba(55, 43, 36, 0.12))
    drop-shadow(0 8px 18px rgba(55, 43, 36, 0.07));
}

.section-inner {
  width: min(var(--content-width), calc(100% - 64px));
  margin: 0 auto;
}

.section-copy h2,
.privacy-inner h2,
.final-inner h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.section-copy p,
.privacy-inner p {
  margin: 24px 0 0;
  color: var(--body-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.product-device {
  position: relative;
  width: var(--device-width);
  aspect-ratio: 402 / 874;
  overflow: hidden;
  border: 1px solid rgba(33, 31, 26, 0.12);
  border-radius: 12% / 5.5%;
  background: var(--paper);
  box-shadow: none;
  filter: none;
}

.device-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 402px;
  height: 874px;
  overflow: hidden;
  border-radius: 48px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  transform: scale(var(--device-scale));
  transform-origin: top left;
}

.device-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.device-status-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  height: 60px;
  padding: 21px 24px 17px;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.device-time {
  display: inline-flex;
  width: 78px;
  height: 22px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
}

.device-status-icons {
  display: inline-flex;
  width: 78px;
  height: 22px;
  padding-top: 1px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.device-status-icons svg {
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}

.device-status-icons svg:nth-child(1) {
  width: 19px;
  height: 12px;
}

.device-status-icons svg:nth-child(2) {
  width: 17px;
  height: 12px;
}

.device-status-icons svg:nth-child(3) {
  width: 27px;
  height: 13px;
}

.device-status-icons .device-battery-case {
  fill: none;
  stroke: currentColor;
  stroke-opacity: 0.35;
}

.device-status-icons .device-battery-cap {
  fill-opacity: 0.4;
}

.device-island {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 50;
  width: 126px;
  height: 37px;
  border-radius: 24px;
  background: #000000;
  transform: translateX(-50%);
}

.device-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  z-index: 60;
  width: 139px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.today-section {
  min-height: 820px;
  padding: 64px 0;
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-ink);
}

.today-section .section-copy p {
  color: var(--accent-body);
}

.today-layout {
  display: grid;
  grid-template-columns: 360px var(--device-width, 300px);
  width: min(1160px, calc(100% - 80px));
  align-items: center;
  justify-content: center;
  gap: 112px;
}

.today-copy {
  width: 360px;
}

.view-switch {
  position: relative;
  display: inline-grid;
  min-width: 172px;
  margin-top: 32px;
  padding: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 10px;
  background: var(--surface-2);
}

.view-switch-indicator {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  z-index: 0;
  width: calc((100% - 4px) / 2);
  border-radius: 8px;
  background: var(--accent);
  transform: translateX(0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.view-switch[data-task-mode="expanded"] .view-switch-indicator {
  transform: translateX(100%);
}

.view-switch button {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.view-switch button[aria-selected="true"] {
  color: #FFFFFF;
}

.morph-plane {
  position: relative;
  width: var(--device-width, 300px);
  min-height: 0;
  height: auto;
  aspect-ratio: 402 / 874;
  justify-self: center;
}

.task-device {
  width: 100%;
}

.morph-app {
  position: relative;
  width: 402px;
  height: 874px;
  overflow: hidden;
  background: var(--paper);
}

.morph-title {
  position: absolute;
  top: 80px;
  left: 28px;
  z-index: 12;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  transition:
    top 850ms cubic-bezier(0.3, 1.3, 0.5, 1),
    font-size 850ms cubic-bezier(0.3, 1.3, 0.5, 1),
    color 700ms ease;
}

.morph-toggle {
  position: absolute;
  top: 94px;
  right: 24px;
  z-index: 13;
  display: inline-flex;
  min-width: 58px;
  min-height: 44px;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: top 850ms cubic-bezier(0.3, 1.3, 0.5, 1);
}

.morph-toggle svg {
  width: 8px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 850ms cubic-bezier(0.34, 1.4, 0.5, 1);
}

.morph-header-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 11;
  height: 122px;
  background: linear-gradient(to bottom, var(--paper) 0%, var(--paper) 60%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.morph-scroll {
  position: absolute;
  inset: 0;
  display: flex;
  padding-top: 160px;
  flex-direction: column;
  overflow: hidden;
  transition: padding-top 820ms cubic-bezier(0.32, 1.15, 0.45, 1);
}

.morph-subtitle {
  max-height: 56px;
  margin: 0;
  padding: 0 28px 26px;
  overflow: hidden;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  opacity: 1;
  transition:
    max-height 700ms cubic-bezier(0.32, 1.05, 0.45, 1),
    padding 700ms cubic-bezier(0.32, 1.05, 0.45, 1),
    opacity 300ms ease;
}

.morph-shared,
.morph-expanded {
  flex: 0 0 auto;
}

.morph-row {
  position: relative;
  display: flex;
  min-height: 64px;
  padding: 14px 28px;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  font-size: 19px;
  line-height: 27px;
  text-wrap: pretty;
}

.morph-row::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 66px;
  height: 1px;
  background: var(--hairline);
  content: "";
}

.morph-ring {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.morph-expanded {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 500ms ease,
    opacity 280ms ease,
    visibility 0s linear 500ms;
}

.morph-group-title {
  margin: 0;
  padding: 26px 28px 4px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.morph-row-with-meta {
  align-items: flex-start;
}

.morph-row-with-meta > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.morph-row-with-meta small {
  display: inline-flex;
  width: max-content;
  padding: 3px 9px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.morph-row-with-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.morph-scroll-tail {
  height: 60px;
}

.morph-spacer {
  min-height: 0;
  flex: 1 0 0;
}

.morph-compose {
  display: flex;
  max-height: 220px;
  padding-bottom: 44px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 500ms ease,
    padding 500ms ease,
    opacity 300ms ease;
}

.morph-compose-pill {
  display: inline-flex;
  padding: 15px 34px;
  align-items: center;
  gap: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(250, 249, 245, 0.38);
  box-shadow:
    0 8px 30px rgba(48, 38, 24, 0.13),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(44px) saturate(200%);
  -webkit-backdrop-filter: blur(44px) saturate(200%);
}

.morph-compose-pill > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.morph-compose-pill strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.morph-compose small {
  color: var(--ink-4);
  font-size: 12px;
}

.morph-plane.is-expanded .morph-title {
  top: 62px;
  color: var(--accent);
  font-size: 19px;
}

.morph-plane.is-expanded .morph-toggle {
  top: 62px;
}

.morph-plane.is-expanded .morph-toggle svg {
  transform: rotate(90deg);
}

.morph-plane.is-expanded .morph-header-backdrop {
  opacity: 1;
}

.morph-plane.is-expanded .morph-scroll {
  padding-top: 104px;
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.morph-plane.is-expanded .morph-scroll::-webkit-scrollbar {
  display: none;
}

.morph-plane.is-expanded .morph-subtitle {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}

.morph-plane.is-expanded .morph-expanded {
  max-height: 1600px;
  opacity: 1;
  visibility: visible;
  transition:
    max-height 850ms cubic-bezier(0.3, 1.05, 0.5, 1),
    opacity 500ms ease 120ms,
    visibility 0s linear;
}

.morph-plane.is-expanded .morph-compose {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}

.voice-section {
  min-height: 820px;
  padding: 64px 0;
  overflow: hidden;
  background: var(--scene-cream);
  color: var(--ink);
}

.voice-inner {
  display: grid;
  grid-template-areas: "product copy";
  grid-template-columns: var(--device-width) 400px;
  align-items: center;
  justify-content: center;
  gap: 112px;
  width: min(1160px, calc(100% - 80px));
}

.voice-copy {
  grid-area: copy;
  width: 100%;
}

.voice-copy p {
  color: var(--body-ink);
}

.voice-stage {
  position: relative;
  grid-area: product;
  width: var(--device-width);
  min-height: 0;
  height: auto;
  aspect-ratio: 402 / 874;
  justify-self: center;
}

.voice-device {
  width: 100%;
}

.voice-screen {
  position: relative;
  width: 402px;
  height: 874px;
  overflow: hidden;
  background: var(--paper);
}

.voice-home {
  width: 100%;
  padding: 86px 28px 0;
}

.voice-home-date {
  margin: 0;
  padding-bottom: 18px;
  color: var(--ink-3);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.5;
}

.voice-home-row {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.voice-home-row:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 37px;
  height: 1px;
  background: var(--hairline);
  content: "";
}

.voice-home-ring {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid var(--ink-4);
  border-radius: 50%;
}

.voice-home-row.is-done {
  color: var(--ink-3);
  text-decoration: line-through;
}

.voice-home-row.is-done .voice-home-ring {
  border-color: var(--accent);
  background: var(--accent);
}

.voice-compose {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transition: opacity 250ms ease;
}

.voice-compose-pill {
  display: inline-flex;
  padding: 15px 34px;
  align-items: center;
  gap: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(250, 249, 245, 0.38);
  box-shadow:
    0 8px 30px rgba(48, 38, 24, 0.13),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(44px) saturate(200%);
  backdrop-filter: blur(44px) saturate(200%);
}

.voice-compose-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.voice-compose-pill strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.voice-compose small {
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.5;
}

.voice-recording-state {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 344px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.voice-water-shell {
  position: absolute;
  inset: 0;
  transform: translateY(106%);
}

.voice-wave {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.voice-drop {
  position: absolute;
  top: calc(100% - 98px);
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 3px 8px rgba(170, 84, 46, 0.45);
  opacity: 0;
}

.voice-ripple {
  position: absolute;
  top: calc(100% - 30px);
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border: 2px solid rgba(255, 236, 224, 0.62);
  border-radius: 50%;
  opacity: 0;
}

.voice-cancel-hint {
  position: absolute;
  top: 116px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 247, 240, 0.82);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
}

.voice-listening {
  position: absolute;
  right: 0;
  bottom: 52px;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgba(255, 247, 240, 0.96);
  opacity: 0;
}

.voice-recognizing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 52px;
  color: var(--voice-text);
  font-size: 17px;
  font-weight: 500;
  opacity: 0;
}

.voice-recognizing-dots {
  display: flex;
  margin-bottom: 20px;
  gap: 7px;
}

.voice-recognizing-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--voice-text);
  animation: voice-recognizing-dot 1.1s ease-in-out infinite;
}

.voice-recognizing-dots span:nth-child(2) {
  animation-delay: 160ms;
}

.voice-recognizing-dots span:nth-child(3) {
  animation-delay: 320ms;
}

.voice-mic {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  place-items: center;
}

.voice-mic svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: var(--voice-text);
  stroke: var(--voice-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.voice-mic path {
  fill: none;
}

.voice-time {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 500;
}

.voice-status {
  color: rgba(255, 247, 240, 0.82);
  font-size: 13px;
}

.voice-result-dim,
.voice-result-state {
  position: absolute;
  inset: 0;
}

.voice-result-dim {
  z-index: 6;
  background: rgba(20, 16, 10, 0.4);
  opacity: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.voice-result-state {
  z-index: 7;
  display: flex;
  padding: 0;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
}

.voice-result-panel {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 0;
  border-radius: 26px 26px 0 0;
  background: var(--surface);
  box-shadow: 0 -1px 2px rgba(48, 38, 24, 0.03), 0 -12px 40px rgba(48, 38, 24, 0.1);
  color: var(--ink);
}

.voice-result-label {
  display: flex;
  margin: 0;
  padding: 0 26px 10px;
  align-items: center;
  gap: 7px;
  color: var(--ink-3);
  font-size: 11.5px;
}

.voice-result-label svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.voice-result-row {
  display: flex;
  align-items: start;
  gap: 13px;
  padding: 4px 22px 16px;
}

.voice-task-ring {
  width: 23px;
  height: 23px;
  margin-top: 3px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.voice-result-input {
  min-width: 0;
  max-height: 160px;
  flex: 1;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.voice-result-caret {
  display: inline-block;
  width: 1.5px;
  height: 22px;
  margin-left: 2px;
  background: var(--accent);
  vertical-align: -4px;
}

.voice-clock {
  display: flex;
  margin-top: 1px;
  padding: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink-4);
  align-items: center;
  justify-content: center;
}

.voice-clock svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.voice-keyboard {
  position: relative;
  z-index: 15;
  width: 100%;
  padding-bottom: 4px;
  background: #D2D3D9;
  color: #1C1C1E;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

.voice-keyboard-candidates {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 0 18px 0 6px;
  align-items: center;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.voice-keyboard-candidate-space {
  min-width: 0;
  flex: 1;
}

.voice-keyboard-candidates svg {
  width: 13px;
  height: 8px;
  flex: 0 0 auto;
  fill: none;
  stroke: #8A8D96;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.voice-keyboard-rows {
  display: flex;
  width: 100%;
  padding: 9px 3px 0;
  flex-direction: column;
  gap: 11px;
}

.voice-keyboard-row {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.voice-keyboard-row-middle {
  padding: 0 18px;
}

.voice-keyboard-key {
  display: flex;
  height: 43px;
  min-width: 0;
  flex: 1;
  border-radius: 6px;
  background: #FCFCFD;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
  color: #1C1C1E;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.voice-keyboard-row-actions {
  gap: 11px;
}

.voice-keyboard-letter-group {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 6px;
}

.voice-keyboard-key-special {
  flex: 0 0 auto;
  background: #ACAFBA;
}

.voice-keyboard-key-shift,
.voice-keyboard-key-delete,
.voice-keyboard-key-number {
  width: 42px;
}

.voice-keyboard-key-shift svg {
  width: 19px;
  height: 17px;
  fill: #1C1C1E;
}

.voice-keyboard-key-delete svg {
  width: 23px;
  height: 17px;
  fill: none;
  stroke: #1C1C1E;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.voice-keyboard-row-bottom {
  align-items: center;
}

.voice-keyboard-key-number {
  font-size: 15px;
  font-weight: 500;
}

.voice-keyboard-key-language {
  width: 38px;
}

.voice-keyboard-key-language svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #1C1C1E;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.voice-keyboard-key-space {
  color: #3A3A3C;
  font-size: 15px;
  font-weight: 500;
}

.voice-keyboard-key-return {
  width: 92px;
  flex: 0 0 auto;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

.voice-keyboard-safe-area {
  width: 100%;
  height: 56px;
}

.js:not(.reduce-motion) .voice-result-dim,
.js:not(.reduce-motion) .voice-result-state {
  opacity: 0;
  pointer-events: none;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-recording-state,
.js:not(.reduce-motion) .voice-stage[data-voice-state="listening"] .voice-recording-state,
.js:not(.reduce-motion) .voice-stage[data-voice-state="recognizing"] .voice-recording-state,
.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-recording-state {
  opacity: 1;
  visibility: visible;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-water-shell {
  animation: voice-rise 620ms cubic-bezier(0.18, 0.86, 0.24, 1.06) 320ms both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="listening"] .voice-water-shell,
.js:not(.reduce-motion) .voice-stage[data-voice-state="recognizing"] .voice-water-shell,
.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-water-shell {
  transform: translateY(0);
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-drop {
  animation: voice-drop 340ms cubic-bezier(0.5, 0, 0.86, 0.36) both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-ripple-first {
  animation: voice-ripple 720ms ease-out 320ms both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-ripple-second {
  animation: voice-ripple 720ms ease-out 420ms both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-cancel-hint,
.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-listening {
  animation: voice-fade-in 350ms ease 520ms both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="listening"] .voice-cancel-hint,
.js:not(.reduce-motion) .voice-stage[data-voice-state="listening"] .voice-listening {
  opacity: 1;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-mic,
.js:not(.reduce-motion) .voice-stage[data-voice-state="listening"] .voice-mic {
  animation: voice-mic-pulse 1.8s ease-in-out 520ms infinite;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="recognizing"] .voice-recognizing {
  opacity: 1;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="entrance"] .voice-compose,
.js:not(.reduce-motion) .voice-stage[data-voice-state="listening"] .voice-compose,
.js:not(.reduce-motion) .voice-stage[data-voice-state="recognizing"] .voice-compose,
.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-compose,
.js:not(.reduce-motion) .voice-stage[data-voice-state="closing"] .voice-compose {
  opacity: 0;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-recording-state {
  animation: voice-record-close 300ms ease both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-result-dim {
  animation: voice-dim-in 300ms ease both;
  pointer-events: auto;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-result-state {
  animation: voice-result-fade-in 300ms ease both;
  pointer-events: auto;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="result"] .voice-result-panel {
  animation: voice-result-panel-in 420ms cubic-bezier(0.22, 1.1, 0.36, 1) both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="closing"] .voice-result-dim {
  animation: voice-dim-out 300ms ease both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="closing"] .voice-result-state {
  animation: voice-result-fade-out 300ms ease both;
}

.js:not(.reduce-motion) .voice-stage[data-voice-state="closing"] .voice-result-panel {
  animation: voice-result-panel-out 300ms ease both;
}

.js:not(.reduce-motion) .voice-recording-state {
  transform: translateY(0);
}

@keyframes voice-rise {
  from { transform: translateY(106%); }
  to { transform: translateY(0); }
}

@keyframes voice-drop {
  0% { transform: translateY(0); opacity: 1; }
  76% { opacity: 1; }
  100% { transform: translateY(68px); opacity: 0; }
}

@keyframes voice-ripple {
  from { transform: scale(0.06); opacity: 0.7; }
  to { transform: scale(4.4); opacity: 0; }
}

@keyframes voice-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes voice-mic-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}

@keyframes voice-recognizing-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-7px); opacity: 1; }
}

@keyframes voice-record-close {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(26px); }
}

@keyframes voice-dim-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes voice-dim-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes voice-result-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes voice-result-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes voice-result-panel-in {
  from { transform: translateY(40px); }
  to { transform: translateY(0); }
}

@keyframes voice-result-panel-out {
  from { transform: translateY(0); }
  to { transform: translateY(26px); }
}

.calendar-section {
  min-height: 820px;
  padding: 64px 0;
  background: var(--accent);
  color: var(--accent-ink);
}

.calendar-section .section-copy p {
  color: var(--accent-body);
}

.calendar-inner {
  display: grid;
  grid-template-columns: 400px var(--device-width);
  width: min(1160px, calc(100% - 80px));
  align-items: center;
  justify-content: center;
  gap: 112px;
}

.drawer-stage {
  position: relative;
  width: var(--device-width);
  height: auto;
  aspect-ratio: 402 / 874;
  justify-self: center;
}

.drawer-device {
  width: 100%;
}

.drawer-screen {
  position: relative;
  width: 402px;
  height: 874px;
  overflow: hidden;
  background: var(--paper);
}

.drawer-home {
  position: absolute;
  inset: 0;
  padding: 86px 28px;
  background: var(--paper);
  color: var(--ink);
}

.drawer-home-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
}

.drawer-home-header small {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 13px;
}

.drawer-home > p {
  margin: 16px 0 34px;
  color: var(--ink-2);
  font-size: 15px;
}

.drawer-home-tasks {
  display: grid;
  width: min(470px, 100%);
}

.drawer-home-tasks span {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--hairline);
  font-size: 18px;
}

.drawer-home-tasks i {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.drawer-glimpse {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(40, 30, 20, 0.28);
  opacity: 1;
  transition: opacity 420ms ease;
}

.drawer-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  width: 372px;
  padding-top: 66px;
  flex-direction: column;
  background: var(--surface);
  box-shadow: 8px 0 40px rgba(40, 30, 20, 0.18);
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(0.22, 1.1, 0.36, 1);
}

.js:not(.reduce-motion) .drawer-stage[data-drawer-state="closed"] .drawer-panel,
.js:not(.reduce-motion) .drawer-stage[data-drawer-state="closing"] .drawer-panel {
  transform: translateX(-100%);
}

.js:not(.reduce-motion) .drawer-stage[data-drawer-state="closed"] .drawer-glimpse,
.js:not(.reduce-motion) .drawer-stage[data-drawer-state="closing"] .drawer-glimpse {
  opacity: 0;
}

.drawer-account {
  display: flex;
  padding: 8px 22px 20px;
  align-items: center;
  gap: 14px;
}

.drawer-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  place-items: center;
}

.drawer-account strong {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

.drawer-chevron {
  display: grid;
  width: 25px;
  height: 31px;
  place-items: center;
}

.drawer-chevron svg {
  width: 9px;
  height: 15px;
  fill: none;
  stroke: var(--ink-4);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.drawer-divider {
  height: 1px;
  margin: 0 22px;
  background: var(--hairline);
}

.drawer-toolbar {
  display: flex;
  min-height: 36px;
  padding: 18px 18px 12px;
  align-items: center;
  justify-content: space-between;
}

.drawer-segmented {
  display: inline-flex;
  padding: 2px;
  gap: 2px;
  border-radius: 10px;
  background: var(--surface-2);
}

.drawer-segment {
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 500;
}

.drawer-segment-month {
  background: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.drawer-stage[data-drawer-state="switching-day"] .drawer-segment-month,
.drawer-stage[data-drawer-state="day"] .drawer-segment-month {
  background: transparent;
  box-shadow: none;
  color: var(--ink-3);
}

.drawer-stage[data-drawer-state="switching-day"] .drawer-segment-day,
.drawer-stage[data-drawer-state="day"] .drawer-segment-day {
  background: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.drawer-content {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.drawer-view {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: opacity 380ms ease, transform 380ms ease;
}

.drawer-view-month {
  opacity: 1;
  transform: translateY(0);
}

.drawer-view-day {
  opacity: 0;
  transform: translateY(6px);
}

.drawer-stage[data-drawer-state="switching-day"] .drawer-view-month,
.drawer-stage[data-drawer-state="day"] .drawer-view-month {
  opacity: 0;
  transform: translateY(-6px);
}

.drawer-stage[data-drawer-state="switching-day"] .drawer-view-day,
.drawer-stage[data-drawer-state="day"] .drawer-view-day {
  opacity: 1;
  transform: translateY(0);
}

.drawer-month-heading {
  display: flex;
  padding: 2px 2px 10px;
  align-items: baseline;
  gap: 9px;
}

.drawer-month-heading strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.drawer-month-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 500;
}

.drawer-weekdays,
.drawer-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.drawer-weekdays span {
  color: var(--ink-3);
  font-size: 11px;
  text-align: center;
}

.drawer-month-grid {
  row-gap: 2px;
}

.drawer-day {
  display: flex;
  padding: 3px 0;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}

.drawer-day b {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  place-items: center;
}

.drawer-day.is-today b {
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
}

.day-mark {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.day-mark.mark-full {
  background: var(--accent);
}

.day-mark.mark-partial {
  border: 1px solid var(--accent);
  background: conic-gradient(var(--accent) 0 50%, transparent 50%);
}

.day-mark.mark-none {
  border: 1px solid var(--ink-4);
}

.drawer-legend {
  display: flex;
  padding: 8px 0 12px;
  justify-content: center;
  gap: 12px;
  color: var(--ink-3);
  font-size: 10px;
}

.drawer-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.drawer-view-day {
  padding-right: 0;
  padding-left: 0;
}

.drawer-view-day h3 {
  margin: 0;
  padding: 10px 24px 6px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.drawer-day-list > span {
  display: flex;
  height: 48px;
  margin: 0 24px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--hairline);
}

.drawer-day-list s {
  flex: 1;
  overflow: hidden;
  color: var(--ink-3);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drawer-day-list small {
  flex: 0 0 auto;
  color: var(--ink-4);
  font-size: 11px;
}

.drawer-day-list .drawer-abandoned {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-3);
}

.drawer-footer {
  margin: 0;
  padding: 12px 18px 18px;
  border-top: 1px solid var(--hairline-2);
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
}

.widget-section {
  min-height: 820px;
  padding: 72px 0;
  overflow: hidden;
  background: var(--scene-cream);
}

.widget-layout {
  display: grid;
  grid-template-areas: "product copy";
  grid-template-columns: var(--device-width) minmax(0, 400px);
  align-items: center;
  justify-content: center;
  gap: 112px;
  width: min(1160px, calc(100% - 80px));
}

.widget-copy {
  grid-area: copy;
  max-width: 400px;
}

.widget-copy p {
  color: var(--body-ink);
}

.widget-stage {
  position: relative;
  grid-area: product;
  width: var(--device-width);
  justify-self: center;
}

.today-section,
.voice-section,
.calendar-section,
.widget-section {
  min-height: var(--story-min-height);
  padding: 0;
}

.hero-inner,
.today-layout,
.voice-inner,
.calendar-inner,
.widget-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--story-slot-width)));
  width: min(var(--story-inner-width), calc(100% - 80px));
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: var(--story-gap);
}

.today-layout,
.voice-inner,
.calendar-inner,
.widget-layout {
  min-height: var(--story-min-height);
}

.hero-inner {
  grid-template-areas: "copy product";
}

.today-layout {
  grid-template-areas: "product copy";
}

.voice-inner {
  grid-template-areas: "copy product";
}

.calendar-inner {
  grid-template-areas: "product copy";
}

.widget-layout {
  grid-template-areas: "copy product";
}

.hero-copy,
.today-copy,
.voice-copy,
.calendar-copy,
.widget-copy {
  grid-area: copy;
  width: var(--story-slot-width);
  max-width: var(--story-slot-width);
  justify-self: center;
}

.hero-device,
.morph-plane,
.voice-stage,
.drawer-stage,
.widget-stage {
  grid-area: product;
  width: var(--device-width);
  justify-self: center;
}

.widget-device {
  background: #F4EEE4;
}

.widget-desktop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #F4EEE4;
  color: var(--ink);
  font-family: var(--font-sans);
}

.widget-medium {
  position: absolute;
  top: 128px;
  left: 32px;
  width: 338px;
  height: 158px;
  padding: 18px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.12);
}

.widget-medium-header {
  display: flex;
  margin-bottom: 11px;
  align-items: baseline;
  justify-content: space-between;
}

.widget-medium-header strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.widget-medium-header span {
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 500;
}

.widget-medium-header b {
  color: var(--accent);
  font-weight: 700;
}

.widget-task {
  display: flex;
  margin-bottom: 9px;
  align-items: center;
  gap: 11px;
}

.widget-task:last-child {
  margin-bottom: 0;
}

.widget-task i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.widget-task span {
  overflow: hidden;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget-task-done i {
  border: 0;
  background: var(--accent);
}

.widget-task-done span {
  color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-color: var(--ink-4);
}

.widget-app {
  position: absolute;
  top: 354px;
  left: 49px;
  display: flex;
  width: 74px;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.widget-app-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
}

.widget-app span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.privacy-section {
  padding: 156px 20px;
  background: var(--accent);
  color: var(--accent-ink);
}

.privacy-inner p {
  color: var(--accent-ink);
  font-size: 19px;
  font-weight: 700;
}

.privacy-links .text-link {
  color: var(--accent-ink);
  font-size: 19px;
  font-weight: 700;
}

.privacy-links .text-link:focus-visible {
  outline-color: var(--accent-ink);
}

.privacy-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.privacy-dot {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: var(--accent-ink);
}

.privacy-links {
  display: flex;
  margin-top: 28px;
  justify-content: center;
  gap: 28px;
}

.final-section {
  padding: 132px 20px;
  background: var(--scene-cream);
}

.final-inner {
  text-align: center;
}

.final-inner p {
  margin: 18px 0 30px;
  color: var(--site-ink-2);
  font-size: 18px;
  line-height: 1.6;
}

.final-inner .button {
  background: var(--accent);
  color: var(--accent-ink);
}

.final-inner .button-disabled {
  opacity: 1;
}

.site-footer {
  border-top: 1px solid var(--site-line);
  background: var(--scene-cream);
}

.footer-inner {
  display: flex;
  width: min(var(--content-width), calc(100% - 64px));
  min-height: 174px;
  margin: 0 auto;
  padding: 40px 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand,
.footer-tagline,
.copyright {
  margin: 0;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.footer-tagline,
.copyright {
  margin-top: 8px;
  color: var(--site-ink-2);
  font-size: 13px;
  line-height: 1.6;
}

.footer-meta {
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 24px;
}

.footer-links a,
.page-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--site-ink-2);
  font-size: 13px;
  text-underline-offset: 4px;
}

.hero-enter-copy,
.hero-enter-device,
[data-reveal] .section-copy,
[data-reveal] .morph-plane,
[data-reveal] .drawer-stage,
[data-reveal] .widget-stage,
[data-reveal].privacy-section .privacy-inner,
[data-reveal].final-section .final-inner {
  opacity: 1;
  transform: translateY(0);
}

.js:not(.reduce-motion) .hero-enter-copy {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js:not(.reduce-motion) .hero-enter-device {
  opacity: 0;
  transform: translateY(calc(var(--hero-device-y) + 24px)) scale(0.975);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) 80ms, transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.js:not(.reduce-motion).site-ready .hero-enter-copy,
.js:not(.reduce-motion).site-ready .hero-enter-copy {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js:not(.reduce-motion).site-ready .hero-enter-device {
  opacity: 1;
  transform: translateY(var(--hero-device-y)) scale(1);
}

.js:not(.reduce-motion) [data-reveal] .section-copy,
.js:not(.reduce-motion) [data-reveal] .morph-plane,
.js:not(.reduce-motion) [data-reveal] .drawer-stage,
.js:not(.reduce-motion) [data-reveal] .widget-stage,
.js:not(.reduce-motion) [data-reveal].privacy-section .privacy-inner,
.js:not(.reduce-motion) [data-reveal].final-section .final-inner {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease-out, transform 520ms ease-out;
}

.js:not(.reduce-motion) [data-reveal].is-visible .section-copy,
.js:not(.reduce-motion) [data-reveal].is-visible .morph-plane,
.js:not(.reduce-motion) [data-reveal].is-visible .drawer-stage,
.js:not(.reduce-motion) [data-reveal].is-visible .widget-stage,
.js:not(.reduce-motion) [data-reveal].is-visible.privacy-section .privacy-inner,
.js:not(.reduce-motion) [data-reveal].is-visible.final-section .final-inner {
  opacity: 1;
  transform: translateY(0);
}

.js:not(.reduce-motion) .widget-section .widget-stage {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js:not(.reduce-motion) .widget-section.is-visible .widget-stage {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding: 150px 20px 78px;
  background: var(--scene-cream);
}

.page-hero-inner,
.support-content,
.legal-shell {
  width: min(var(--legal-width), 100%);
  margin: 0 auto;
}

.page-hero h1,
.legal-document h1,
.not-found h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
}

.page-hero p {
  margin: 22px 0 0;
  color: var(--site-ink-2);
  font-size: 18px;
  line-height: 1.75;
}

.support-email {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 18px;
}

.mail-button {
  background: var(--liubai-accent);
  color: var(--surface);
}

.email-text {
  color: var(--site-ink-2);
  font-size: 15px;
}

.support-content {
  padding: 36px 0 120px;
}

.support-content h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.25;
}

.faq-list {
  border-bottom: 1px solid var(--site-line);
}

.faq-list details {
  border-top: 1px solid var(--site-line);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  padding: 14px 2px;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.faq-list details p {
  margin: 0;
  padding: 0 2px 24px;
  color: var(--site-ink-2);
  font-size: 16px;
  line-height: 1.8;
}

.support-bottom {
  margin-top: 42px;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}

.legal-shell {
  padding: 136px 0 120px;
}

.legal-document > p:first-of-type {
  margin-top: 20px;
  color: var(--site-ink-2);
}

.legal-document h2 {
  margin: 54px 0 16px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
}

.legal-document h3 {
  margin: 34px 0 12px;
  font-size: 20px;
  line-height: 1.4;
}

.legal-document p,
.legal-document li {
  color: var(--site-ink-2);
  font-size: 16px;
  line-height: 1.85;
}

.legal-document p {
  margin: 12px 0;
}

.legal-document ul,
.legal-document ol {
  margin: 12px 0;
  padding-left: 1.45em;
}

.legal-document a {
  color: var(--site-ink);
  text-underline-offset: 4px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 174px);
  padding: 120px 20px 72px;
  place-items: center;
  text-align: center;
}

.not-found-inner p {
  margin: 28px 0 0;
}

@media (min-width: 1200px) and (max-width: 1439px) {
  :root {
    --story-slot-width: 380px;
    --story-device-width: 300px;
    --story-gap: 80px;
    --device-scale: 0.746268657;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  :root {
    --story-slot-width: 340px;
    --story-device-width: 280px;
    --story-gap: 48px;
    --device-scale: 0.696517413;
  }
}

@media (min-width: 1200px) {
  .section-copy h2 {
    white-space: nowrap;
  }
}

@media (min-width: 1440px) {
  :root {
    --story-slot-width: 400px;
    --story-device-width: 316px;
    --story-gap: 112px;
    --device-scale: 0.786069652;
  }
}

@media (max-width: 899px) {
  :root {
    --story-slot-width: 360px;
    --story-device-width: 280px;
    --story-gap: 40px;
    --device-scale: 0.696517413;
  }

  .hero-section {
    min-height: 0;
    padding: calc(var(--header-height) + 24px) 20px 56px;
  }

  .hero-inner,
  .today-layout,
  .voice-inner,
  .calendar-inner,
  .widget-layout {
    grid-template-areas:
      "copy"
      "product";
    grid-template-columns: minmax(0, min(var(--story-slot-width), 100%));
    width: 100%;
    min-height: 0;
    gap: 40px;
  }

  .hero-copy,
  .today-copy,
  .voice-copy,
  .calendar-copy,
  .widget-copy {
    width: min(var(--story-slot-width), 100%);
    max-width: 360px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-device {
    --hero-device-y: 0px;
  }

  .hero-device img {
    filter:
      drop-shadow(0 16px 28px rgba(55, 43, 36, 0.1))
      drop-shadow(0 5px 12px rgba(55, 43, 36, 0.05));
  }

  .today-section,
  .voice-section,
  .calendar-section,
  .widget-section {
    min-height: 0;
    padding: 56px 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 60px;
    --story-device-width: 246px;
    --device-scale: 0.611940299;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 40px);
  }

  .brand-link {
    gap: 10px;
    font-size: 18px;
  }

  .brand-link img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .primary-nav {
    gap: 0;
  }

  [data-desktop-only] {
    display: none;
  }

  .nav-link,
  .store-cta {
    font-size: 15px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .store-cta {
    min-width: 0;
    margin-left: 2px;
    padding-right: 13px;
    padding-left: 13px;
    font-size: 14px;
    font-weight: 600;
  }

  .store-cta-long {
    display: none;
  }

  .store-cta-short {
    display: inline;
  }

  .hero-section {
    padding: calc(var(--header-height) + 24px) 24px 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    max-width: 360px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 54px;
    line-height: 1.06;
  }

  .hero-tagline {
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-lede {
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 34px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .hero-actions .button {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }

  .hero-actions .text-link {
    font-size: 14px;
  }

  .hero-device {
    width: var(--device-width);
    margin: 0 auto;
    box-shadow: none;
    filter: none;
  }

  .section-copy h2,
  .privacy-inner h2,
  .final-inner h2 {
    font-size: 34px;
    line-height: 1.22;
  }

  .section-copy p,
  .privacy-inner p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .privacy-inner p {
    font-size: 19px;
  }

  .today-section {
    min-height: 0;
    padding: 56px 20px;
  }

  .hero-inner,
  .today-layout,
  .voice-inner,
  .calendar-inner,
  .widget-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .voice-inner,
  .widget-layout {
    grid-template-areas: "copy" "product";
  }

  .today-section .today-layout {
    width: 100%;
    gap: 40px;
  }

  .today-copy {
    width: 100%;
  }

  .morph-plane {
    width: var(--device-width);
    min-height: 0;
    height: auto;
  }

  .morph-title {
    left: 28px;
  }

  .morph-row {
    font-size: 17px;
    line-height: 25px;
  }

  .voice-section {
    min-height: 0;
    padding: 56px 20px;
  }

  .voice-inner {
    width: 100%;
    gap: 40px;
  }

  .voice-copy {
    text-align: center;
  }

  .voice-stage {
    width: var(--device-width);
    min-height: 0;
    height: auto;
    margin: 0 auto;
  }

  .voice-home {
    width: 100%;
    padding-top: 86px;
  }

  .voice-home-row {
    font-size: 17px;
    line-height: 1.5;
  }

  .voice-result-panel {
    width: 100%;
  }

  .calendar-section {
    min-height: 0;
    padding: 56px 20px;
  }

  .calendar-inner {
    width: 100%;
    gap: 40px;
  }

  .drawer-stage {
    width: var(--device-width);
    height: auto;
    margin: 0 auto;
  }

  .drawer-home {
    padding: 86px 28px;
  }

  .widget-section {
    min-height: 0;
    padding: 56px 20px;
  }

  .widget-layout {
    width: 100%;
    gap: 40px;
  }

  .widget-stage {
    width: var(--device-width);
  }

  .privacy-section,
  .final-section {
    padding: 104px 20px;
  }

  .privacy-links {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-inner {
    min-height: 0;
    padding: 34px 0;
    flex-direction: column;
    gap: 24px;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0 18px;
  }

  .page-hero {
    padding: 118px 20px 54px;
  }

  .page-hero h1,
  .legal-document h1,
  .not-found h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .support-email {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .support-content {
    width: calc(100% - 40px);
    padding: 30px 0 92px;
  }

  .legal-shell {
    width: calc(100% - 40px);
    padding: 112px 0 92px;
  }

  .legal-document h2 {
    margin-top: 44px;
    font-size: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 420px) and (max-width: 767px) {
  :root {
    --story-device-width: 256px;
    --device-scale: 0.63681592;
  }

  .hero-section {
    padding-right: 28px;
    padding-left: 28px;
  }

}
