:root {
  color-scheme: light;
  --page: #f5f5f7;
  --surface: #ffffff;
  --ink: #090a0d;
  --muted: #6e6e73;
  --soft: #6e6e73;
  --line: rgba(9, 10, 13, 0.1);
  --blue: #0068d9;
  --blue-deep: #004bab;
  --cyan: #51d4ff;
  --pink: #ff2d55;
  --purple: #8358ff;
  --green: #19b76b;
  --dark: #030405;
  --dark-surface: #111215;
  --dark-line: rgba(255, 255, 255, 0.13);
  --radius-sm: 1.25rem;
  --radius-md: 2rem;
  --radius-lg: 3rem;
  --shadow-soft: 0 30px 80px rgba(23, 31, 48, 0.12);
  --shadow-device: 0 50px 110px rgba(14, 20, 36, 0.28),
    0 10px 30px rgba(14, 20, 36, 0.18);
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a:focus-visible,
summary:focus-visible,
.screen-gallery:focus-visible {
  outline: 3px solid #003f8f;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.94);
}

button,
summary {
  font: inherit;
}

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

p {
  color: var(--muted);
  line-height: 1.55;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.section-shell {
  width: min(var(--shell), calc(100% - 3rem));
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(6rem, 11vw, 10rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 3.35rem;
  border-bottom: 1px solid rgba(9, 10, 13, 0.07);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition:
    background 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px rgba(20, 26, 40, 0.06);
}

.nav-shell {
  display: grid;
  width: min(var(--shell), calc(100% - 3rem));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 0.62rem;
  background: linear-gradient(145deg, #119bff 0%, #0063ee 54%, #3514ba 100%);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.brand-mark::before {
  width: 2.1rem;
  height: 0.82rem;
}

.brand-mark::after {
  width: 0.28rem;
  height: 0.28rem;
  translate: 0.85rem -0.2rem;
  border: 0;
  background: white;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 900;
}

.brand-mark-small {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.52rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #4b4b50;
  font-size: 0.78rem;
  font-weight: 560;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  justify-self: end;
  gap: 0.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--blue);
}

.announcement {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: white;
  color: #3c3c42;
  padding: 0.65rem 1.25rem;
  text-align: center;
  font-size: 0.87rem;
}

.announcement a {
  color: var(--blue);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, calc(100svh - 6.55rem));
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(4.8rem, 9.1vw, 8.6rem);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 span {
  background: linear-gradient(105deg, #006eff 2%, #5345e8 48%, #ff2d55 92%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 35rem;
  margin-top: 2rem;
  color: #52525a;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 430;
  letter-spacing: -0.02em;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(8, 124, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: 0 18px 36px rgba(8, 124, 255, 0.3);
}

.button-text {
  color: var(--blue);
  padding-inline: 0.25rem;
}

.button-text:hover span {
  transform: translateX(3px);
}

.button-text span {
  transition: transform 180ms ease;
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
  list-style: none;
}

.hero-promises li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-promises span {
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(25, 183, 107, 0.11);
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 710px;
  place-items: center;
  isolation: isolate;
  perspective: 1400px;
}

.hero-stage::before {
  position: absolute;
  z-index: -5;
  width: min(610px, 100%);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, #edf8ff 5%, #e7e8ff 46%, #ffe9ef 95%);
  filter: saturate(115%);
}

.hero-glow {
  position: absolute;
  z-index: -4;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.8;
  animation: glow-drift 4.5s ease-in-out 1 alternate both;
}

.hero-glow-one {
  top: 13%;
  right: 4%;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 60, 101, 0.3);
}

.hero-glow-two {
  bottom: 9%;
  left: 2%;
  width: 14rem;
  height: 14rem;
  background: rgba(0, 132, 255, 0.33);
  animation-delay: -3s;
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(18, 97, 218, 0.17);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit::after {
  position: absolute;
  top: 48%;
  right: -0.3rem;
  width: 0.62rem;
  height: 0.62rem;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(8, 124, 255, 0.12), 0 0 22px var(--blue);
}

.orbit-one {
  width: 96%;
  height: 40%;
  animation: orbit-breathe 4s ease-in-out 1 both;
}

.orbit-two {
  width: 80%;
  height: 28%;
  border-color: rgba(255, 45, 85, 0.14);
  transform: rotate(28deg);
  animation: orbit-breathe 4.5s ease-in-out 1 reverse both;
}

.orbit-two::after {
  right: auto;
  left: -0.2rem;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(255, 45, 85, 0.11), 0 0 22px var(--pink);
}

.floating-note {
  position: absolute;
  z-index: 8;
  display: flex;
  min-height: 2.85rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 15px 40px rgba(46, 58, 88, 0.14);
  color: #36363c;
  padding: 0.65rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: note-float 3.5s ease-in-out 1 both;
}

.note-language {
  top: 20%;
  left: 1%;
}

.note-focus {
  right: 0;
  bottom: 21%;
  animation-delay: -2.4s;
}

.note-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--purple));
  box-shadow: 0 0 0 5px rgba(8, 124, 255, 0.09);
}

.note-spark {
  color: var(--pink);
}

.device {
  position: relative;
  z-index: 3;
  overflow: visible;
  border: 7px solid #18191c;
  border-radius: 3.55rem;
  background: #000;
  box-shadow: var(--shadow-device);
}

.device::before {
  position: absolute;
  top: 0.62rem;
  left: 50%;
  z-index: 5;
  width: 5.2rem;
  height: 1.45rem;
  content: "";
  translate: -50% 0;
  border-radius: 999px;
  background: #050506;
}

.device-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(3.55rem - 9px);
  background: black;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-screen picture,
.mini-device picture,
.gallery-device picture {
  display: block;
  width: 100%;
  height: 100%;
}

.device-hero {
  width: min(346px, 58vw);
  aspect-ratio: 720 / 1565;
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(2deg)
    translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
  animation: device-float 4.8s ease-in-out 1 both;
  will-change: transform;
}

.device-side {
  position: absolute;
  width: 0.24rem;
  border-radius: 999px;
  background: #303137;
}

.device-side-left {
  top: 7rem;
  left: -0.55rem;
  height: 4.5rem;
  box-shadow: 0 4.9rem 0 #303137;
}

.device-side-right {
  top: 9rem;
  right: -0.55rem;
  height: 5rem;
}

.hero-caption {
  position: absolute;
  right: 0.5rem;
  bottom: 2rem;
  color: var(--soft);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.promise-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark);
  color: white;
  padding-block: 1.25rem;
}

.promise-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  animation: marquee 5s linear 1 both;
}

.promise-track span {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.promise-track i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 15px var(--blue);
}

.section-intro {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.principles-heading h2,
.closing h2,
.sharing-copy h2 {
  color: var(--ink);
  font-size: clamp(3rem, 7.2vw, 6.6rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-intro p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  letter-spacing: -0.02em;
}

.section-intro.center p:not(.eyebrow) {
  margin-inline: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  isolation: isolate;
}

.bento-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border: 1px solid rgba(9, 10, 13, 0.055);
  border-radius: inherit;
  pointer-events: none;
}

.card-copy {
  position: relative;
  z-index: 3;
  padding: clamp(1.8rem, 4vw, 3.2rem);
}

.card-kicker {
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-copy h3 {
  max-width: 33rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.card-copy p:not(.card-kicker) {
  max-width: 29rem;
  margin-top: 1.1rem;
  font-size: 1rem;
}

.bento-discover {
  grid-column: span 8;
  min-height: 43rem;
  background: linear-gradient(145deg, #ffffff 0%, #e9f5ff 58%, #d8ebff 100%);
}

.bento-discover .card-copy {
  max-width: 64%;
}

.mini-device {
  position: absolute;
  right: 3.5rem;
  bottom: -13rem;
  width: 17rem;
  aspect-ratio: 720 / 1565;
  overflow: hidden;
  border: 5px solid #16171a;
  border-radius: 2.8rem;
  background: black;
  box-shadow: 0 34px 70px rgba(17, 58, 110, 0.24);
  transform: rotate(7deg);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-discover:hover .mini-device {
  transform: translateY(-0.8rem) rotate(4deg);
}

.mini-device img {
  width: 100%;
  height: 100%;
  border-radius: 2.45rem;
  object-fit: cover;
}

.bento-language {
  grid-column: span 4;
  min-height: 43rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #412adf 0%, #6532cf 46%, #b51f5b 100%);
}

.bento-language .card-kicker,
.bento-language .card-copy h3,
.bento-language .card-copy p {
  color: white;
}

.bento-language .card-copy p {
  opacity: 1;
}

.language-cloud {
  position: absolute;
  top: 3.2rem;
  right: 2.3rem;
  left: 2.3rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-cloud li {
  display: flex;
  min-width: 0;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(27, 15, 97, 0.12);
  color: white;
  padding: 0.7rem 0.8rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 240ms ease, background 240ms ease;
}

.language-cloud li:nth-child(even) {
  translate: 0 0.35rem;
}

.language-cloud li:hover {
  transform: translateY(-0.2rem);
  background: rgba(255, 255, 255, 0.19);
}

.language-cloud li > span {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-cloud small {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  color: #5131cf;
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.bento-language .card-copy h3 {
  max-width: 19rem;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
}

.language-more {
  position: absolute;
  top: 20.5rem;
  left: 50%;
  z-index: 2;
  translate: -50% 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.45rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.bento-saved {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0b0c0f;
}

.bento-saved .card-kicker {
  color: #7ab8ff;
}

.bento-saved .card-copy h3,
.bento-saved .card-copy p {
  color: white;
}

.bento-saved .card-copy p {
  opacity: 0.58;
}

.bookmark-shape {
  position: absolute;
  top: 4rem;
  left: 50%;
  width: 8rem;
  height: 10rem;
  translate: -50% 0;
  border-radius: 1.8rem 1.8rem 1rem 1rem;
  background: linear-gradient(145deg, #168cff, #5351ff);
  box-shadow: 0 0 0 1.5rem rgba(27, 129, 255, 0.08),
    0 25px 60px rgba(0, 104, 255, 0.4);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
  animation: bookmark-pulse 4s ease-in-out 1 both;
}

.bento-source {
  grid-column: span 7;
  background: linear-gradient(135deg, #fff 0%, #fff5ef 54%, #ffe7e7 100%);
}

.source-lines {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  display: grid;
  width: 45%;
  gap: 0.85rem;
  transform: rotate(-5deg);
}

.source-lines span {
  display: block;
  height: 5.5rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 15px 45px rgba(131, 55, 46, 0.1);
}

.source-lines span:nth-child(2) {
  width: 85%;
  translate: 14% 0;
}

.source-lines span:nth-child(3) {
  width: 70%;
  translate: 5% 0;
}

.sharing-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.sharing-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 80% 42%, rgba(0, 113, 255, 0.23), transparent 34rem),
    radial-gradient(circle at 16% 78%, rgba(140, 55, 255, 0.14), transparent 32rem);
  pointer-events: none;
}

.sharing-inner {
  position: relative;
  display: grid;
  min-height: 920px;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow-light {
  color: #77b7ff;
}

.sharing-copy h2 {
  color: white;
}

.sharing-lead {
  max-width: 37rem;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  letter-spacing: -0.02em;
}

.sharing-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.sharing-steps li {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.55rem 0.85rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.82rem;
  font-weight: 650;
}

.sharing-steps span {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 0.68rem;
}

.sharing-visual {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  perspective: 1300px;
}

.share-halo {
  position: absolute;
  width: 34rem;
  max-width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(56, 150, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(23, 111, 255, 0.035),
    0 0 0 10rem rgba(23, 111, 255, 0.02);
  animation: halo-pulse 4.8s ease-in-out 1 both;
}

.device-share {
  width: min(292px, 55vw);
  aspect-ratio: 720 / 1565;
  border-width: 6px;
  border-radius: 3.1rem;
  transform: rotateY(-7deg) rotateZ(3deg);
}

.device-share .device-screen {
  border-radius: calc(3.1rem - 8px);
}

.share-app-screen {
  position: relative;
  background: #000;
  color: #f7f7f9;
}

.share-app-content {
  position: absolute;
  inset: 0;
  padding: 4.35rem 0.9rem 1.2rem;
}

.share-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.share-app-top strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.share-app-top span {
  color: #9899a2;
  font-size: 0.65rem;
  font-weight: 700;
}

.share-app-search {
  display: grid;
  min-height: 4rem;
  align-items: center;
  grid-template-columns: 1.6rem 1fr 2.4rem;
  gap: 0.45rem;
  margin-top: 1rem;
  border: 1px solid #292b31;
  border-radius: 1.1rem;
  background: #111216;
  padding: 0.55rem;
}

.share-app-search > span {
  color: #a7a8b0;
  font-size: 1.3rem;
  font-weight: 500;
}

.share-app-search em {
  color: #7c7d86;
  font-size: 0.73rem;
  font-style: normal;
  font-weight: 650;
}

.share-app-search b {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--blue);
  color: white;
  font-size: 1.25rem;
}

.share-app-label {
  margin: 1.4rem 0 0.7rem;
  color: white;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.share-app-friend {
  display: grid;
  min-height: 4.1rem;
  align-items: center;
  grid-template-columns: 2.8rem 1fr auto;
  gap: 0.7rem;
  border-radius: 1.05rem;
  background: #111216;
  padding: 0.65rem;
}

.share-app-avatar {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffbc5f, #e65386);
  font-size: 0.9rem;
  font-weight: 800;
}

.share-app-friend > span:nth-child(2) {
  display: grid;
  gap: 0.2rem;
}

.share-app-friend strong {
  font-size: 0.77rem;
}

.share-app-friend small {
  color: #898a93;
  font-size: 0.62rem;
  font-weight: 600;
}

.share-app-friend i {
  color: #898a93;
  font-size: 1.25rem;
  font-style: normal;
}

.share-app-tabs {
  position: absolute;
  right: 0.9rem;
  bottom: 1.4rem;
  left: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.8rem;
  color: #86878e;
  font-size: 0.9rem;
}

.share-app-tabs .active {
  color: white;
}

.share-story-card {
  position: absolute;
  top: 12%;
  left: -4%;
  z-index: 7;
  width: 17.5rem;
  min-height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(18, 133, 255, 0.95), rgba(70, 44, 226, 0.92));
  box-shadow: 0 30px 70px rgba(0, 75, 203, 0.3);
  padding: 1.5rem;
  transform: rotate(-7deg);
  animation: story-float 4s ease-in-out 1 both;
}

.share-story-label {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.42rem 0.7rem;
  color: white;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.share-story-card strong {
  display: block;
  margin-top: 2.6rem;
  color: white;
  font-size: 1.65rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.share-story-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.share-avatar {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-weight: 900;
}

.share-flight {
  position: absolute;
  top: 45%;
  left: 24%;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: white;
  transform: rotate(13deg);
  animation: send-flight 2.8s ease-in-out 1 both;
}

.share-flight span {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  border-radius: 1.15rem;
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(0, 122, 255, 0.46);
  font-size: 1.35rem;
}

.share-flight i {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
}

.friend-bubble {
  position: absolute;
  z-index: 8;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffb75e, #e75179);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: 800;
  animation: friend-pop 3.5s ease-in-out 1 both;
}

.friend-one {
  top: 17%;
  right: 4%;
}

.friend-two {
  right: 0;
  bottom: 24%;
  background: linear-gradient(145deg, #2dd4bf, #087cff);
  animation-delay: -1.4s;
}

.friend-three {
  right: 18%;
  bottom: 9%;
  background: linear-gradient(145deg, #b06cff, #ff2d55);
  animation-delay: -2.6s;
}

.screens-section .section-intro {
  max-width: 54rem;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.screen-card {
  min-width: 0;
}

.screen-card-two {
  margin-top: 6rem;
}

.gallery-device {
  position: relative;
  overflow: hidden;
  border: 5px solid #1a1b1f;
  border-radius: clamp(2.2rem, 4vw, 3.35rem);
  background: black;
  box-shadow: 0 30px 70px rgba(20, 31, 49, 0.17);
  transition:
    transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 500ms ease;
}

.gallery-device::before {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  z-index: 2;
  width: 25%;
  height: 1.2rem;
  content: "";
  translate: -50% 0;
  border-radius: 999px;
  background: #050506;
}

.gallery-device img {
  width: 100%;
  aspect-ratio: 720 / 1565;
  border-radius: calc(clamp(2.2rem, 4vw, 3.35rem) - 7px);
  object-fit: cover;
}

.screen-card:hover .gallery-device {
  transform: translateY(-0.7rem);
  box-shadow: 0 42px 90px rgba(20, 31, 49, 0.23);
}

.screen-card figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 1.35rem 0.5rem 0;
}

.screen-card figcaption strong {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.screen-card figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.principles-section {
  overflow: hidden;
  background: white;
}

.principles-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.principles-heading {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.principles-heading h2 span {
  background: linear-gradient(100deg, var(--blue), var(--purple), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.principle-list {
  display: grid;
}

.principle-list article {
  display: grid;
  min-height: 15rem;
  grid-template-columns: 3.5rem 1fr;
  align-content: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.principle-list article:first-child {
  border-top: 1px solid var(--line);
}

.principle-number {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.principle-list h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
}

.principle-list p {
  max-width: 32rem;
  margin-top: 0.9rem;
  font-size: 1rem;
}

.closing {
  display: grid;
  min-height: 730px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.closing-orbit {
  position: relative;
  display: grid;
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 2.1rem;
  background: linear-gradient(145deg, #119bff 0%, #0063ee 52%, #4a18c9 100%);
  box-shadow: 0 22px 60px rgba(0, 102, 238, 0.3);
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  animation: closing-float 4.5s ease-in-out 1 both;
}

.closing-orbit::before {
  position: absolute;
  width: 9rem;
  height: 3.4rem;
  content: "";
  border: 1px solid rgba(0, 111, 255, 0.4);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.closing-orbit::after {
  position: absolute;
  right: -1rem;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 15px var(--pink);
}

.closing h2 {
  margin-bottom: 2.2rem;
}

.availability {
  margin-top: 1rem;
  color: var(--soft);
  font-size: 0.77rem;
}

.support-section {
  border-top: 1px solid var(--line);
}

.support-section .section-intro h2 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.support-grid {
  display: grid;
  gap: 0.75rem;
}

.support-grid details {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: white;
  transition: border-color 180ms ease;
}

.support-grid details[open] {
  border-color: rgba(8, 124, 255, 0.32);
}

.support-grid summary {
  display: flex;
  min-height: 5.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 680;
  letter-spacing: -0.025em;
  list-style: none;
}

.support-grid summary::-webkit-details-marker {
  display: none;
}

.support-grid summary span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--page);
  color: var(--blue);
  font-size: 1.3rem;
  transition: transform 220ms ease;
}

.support-grid details[open] summary span {
  transform: rotate(45deg);
}

.detail-content {
  max-width: 52rem;
  padding: 0 1.5rem 1.8rem;
}

.detail-content h3 {
  margin-top: 1.4rem;
  font-size: 1rem;
}

.detail-content h3:first-child {
  margin-top: 0;
}

.detail-content p {
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.detail-content a,
.text-link {
  color: var(--blue);
  font-weight: 650;
}

.site-footer {
  background: #e9e9ec;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem 4rem;
  padding-block: 3rem 2rem;
}

.footer-brand p {
  margin-top: 0.6rem;
  color: #65656b;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.3rem;
  color: #5d5d63;
  font-size: 0.76rem;
  font-weight: 590;
}

.footer-fineprint {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(9, 10, 13, 0.1);
  padding-top: 1.2rem;
}

.footer-fineprint p {
  max-width: 43rem;
  color: #5f5f65;
  font-size: 0.68rem;
  line-height: 1.5;
}

/* Supporting policy pages */
.policy-page {
  background: var(--page);
}

.policy-page-main {
  min-height: calc(100svh - 3.35rem);
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.policy-heading {
  position: sticky;
  top: 7rem;
}

.policy-heading h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.policy-heading .hero-text {
  margin-top: 1.4rem;
  font-size: 1.08rem;
}

.policy-date {
  margin-top: 1rem;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.policy-document h2 {
  margin-top: 3rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.policy-document h2:first-child {
  margin-top: 0;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: white;
  box-shadow: 0 18px 50px rgba(25, 32, 47, 0.06);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.policy-card h2,
.policy-card h3 {
  margin-top: 2rem;
  letter-spacing: -0.025em;
}

.policy-card h2:first-child,
.policy-card h3:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
}

.policy-card ul,
.policy-card ol {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.contact-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  margin-top: 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 0.7rem 1rem;
  font-weight: 700;
}

.contact-link:hover {
  background: var(--blue-deep);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

/* Scroll reveal is progressive enhancement; content remains visible without JS. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal]:not(.is-visible),
.js [data-reveal]:not(.is-visible) * {
  animation-play-state: paused !important;
}

.js .bento-grid [data-reveal]:nth-child(2),
.js .screen-gallery [data-reveal]:nth-child(2),
.js .principle-list [data-reveal]:nth-child(2) {
  transition-delay: 100ms;
}

.js .bento-grid [data-reveal]:nth-child(3),
.js .screen-gallery [data-reveal]:nth-child(3),
.js .principle-list [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.js .bento-grid [data-reveal]:nth-child(4) {
  transition-delay: 250ms;
}

@keyframes device-float {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(2deg) rotateZ(2deg) translate3d(var(--pointer-x, 0), calc(var(--pointer-y, 0) - 0.2rem), 0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(1deg) rotateZ(1deg) translate3d(var(--pointer-x, 0), calc(var(--pointer-y, 0) + 0.8rem), 0);
  }
}

@keyframes glow-drift {
  from {
    transform: translate3d(-1rem, -0.5rem, 0) scale(0.92);
  }
  to {
    transform: translate3d(1.5rem, 1rem, 0) scale(1.08);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    scale: 0.98;
    opacity: 0.7;
  }
  50% {
    scale: 1.04;
    opacity: 1;
  }
}

@keyframes note-float {
  0%,
  100% {
    transform: translateY(-0.3rem);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

@keyframes marquee {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2rem);
  }
}

@keyframes language-spin {
  to {
    rotate: 360deg;
  }
}

@keyframes bookmark-pulse {
  0%,
  100% {
    transform: translateY(0) scale(0.96);
  }
  50% {
    transform: translateY(-0.7rem) scale(1.02);
  }
}

@keyframes halo-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes story-float {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-0.8rem) rotate(-4deg);
  }
}

@keyframes send-flight {
  0%,
  100% {
    transform: translate3d(-0.5rem, 0.4rem, 0) rotate(13deg) scale(0.94);
  }
  50% {
    transform: translate3d(0.65rem, -0.4rem, 0) rotate(8deg) scale(1.03);
  }
}

@keyframes friend-pop {
  0%,
  100% {
    transform: translateY(0) scale(0.96);
  }
  50% {
    transform: translateY(-0.5rem) scale(1.04);
  }
}

@keyframes closing-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-0.7rem) rotate(2deg);
  }
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 1.25rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
    gap: 2rem;
  }

  .hero-stage {
    min-height: 650px;
  }

  .floating-note {
    font-size: 0.72rem;
  }

  .note-language {
    left: -1rem;
  }

  .sharing-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 2rem;
  }

  .share-story-card {
    left: -8%;
    width: 15rem;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .nav-shell {
    width: min(var(--shell), calc(100% - 2rem));
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-lead {
    max-width: 39rem;
  }

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

  .hero-stage {
    width: min(650px, 100%);
    min-height: 680px;
    margin-inline: auto;
  }

  .hero-caption {
    right: 50%;
    bottom: 1rem;
    translate: 50% 0;
  }

  .bento-discover,
  .bento-language,
  .bento-saved,
  .bento-source {
    grid-column: span 12;
  }

  .bento-language,
  .bento-discover {
    min-height: 40rem;
  }

  .bento-discover .card-copy {
    max-width: 70%;
  }

  .sharing-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .sharing-copy {
    max-width: 43rem;
    margin-inline: auto;
    text-align: center;
  }

  .sharing-lead {
    margin-inline: auto;
  }

  .sharing-steps {
    justify-content: center;
  }

  .sharing-visual {
    width: min(640px, 100%);
    margin-inline: auto;
  }

  .share-story-card {
    left: 2%;
  }

  .screen-gallery {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    overflow-x: auto;
    margin-inline: -1rem;
    padding: 1rem 1rem 3rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screen-gallery::-webkit-scrollbar {
    display: none;
  }

  .screen-card {
    scroll-snap-align: center;
  }

  .screen-card-two {
    margin-top: 0;
  }

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

  .principles-heading {
    position: static;
  }

  .policy-hero {
    grid-template-columns: 1fr;
  }

  .policy-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 3.15rem;
  }

  .brand {
    font-size: 0.88rem;
  }

  .nav-cta {
    min-height: 1.9rem;
  }

  .announcement {
    min-height: 3.5rem;
    flex-wrap: wrap;
    gap: 0.1rem 0.35rem;
    font-size: 0.78rem;
  }

  .section-space {
    padding-block: 5.5rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-lead {
    margin-top: 1.5rem;
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button-primary {
    width: 100%;
  }

  .button-text {
    width: 100%;
  }

  .hero-promises {
    gap: 0.45rem 0.7rem;
    font-size: 0.72rem;
  }

  .hero-stage {
    min-height: 590px;
    margin-top: 0.5rem;
  }

  .hero-stage::before {
    width: 118%;
  }

  .orbit-one {
    width: 90%;
  }

  .orbit-two {
    width: 76%;
  }

  .device-hero {
    width: min(286px, 74vw);
    border-width: 5px;
    border-radius: 3rem;
  }

  .device-hero .device-screen {
    border-radius: calc(3rem - 7px);
  }

  .device::before {
    top: 0.48rem;
    width: 4.5rem;
    height: 1.15rem;
  }

  .floating-note {
    min-height: 2.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.67rem;
  }

  .note-language {
    top: 18%;
    left: -0.2rem;
  }

  .note-focus {
    right: -0.2rem;
    bottom: 19%;
  }

  .hero-caption {
    bottom: 0;
  }

  .section-intro h2,
  .principles-heading h2,
  .closing h2,
  .sharing-copy h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .bento-card {
    min-height: 32rem;
    border-radius: 2.2rem;
  }

  .bento-discover,
  .bento-language {
    min-height: 36rem;
  }

  .bento-discover .card-copy {
    max-width: 100%;
  }

  .mini-device {
    right: 1.5rem;
    bottom: -12rem;
    width: 13.5rem;
  }

  .language-orb {
    top: 4rem;
    width: 12rem;
    height: 12rem;
  }

  .language-orb span:first-child {
    translate: -3.7rem -2rem;
  }

  .language-orb span:last-child {
    translate: 3.5rem 2.2rem;
  }

  .source-lines {
    width: 68%;
    opacity: 0.75;
  }

  .sharing-visual {
    min-height: 610px;
  }

  .device-share {
    width: min(245px, 65vw);
  }

  .share-story-card {
    top: 11%;
    left: -0.5rem;
    width: 12.5rem;
    min-height: 12rem;
    border-radius: 1.5rem;
    padding: 1.1rem;
  }

  .share-story-card strong {
    margin-top: 2rem;
    font-size: 1.25rem;
  }

  .share-flight {
    left: 19%;
  }

  .share-flight span {
    width: 2.8rem;
    height: 2.8rem;
  }

  .friend-bubble {
    width: 2.65rem;
    height: 2.65rem;
  }

  .screen-gallery {
    grid-template-columns: repeat(3, minmax(225px, 72vw));
    margin-inline: 0;
    padding-inline: 0;
  }

  .principle-list article {
    min-height: 13rem;
    grid-template-columns: 2.4rem 1fr;
  }

  .closing {
    min-height: 650px;
  }

  .support-grid summary {
    min-height: 4.5rem;
    padding: 1rem 1.1rem;
  }

  .detail-content {
    padding-inline: 1.1rem;
  }

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

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

  .footer-fineprint {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-heading h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .policy-card {
    border-radius: 1.5rem;
  }
}

/* Screenshot-free product visuals */
.orbit-brief {
  position: relative;
  z-index: 3;
  width: min(500px, 84vw);
  transform: rotateY(-5deg) rotateX(1deg) rotateZ(1.5deg)
    translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
  filter: drop-shadow(0 44px 60px rgba(31, 43, 68, 0.2));
  transition: transform 320ms ease;
  animation: brief-arrive 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1 both;
  will-change: transform;
}

.brief-window {
  overflow: hidden;
  border: 1px solid rgba(9, 10, 13, 0.08);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1.4rem;
}

.brief-toolbar,
.brief-brand,
.brief-toolbar-actions,
.brief-topics,
.brief-story-row,
.brief-story-row > span:nth-child(2) {
  display: flex;
  align-items: center;
}

.brief-toolbar {
  justify-content: space-between;
}

.brief-brand {
  gap: 0.55rem;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.brief-brand > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, #119bff, #005be8 62%, #3b22bb);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}

.brief-toolbar-actions {
  gap: 0.55rem;
  color: #64666d;
  font-size: 0.68rem;
  font-weight: 800;
}

.brief-toolbar-actions span {
  border: 1px solid #e3e5ea;
  border-radius: 999px;
  padding: 0.34rem 0.55rem;
}

.brief-toolbar-actions i {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd77c, #ff6f6f);
}

.brief-topics {
  gap: 0.35rem;
  margin: 1.15rem 0 1rem;
  overflow: hidden;
  white-space: nowrap;
}

.brief-topics span {
  border-radius: 999px;
  background: #f1f2f5;
  color: #676970;
  padding: 0.48rem 0.7rem;
  font-size: 0.66rem;
  font-weight: 720;
}

.brief-topics .active {
  background: #0b0c0f;
  color: white;
}

.brief-lead-story {
  overflow: hidden;
  border-radius: 1.65rem;
  background: #f3f7ff;
}

.brief-story-art {
  position: relative;
  min-height: 10.5rem;
  overflow: hidden;
  background: linear-gradient(140deg, #081733 0%, #075fd7 55%, #53cfff 100%);
  color: white;
  padding: 1rem;
}

.brief-story-art::after {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 15rem;
  height: 15rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 2.7rem rgba(255, 255, 255, 0.08), 0 0 0 5.4rem rgba(255, 255, 255, 0.04);
}

.brief-story-art > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.42rem 0.65rem;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brief-story-art i,
.brief-story-art b {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
}

.brief-story-art i {
  right: 4.3rem;
  bottom: 3rem;
  width: 1rem;
  height: 1rem;
  background: white;
  box-shadow: 0 0 0 0.6rem rgba(255, 255, 255, 0.13), 0 0 1.5rem rgba(255, 255, 255, 0.55);
}

.brief-story-art b {
  right: 8rem;
  bottom: 5.5rem;
  width: 0.42rem;
  height: 0.42rem;
  background: #aeeaff;
}

.brief-story-copy {
  padding: 1.2rem 1.25rem 1.35rem;
}

.brief-story-copy small,
.brief-story-row small,
.discover-results small,
.delivery-top small,
.delivered-story > span,
.board-feature small,
.search-board-results small,
.saved-stack small {
  display: block;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 820;
  letter-spacing: 0.09em;
}

.brief-story-copy strong {
  display: block;
  max-width: 21rem;
  margin-top: 0.45rem;
  font-size: 1.7rem;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.brief-story-copy p {
  margin-top: 0.55rem;
  color: #60636b;
  font-size: 0.76rem;
  line-height: 1.45;
}

.brief-story-row {
  min-height: 4.45rem;
  gap: 0.8rem;
  border-bottom: 1px solid #eceef2;
  padding: 0.75rem 0.25rem;
}

.brief-story-row:last-child {
  border-bottom: 0;
}

.brief-row-mark {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 1rem;
}

.mark-blue {
  background: linear-gradient(145deg, #c9e8ff, #468eff);
}

.mark-coral {
  background: linear-gradient(145deg, #ffe1ce, #ff7282);
}

.brief-story-row > span:nth-child(2) {
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
}

.brief-story-row strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brief-story-row > b {
  color: #8a8c93;
  font-size: 0.62rem;
}

.discover-preview {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  left: 2.2rem;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(13, 46, 91, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 65px rgba(25, 69, 126, 0.18);
  padding: 1.1rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotate(-1.5deg);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-discover:hover .discover-preview {
  transform: translateY(-0.45rem) rotate(-0.5deg);
}

.discover-search {
  display: grid;
  min-height: 3.4rem;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  border: 1px solid #e6e8ee;
  border-radius: 1rem;
  background: white;
  padding: 0.65rem 0.8rem;
}

.discover-search > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--blue);
  color: white;
  font-size: 1.2rem;
}

.discover-search strong {
  color: #60636b;
  font-size: 0.78rem;
}

.discover-search kbd {
  border: 0;
  border-radius: 0.45rem;
  background: #f0f1f4;
  color: #74767d;
  padding: 0.3rem 0.4rem;
  font: inherit;
  font-size: 0.58rem;
  font-weight: 760;
}

.discover-topics,
.search-board-tags {
  display: flex;
  gap: 0.4rem;
  overflow: hidden;
  margin: 0.8rem 0;
  white-space: nowrap;
}

.discover-topics span,
.search-board-tags span {
  border-radius: 999px;
  background: #edf0f4;
  color: #62656d;
  padding: 0.4rem 0.65rem;
  font-size: 0.6rem;
  font-weight: 720;
}

.discover-topics .active {
  background: #0c0d10;
  color: white;
}

.discover-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.discover-results > div {
  min-width: 0;
  min-height: 12.25rem;
  border-radius: 1.15rem;
  background: white;
  padding: 0.7rem;
}

.result-color {
  display: block;
  height: 3.8rem;
  border-radius: 0.8rem;
}

.result-blue {
  background: linear-gradient(145deg, #0d6ce8, #8bdcff);
}

.result-violet {
  background: linear-gradient(145deg, #4028c7, #be75ff);
}

.result-coral {
  background: linear-gradient(145deg, #ff746c, #ffcf8e);
}

.discover-results strong,
.discover-results em {
  display: block;
}

.discover-results small {
  margin-top: 0.55rem;
  font-size: 0.5rem;
}

.discover-results strong {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.discover-results em {
  margin-top: 0.35rem;
  color: #8a8c93;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 650;
}

.delivery-card {
  position: relative;
  z-index: 4;
  width: min(380px, 68vw);
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.25rem;
  background: linear-gradient(160deg, rgba(25, 27, 34, 0.98), rgba(9, 10, 13, 0.98));
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.42);
  transform: rotateY(-6deg) rotateZ(2deg);
}

.delivery-content {
  padding: 1.35rem;
}

.delivery-top,
.delivery-friend {
  display: grid;
  align-items: center;
}

.delivery-top {
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 1rem;
}

.delivery-top > span:nth-child(2),
.delivery-friend > span:nth-child(2) {
  display: grid;
  gap: 0.15rem;
}

.delivery-top small {
  color: #65b2ff;
}

.delivery-top strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.delivery-top > i {
  color: #83858e;
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.delivery-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 104, 217, 0.35);
}

.delivery-friend {
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  margin-top: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.75rem;
}

.delivery-friend strong {
  font-size: 0.8rem;
}

.delivery-friend small {
  color: #8f919a;
  font-size: 0.62rem;
}

.delivery-friend > b {
  border-radius: 999px;
  background: rgba(34, 197, 113, 0.13);
  color: #6ee7a8;
  padding: 0.42rem 0.55rem;
  font-size: 0.58rem;
}

.delivered-story {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.45rem;
  background: linear-gradient(145deg, rgba(0, 104, 217, 0.22), rgba(131, 88, 255, 0.1));
  padding: 1.15rem;
}

.delivered-story > span {
  color: #67b6ff;
}

.delivered-story strong {
  display: block;
  max-width: 15rem;
  margin-top: 1.5rem;
  font-size: 1.45rem;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.delivered-story p {
  margin-top: 0.85rem;
  color: #888b94;
  font-size: 0.68rem;
}

.delivery-reply {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #777a83;
  padding: 0.45rem 0.5rem 0.45rem 1rem;
  font-size: 0.68rem;
  font-weight: 650;
}

.delivery-reply b {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #0c0d10;
  font-size: 1rem;
}

.experience-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.experience-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(9, 10, 13, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 400ms ease;
}

.experience-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 34px 85px rgba(23, 31, 48, 0.13);
}

.experience-read {
  grid-column: span 7;
  background: #0a0b0e;
  color: white;
}

.experience-find {
  grid-column: span 5;
  background: linear-gradient(145deg, #f8fbff, #dceeff);
}

.experience-keep {
  display: grid;
  min-height: 420px;
  grid-column: span 12;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  background: linear-gradient(135deg, #fff 0%, #f3efff 54%, #e7e5ff 100%);
}

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

.experience-number {
  display: inline-flex;
  min-width: 2.2rem;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(9, 10, 13, 0.12);
  border-radius: 999px;
  color: #696b72;
  font-size: 0.66rem;
  font-weight: 800;
}

.experience-read .experience-number {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
}

.experience-copy .card-kicker {
  margin-top: 1.25rem;
}

.experience-copy h3 {
  max-width: 28rem;
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.experience-copy > p:last-child {
  max-width: 28rem;
  margin-top: 1rem;
  font-size: 0.98rem;
}

.experience-read .experience-copy h3 {
  color: white;
}

.experience-read .experience-copy > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.experience-visual {
  position: relative;
  margin-top: auto;
}

.editorial-board {
  min-height: 290px;
  margin-top: 2rem;
  border-radius: 2rem;
  background: white;
  color: #0b0c0f;
  padding: 1.35rem;
  transform: rotate(-1deg) translateY(1rem);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8eaf0;
  padding-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.board-top b {
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  padding: 0.35rem 0.55rem;
  font-size: 0.58rem;
}

.board-feature {
  min-height: 145px;
  margin-top: 1rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, #e5f3ff, #f2edff);
  padding: 1rem;
}

.board-feature strong,
.board-feature span {
  display: block;
}

.board-feature strong {
  max-width: 22rem;
  margin-top: 1rem;
  font-size: 1.5rem;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.board-feature span {
  margin-top: 0.85rem;
  color: #6c6f77;
  font-size: 0.62rem;
  font-weight: 700;
}

.board-lines {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.board-lines i {
  display: block;
  height: 0.42rem;
  border-radius: 999px;
  background: #eceef2;
}

.board-lines i:nth-child(2) {
  width: 84%;
}

.board-lines i:nth-child(3) {
  width: 62%;
}

.search-board {
  min-height: 300px;
  margin-top: 2rem;
  border: 1px solid rgba(22, 77, 138, 0.1);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 25px 60px rgba(27, 83, 148, 0.12);
  padding: 1.15rem;
  transform: rotate(1.2deg) translateY(1rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.search-board-input {
  display: grid;
  min-height: 3.2rem;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  border: 1px solid #e0e4ea;
  border-radius: 1rem;
  background: white;
  padding: 0.7rem;
  font-size: 0.65rem;
}

.search-board-input > span {
  color: var(--blue);
  font-size: 1.15rem;
}

.search-board-input strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-board-input i {
  color: #8a8c93;
  font-style: normal;
}

.search-board-results {
  display: grid;
  gap: 0.55rem;
}

.search-board-results p {
  display: grid;
  min-height: 4.4rem;
  align-items: center;
  grid-template-columns: 3rem 1fr;
  gap: 0.7rem;
  border-radius: 1rem;
  background: white;
  padding: 0.65rem;
}

.search-board-results p > i {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #348fff, #9ddfff);
}

.search-board-results p:nth-child(2) > i {
  background: linear-gradient(145deg, #7b55e8, #e1b6ff);
}

.search-board-results strong {
  display: block;
  margin-top: 0.22rem;
  color: #1c1e24;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.saved-board {
  min-height: 300px;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(61, 44, 134, 0.12);
  padding: 1.2rem;
}

.saved-stack {
  display: grid;
  gap: 0.7rem;
}

.saved-stack article {
  position: relative;
  min-height: 6rem;
  border: 1px solid rgba(9, 10, 13, 0.06);
  border-radius: 1.2rem;
  background: white;
  padding: 1rem;
}

.saved-stack article::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.85rem;
  height: 1.1rem;
  content: "";
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}

.saved-stack strong,
.saved-stack span {
  display: block;
}

.saved-stack strong {
  max-width: 75%;
  margin-top: 0.45rem;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.saved-stack span {
  margin-top: 0.45rem;
  color: #85878f;
  font-size: 0.6rem;
  font-weight: 650;
}

.saved-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: #0b0c0f;
  color: white;
  padding: 0.55rem 0.7rem;
  font-size: 0.68rem;
}

.saved-action span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

@keyframes brief-arrive {
  from {
    opacity: 0;
    transform: rotateY(-5deg) rotateX(1deg) rotateZ(1.5deg) translate3d(0, 2rem, 0) scale(0.96);
  }
}

@media (max-width: 860px) {
  .experience-read,
  .experience-find,
  .experience-keep {
    grid-column: span 12;
  }

  .experience-read,
  .experience-find {
    min-height: 570px;
  }

  .experience-keep {
    min-height: 520px;
    grid-template-columns: 1fr;
  }

  .experience-keep .experience-visual {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-stage {
    min-height: 545px;
  }

  .orbit-brief {
    width: min(365px, 88vw);
  }

  .brief-window {
    border-radius: 2rem;
    padding: 1rem;
  }

  .brief-story-art {
    min-height: 8rem;
  }

  .brief-story-copy {
    padding: 0.9rem 1rem 1rem;
  }

  .brief-story-copy strong {
    font-size: 1.35rem;
  }

  .brief-story-copy p {
    display: none;
  }

  .brief-story-row {
    min-height: 3.6rem;
    padding-block: 0.55rem;
  }

  .brief-row-mark {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.8rem;
  }

  .hero-caption {
    display: none;
  }

  .bento-discover {
    min-height: 43rem;
  }

  .bento-language {
    min-height: 43rem;
  }

  .language-cloud {
    top: 2.5rem;
    right: 1.15rem;
    left: 1.15rem;
    gap: 0.5rem;
  }

  .language-cloud li {
    min-height: 3rem;
    border-radius: 0.9rem;
    padding: 0.6rem 0.7rem;
  }

  .language-cloud li > span {
    font-size: 0.8rem;
  }

  .language-more {
    top: 19rem;
  }

  .discover-preview {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    border-radius: 1.5rem;
    padding: 0.8rem;
  }

  .discover-results {
    grid-template-columns: 1fr;
  }

  .discover-results > div {
    display: grid;
    min-height: 0;
    align-items: center;
    grid-template-columns: 3.5rem 1fr;
    gap: 0.7rem;
  }

  .result-color {
    height: 3.5rem;
  }

  .discover-results small {
    margin-top: 0;
  }

  .discover-results em {
    display: block;
  }

  .delivery-card {
    width: min(285px, 75vw);
    min-height: 390px;
    border-radius: 1.75rem;
  }

  .delivery-content {
    padding: 1rem;
  }

  .delivered-story strong {
    margin-top: 1rem;
    font-size: 1.15rem;
  }

  .delivery-reply {
    min-height: 2.8rem;
  }

  .experience-card {
    min-height: 0;
    border-radius: 2.2rem;
  }

  .experience-read,
  .experience-find {
    min-height: 560px;
  }

  .experience-keep {
    min-height: 600px;
  }

  .experience-copy h3 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .editorial-board,
  .search-board,
  .saved-board {
    border-radius: 1.5rem;
  }

  .board-feature strong {
    font-size: 1.2rem;
  }
}

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

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

  .promise-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
