/* NuiDiary landing page — Japanese lifestyle magazine × quiet scrapbook */

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

:root {
  --canvas: #fbf5ea;
  --canvas-deep: #f4e9d9;
  --paper: #fffdf8;
  --paper-warm: #fff8ef;
  --ink: #3f3026;
  --ink-soft: #6f5a4a;
  --muted: #806a57;
  --coral: #dc8a76;
  --coral-deep: #a25446;
  --blush: #f3ddd5;
  --sage: #9fb7a8;
  --sage-soft: #e8efea;
  --lavender: #b7a7c5;
  --lavender-soft: #eee8f2;
  --honey: #d8b36a;
  --honey-soft: #f6ebcf;
  --line: rgba(63, 48, 38, 0.14);
  --line-strong: rgba(63, 48, 38, 0.26);
  --shadow-soft: 0 22px 54px rgba(66, 45, 31, 0.1);
  --shadow-photo: 0 28px 68px rgba(58, 39, 27, 0.15);
  --max: 1180px;
  --page-pad: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-small: 12px;
  --font-display: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", system-ui, sans-serif;
  --font-label: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

:root:lang(zh-Hant) {
  --font-display: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  --font-body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

:root:lang(en) {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--canvas);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 12%, rgba(216, 179, 106, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 28%, rgba(183, 167, 197, 0.11), transparent 27rem),
    linear-gradient(180deg, #fffaf2 0%, var(--canvas) 42%, var(--canvas-deep) 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection {
  color: var(--ink);
  background: rgba(220, 138, 118, 0.28);
}

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

figure {
  margin: 0;
}

img {
  height: auto;
}

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

button {
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(32px, 4.3vw, 52px);
  line-height: 1.3;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.42;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.section-inner,
.hero,
.photo-strip-inner,
.feature-stories,
.album-story-inner,
.download,
.bloom,
.faq,
.site-footer {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  margin-inline: auto;
}

.eyebrow,
.section-kicker,
.feature-label,
.album-day,
.bloom-badge,
.photo-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--coral-deep);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.feature-label::before,
.bloom-badge::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(44px, 7vw, 78px);
}

.section-heading .eyebrow,
.section-heading .section-kicker {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 2;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.button:hover {
  border-color: rgba(63, 48, 38, 0.42);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(65, 45, 32, 0.12);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--ink);
  color: #fffaf1;
  background: var(--ink);
}

.button-primary:hover {
  border-color: #2f241d;
  color: #fff;
  background: #2f241d;
}

.button-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Navigation */

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
  min-height: 76px;
  align-items: center;
  gap: 28px;
  padding: 12px max(var(--page-pad), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(251, 245, 234, 0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  transition:
    min-height 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-nav.nav-scrolled {
  min-height: 66px;
  border-bottom-color: var(--line);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 32px rgba(67, 48, 35, 0.06);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid rgba(63, 48, 38, 0.1);
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(65, 44, 31, 0.1);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.brand-subtitle {
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--coral-deep);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 240ms var(--ease-out);
}

.nav-links a:hover::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.nav-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 12px;
}

.lang-picker {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.lang-toggle:hover,
.lang-toggle[aria-expanded="true"] {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.8);
}

.lang-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.lang-toggle-main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lang-toggle-caret svg {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease;
}

.lang-toggle[aria-expanded="true"] .lang-toggle-caret svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 168px;
  display: grid;
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 200ms var(--ease-out);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.lang-option {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.lang-option:hover,
.lang-option.active,
.lang-option[aria-current="page"] {
  color: var(--ink);
  background: var(--blush);
}

.nav-hamburger {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.82);
}

.nav-hamburger span {
  width: 16px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  right: 18px;
  left: 18px;
  z-index: 99;
  display: none;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-soft);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu > a:hover {
  background: var(--blush);
}

.mobile-language-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--canvas);
}

.mobile-lang-option {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.mobile-lang-option.active,
.mobile-lang-option[aria-current="page"] {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 5px 13px rgba(64, 44, 31, 0.08);
}

/* Hero */

.hero {
  position: relative;
  min-height: min(920px, 96svh);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  padding-top: 136px;
  padding-bottom: 96px;
}

.hero::before {
  content: "NUI PHOTO JOURNAL  ·  01";
  position: absolute;
  top: 50%;
  left: calc(100% + 26px);
  color: rgba(111, 90, 74, 0.48);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.28em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-copy,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  margin-bottom: 27px;
  text-transform: none;
  letter-spacing: 0.08em;
}

.hero-title {
  max-width: 670px;
}

.hero-line {
  display: block;
}

:lang(zh-Hant) .hero-line + .hero-line {
  margin-top: 9px;
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: 0.05em;
}

.hero-subtitle {
  max-width: 510px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-proof,
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 0;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof-item,
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 14px;
  border-left: 1px solid var(--line-strong);
}

.hero-proof-item:first-child,
.hero-note:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof-item::before,
.hero-note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(220, 138, 118, 0.13);
}

.hero-media {
  position: relative;
  min-height: clamp(480px, 48vw, 610px);
}

.hero-media::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 76%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 221, 213, 0.8), transparent 68%);
  filter: blur(8px);
}

.hero-photo-main,
.hero-photo-back,
.hero-app-card,
.hero-memory-card {
  position: absolute;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(63, 48, 38, 0.11);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow-photo);
}

.hero-photo-main img,
.hero-photo-back img,
.hero-app-card img,
.hero-memory-card img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

.hero-photo-main {
  top: 4%;
  right: 3%;
  z-index: 2;
  width: 64%;
  height: 78%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow:
    0 30px 64px rgba(68, 45, 31, 0.18),
    0 6px 16px rgba(68, 45, 31, 0.08);
  transform: rotate(1.7deg);
}

.hero-photo-main img {
  border-radius: 18px;
  object-position: center 46%;
}

.hero-photo-back,
.hero-memory-card {
  bottom: 4%;
  left: 1%;
  z-index: 1;
  width: 48%;
  height: 38%;
  transform: rotate(-4deg);
}

.hero-app-card {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 34%;
  height: 53%;
  padding: 7px;
  border-radius: 24px;
  transform: rotate(3deg);
}

.hero-app-card img {
  border-radius: 18px;
  object-position: top center;
}

.hero-date-stamp,
.hero-caption {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(173, 96, 79, 0.35);
  color: var(--coral-deep);
  background: rgba(255, 253, 248, 0.9);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-date-stamp {
  top: 7%;
  left: 4%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  text-align: center;
  transform: rotate(-9deg);
}

.hero-caption {
  bottom: 29%;
  left: 20%;
  padding: 8px 13px;
  border-radius: 5px;
  color: var(--ink-soft);
  transform: rotate(-2deg);
}

.hero-washi {
  position: absolute;
  top: 0;
  right: 28%;
  z-index: 4;
  width: 104px;
  height: 28px;
  opacity: 0.82;
  background:
    linear-gradient(90deg, transparent 0 4px, rgba(255,255,255,.18) 4px 8px),
    var(--blush);
  transform: rotate(5deg);
  clip-path: polygon(2% 4%, 100% 0, 97% 96%, 1% 100%);
}

/* Photo journal strip */

.photo-strip {
  position: relative;
  padding: 70px 0 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}

.photo-strip::before {
  content: "";
  position: absolute;
  inset: 14px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.photo-strip-head,
.photo-strip-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.photo-strip-title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 600;
}

.photo-strip-hint {
  color: var(--muted);
  font-size: 12px;
}

.photo-strip-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  align-items: start;
}

.photo-strip-item,
.photo-strip-card {
  min-width: 0;
  margin: 0;
  padding: 7px 7px 12px;
  border: 1px solid rgba(63, 48, 38, 0.1);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 15px 32px rgba(64, 44, 31, 0.09);
}

.photo-strip-item:nth-child(2),
.photo-strip-card:nth-child(2),
.photo-strip-item:nth-child(5),
.photo-strip-card:nth-child(5) {
  margin-top: 22px;
}

.photo-strip-item:nth-child(3),
.photo-strip-card:nth-child(3) {
  transform: rotate(1.2deg);
}

.photo-strip-item img,
.photo-strip-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
}

.photo-strip-item:nth-child(1) img,
.photo-strip-card:nth-child(1) img,
.photo-strip-item:nth-child(4) img,
.photo-strip-card:nth-child(4) img {
  aspect-ratio: 4 / 3;
}

.photo-strip-item figcaption,
.photo-strip-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 3px 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.photo-strip-item time,
.photo-strip-card time {
  color: var(--coral-deep);
  font-family: var(--font-label);
  letter-spacing: 0.08em;
}

/* Feature stories */

.feature-stories {
  padding-top: clamp(92px, 11vw, 142px);
  padding-bottom: clamp(92px, 11vw, 142px);
}

.feature-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 108px);
}

.feature-stage,
.feature-visuals {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.feature-phone,
.feature-phone-frame {
  position: relative;
  width: min(100%, 292px);
  aspect-ratio: 355 / 720;
}

.feature-phone::before,
.feature-phone-frame::before {
  content: "";
  position: absolute;
  inset: -28px -34px;
  z-index: -1;
  border-radius: 44% 56% 48% 52%;
  background: radial-gradient(circle, rgba(159, 183, 168, 0.27), transparent 70%);
}

.feature-screen,
[data-feature-screen] {
  overflow: hidden;
  margin: 0 0 26px;
  padding: 7px;
  border: 1px solid rgba(45, 33, 25, 0.22);
  border-radius: 38px;
  background: #30241c;
  box-shadow:
    0 38px 78px rgba(51, 35, 24, 0.18),
    0 10px 24px rgba(51, 35, 24, 0.1);
}

.feature-screen img,
[data-feature-screen] img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: top center;
}

.feature-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.feature-progress li,
[data-feature-progress] {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: width 260ms ease, background 260ms ease;
}

.feature-progress li.is-active,
[data-feature-progress].is-active {
  width: 46px;
  background: var(--coral);
}

.feature-list,
.feature-steps {
  grid-column: 2;
  grid-row: 1;
}

.feature-story,
[data-scene-step] {
  position: relative;
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.feature-story:first-child,
[data-scene-step]:first-child {
  border-top: 0;
}

.feature-story::before,
[data-scene-step]::before {
  content: attr(data-step-label);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  color: rgba(63, 48, 38, 0.055);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(94px, 12vw, 168px);
  font-weight: 600;
  line-height: 0.8;
  transform: translateY(-62%);
}

.feature-label {
  margin-bottom: 18px;
}

.feature-story h3,
.feature-story h2,
[data-scene-step] h3,
[data-scene-step] h2 {
  max-width: 550px;
}

.feature-story p,
[data-scene-step] p {
  max-width: 510px;
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 2;
}

.feature-benefits,
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-benefits li,
.feature-chip {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.6);
  font-size: 11px;
  font-weight: 700;
}

html.js .feature-flow.is-enhanced .feature-stage,
html.js [data-feature-flow].is-enhanced .feature-stage,
html.js [data-feature-flow].is-enhanced .feature-visuals {
  position: sticky;
  top: calc(50svh - 316px);
}

html.js .feature-flow.is-enhanced .feature-phone,
html.js [data-feature-flow].is-enhanced .feature-phone-frame {
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(45, 33, 25, 0.22);
  border-radius: 38px;
  background: #30241c;
  box-shadow:
    0 38px 78px rgba(51, 35, 24, 0.18),
    0 10px 24px rgba(51, 35, 24, 0.1);
}

html.js .feature-flow.is-enhanced .feature-screen,
html.js [data-feature-flow].is-enhanced [data-feature-screen] {
  position: absolute;
  inset: 7px;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 30px;
  box-shadow: none;
  opacity: 0;
  transform: translateY(14px) scale(1.012);
  transition: opacity 420ms ease, transform 520ms var(--ease-out);
}

html.js .feature-flow.is-enhanced .feature-screen.is-active,
html.js [data-feature-flow].is-enhanced [data-feature-screen].is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
}

html.js .feature-flow.is-enhanced .feature-story-copy,
html.js [data-feature-flow].is-enhanced [data-scene-step] > :not(.feature-mobile-media):not(.feature-story-number) {
  opacity: 0.28;
  transform: translateX(18px);
  transition: opacity 460ms ease, transform 540ms var(--ease-out);
}

html.js .feature-flow.is-enhanced .feature-story.is-current .feature-story-copy,
html.js [data-feature-flow].is-enhanced [data-scene-step].is-current > :not(.feature-mobile-media):not(.feature-story-number) {
  opacity: 1;
  transform: none;
}

/* Album story */

.album-story {
  position: relative;
  padding: clamp(94px, 11vw, 144px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 253, 248, 0.64), rgba(255, 253, 248, 0.64)),
    linear-gradient(90deg, rgba(216, 179, 106, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(216, 179, 106, 0.09) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.album-story .section-heading {
  margin-inline: auto;
  text-align: center;
}

.album-story .section-heading .eyebrow,
.album-story .section-heading .section-kicker {
  justify-content: center;
}

.album-story .section-heading > p:last-child {
  margin-inline: auto;
}

.album-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.album-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line-strong);
}

.album-moment {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 18px 24px;
}

.album-day {
  align-self: center;
  margin-bottom: 23px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--coral-deep);
  background: var(--paper);
  letter-spacing: 0.12em;
  box-shadow: 0 8px 18px rgba(64, 44, 31, 0.07);
}

.album-photo,
.album-collage,
.album-contact-sheet {
  min-height: 330px;
  display: grid;
  gap: 7px;
  overflow: hidden;
  margin: 0 0 26px;
  padding: 8px;
  border: 1px solid rgba(63, 48, 38, 0.1);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow-photo);
}

.album-moment:nth-child(1) .album-photo,
.album-moment:nth-child(1) .album-collage,
.album-moment:nth-child(1) .album-contact-sheet {
  transform: rotate(-1.5deg);
}

.album-moment:nth-child(2) .album-photo,
.album-moment:nth-child(2) .album-collage,
.album-moment:nth-child(2) .album-contact-sheet {
  margin-top: 18px;
  transform: rotate(1deg);
}

.album-moment:nth-child(3) .album-photo,
.album-moment:nth-child(3) .album-collage,
.album-moment:nth-child(3) .album-contact-sheet {
  transform: rotate(-0.7deg);
}

.album-photo img,
.album-collage img,
.album-contact-sheet img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 9px;
  object-fit: cover;
}

.album-collage,
.album-contact-sheet {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.album-collage img:first-child,
.album-contact-sheet img:first-child {
  grid-row: 1 / span 2;
}

.album-moment h3 {
  margin-top: 2px;
  text-align: center;
}

.album-moment > p {
  max-width: 320px;
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

/* Download */

.download {
  padding-top: clamp(94px, 11vw, 144px);
  padding-bottom: clamp(78px, 9vw, 118px);
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 221, 213, 0.75), transparent 20rem),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--honey), var(--sage), var(--lavender));
}

.download-copy {
  position: relative;
  z-index: 2;
}

.download-copy .eyebrow,
.download-copy .section-kicker {
  margin-bottom: 18px;
}

.download-copy h2,
.download-closing {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.36;
}

.download-copy > p:not(.eyebrow):not(.section-kicker),
.download-free-note {
  max-width: 470px;
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: 1.95;
}

.store-grid,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.store-badge-shell {
  display: block;
}

.store-button {
  display: inline-flex;
  min-width: 184px;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 9px 14px;
  border-radius: 12px;
  color: #fff;
  background: #201914;
  box-shadow: 0 12px 26px rgba(54, 37, 25, 0.16);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.store-button:hover {
  box-shadow: 0 18px 34px rgba(54, 37, 25, 0.22);
  transform: translateY(-2px);
}

.store-icon {
  flex: 0 0 auto;
  width: 25px;
}

.store-icon svg {
  width: 100%;
  fill: currentColor;
}

.store-copy {
  display: grid;
  gap: 0;
}

.store-overline {
  font-size: 9px;
  line-height: 1.2;
}

.store-title {
  font-size: 17px;
  line-height: 1.25;
}

.store-arrow {
  margin-left: auto;
}

.store-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-preview,
.download-visual {
  position: relative;
  min-height: 430px;
}

.download-original,
.download-export {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(63, 48, 38, 0.11);
  background: var(--paper);
  box-shadow: var(--shadow-photo);
}

.download-original {
  top: 7%;
  left: 2%;
  width: 58%;
  height: 72%;
  border-radius: 15px;
  transform: rotate(-4deg);
}

.download-export {
  right: 2%;
  bottom: 0;
  width: 49%;
  height: 88%;
  padding: 6px;
  border-radius: 25px;
  background: #30241c;
  transform: rotate(2.4deg);
}

.download-original img,
.download-export img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

.download-export img {
  border-radius: 19px;
  object-position: top center;
}

.download-arrow {
  position: absolute;
  top: 45%;
  left: 47%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral-deep);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(64, 44, 31, 0.12);
}

/* Bloom */

.bloom {
  padding-bottom: clamp(92px, 11vw, 140px);
}

.bloom-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  grid-template-areas:
    "intro features"
    "price features"
    "cta features";
  gap: 26px clamp(40px, 7vw, 82px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(84, 66, 92, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(183, 167, 197, 0.3), transparent 24rem),
    linear-gradient(135deg, #fffdf8, #faf6fb);
  box-shadow: var(--shadow-soft);
}

.bloom-card::after {
  content: "BLOOM";
  position: absolute;
  right: -14px;
  bottom: -24px;
  color: rgba(91, 72, 101, 0.045);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(94px, 14vw, 170px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.bloom-intro {
  grid-area: intro;
  position: relative;
  z-index: 1;
}

.bloom-badge {
  margin-bottom: 18px;
  color: #806a8c;
}

.bloom-intro > p:last-child,
.bloom-body {
  max-width: 430px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.bloom-features {
  grid-area: features;
  position: relative;
  z-index: 1;
  align-self: center;
}

.bloom-features li {
  position: relative;
  padding: 13px 4px 13px 32px;
  border-top: 1px solid rgba(84, 66, 92, 0.14);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.bloom-features li:last-child {
  border-bottom: 1px solid rgba(84, 66, 92, 0.14);
}

.bloom-features li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(128, 106, 140, 0.54);
  border-radius: 50%;
  transform: translateY(-50%);
}

.bloom-features li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 4px;
  height: 7px;
  border: solid #806a8c;
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-62%) rotate(45deg);
}

.bloom-pricing,
.bloom-price {
  grid-area: price;
  position: relative;
  z-index: 1;
}

.bloom-price-tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: #806a8c;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bloom-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bloom-price-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.2;
}

.bloom-price-period,
.bloom-price-alt {
  color: var(--muted);
  font-size: 13px;
}

.bloom-price-alt {
  margin-top: 6px;
}

.bloom-cta {
  grid-area: cta;
  position: relative;
  z-index: 1;
  justify-self: start;
}

/* FAQ */

.faq {
  padding-bottom: clamp(92px, 11vw, 138px);
}

.faq .section-heading {
  margin-bottom: 34px;
}

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

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

.faq-item summary {
  padding: 23px 2px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
}

.faq-num {
  color: var(--coral-deep);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.faq-q {
  font-weight: 700;
}

.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink-soft);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease-out);
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 820px;
  padding: 0 44px 24px 62px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.5fr);
  align-items: end;
  gap: 36px;
  padding: 42px 0 50px;
  border-top: 1px solid var(--line-strong);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.footer-brand p {
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 22px;
}

.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta,
.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.08em;
}

/* Generated landing markup integration */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-nav {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
}

.site-nav-inner {
  width: min(100%, var(--max));
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.hero-inner {
  display: contents;
}

.hero h1 > span {
  display: block;
}

:lang(zh-Hant) .hero h1 > span:last-child {
  margin-top: 6px;
}

.hero-body {
  max-width: 510px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 14px;
  border-left: 1px solid var(--line-strong);
}

.hero-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(220, 138, 118, 0.13);
}

.hero-date-stamp {
  flex-direction: column;
  gap: 1px;
}

.hero-date-stamp > span {
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-hand-note {
  position: absolute;
  bottom: 25%;
  left: 13%;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(63, 48, 38, 0.12);
  border-radius: 6px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.88);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.08em;
  transform: rotate(-3deg);
}

.photo-strip > .section-heading,
.photo-strip > .photo-strip-track,
.album-story > .section-heading,
.album-story > .album-timeline {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  margin-inline: auto;
}

.photo-strip .section-heading-inline {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.photo-strip .section-heading-inline .eyebrow {
  align-self: start;
}

.photo-strip-track {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.photo-strip-item figure {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.photo-strip-item figcaption span {
  color: var(--coral-deep);
  font-family: var(--font-label);
  letter-spacing: 0.08em;
}

.feature-phone-column {
  grid-column: 1;
  grid-row: 1;
}

.feature-story-list {
  grid-column: 2;
  grid-row: 1;
}

.feature-mobile-media {
  display: none;
}

.feature-story-number {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  color: rgba(63, 48, 38, 0.055);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(94px, 12vw, 168px);
  font-weight: 600;
  line-height: 0.8;
  transform: translateY(-62%);
}

.feature-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 0 !important;
  margin-bottom: 18px;
  color: var(--coral-deep) !important;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-story-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.feature-story-detail {
  margin-top: 22px !important;
  padding-left: 16px;
  border-left: 2px solid var(--blush);
  color: var(--muted) !important;
  font-size: 13px;
}

[data-feature-flow]:not(.is-enhanced) [data-feature-screen][aria-hidden="true"] {
  display: none;
}

.album-moment-copy {
  min-height: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.album-moment-copy h3 {
  margin-top: 1px;
}

.album-moment-copy > p:last-child {
  max-width: 320px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.album-photo-cluster {
  min-height: 354px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(91, 65, 48, 0.16);
  box-shadow:
    0 22px 52px rgba(67, 45, 30, 0.13),
    0 3px 10px rgba(67, 45, 30, 0.07);
}

.album-photo-cluster > img {
  border-radius: 0;
}

.album-moment:nth-child(1) .album-photo-cluster {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  transform: rotate(-1.5deg);
}

.album-moment:nth-child(2) .album-photo-cluster {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr;
  margin-top: 18px;
  transform: rotate(1deg);
}

.album-moment:nth-child(3) .album-photo-cluster {
  transform: rotate(-0.7deg);
}

.album-moment:nth-child(3) .album-photo:first-child {
  grid-row: 1 / span 2;
}

.album-photo-cluster .album-photo,
.album-photo-cluster .album-photo:nth-child(n) {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.album-photo-cluster .album-photo img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

/* Day 100 pairs the real Memories screen with the two approved outing photos. */

.album-moment-3 .album-photo-cluster {
  grid-template-columns: minmax(130px, 1.3fr) minmax(0, 0.7fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.album-moment-3 .album-memory-screen {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 4px;
  border: 1px solid rgba(45, 33, 25, 0.22);
  border-radius: 16px;
  background: #30241c;
  box-shadow: 0 16px 32px rgba(51, 35, 24, 0.16);
  object-fit: contain;
  object-position: top center;
}

.album-moment-3 .album-memory-photo {
  grid-column: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
}

.album-moment-3 .album-memory-photo:nth-child(2) {
  grid-row: 1;
}

.album-moment-3 .album-memory-photo:nth-child(3) {
  grid-row: 2;
}

.download-showcase {
  grid-column: 1;
}

.download-copy {
  grid-column: 2;
}

.download-before > span,
.download-after > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 5px 8px;
  border: 1px solid rgba(63, 48, 38, 0.12);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.9);
  font-size: 10px;
  font-weight: 700;
}

.download-cta-copy {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.download-cta-copy h3 {
  font-size: 21px;
}

.download-cta-copy p,
.availability-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.store-button > span:not(.store-icon) {
  display: grid;
  gap: 0;
}

.store-button small {
  font-size: 9px;
  line-height: 1.2;
}

.store-button strong {
  font-size: 16px;
  line-height: 1.35;
}

.store-icon svg {
  width: 25px;
  height: 25px;
}

.bloom-card {
  grid-template-areas:
    "intro features"
    "cta features";
}

.bloom-copy {
  grid-area: intro;
  position: relative;
  z-index: 1;
}

.bloom-copy > p:last-child {
  max-width: 430px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.bloom-benefits {
  grid-area: features;
  position: relative;
  z-index: 1;
  align-self: center;
}

.bloom-card > .button {
  grid-area: cta;
  position: relative;
  z-index: 1;
  justify-self: start;
}

.bloom-bookmark {
  position: absolute;
  top: -1px;
  right: clamp(24px, 5vw, 60px);
  z-index: 2;
  min-width: 74px;
  padding: 18px 12px 26px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
  color: #fffafc;
  background: #806a8c;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
}

.faq-list {
  counter-reset: faq;
}

.faq-item {
  counter-increment: faq;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.faq-item summary::before {
  content: "Q." counter(faq, decimal-leading-zero);
  color: var(--coral-deep);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.faq-item summary > span {
  position: relative;
  width: 26px;
  height: 26px;
}

.faq-item summary > span::before,
.faq-item summary > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink-soft);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary > span::after {
  transform: translate(-50%, -50%);
}

.faq-answer,
.faq-item[open] .faq-answer {
  display: block;
}

.faq-answer p {
  padding-left: 62px;
}

.site-footer {
  display: block;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 48px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 2px 12px;
}

.footer-brand img {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h2 {
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.06em;
}

/* Final generated DOM resets */

.site-nav {
  display: grid;
  padding: 12px max(var(--page-pad), calc((100vw - var(--max)) / 2));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.5fr);
  align-items: end;
  gap: 36px;
}

.faq-item summary {
  display: block;
  font-weight: inherit;
}

.faq-item summary::before {
  content: none;
}

.faq-item summary > .faq-row {
  position: static;
  width: auto;
  height: auto;
}

.faq-item summary > .faq-row::before,
.faq-item summary > .faq-row::after {
  content: none;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 22px;
}

/* Motion and accessibility */

html.js:not(.reduce-motion) [data-animate] {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 680ms var(--ease-out), translate 680ms var(--ease-out);
}

html.js:not(.reduce-motion) [data-animate].is-visible {
  opacity: 1;
  translate: none;
}

html.js:not(.reduce-motion) [data-animate="stagger"] > * {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 560ms var(--ease-out), translate 560ms var(--ease-out);
}

html.js:not(.reduce-motion) [data-animate="stagger"].is-visible > * {
  opacity: 1;
  translate: none;
}

:focus-visible {
  outline: 3px solid rgba(173, 96, 79, 0.58);
  outline-offset: 4px;
  border-radius: 9px;
}

[inert] {
  pointer-events: none;
}

/* Responsive */

@media (max-width: 1120px) {
  .site-nav {
    grid-template-columns: minmax(170px, 1fr) auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 38px;
  }

  .hero::before {
    display: none;
  }

  .download-card {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }
}

@media (max-width: 960px) {
  .site-nav {
    min-height: 66px;
    padding: 10px 24px;
  }

  .site-nav.nav-scrolled {
    min-height: 60px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 62px;
    padding-top: 122px;
    padding-bottom: 82px;
  }

  .hero-copy,
  .hero-content {
    max-width: 720px;
  }

  .hero-media {
    width: min(100%, 650px);
    min-height: clamp(450px, 76vw, 590px);
    margin-inline: auto;
  }

  .photo-strip-track {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    margin-inline: calc(var(--page-pad) * -1);
    padding: 0 var(--page-pad) 24px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .photo-strip-item,
  .photo-strip-card {
    scroll-snap-align: start;
  }

  .photo-strip-item:nth-child(2),
  .photo-strip-card:nth-child(2),
  .photo-strip-item:nth-child(5),
  .photo-strip-card:nth-child(5) {
    margin-top: 0;
  }

  .feature-flow,
  [data-feature-flow] {
    display: block;
  }

  .feature-stage,
  .feature-visuals,
  html.js .feature-flow.is-enhanced .feature-stage,
  html.js [data-feature-flow].is-enhanced .feature-stage,
  html.js [data-feature-flow].is-enhanced .feature-visuals {
    position: static;
  }

  .feature-story,
  [data-scene-step] {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(190px, 0.58fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
    padding: 58px 0;
  }

  .feature-story::before,
  [data-scene-step]::before {
    display: none;
  }

  .feature-mobile-media {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 6;
  }

  .feature-mobile-media .feature-screen,
  .feature-mobile-media [data-feature-screen] {
    margin: 0;
  }

  .feature-story > :not(.feature-mobile-media),
  [data-scene-step] > :not(.feature-mobile-media) {
    grid-column: 2;
  }

  .feature-stage,
  .feature-visuals,
  .feature-progress {
    display: none;
  }

  html.js .feature-flow.is-enhanced .feature-story-copy,
  html.js [data-feature-flow].is-enhanced [data-scene-step] > :not(.feature-mobile-media):not(.feature-story-number) {
    opacity: 1;
    transform: none;
  }

  .album-timeline {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-inline: auto;
  }

  .album-timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 25px;
    width: 1px;
    height: auto;
  }

  .album-moment {
    display: grid;
    grid-template-columns: 66px minmax(210px, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 8px 25px;
    padding: 22px 0;
  }

  .album-day {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    justify-self: start;
    margin: 6px 0 0;
    writing-mode: vertical-rl;
  }

  .album-photo,
  .album-collage,
  .album-contact-sheet,
  .album-moment:nth-child(2) .album-photo,
  .album-moment:nth-child(2) .album-collage,
  .album-moment:nth-child(2) .album-contact-sheet {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 280px;
    margin: 0;
    transform: none;
  }

  .album-moment h3,
  .album-moment > p {
    grid-column: 3;
    text-align: left;
  }

  .album-moment > p {
    align-self: start;
    margin: 8px 0 0;
  }

  .download-card,
  .bloom-card {
    grid-template-columns: 1fr;
  }

  .download-card {
    gap: 46px;
  }

  .download-preview,
  .download-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .bloom-card {
    grid-template-areas:
      "intro"
      "price"
      "features"
      "cta";
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 16px;
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    font-size: 15px;
  }

  .site-nav {
    min-height: 58px;
    padding: 8px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle,
  .lang-picker {
    display: none;
  }

  .mobile-menu {
    top: 64px;
    right: 14px;
    left: 14px;
  }

  .hero {
    gap: 48px;
    padding-top: 102px;
    padding-bottom: 66px;
  }

  .hero .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.95;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    padding-inline: 17px;
  }

  .hero-proof,
  .hero-notes {
    margin-top: 24px;
    font-size: 11px;
  }

  .hero-proof-item,
  .hero-note {
    padding-inline: 9px;
  }

  .hero-media {
    min-height: clamp(350px, 104vw, 470px);
  }

  .hero-photo-main {
    width: 66%;
  }

  .hero-photo-back,
  .hero-memory-card {
    width: 51%;
  }

  .hero-app-card {
    width: 37%;
  }

  .hero-date-stamp {
    width: 66px;
    height: 66px;
    font-size: 8px;
  }

  .hero-caption {
    display: none;
  }

  .photo-strip {
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .photo-strip-head,
  .photo-strip-header {
    align-items: start;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .photo-strip-track {
    grid-template-columns: repeat(5, minmax(166px, 54vw));
  }

  .feature-stories {
    padding-top: 78px;
    padding-bottom: 80px;
  }

  .feature-story,
  [data-scene-step] {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 44px 0;
  }

  .feature-mobile-media {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 210px);
    justify-self: center;
  }

  .feature-story > :not(.feature-mobile-media),
  [data-scene-step] > :not(.feature-mobile-media) {
    grid-column: 1;
  }

  .album-story {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .album-timeline::before {
    display: none;
  }

  .album-moment {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 30px 0;
    border-top: 1px solid var(--line);
  }

  .album-day,
  .album-photo,
  .album-collage,
  .album-contact-sheet,
  .album-moment h3,
  .album-moment > p {
    grid-column: 1;
    grid-row: auto;
  }

  .album-day {
    justify-self: center;
    margin-bottom: 18px;
    writing-mode: horizontal-tb;
  }

  .album-photo,
  .album-collage,
  .album-contact-sheet,
  .album-moment:nth-child(1) .album-photo,
  .album-moment:nth-child(1) .album-collage,
  .album-moment:nth-child(1) .album-contact-sheet,
  .album-moment:nth-child(3) .album-photo,
  .album-moment:nth-child(3) .album-collage,
  .album-moment:nth-child(3) .album-contact-sheet {
    width: min(100%, 360px);
    min-height: 330px;
    justify-self: center;
    margin-bottom: 23px;
    transform: none;
  }

  .album-moment h3,
  .album-moment > p {
    text-align: center;
  }

  .album-moment > p {
    margin-inline: auto;
  }

  .download {
    padding-top: 78px;
    padding-bottom: 74px;
  }

  .download-card,
  .bloom-card {
    padding: 30px 22px;
    border-radius: 21px;
  }

  .store-grid,
  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
    max-width: 252px;
  }

  .download-preview,
  .download-visual {
    min-height: 370px;
  }

  .bloom {
    padding-bottom: 84px;
  }

  .bloom-card::after {
    font-size: 92px;
  }

  .bloom-cta,
  .bloom-cta.button {
    width: 100%;
  }

  .faq {
    padding-bottom: 88px;
  }

  .faq-row {
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .faq-item summary {
    padding: 19px 0;
  }

  .faq-answer p {
    padding: 0 18px 21px 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-self: start;
    justify-content: flex-start;
  }

  .footer-meta,
  .copyright {
    grid-column: 1;
  }
}

@media (max-width: 390px) {
  .hero-proof-item,
  .hero-note {
    width: 50%;
    padding-left: 0;
    border-left: 0;
  }

  .hero-media {
    min-height: 335px;
  }

  .hero-washi {
    right: 21%;
    width: 82px;
  }

  .download-preview,
  .download-visual {
    min-height: 330px;
  }
}

@media (max-width: 1120px) {
  .site-nav-inner {
    grid-template-columns: minmax(170px, 1fr) auto;
  }
}

@media (max-width: 960px) {
  .site-nav-inner {
    grid-template-columns: 1fr auto;
  }

  .photo-strip-track {
    grid-template-columns: repeat(6, minmax(190px, 28vw));
  }

  .feature-story-number {
    display: none;
  }

  .album-moment,
  .album-moment:nth-child(n) {
    display: grid;
    grid-template-columns: 66px minmax(210px, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 8px 25px;
    padding: 22px 0;
  }

  .album-moment-copy {
    min-height: 0;
    align-items: flex-start;
    text-align: left;
  }

  .album-moment-copy .album-day {
    align-self: flex-start;
    justify-self: auto;
    margin: 0 0 17px;
    writing-mode: horizontal-tb;
  }

  .album-moment-copy > p:last-child {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .album-photo-cluster,
  .album-moment:nth-child(n) .album-photo-cluster {
    min-height: 310px;
    margin: 0;
    transform: none;
  }

  .album-moment-3,
  .album-moment-3:nth-child(n) {
    grid-template-columns: 66px minmax(250px, 0.95fr) minmax(0, 1fr);
  }

  .album-moment-3 .album-photo-cluster {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .download-showcase,
  .download-copy {
    grid-column: 1;
  }

  .download-showcase {
    grid-row: 2;
  }

  .download-copy {
    grid-row: 1;
  }

  .bloom-card {
    grid-template-areas:
      "intro"
      "features"
      "cta";
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-body {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.95;
  }

  .hero-proof li {
    padding-inline: 9px;
  }

  .hero-hand-note {
    display: none;
  }

  .photo-strip .section-heading-inline {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .photo-strip-track {
    grid-template-columns: repeat(6, minmax(166px, 54vw));
  }

  .album-moment,
  .album-moment:nth-child(n) {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }

  .album-moment-copy {
    align-items: center;
    text-align: center;
  }

  .album-moment-copy .album-day {
    align-self: center;
    margin-bottom: 14px;
  }

  .album-moment-copy > p:last-child {
    margin-inline: auto;
    text-align: center;
  }

  .album-photo-cluster,
  .album-moment:nth-child(n) .album-photo-cluster {
    width: min(100%, 390px);
    min-height: 330px;
    justify-self: center;
  }

  .album-moment-3,
  .album-moment-3:nth-child(n) {
    grid-template-columns: 1fr;
  }

  .album-moment-3 .album-photo-cluster {
    grid-template-columns: minmax(130px, 0.95fr) minmax(0, 1.05fr);
    min-height: 370px;
    aspect-ratio: auto;
  }

  .download-showcase {
    min-height: 370px;
  }

  .bloom-card > .button {
    width: 100%;
  }

  .faq-item summary {
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 9px;
  }

  .faq-answer p {
    padding-left: 49px;
  }

  .footer-links {
    display: flex;
    justify-self: start;
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 390px) {
  .hero-proof li {
    width: 50%;
    padding-left: 0;
    border-left: 0;
  }

  .album-moment-3 .album-photo-cluster {
    grid-template-columns: minmax(112px, 0.9fr) minmax(0, 1.1fr);
    min-height: 330px;
  }
}

/* Progressive fallback: keep navigation and language switching usable without JS. */

html.no-js .lang-toggle {
  display: none;
}

html.no-js .lang-dropdown {
  position: static;
  min-width: 0;
  display: flex;
  gap: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

html.no-js .lang-option {
  padding: 7px 8px;
  font-size: 11px;
}

@media (max-width: 1120px) {
  html.no-js .nav-hamburger,
  html.no-js .lang-picker {
    display: none;
  }

  html.no-js .mobile-menu {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 1;
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 76px auto 0;
    border-radius: 0 0 18px 18px;
    box-shadow: none;
  }

  html.no-js .mobile-menu > a {
    justify-content: center;
    text-align: center;
  }

  html.no-js .mobile-language-options {
    grid-column: 1 / -1;
  }

  html.no-js .hero {
    padding-top: 66px;
  }
}

@media (max-width: 680px) {
  html.no-js .mobile-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 58px;
  }

  html.no-js .hero {
    padding-top: 48px;
  }
}

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

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

  [data-animate],
  [data-animate] > * {
    opacity: 1 !important;
    translate: none !important;
  }

  .feature-phone-frame {
    aspect-ratio: auto;
  }
}
