:root {
  color-scheme: dark;
  --black: #000000;
  --ink: #08070b;
  --white: #ffffff;
  --paper: #f4f1ea;
  --paper-2: #ebe5d8;
  --muted: #a9a4ae;
  --muted-dark: #5e5963;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --purple: #6d35ff;
  --purple-deep: #4700ec;
  --lavender: #bda7ff;
  --mint: #67e5cf;
  --gold: #f4bd62;
  --max: 1160px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(71, 0, 236, 0.22), transparent 30rem),
    radial-gradient(circle at 20% 18%, rgba(103, 229, 207, 0.09), transparent 24rem),
    #000;
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
}

.motion-enabled body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      520px circle at var(--pointer-x, 50vw) var(--pointer-y, 18vh),
      rgba(189, 167, 255, 0.16),
      rgba(109, 53, 255, 0.07) 38%,
      transparent 70%
    );
  opacity: 0.9;
}

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

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

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

.site-shell {
  position: relative;
  z-index: 0;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 54px) 42px;
}

.motion-enabled [data-reveal] {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  translate: none;
}

.letter-reveal {
  overflow: visible;
}

.motion-word {
  display: inline-block;
  overflow: visible;
  white-space: nowrap;
  vertical-align: bottom;
}

.motion-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(1.14em) rotate(7deg);
  animation: letter-rise 840ms cubic-bezier(0.18, 0.92, 0.21, 1) forwards;
  animation-delay: calc(var(--letter-base-delay, 40ms) + (var(--letter-index) * 19ms));
  animation-play-state: paused;
  will-change: opacity, transform, filter;
}

.hero-copy .motion-letter,
.motion-enabled .is-visible .motion-letter {
  animation-play-state: running;
}

@keyframes letter-rise {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(1.14em) rotate(7deg);
  }

  70% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-0.04em) rotate(-1deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes premium-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes sheen-sweep {
  0% {
    transform: translateX(-140%) rotate(18deg);
  }

  100% {
    transform: translateX(140%) rotate(18deg);
  }
}

.site-header,
.hero-section,
.story-strip,
.activity-section,
.manifesto-section,
.different-section,
.product-section,
.download-section,
.site-footer {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(86px, 10vw, 124px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(189, 167, 255, 0.24), rgba(71, 0, 236, 0.45)),
    #0a0711;
  box-shadow: 0 10px 34px rgba(71, 0, 236, 0.38);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -38% auto -38% -78%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: rotate(18deg);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand:hover .brand-mark::after {
  transform: translateX(310%) rotate(18deg);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a,
.menu-link,
.footer-links a {
  position: relative;
  transition: opacity 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a::after,
.menu-link::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-links a:hover,
.menu-link:hover,
.footer-links a:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.menu-link:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-link {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.hero-section {
  min-height: clamp(620px, 72vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.72fr);
  gap: clamp(58px, 10vw, 132px);
  align-items: center;
  margin-bottom: clamp(112px, 14vw, 170px);
}

.hero-copy {
  max-width: 610px;
}

.mini-label,
.section-label {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-copy h1 {
  --letter-base-delay: 80ms;
  max-width: 545px;
  margin-bottom: 30px;
  font-size: clamp(44px, 5.7vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.hero-subtitle {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.68;
}

.primary-pill {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 25px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 20px 56px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease,
    background 280ms ease;
}

.primary-pill::before,
.store-button::before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -48%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  opacity: 0;
  transform: rotate(18deg);
}

.primary-pill:hover,
.store-button:hover,
.deletion-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(255, 255, 255, 0.18);
}

.primary-pill:hover::before,
.store-button:hover::before {
  opacity: 1;
  animation: sheen-sweep 880ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.primary-pill span {
  font-size: 22px;
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 53, 255, 0.35), transparent 62%);
  filter: blur(14px);
  animation: glow-pulse 5.8s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  width: min(100%, 340px);
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.035)),
    #09080c;
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.56),
    0 24px 90px rgba(71, 0, 236, 0.28);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 20;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-phone {
  animation: premium-float 7.5s ease-in-out infinite;
  transform-origin: center;
}

.hero-phone figcaption {
  position: absolute;
  right: -26px;
  bottom: 68px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 8, 12, 0.88);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.hero-phone figcaption span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(103, 229, 207, 0.84);
}

.story-strip {
  margin-bottom: clamp(120px, 14vw, 168px);
}

.story-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 390px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.story-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  color: #0a0a0a;
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 360ms ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(255, 255, 255, 0.12);
}

.story-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease;
}

.story-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.story-card div {
  padding: 28px;
}

.story-card h2 {
  margin-bottom: 28px;
  font-size: clamp(23px, 2.3vw, 29px);
  line-height: 1.14;
  letter-spacing: -0.044em;
}

.story-card p {
  margin-bottom: 0;
  color: #49444c;
  font-weight: 760;
  line-height: 1.45;
}

.activity-section {
  margin-bottom: clamp(116px, 14vw, 166px);
}

.activity-heading {
  align-items: start;
}

.activity-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.activity-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #111;
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.activity-card-large {
  grid-row: span 2;
  min-height: 620px;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 18% 18%, rgba(103, 229, 207, 0.16), transparent 34%);
}

.activity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 900ms ease;
}

.activity-card:hover img {
  opacity: 1;
  transform: scale(1.055);
}

.activity-card div {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 3vw, 34px);
  right: clamp(22px, 3vw, 34px);
  bottom: clamp(22px, 3vw, 34px);
}

.activity-card .mini-label {
  color: var(--mint);
}

.activity-card h3 {
  max-width: 680px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.044em;
}

.manifesto-section {
  margin-bottom: clamp(122px, 15vw, 176px);
}

.manifesto-section h2 {
  --letter-base-delay: 20ms;
  max-width: 880px;
  margin-bottom: 0;
  color: #f4f1ea;
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.052em;
}

.different-section,
.product-section {
  margin-bottom: clamp(118px, 14vw, 166px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  --letter-base-delay: 30ms;
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.048em;
}

.comparison-list {
  display: grid;
  gap: 14px;
}

.comparison-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.comparison-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.comparison-number {
  display: grid;
  place-items: center;
  color: var(--mint);
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.11em;
}

.comparison-main,
.comparison-old {
  padding: 16px;
  border-radius: 20px;
}

.comparison-main h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(24px, 2.65vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.044em;
}

.comparison-old {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.comparison-old span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.comparison-old p {
  margin-bottom: 0;
  line-height: 1.55;
}

.comparison-old strong {
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-bottom: clamp(82px, 10vw, 126px);
}

.showcase-card {
  position: relative;
  min-width: 0;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: 30px 28px 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 16%, rgba(103, 229, 207, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.045);
  transition:
    transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 340ms ease,
    box-shadow 340ms ease;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.27);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
}

.showcase-create {
  margin-top: 54px;
  background:
    radial-gradient(circle at 78% 12%, rgba(109, 53, 255, 0.26), transparent 36%),
    rgba(255, 255, 255, 0.045);
}

.showcase-progress {
  background:
    radial-gradient(circle at 26% 14%, rgba(244, 189, 98, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.showcase-copy {
  position: relative;
  z-index: 1;
}

.showcase-copy > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.showcase-copy .mini-label {
  margin-bottom: 12px;
  color: var(--mint);
}

.showcase-create .mini-label {
  color: var(--lavender);
}

.showcase-progress .mini-label {
  color: var(--gold);
}

.showcase-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2.2vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.044em;
}

.showcase-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.56;
}

.showcase-phone {
  width: min(88%, 286px);
  align-self: center;
  margin-bottom: -74px;
  padding: 7px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-card:hover .showcase-phone {
  transform: translateY(-10px);
}

.showcase-phone .phone-screen {
  border-radius: 27px 27px 0 0;
}

.feature-tile {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(103, 229, 207, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #09080c;
  transition:
    transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 340ms ease,
    background 340ms ease,
    box-shadow 340ms ease;
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: auto -24% -38% 34%;
  height: 190px;
  border-radius: 999px;
  background: rgba(109, 53, 255, 0.18);
  filter: blur(24px);
  pointer-events: none;
}

.feature-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 18% 16%, rgba(103, 229, 207, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    #09080c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.feature-tile-large {
  grid-column: span 2;
  background:
    radial-gradient(circle at 16% 12%, rgba(244, 189, 98, 0.2), transparent 36%),
    radial-gradient(circle at 82% 22%, rgba(109, 53, 255, 0.26), transparent 38%),
    #100d13;
}

.feature-tile-share {
  grid-column: span 2;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 189, 98, 0.24), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(103, 229, 207, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    #100d13;
}

.feature-tile-share .mini-label {
  color: var(--gold);
}

.feature-tile > span {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.feature-tile .mini-label {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--mint);
}

.feature-tile h3,
.feature-tile p {
  position: relative;
  z-index: 1;
}

.feature-tile h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.044em;
}

.feature-tile p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.product-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.light-card {
  padding: 34px;
  background: var(--paper);
  color: #0b0b0b;
}

.light-card .mini-label,
.dark-card .mini-label {
  color: rgba(0, 0, 0, 0.46);
}

.product-card h3 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.25vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.046em;
}

.product-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding-left: 20px;
  color: #413b42;
  line-height: 1.5;
}

.product-card a,
.text-link {
  color: var(--purple-deep);
  font-weight: 950;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.product-card a:hover,
.text-link:hover {
  letter-spacing: 0.01em;
  opacity: 0.72;
}

.image-card {
  position: relative;
  min-height: 360px;
  background: #121212;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.86));
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 850ms ease;
}

.image-card:hover img {
  opacity: 0.98;
  transform: scale(1.06);
}

.image-card div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.image-card .mini-label {
  color: var(--gold);
}

.image-card h3 {
  margin-bottom: 0;
  color: #fff;
}

.dark-card {
  padding: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 18%, rgba(103, 229, 207, 0.14), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(109, 53, 255, 0.25), transparent 38%),
    #0d0b12;
  color: #fff;
}

.dark-card .mini-label {
  color: rgba(255, 255, 255, 0.52);
}

.dark-card p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.dark-card a {
  color: var(--mint);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin-bottom: 96px;
  padding: clamp(32px, 5.4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 229, 207, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.download-copy p:not(.section-label) {
  max-width: 580px;
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.64;
}

.download-section h2 {
  --letter-base-delay: 20ms;
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.048em;
}

.interest-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.interest-form label {
  display: grid;
  gap: 8px;
}

.interest-form label span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.interest-form input,
.interest-form select {
  min-height: 52px;
  padding: 0 15px;
}

.interest-form textarea {
  resize: vertical;
  min-height: 92px;
  padding: 14px 15px;
}

.interest-form select option {
  color: #101010;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(103, 229, 207, 0.72);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(103, 229, 207, 0.1);
}

.interest-submit {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.interest-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.is-error {
  color: var(--gold);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  position: relative;
  min-width: 190px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 950;
  overflow: hidden;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease;
}

.store-button > span {
  color: var(--purple-deep);
  font-size: 23px;
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  color: #6f6972;
  font-size: 11px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 820;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 13px;
}

.legal-shell {
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 229, 207, 0.1), transparent 24rem),
    radial-gradient(circle at 85% 8%, rgba(71, 0, 236, 0.22), transparent 28rem),
    #000;
}

.legal-page {
  width: min(940px, 100%);
  margin: 0 auto 76px;
}

.legal-hero {
  margin-bottom: 18px;
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
}

.legal-hero h1 {
  --letter-base-delay: 30ms;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.legal-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.effective-date {
  color: var(--gold) !important;
  font-size: 15px !important;
  font-weight: 950;
}

.legal-card {
  margin-top: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background 320ms ease;
}

.legal-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.legal-card a {
  color: var(--mint);
  font-weight: 900;
}

.legal-card ul {
  margin: 0;
  padding-left: 21px;
}

.legal-card li + li {
  margin-top: 10px;
}

.deletion-hero {
  text-align: center;
}

.deletion-hero p {
  margin-left: auto;
  margin-right: auto;
}

.button,
.deletion-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease;
}

.button-primary,
.deletion-button {
  background: #fff;
  color: #050505;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background 320ms ease;
}

.feature-card h2,
.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #050505;
  font-weight: 950;
}

.feature-icon.emerald {
  background: var(--mint);
}

.feature-icon.gold {
  background: var(--gold);
}

.feature-icon.blue {
  background: #aee8ff;
}

.motion-enabled [data-reveal] {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease,
    filter 280ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  translate: none;
}

@media (max-width: 1060px) {
  .hero-section,
  .download-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-visual {
    justify-content: start;
  }

  .comparison-card {
    grid-template-columns: 56px 1fr;
  }

  .comparison-old {
    grid-column: 2;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .product-showcase {
    grid-auto-flow: column;
    grid-auto-columns: minmax(330px, 42vw);
    grid-template-columns: none;
    overflow-x: auto;
    margin-right: calc(clamp(20px, 4vw, 54px) * -1);
    padding: 0 clamp(20px, 4vw, 54px) 18px 0;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
  }

  .showcase-card {
    min-height: 820px;
    scroll-snap-align: start;
  }

  .showcase-create {
    margin-top: 0;
  }

  .activity-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .activity-card-large {
    grid-row: auto;
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 26px 20px 34px;
  }

  .site-header {
    margin-bottom: 76px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .nav-links {
    display: none;
  }

  .menu-link::before {
    content: "☰";
    margin-right: 9px;
    font-size: 18px;
  }

  .hero-copy h1 {
    max-width: 310px;
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.046em;
  }

  .hero-section {
    gap: 54px;
    margin-bottom: 104px;
  }

  .hero-visual::before {
    width: 320px;
    height: 320px;
  }

  .hero-phone {
    width: min(100%, 320px);
  }

  .hero-phone figcaption {
    right: -10px;
    bottom: 48px;
  }

  .story-rail {
    grid-auto-columns: minmax(286px, 86vw);
  }

  .activity-card,
  .activity-card-large {
    min-height: 360px;
  }

  .manifesto-section h2 {
    font-size: clamp(29px, 8.8vw, 42px);
    line-height: 1.14;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: clamp(28px, 8.4vw, 39px);
    line-height: 1.14;
  }

  .product-card h3 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    overflow: visible;
    margin-right: 0;
    padding: 0;
    scroll-snap-type: none;
  }

  .showcase-card {
    min-height: 790px;
  }

  .showcase-phone {
    width: min(86%, 280px);
  }

  .feature-tile-large {
    grid-column: auto;
  }

  .feature-tile-share {
    grid-column: auto;
  }

  .comparison-main h3 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .comparison-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .comparison-number {
    width: fit-content;
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-old {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .hero-copy h1 {
    letter-spacing: -0.044em;
  }

  .hero-subtitle {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.7;
  }

  .menu-link {
    font-size: 13px;
  }

  .primary-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-phone {
    width: min(94%, 300px);
  }

  .hero-phone figcaption {
    right: -14px;
  }

  .product-card {
    min-height: 320px;
  }

  .showcase-card {
    min-height: 750px;
    padding: 26px 22px 0;
  }

  .showcase-copy > span {
    margin-bottom: 26px;
  }

  .showcase-phone {
    width: min(88%, 248px);
  }

  .light-card,
  .dark-card {
    padding: 26px;
  }

  .store-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) *,
  html:not(.force-motion) *::before,
  html:not(.force-motion) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
