:root {
  color-scheme: light;
  --brand: #b22e78;
  --brand-deep: #7c1f55;
  --purple: #7835dd;
  --ink: #1f191d;
  --muted: #71676d;
  --line: #eadfe5;
  --surface: #fffafd;
  --soft: #f8f2f6;
  --shadow: 0 30px 80px rgba(82, 44, 65, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[data-lang] { display: none !important; }
html[data-site-lang="en"] [data-lang="en"],
html[data-site-lang="zh"] [data-lang="zh"],
html[data-site-lang="zh-Hant"] [data-lang="zh"],
html[data-site-lang="ja"] [data-lang="en"],
html[data-site-lang="ko"] [data-lang="en"] { display: revert !important; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 5%, rgba(120, 53, 221, .10), transparent 31rem),
    radial-gradient(circle at 3% 19%, rgba(178, 46, 120, .09), transparent 30rem),
    #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(234, 223, 229, .78);
  background: rgba(255, 255, 255, .80);
  backdrop-filter: blur(20px) saturate(150%);
}

.nav {
  width: min(1180px, calc(100% - 44px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand, .footer-brand {
  color: transparent;
  background: linear-gradient(115deg, var(--brand), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -1px;
  text-decoration: none;
}

.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--brand); }

.language-toggle {
  min-width: 72px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, .84);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.language-toggle:hover { border-color: rgba(178, 46, 120, .32); background: white; }
.language-icon { font-size: 15px; }
.language-picker { position: relative; }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 156px;
  padding: 7px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(82, 44, 65, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  backdrop-filter: blur(18px);
}
.language-picker.is-open .language-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.language-menu button {
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.language-menu button:hover { color: var(--brand); background: var(--soft); }
.language-menu button.is-selected { color: var(--brand-deep); background: var(--brand-soft); }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 76px;
  align-items: center;
  padding: 88px 0 110px;
}
.hero::before {
  position: absolute;
  inset: 4% -18% 0;
  background-image:
    linear-gradient(rgba(164, 48, 115, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 48, 115, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse at 64% 42%, black 0, transparent 68%);
  mask-image: radial-gradient(ellipse at 64% 42%, black 0, transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(49px, 6.4vw, 79px);
  line-height: 1.015;
  letter-spacing: -4px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(115deg, var(--brand), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  border: 0;
  min-height: 51px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 760;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(120deg, var(--brand), var(--purple));
  box-shadow: 0 16px 38px rgba(164, 48, 115, .22);
}
.button-download { gap: 9px; }
.button-apple { font-size: 18px; line-height: 1; }
.button-arrow { font-size: 14px; transition: transform .18s ease; }
.download-picker { position: relative; display: inline-flex; }
.download-picker.is-open .button-arrow { transform: rotate(180deg); }
.download-options {
  position: absolute;
  z-index: 12;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 44px rgba(63, 31, 49, .18);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.download-picker.is-open .download-options { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.download-options a { padding: 7px 9px; border-radius: 9px; color: var(--text); font-size: 13px; font-weight: 760; text-decoration: none; white-space: nowrap; }
.download-options a:hover { color: var(--brand); background: var(--brand-soft); }
.download-options > span { width: 1px; height: 18px; background: var(--line); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.78); }
.button-light { color: var(--brand-deep); background: white; box-shadow: 0 14px 36px rgba(35, 16, 28, .18); }

.hero-notes { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; color: var(--muted); font-size: 12px; font-weight: 650; }
.hero-notes > span { display: inline-flex; align-items: center; gap: 7px; }
.hero-notes i { color: var(--brand); font-style: normal; }

.hero-visual { position: relative; min-height: 660px; display: grid; place-items: center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); animation: glow-drift 8s ease-in-out infinite alternate; }
.hero-glow-one { width: 390px; height: 390px; background: rgba(178, 46, 120, .24); }
.hero-glow-two { width: 290px; height: 290px; right: 0; bottom: 50px; background: rgba(120, 53, 221, .18); animation-delay: -3s; }
.hero-orbit {
  position: absolute;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(164, 48, 115, .14);
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}
.hero-orbit::before, .hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--purple));
  box-shadow: 0 0 22px rgba(164, 48, 115, .38);
  content: "";
}
.hero-orbit::before { width: 9px; height: 9px; top: 51px; right: 75px; }
.hero-orbit::after { width: 6px; height: 6px; bottom: 69px; left: 56px; }

.device {
  position: relative;
  aspect-ratio: 690 / 1500;
  overflow: hidden;
  border: 8px solid #171416;
  border-radius: 44px;
  background: #171416;
  box-shadow: var(--shadow);
}
.device::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 35px;
  pointer-events: none;
}
.device img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.device-hero { z-index: 2; width: 302px; aspect-ratio: 690 / 1500; transform: rotate(2.4deg); animation: device-float 6s ease-in-out infinite; }

.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 152px;
  padding: 13px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 9px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 46px rgba(74, 40, 58, .14);
  backdrop-filter: blur(16px);
}
.floating-note b { grid-row: 1 / 3; color: var(--brand); font-size: 16px; }
.floating-note span { color: var(--muted); font-size: 11px; font-weight: 700; }
.note-curated { left: 2px; top: 140px; }
.note-native { right: 2px; bottom: 138px; }
.note-curated { animation: note-float 5s ease-in-out infinite; }
.note-native { animation: note-float 5s ease-in-out -2.5s infinite; }

.trust-strip {
  width: min(1080px, calc(100% - 44px));
  margin: -12px auto 96px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 18px 60px rgba(87, 47, 70, .07);
}
.trust-strip > div { padding: 3px 27px; display: flex; flex-direction: column; gap: 5px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { font-size: 19px; letter-spacing: -.4px; }
.trust-strip span { color: var(--muted); font-size: 12px; }

.wallpaper-showcase {
  padding: 104px 0 118px;
  overflow: hidden;
  border-top: 1px solid rgba(234, 223, 229, .7);
  background:
    radial-gradient(circle at 80% 8%, rgba(120, 53, 221, .10), transparent 29rem),
    linear-gradient(180deg, #fff 0%, #fbf6fa 100%);
}
.showcase-heading { width: min(1180px, calc(100% - 44px)); margin: 0 auto 48px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 68px; align-items: end; }
.showcase-heading .eyebrow { grid-column: 1 / -1; }
.showcase-heading .section-intro { align-self: end; }
.wallpaper-marquee { position: relative; width: 100%; }
.wallpaper-marquee::before, .wallpaper-marquee::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: min(12vw, 160px);
  content: "";
  pointer-events: none;
}
.wallpaper-marquee::before { left: 0; background: linear-gradient(90deg, #fbf6fa, transparent); }
.wallpaper-marquee::after { right: 0; background: linear-gradient(-90deg, #fbf6fa, transparent); }
.wallpaper-track { display: flex; width: max-content; animation: wallpaper-scroll 42s linear infinite; }
.wallpaper-marquee:hover .wallpaper-track { animation-play-state: paused; }
.wallpaper-set { display: flex; align-items: center; gap: 18px; padding-right: 18px; }
.wallpaper-tile {
  width: 190px;
  height: 360px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 30px;
  background: var(--soft);
  box-shadow: 0 24px 54px rgba(54, 29, 44, .13);
  transform: rotate(1.4deg);
}
.wallpaper-tile:nth-child(even) { transform: rotate(-1.8deg); }
.wallpaper-tile.tile-tall { height: 402px; }
.wallpaper-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.wallpaper-tile:hover img { transform: scale(1.04); }

.feature-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-inner { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: 108px 0; }
.section-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 60px; }
.section-title { margin: 0; font-size: clamp(37px, 4.8vw, 54px); line-height: 1.08; letter-spacing: -2.3px; }
.section-intro { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
.feature-card {
  position: relative;
  min-height: 270px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: white;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(164, 48, 115, .24); box-shadow: 0 22px 52px rgba(72, 38, 57, .10); }
.feature-card-accent { background: linear-gradient(145deg, #fff, #fff3f9); }
.feature-index { position: absolute; top: 24px; right: 24px; color: #cbbfc5; font-size: 12px; font-weight: 750; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--brand), var(--purple)); font-size: 20px; }
.feature-card h3 { margin: 50px 0 10px; font-size: 19px; letter-spacing: -.4px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.screens-section { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fcf7fa 100%); }
.screens-heading { max-width: 730px; margin: 0 auto 62px; text-align: center; }
.screens-heading .section-intro { margin: 18px auto 0; }
.product-stage {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.product-stage::before {
  position: absolute;
  z-index: -2;
  width: 860px;
  height: 500px;
  border: 1px solid rgba(164, 48, 115, .10);
  border-radius: 50%;
  background-image: radial-gradient(rgba(164, 48, 115, .14) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: perspective(700px) rotateX(66deg);
  content: "";
}
.stage-glow { position: absolute; z-index: -1; width: 610px; height: 450px; border-radius: 50%; background: rgba(177, 46, 121, .16); filter: blur(90px); }
.stage-device { position: absolute; margin: 0; transition: transform .45s ease; }
.stage-device .device { width: 250px; border-width: 6px; border-radius: 39px; }
.stage-device figcaption {
  position: absolute;
  z-index: 4;
  min-width: 185px;
  padding: 13px 15px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 17px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 42px rgba(65, 34, 52, .14);
  backdrop-filter: blur(18px);
}
.stage-device figcaption b { color: var(--ink); font-size: 13px; }
.stage-device figcaption span { color: var(--muted); font-size: 10px; }
.stage-device-main { z-index: 3; transform: translateY(-8px); }
.stage-device-main .device { width: 292px; box-shadow: 0 42px 90px rgba(68, 34, 55, .22); }
.stage-device-main figcaption { right: -128px; bottom: 72px; }
.stage-device-left { z-index: 1; transform: translate(-255px, 38px) rotate(-8deg); }
.stage-device-left figcaption { left: -85px; top: 90px; }
.stage-device-right { z-index: 2; transform: translate(255px, 38px) rotate(8deg); }
.stage-device-right figcaption { right: -84px; top: 116px; }
.product-stage:hover .stage-device-left { transform: translate(-275px, 29px) rotate(-10deg); }
.product-stage:hover .stage-device-right { transform: translate(275px, 29px) rotate(10deg); }
.stage-chip {
  position: absolute;
  z-index: 6;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(164, 48, 115, .16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.8);
  box-shadow: 0 14px 34px rgba(76, 40, 61, .11);
  backdrop-filter: blur(18px);
  font-size: 11px;
  font-weight: 700;
}
.stage-chip i { width: 7px; height: 7px; border-radius: 50%; background: #37b66f; box-shadow: 0 0 0 5px rgba(55,182,111,.12); }
.stage-chip b { color: var(--brand); }
.stage-chip-top { top: 34px; right: 120px; animation: note-float 5.5s ease-in-out infinite; }
.stage-chip-bottom { bottom: 35px; left: 115px; animation: note-float 5.5s ease-in-out -2.7s infinite; }

.creator-preview { padding: 110px 0; color: white; background: #211820; }
.creator-inner { width: min(1080px, calc(100% - 44px)); margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.creator-showcase {
  min-height: 490px;
  padding: 48px;
  display: grid;
  align-content: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 38px;
  background: radial-gradient(circle at 20% 10%, rgba(255,145,205,.20), transparent 18rem), rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.creator-mark { width: 92px; height: 92px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 28px; color: white; background: linear-gradient(135deg, var(--brand), var(--purple)); font-size: 46px; font-weight: 850; letter-spacing: -4px; box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.creator-stat { min-height: 64px; padding: 0 19px; display: grid; grid-template-columns: 44px 1fr; align-items: center; border: 1px solid rgba(255,255,255,.10); border-radius: 18px; background: rgba(255,255,255,.055); }
.creator-stat strong { color: #ff91cd; font-size: 12px; letter-spacing: 1px; }
.creator-stat span { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 680; }
.creator-copy .section-title { max-width: 660px; }
.creator-copy .section-intro { margin-top: 24px; color: rgba(255,255,255,.64); }
.creator-points { margin: 30px 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.creator-points li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.creator-points i { color: #ff91cd; font-style: normal; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #ff91cd; font-size: 14px; font-weight: 760; text-decoration: none; }
.text-link:hover { color: white; }

.closing-section { padding: 110px 22px; }
.closing-card {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 76px 30px;
  overflow: hidden;
  border-radius: 42px;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.16), transparent 24rem),
    linear-gradient(125deg, var(--brand-deep), var(--purple));
  box-shadow: 0 30px 80px rgba(113, 36, 91, .20);
}
.closing-card::before {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -260px;
  right: -40px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 88px rgba(255,255,255,.025);
  content: "";
}
.closing-card > * { position: relative; z-index: 1; }
.closing-card .eyebrow { color: rgba(255,255,255,.72); }
.closing-card h2 { margin: 0 0 32px; font-size: clamp(34px, 5vw, 54px); line-height: 1.1; letter-spacing: -2px; }
.closing-card .download-options { border-color: rgba(255,255,255,.55); }

.legal-main { width: min(840px, calc(100% - 44px)); margin: 0 auto; padding: 76px 0 110px; }
.legal-hero { margin-bottom: 52px; }
.legal-hero h1 { font-size: clamp(40px, 6vw, 59px); letter-spacing: -2.4px; }
.updated { margin: 15px 0 0; color: var(--muted); font-size: 13px; }
.legal-intro { margin-top: 30px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.legal-section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 18px; font-size: 23px; letter-spacing: -.6px; }
.legal-section h3 { margin: 23px 0 10px; font-size: 17px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 15px; line-height: 1.85; }
.legal-section p { margin: 10px 0; }
.legal-section ul { margin: 10px 0; padding-left: 22px; }
.contact-link { color: #1264d8; }

.creator-main { width: min(1080px, calc(100% - 44px)); margin: 0 auto; padding: 82px 0 110px; }
.creator-hero { padding: 72px; overflow: hidden; border-radius: 38px; color: white; background: linear-gradient(130deg, var(--brand-deep), var(--purple)); }
.creator-hero .eyebrow { color: rgba(255,255,255,.7); }
.creator-hero h1 { max-width: 820px; font-size: clamp(44px, 6.5vw, 72px); }
.creator-hero p { max-width: 690px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.75; }
.creator-guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 25px; }
.guide-card { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: white; }
.guide-card .feature-icon { margin-bottom: 26px; }
.guide-card h2 { margin: 0 0 16px; font-size: 21px; }
.guide-card ul { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.guide-card li { position: relative; padding-left: 19px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.guide-card li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--brand); font-size: 10px; }
.creator-rights { margin-top: 25px; padding: 42px; border-radius: 30px; background: var(--soft); }
.creator-rights h2 { margin: 0 0 14px; font-size: 27px; }
.creator-rights p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.creator-contact { margin-top: 25px; padding: 44px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border: 1px solid var(--line); border-radius: 30px; background: white; }
.creator-contact h2 { margin: 0 0 8px; font-size: 26px; }
.creator-contact p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { border-top: 1px solid var(--line); background: white; }
.footer-inner { width: min(1180px, calc(100% - 44px)); min-height: 130px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-inner p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: 20px 0 28px; border-top: 1px solid var(--line); color: #9a9095; font-size: 11px; }

.has-js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.22, 1, .36, 1); }
.has-js [data-reveal][data-reveal-delay="1"] { transition-delay: .10s; }
.has-js [data-reveal][data-reveal-delay="2"] { transition-delay: .18s; }
.has-js [data-reveal][data-reveal-delay="3"] { transition-delay: .26s; }
.has-js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.has-js .feature-card[data-reveal].is-visible:hover { transform: translateY(-7px); }

@keyframes device-float {
  0%, 100% { transform: rotate(2.4deg) translateY(0); }
  50% { transform: rotate(1.2deg) translateY(-12px); }
}
@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes glow-drift {
  from { transform: translate3d(-16px, 8px, 0) scale(.95); }
  to { transform: translate3d(22px, -12px, 0) scale(1.08); }
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes wallpaper-scroll { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .nav-links > a:nth-child(2), .nav-links > a:nth-child(4) { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 25px; }
  .floating-note { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .creator-inner { gap: 48px; }
  .creator-guides { grid-template-columns: 1fr; }
  .stage-device-left { transform: translate(-210px, 38px) rotate(-7deg); }
  .stage-device-right { transform: translate(210px, 38px) rotate(7deg); }
  .product-stage:hover .stage-device-left { transform: translate(-220px, 30px) rotate(-8deg); }
  .product-stage:hover .stage-device-right { transform: translate(220px, 30px) rotate(8deg); }
  .stage-device figcaption, .stage-chip { display: none; }
}

@media (max-width: 720px) {
  .nav { width: min(100% - 28px, 1180px); }
  .nav-links { gap: 13px; }
  .nav-links > a { display: none !important; }
  .hero { grid-template-columns: 1fr; gap: 58px; padding: 62px 0 86px; text-align: center; }
  h1 { letter-spacing: -2.8px; }
  .hero-copy { margin-left: auto; margin-right: auto; font-size: 16px; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { min-height: 580px; }
  .device-hero { width: 265px; }
  .trust-strip { grid-template-columns: 1fr; margin-bottom: 72px; }
  .trust-strip > div { padding: 17px 7px; border-right: 0; border-bottom: 1px solid var(--line); text-align: center; }
  .trust-strip > div:last-child { border-bottom: 0; }
  .wallpaper-showcase { padding: 78px 0 86px; }
  .showcase-heading { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .showcase-heading .section-intro { margin: 0 auto; }
  .wallpaper-tile { width: 142px; height: 274px; border-radius: 24px; }
  .wallpaper-tile.tile-tall { height: 306px; }
  .wallpaper-set { gap: 12px; padding-right: 12px; }
  .section-inner { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .feature-card { min-height: 225px; }
  .screens-heading { margin-bottom: 34px; }
  .product-stage { min-height: 590px; }
  .product-stage::before { width: 620px; height: 360px; }
  .stage-device-main .device { width: 230px; }
  .stage-device-left { transform: translate(-126px, 45px) rotate(-8deg); }
  .stage-device-right { transform: translate(126px, 45px) rotate(8deg); }
  .stage-device-left .device, .stage-device-right .device { width: 185px; }
  .product-stage:hover .stage-device-left { transform: translate(-126px, 45px) rotate(-8deg); }
  .product-stage:hover .stage-device-right { transform: translate(126px, 45px) rotate(8deg); }
  .creator-preview { padding: 80px 0; }
  .creator-inner { grid-template-columns: 1fr; gap: 55px; }
  .creator-showcase { min-height: auto; padding: 34px; }
  .creator-copy { text-align: center; }
  .creator-copy .section-intro { margin-left: auto; margin-right: auto; }
  .creator-points { text-align: left; }
  .creator-hero { padding: 48px 27px; }
  .creator-contact { padding: 30px; align-items: flex-start; flex-direction: column; }
  .closing-section { padding: 78px 14px; }
  .closing-card { padding: 60px 22px; border-radius: 32px; }
  .footer-inner { padding: 32px 0; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .hero-glow, .hero-orbit, .device-hero, .floating-note, .stage-chip, .wallpaper-track { animation: none !important; }
  .wallpaper-track { transform: translateX(0); }
}
