:root {
  --content-max-width: 1280px;
  --nav-height: 72px;
  --separator-height: 50px;
  --scroll-offset: calc(var(--nav-height) + 16px);
  --color-theme-base-bg: rgba(243, 243, 247, 1);
  --color-theme-base-foreground: rgba(20, 19, 22, 1);
  --color-theme-contrast-background: rgba(255, 255, 255, 1);
  --color-theme-contrast-foreground: rgba(20, 19, 22, 1);
  --color-theme-mid-gray: rgba(124, 122, 133, 1);
  --color-theme-borders: color-mix(in srgb, var(--color-theme-base-foreground) 8%, transparent);
  --color-theme-tr-foreground-0: rgba(20, 19, 22, 0);
  --color-theme-tr-foreground-4: rgba(20, 19, 22, 0.04);
  --color-theme-tr-foreground-8: rgba(20, 19, 22, 0.08);
  --color-theme-tr-foreground-16: rgba(20, 19, 22, 0.16);
  --color-theme-tr-foreground-24: rgba(20, 19, 22, 0.24);
  --color-theme-tr-foreground-32: rgba(20, 19, 22, 0.32);
  --color-theme-tr-foreground-50: rgba(20, 19, 22, 0.5);
  --color-theme-tr-foreground-60: rgba(20, 19, 22, 0.6);
  --color-theme-tr-foreground-70: rgba(20, 19, 22, 0.7);
  --color-theme-tr-foreground-80: rgba(20, 19, 22, 0.8);
  --color-theme-tr-foreground-90: rgba(20, 19, 22, 0.9);
  --color-theme-tr-background-0: rgba(255, 255, 255, 0);
  --color-theme-tr-background-4: rgba(255, 255, 255, 0.04);
  --color-theme-tr-background-8: rgba(255, 255, 255, 0.08);
  --color-theme-tr-background-16: rgba(255, 255, 255, 0.16);
  --color-theme-tr-background-24: rgba(255, 255, 255, 0.24);
  --color-theme-tr-background-32: rgba(255, 255, 255, 0.32);
  --color-theme-tr-background-50: rgba(255, 255, 255, 0.5);
  --color-theme-tr-background-60: rgba(255, 255, 255, 0.6);
  --color-theme-tr-background-70: rgba(255, 255, 255, 0.7);
  --color-theme-tr-background-80: rgba(255, 255, 255, 0.8);
  --color-theme-tr-background-90: rgba(255, 255, 255, 0.9);
  --color-theme-primary-400: rgba(173, 135, 254, 1);
  --color-theme-primary-500: rgba(151, 95, 243, 1);
  --color-theme-primary-600: rgba(132, 45, 243, 1);
  --color-theme-primary-100: rgba(239, 232, 255, 1);
  --color-theme-primary-200: rgba(223, 213, 255, 1);
  --color-theme-primary-300: rgba(198, 174, 255, 1);
  --color-theme-secondary-500: rgba(45, 179, 90, 1);
  --color-theme-secondary-100: rgba(222, 250, 231, 1);
  --color-theme-success-800: rgba(28, 95, 51, 1);
  --color-theme-error-400: rgba(255, 107, 129, 1);
  --color-theme-neutral-300: rgba(213, 211, 217, 1);
  --color-theme-neutral-400: rgba(166, 165, 172, 1);
  --color-theme-neutral-500: rgba(124, 122, 133, 1);
  --color-theme-neutral-600: rgba(100, 97, 107, 1);
  --color-theme-neutral-700: rgba(82, 78, 86, 1);
  --color-theme-neutral-800: rgba(61, 58, 64, 1);
  --color-theme-neutral-900: rgba(35, 34, 37, 1);
  --hobb-vertical: linear-gradient(180deg, var(--color-theme-primary-500) 0%, var(--color-theme-secondary-500) 100%);
  --color-theme-accent-bg: rgba(252, 245, 233, 1);
  --color-rank-gold: rgba(223, 184, 68, 1);
  --color-rank-silver: rgba(166, 165, 172, 1);
  --color-rank-bronze: rgba(143, 91, 72, 1);
  --color-static-black: rgba(0, 0, 0, 1);
  --color-static-white: rgba(255, 255, 255, 1);
  --color-static-white-50: rgba(255, 255, 255, 0.5);
  --color-surface-dark-900: rgba(22, 21, 25, 1);
  --color-surface-dark-950: rgba(15, 14, 16, 1);
  --color-surface-dark-1000: rgba(7, 7, 8, 1);
  --shadow-card: 0 1px 4px var(--color-theme-tr-foreground-4), 0 8px 16px var(--color-theme-tr-foreground-4);
  --gradient-hero: radial-gradient(ellipse 150% 100% at 50% 100%, var(--color-theme-base-bg) 40%, var(--color-theme-accent-bg) 80%, var(--color-theme-primary-200) 100%);

  --bg-header: var(--color-theme-base-bg);
  --bg-top: var(--color-theme-contrast-background);
  --text: var(--color-theme-base-foreground);
  --line: var(--color-theme-borders);
  --chip: var(--color-theme-tr-foreground-4);
  --shadow: var(--shadow-card);
}

[data-theme="dark"] {
  --color-theme-base-bg: rgba(20, 19, 22, 1);
  --color-theme-base-foreground: rgba(243, 243, 247, 1);
  --color-theme-contrast-background: rgba(0, 0, 0, 1);
  --color-theme-contrast-foreground: rgba(243, 243, 247, 1);
  --color-theme-mid-gray: rgba(124, 122, 133, 1);
  --color-theme-borders: color-mix(in srgb, var(--color-theme-base-foreground) 8%, transparent);
  --color-theme-tr-foreground-0: rgba(255, 255, 255, 0);
  --color-theme-tr-foreground-4: rgba(255, 255, 255, 0.04);
  --color-theme-tr-foreground-8: rgba(255, 255, 255, 0.08);
  --color-theme-tr-foreground-16: rgba(255, 255, 255, 0.16);
  --color-theme-tr-foreground-24: rgba(255, 255, 255, 0.24);
  --color-theme-tr-foreground-32: rgba(255, 255, 255, 0.32);
  --color-theme-tr-foreground-50: rgba(255, 255, 255, 0.5);
  --color-theme-tr-foreground-60: rgba(255, 255, 255, 0.6);
  --color-theme-tr-foreground-70: rgba(255, 255, 255, 0.7);
  --color-theme-tr-foreground-80: rgba(255, 255, 255, 0.8);
  --color-theme-tr-foreground-90: rgba(255, 255, 255, 0.9);
  --color-theme-tr-background-0: rgba(0, 0, 0, 0);
  --color-theme-tr-background-4: rgba(0, 0, 0, 0.04);
  --color-theme-tr-background-8: rgba(0, 0, 0, 0.08);
  --color-theme-tr-background-16: rgba(0, 0, 0, 0.16);
  --color-theme-tr-background-24: rgba(0, 0, 0, 0.24);
  --color-theme-tr-background-32: rgba(0, 0, 0, 0.32);
  --color-theme-tr-background-50: rgba(0, 0, 0, 0.5);
  --color-theme-tr-background-60: rgba(0, 0, 0, 0.6);
  --color-theme-tr-background-70: rgba(0, 0, 0, 0.7);
  --color-theme-tr-background-80: rgba(0, 0, 0, 0.8);
  --color-theme-tr-background-90: rgba(0, 0, 0, 0.9);
  --color-theme-primary-400: rgba(116, 33, 222, 1);
  --color-theme-primary-500: rgba(151, 95, 243, 1);
  --color-theme-primary-600: rgba(173, 135, 254, 1);
  --color-theme-primary-100: rgba(48, 14, 88, 1);
  --color-theme-primary-200: rgba(78, 38, 126, 1);
  --color-theme-secondary-500: rgba(45, 179, 90, 1);
  --color-theme-secondary-100: rgba(25, 78, 44, 1);
  --color-theme-neutral-300: rgba(82, 78, 86, 1);
  --color-theme-neutral-400: rgba(100, 97, 107, 1);
  --color-theme-neutral-500: rgba(124, 122, 133, 1);
  --color-theme-neutral-600: rgba(166, 165, 172, 1);
  --color-theme-neutral-700: rgba(208, 206, 212, 1);
  --color-theme-neutral-800: rgba(234, 233, 236, 1);
  --color-theme-neutral-900: rgba(246, 247, 249, 1);
  --color-theme-accent-bg: rgba(11, 38, 49, 0.8);
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

button,
.download-btn {
  cursor: pointer;
  transition: opacity 180ms ease;
}

button:hover:not(:disabled),
.download-btn:hover {
  opacity: 0.8;
}

html,
body {
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

[id] {
  scroll-margin-top: var(--scroll-offset);
}

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

  .asset-stack-phones.is-visible .hero-phones-layer,
  .asset-stack-phones.is-visible .hero-frame-layer {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .asset-stack.is-visible[data-asset-group="asset-download-last"] {
    animation: none;
  }
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg-header);
  transition: background-color 220ms ease, color 220ms ease;
}

body.mobile-menu-open {
  overflow: hidden;
}

.theme-ripple {
  position: fixed;
  left: var(--ripple-x, 0);
  top: var(--ripple-y, 0);
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
  background:
    radial-gradient(circle,
      color-mix(in srgb, var(--color-theme-contrast-background) 80%, transparent) 0%,
      color-mix(in srgb, var(--color-theme-contrast-background) 55%, transparent) 38%,
      color-mix(in srgb, var(--color-theme-contrast-background) 40%, transparent) 60%,
      var(--color-theme-tr-background-0) 74%);
  filter: blur(1px);
  opacity: 0.8;
  animation: themeRipple 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header-page {
  min-height: 100vh;
  background: radial-gradient(91.9% 91.9% at 50% 8.1%,
      var(--color-theme-base-bg) 51.45%,
      var(--color-theme-accent-bg) 75.49%,
      var(--color-theme-primary-200) 100%);
  padding-top: var(--nav-height);
}

.shell {
  width: min(var(--content-max-width), calc(100vw - 32px));
  margin: 0 auto;
}

.main-nav {
  border-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-theme-contrast-background);
  backdrop-filter: blur(16px);
  transition: background-color 260ms cubic-bezier(0.2, 0, 0, 1);
}

.main-nav.is-at-top {
  background: var(--color-theme-primary-200);
}

.nav-shell {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: block;
}

.brand-label {
  padding-left: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  font-size: 14px;
  line-height: 24px;
  color: var(--text);
  text-decoration: none;
  transition: color 160ms ease;
}

.menu a:hover {
  color: color-mix(in srgb, var(--text) 50%, transparent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-actions,
.mobile-menu-overlay,
.mobile-menu-panel,
.mobile-menu-plants {
  display: none;
}


.icon-btn,
.lang-btn,
.download-btn {
  border: 0;
  font-family: "Space Grotesk", sans-serif;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--chip);
  display: grid;
  place-items: center;
  transition: background-color 160ms ease;
}

.icon-btn:hover {
  background: color-mix(in srgb, var(--chip) 70%, var(--color-theme-base-foreground));
}

.icon-btn i {
  font-size: 22px;
  line-height: 1;
  color: var(--text);
}

.lang-btn {
  min-height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-theme-base-foreground) 4%, transparent);
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.lang-option {
  height: 36px;
  min-width: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: color-mix(in srgb, var(--text) 62%, transparent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 0 10px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 200ms ease;
}

.lang-option.is-active {
  background: var(--color-theme-contrast-background);
  color: var(--text);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--color-theme-base-foreground) 16%, transparent);
}

.download-btn {
  height: 44px;
  border-radius: 8px;
  background: var(--color-theme-base-foreground);
  color: var(--color-theme-contrast-background);
  padding: 0 18px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--chip);
  display: grid;
  place-items: center;
  color: var(--text);
}

.menu-toggle-icons {
  position: relative;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.menu-toggle-icon {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  color: currentColor;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.menu-toggle-icon-close {
  opacity: 0;
  transform: scale(0.8) rotate(-12deg);
}

.main-nav.is-mobile-menu-open .menu-toggle-icon-open {
  opacity: 0;
  transform: scale(0.8) rotate(12deg);
}

.main-nav.is-mobile-menu-open .menu-toggle-icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.hero-wrap {
  position: relative;
  overflow: visible;
  background: var(--gradient-hero);
  min-height: calc(100vh - var(--nav-height) - var(--separator-height));
  min-height: calc(100dvh - var(--nav-height) - var(--separator-height));
  display: flex;
  align-items: stretch;
}

.asset-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.asset-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

.layer-background {
  z-index: 1;
}

.layer-mockup {
  z-index: 2;
}

.layer-final {
  z-index: 3;
}

.asset-stack.is-visible .layer-mockup {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 0ms;
}

.asset-stack.is-visible .layer-background {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 140ms;
}

.asset-stack.is-visible .layer-final {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 280ms;
}

.hero-grid {
  width: 100%;
  max-width: var(--content-max-width);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 608px;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 8vh, 160px) 16px clamp(24px, 6vh, 96px);
}

.eyebrow {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.hero-free-app {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 24px;
}

.hero-free-heart {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-free-heart svg {
  width: 16px;
  height: 16px;
  display: block;
}

h1 {
  margin: 20px 0 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 72px;
}

.lead {
  max-width: 672px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 30px;
}

.store-row {
  margin-top: 28px;
  display: flex;
  gap: 20px;
}

.store-row img {
  display: block;
  height: 48px;
  max-height: 48px;
  width: auto;
}

.store-row a {
  position: relative;
  overflow: visible;
}

.hero-spot-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-theme-contrast-foreground);
}

.hero-spot-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-theme-contrast-foreground);
  text-decoration: none;
  transition: opacity 160ms ease;
}

.hero-spot-link:hover {
  opacity: 0.65;
}

.hero-spot-link .ph-youtube-logo {
  font-size: 18px;
  flex-shrink: 0;
}

.quote {
  margin: 24px 0 0;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 32px;
}

.hero-visual {
  height: clamp(360px, 58vh, 600px);
  position: relative;
  min-width: 0;
}

.asset-stack-phones {
  width: min(880px, 100%);
  height: 100%;
  overflow: visible;
  margin: 0 auto;
}

/* Frame stays static — only use the standard layer-background fade-in */
[data-asset-group="asset-header-phones"] .hero-frame-layer {
  z-index: 1;
}

/* Phones layer: overrides the base asset-layer initial state so we can animate cleanly */
[data-asset-group="asset-header-phones"] .hero-phones-layer {
  z-index: 2;
}

/* When the stack becomes visible, fade in the frame */
.asset-stack-phones.is-visible .hero-frame-layer {
  animation: layerFadeInSoft 900ms ease-out 100ms both;
}

/* Phones: fade in, then float. Use animation-fill-mode: both so it starts invisible */
.asset-stack-phones.is-visible .hero-phones-layer {
  animation:
    layerFadeInSoft 900ms ease-out 250ms both,
    heroPhonesFloat 5s ease-in-out 1400ms infinite;
}



.scroll-separator {
  background: var(--bg-header);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 32px;
}

.separator-line {
  height: 1px;
  flex: 1 1 0;
  background: var(--color-theme-borders);
}

.separator-center {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}

.separator-center>span:not(.scroll-icon-shell) {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-theme-contrast-foreground);
  letter-spacing: 0;
}

.scroll-icon-shell {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-theme-contrast-background);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
}

.scroll-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.scroll-icon i {
  font-size: 18px;
  color: var(--color-theme-primary-400);
  animation: wheelMove 1.5s ease-in-out infinite;
}

.pill-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--color-theme-tr-foreground-4);
  font-size: 16px;
  line-height: 24px;
  width: fit-content;
  text-align: center;
}

.application-section {
  background: var(--bg-header);
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.application-header {
  padding: 0 16px;
}

.application-header h2 {
  margin: 16px 0 0;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: 0;
  max-width: 860px;
}

.application-lead {
  margin: 16px 0 0;
  max-width: 672px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.application-lead strong {
  font-family: "Space Grotesk", sans-serif;
}

.application-main {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 495px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.application-art {
  width: 495px;
  height: 639px;
  position: relative;
  overflow: hidden;
}

[data-asset-group="asset-general-zen"] .layer-background {
  inset: 0;
  width: 495px;
  height: 639px;
  object-fit: contain;
}

[data-asset-group="asset-general-zen"] .layer-mockup {
  inset: auto;
  left: 85px;
  top: 0;
  width: 328px;
  height: 100%;
  object-fit: contain;
}

.application-content {
  min-height: 639px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 48px;
}

.application-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.card {
  border-radius: 24px;
  border: 1.75px solid var(--color-theme-borders);
  background: var(--color-theme-contrast-background);
}

.card-kicker {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.card h3 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
}

.card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
}

.card-order {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--color-theme-base-foreground);
}

.feature-list i {
  font-size: 20px;
  color: var(--color-theme-primary-500);
  flex: 0 0 auto;
  line-height: 1;
}

.card-chaos {
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--color-theme-base-bg);
  border-color: var(--color-theme-base-bg);
}

.application-cards .card-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.chaos-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.chaos-tags span {
  background: var(--color-theme-tr-foreground-4);
  border: 1px solid var(--color-theme-base-bg);
  border-radius: 12px;
  padding: 4px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: currentColor;
  opacity: 0.72;
}

.application-footer h4 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.application-footer p {
  margin: 8px 0 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.audience-section {
  background: var(--bg-header);
  padding: 96px 0;
}

.audience-wrap {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.audience-header {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.audience-header h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: 0;
}

.audience-subtitle {
  margin: 0;
  max-width: 672px;
  font-size: 20px;
  line-height: 30px;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-height: 400px;
}

.audience-card {
  min-height: 380px;
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-a,
.card-b,
.card-c {
  background: var(--color-theme-contrast-background);
}

.audience-card-top i {
  font-size: 40px;
  color: var(--color-theme-primary-500);
}

.audience-card-top h3 {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 24px;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .audience-card-top i {
    background: var(--hobb-vertical);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.audience-card-top p {
  margin: 10px 0 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.audience-stats {
  margin-top: 20px;
}

.stats-label {
  display: block;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-theme-mid-gray);
}

.stats-grid {
  display: grid;
  gap: 12px;
}

.stats-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.stats-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid div {
  border-radius: 16px;
  background: var(--color-theme-tr-foreground-4);
  padding: 12px;
  display: grid;
  justify-items: center;
}

.stats-grid strong {
  font-size: 24px;
  line-height: 30px;
}

.stats-grid small {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-theme-mid-gray);
}

.plant-list-section {
  background: var(--color-theme-base-bg);
  padding: 96px 0;
  --plant-list-progress: 0;
}

.plant-list-wrap {
  padding: 0 16px;
}

.plant-list-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 592px;
  gap: 64px;
  align-items: center;
}

.plant-list-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plant-list-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.plant-list-lead {
  margin: 0;
  max-width: 520px;
  font-size: 20px;
  line-height: 30px;
}

.plant-list-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.plant-list-soon {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plant-list-soon .soon-label {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-theme-mid-gray);
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  aspect-ratio: 1 / 1;
  flex: 0 0 48px;
  border-radius: 999px;
  border: 1px solid var(--color-theme-borders);
  background: var(--color-theme-contrast-background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.step-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.step-body p {
  margin: 4px 0 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.step.is-muted .step-number {
  border-color: transparent;
  background: var(--color-theme-neutral-100);
  color: var(--color-theme-mid-gray);
}

.step.is-muted .step-body h3,
.step.is-muted .step-body p {
  color: var(--color-theme-mid-gray);
}

.plant-list-art {
  width: 592px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  --plant-list-progress-secondary: clamp(0, calc((var(--plant-list-progress) - 0.12) * 1.14), 1);
}

[data-asset-group="asset-plant-list"] {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}

[data-asset-group="asset-plant-list"] .layer-background {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  z-index: 1;
}

[data-asset-group="asset-plant-list"] .layer-background-2 {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  z-index: 2;
}

[data-asset-group="asset-plant-list"] .layer-mockup {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  z-index: 3;
}

.plant-list-art .layer-background {
  animation: none;
  opacity: calc(0.2 + (var(--plant-list-progress) * 0.8));
  transform-origin: 50% 100%;
  transform: translateY(calc(18px * (1 - var(--plant-list-progress)))) scale(calc(0.56 + (var(--plant-list-progress) * 0.44)));
}

.plant-list-art .layer-background-2 {
  animation: none;
  opacity: calc(0.2 + (var(--plant-list-progress-secondary) * 0.8));
  transform-origin: 50% 100%;
  transform: translateY(calc(22px * (1 - var(--plant-list-progress-secondary)))) scale(calc(0.52 + (var(--plant-list-progress-secondary) * 0.48)));
}

.plant-list-blur {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  z-index: 2;
  opacity: 0.6;
  background: var(--color-theme-tr-background-80);
  filter: blur(36px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
}

.asset-stack.is-visible .plant-list-blur {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 200ms;
}

.asset-stack.is-visible[data-asset-group="asset-plant-list"] .layer-background {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 0ms;
}

.asset-stack.is-visible[data-asset-group="asset-plant-list"] .layer-background-2 {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 160ms;
}

.asset-stack.is-visible[data-asset-group="asset-plant-list"] .layer-mockup {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 320ms;
}

.tools-section {
  padding: 96px 0;
}

.gray-bottom {
  background: linear-gradient(180deg, var(--color-theme-contrast-background) 0%, var(--color-theme-base-bg) 100%);
}

.gray-top {
  background: linear-gradient(180deg, var(--color-theme-base-bg) 0%, var(--color-theme-contrast-background) 100%);
}

.tools-wrap {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tools-header {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.tools-header h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.tools-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 32px 0;
}

.tools-block.is-reverse {
  flex-direction: row;
}

.tools-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
}

.tools-icon-pill {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--color-theme-contrast-background);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tools-icon-pill i {
  font-size: 28px;
  color: var(--color-theme-primary-500);
}

.tools-text h3 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
}

.tools-lead {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.tools-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tools-tags span {
  background: var(--color-theme-tr-foreground-4);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-theme-mid-gray);
  font-weight: 500;
}

.tools-footnote {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-theme-mid-gray);
}

.tools-art {
  width: 592px;
  height: 633px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

[data-asset-group="asset-schedule"] .layer-background {
  object-fit: contain;
}

[data-asset-group="asset-schedule"] .layer-background-2 {
  object-fit: contain;
  z-index: 2;
}

[data-asset-group="asset-schedule"] .layer-mockup {
  object-fit: contain;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 3;
}

[data-asset-group="asset-exchange"] .layer-background,
[data-asset-group="asset-exchange"] .layer-final {
  object-fit: contain;
}

[data-asset-group="asset-exchange"] .layer-mockup-left,
[data-asset-group="asset-exchange"] .layer-mockup-right {
  object-fit: contain;
  width: 100%;
  height: 100%;
  inset: 0;
}

[data-asset-group="asset-exchange"] .layer-mockup-left {
  animation-delay: 0ms;
}

[data-asset-group="asset-exchange"] .layer-mockup-right {
  animation-delay: 120ms;
}

[data-asset-group="asset-exchange"] .layer-final {
  z-index: 4;
  animation-delay: 320ms;
}

.asset-stack.is-visible[data-asset-group="asset-schedule"] .layer-background {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 140ms;
}

.asset-stack.is-visible[data-asset-group="asset-schedule"] .layer-background-2 {
  animation: scheduleSweep 1200ms ease-out forwards;
  animation-delay: 220ms;
}

.asset-stack.is-visible[data-asset-group="asset-schedule"] .layer-mockup {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 0ms;
}

.asset-stack.is-visible[data-asset-group="asset-exchange"] .layer-background {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 160ms;
}

.asset-stack.is-visible[data-asset-group="asset-exchange"] .layer-mockup-left {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 0ms;
}

.asset-stack.is-visible[data-asset-group="asset-exchange"] .layer-mockup-right {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 120ms;
}

.asset-stack.is-visible[data-asset-group="asset-exchange"] .layer-final {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 320ms;
}

/* === Video Promo Section === */
.video-promo-section {
  padding: 96px 0;
  background: var(--color-theme-base-bg);
}

.video-promo-card {
  border-radius: 24px;
  background: var(--color-theme-contrast-background);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.video-promo-header {
  padding: 28px 32px 24px;
  text-align: center;
}

.video-promo-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-theme-mid-gray);
  margin: 0 0 8px;
}

.video-promo-headline {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.video-promo-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #fff;
  padding: 8px;
  border-radius: 24px;
}

.video-promo-overlay {
  position: absolute;
  inset: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

.video-promo-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-promo-play {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.28)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
  transition: transform 200ms ease;
}

.video-promo-overlay:hover .video-promo-play,
.video-promo-overlay:focus-visible .video-promo-play {
  transform: scale(1.08);
}

.video-promo-iframe {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 0;
  display: none;
  border-radius: 16px;
}

.video-promo-iframe.is-active {
  display: block;
}

.video-promo-placeholder {
  background-image: url('./assets/video-placeholder.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video-promo-play-corner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Hover gradient overlay — radial from top-right corner */
.video-promo-play-corner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at top right,
      color-mix(in srgb, var(--color-theme-primary-500) 40%, transparent) 30%,
      color-mix(in srgb, var(--color-theme-contrast-background) 0%, transparent) 70%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.video-promo-play-corner:hover::before,
.video-promo-play-corner:focus-visible::before {
  opacity: 1;
}

.video-promo-play-corner .video-promo-play svg {
  width: 100px;
  height: 100px;
}

.video-promo-play-corner:hover .video-promo-play,
.video-promo-play-corner:focus-visible .video-promo-play {
  transform: scale(1.08);
}

.video-promo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
}

.video-promo-footer-label {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  color: var(--color-theme-base-foreground);
}

.video-promo-footer-link {
  font-size: 18px;
  color: var(--color-theme-mid-gray);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.video-promo-footer-link:hover {
  color: var(--color-theme-base-foreground);
}

.video-promo-share-btn {
  margin: 0;
}

.photo-collage-section {
  padding: 96px 0;
  background: var(--color-theme-contrast-background);
}

.photo-collage-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}

.photo-collage-quote {
  margin: 36px auto 0;
  padding: 0 16px 72px;
  max-width: min(var(--content-max-width), 100%);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 72px;
  color: color-mix(in srgb, var(--color-theme-base-foreground) 24%, transparent);
}

.photo-collage-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.photo-card {
  grid-column: span 1;
  min-width: 0;
  height: 443px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-theme-tr-foreground-4);
  will-change: transform;
}

.photo-card.is-featured {
  grid-column: span 3;
}

.photo-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateX(0);
}

.photo-card-media.is-entering {
  animation: collageFadeIn 3000ms cubic-bezier(0.2, 0, 0, 1) forwards;
}

.photo-card-media.is-leaving {
  animation: collageFadeOut 3000ms cubic-bezier(0.2, 0, 0, 1) forwards;
}

.social-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@keyframes collageFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes collageFadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.social-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 20% 20%, var(--color-theme-tr-foreground-4) 0, transparent 55%);
  pointer-events: none;
}

.social-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.social-header {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.social-header h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.social-lead {
  margin: 0;
  max-width: 780px;
  font-size: 20px;
  line-height: 30px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.social-card-head {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.social-icon i {
  font-size: 28px;
}

.social-icon.is-primary {
  background: var(--color-theme-primary-100);
  color: var(--color-theme-primary-500);
}

.social-icon.is-secondary {
  background: var(--color-theme-secondary-100);
  color: var(--color-theme-secondary-500);
}

.social-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.6;
}

.social-asset {
  --social-asset-max-width: 592px;
  --social-asset-ratio: 592 / 633;
  width: min(100%, var(--social-asset-max-width));
  height: auto;
  aspect-ratio: var(--social-asset-ratio);
  border-radius: 64px;
  overflow: hidden;
  position: relative;
}

.social-asset .asset-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

[data-asset-group="asset-social-article"],
[data-asset-group="asset-social-post"] {
  width: 100%;
  height: 100%;
}

[data-asset-group="asset-social-article"] .layer-background,
[data-asset-group="asset-social-post"] .layer-background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

[data-asset-group="asset-social-article"] .layer-mockup,
[data-asset-group="asset-social-post"] .layer-mockup {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

.article-asset {
  background: var(--color-theme-primary-100);
}

.post-asset {
  background: var(--color-theme-secondary-100);
}

.social-desc {
  margin: 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
}

.solid-btn {
  height: 44px;
  border-radius: 8px;
  border: 0;
  padding: 0 18px;
  background: var(--color-theme-base-foreground);
  color: var(--color-theme-contrast-background);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.asset-stack.is-visible[data-asset-group="asset-social-article"] .layer-background,
.asset-stack.is-visible[data-asset-group="asset-social-post"] .layer-background {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 120ms;
}

.asset-stack.is-visible[data-asset-group="asset-social-article"] .layer-mockup,
.asset-stack.is-visible[data-asset-group="asset-social-post"] .layer-mockup {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 0ms;
}

.gamification-section {
  padding: 96px 0;
  background: var(--color-theme-base-bg);
}

.gamification-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 662px;
  gap: 56px;
  align-items: center;
  padding: 0 16px;
}

.gamification-text {
  display: grid;
  gap: 24px;
}

.gamification-text h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
}

.gamification-lead {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.gamification-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 4px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.gamification-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
}

.gamification-list li i {
  font-size: 18px;
  line-height: 1;
  color: var(--color-theme-contrast-foreground);
  align-self: center;
}

.gamification-footnote {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-theme-mid-gray);
}

.gamification-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.gamification-stack {
  width: min(100%, 662px);
  height: auto;
  aspect-ratio: 662 / 767;
}

[data-asset-group="asset-gamification"] {
  width: 100%;
  height: 100%;
}

[data-asset-group="asset-gamification"] .layer-background,
[data-asset-group="asset-gamification"] .layer-gamification-01,
[data-asset-group="asset-gamification"] .layer-gamification-02 {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

[data-asset-group="asset-gamification"] .layer-background {
  z-index: 1;
}

[data-asset-group="asset-gamification"] .layer-gamification-01 {
  z-index: 2;
}

[data-asset-group="asset-gamification"] .layer-gamification-02 {
  z-index: 3;
}

.asset-stack.is-visible[data-asset-group="asset-gamification"] .layer-background {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 180ms;
}

.asset-stack.is-visible[data-asset-group="asset-gamification"] .layer-gamification-01 {
  animation:
    layerFadeInSoft 900ms ease-out forwards,
    gamificationFloat 5s ease-in-out 1100ms infinite;
  animation-delay: 0ms, 1100ms;
}

.asset-stack.is-visible[data-asset-group="asset-gamification"] .layer-gamification-02 {
  animation:
    layerFadeInSoft 900ms ease-out forwards,
    gamificationFloat 5s ease-in-out 1300ms infinite alternate-reverse;
  animation-delay: 120ms, 1300ms;
}

@keyframes gamificationFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-section {
  padding: 96px 0;
  background: var(--color-theme-base-bg);
}

.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-copy h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.about-lead {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.about-body {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.about-team-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.about-photo {
  position: relative;
  aspect-ratio: 584 / 466;
  border-radius: 32px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.about-photo-logo img {
  width: 80px;
  height: auto;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 48px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1.5px solid var(--color-theme-base-bg);
  overflow: hidden;
  background: var(--color-theme-tr-foreground-4);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar.is-icon i {
  font-size: 24px;
  color: var(--color-theme-base-foreground);
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.team-name-row {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.team-name-row strong {
  font-size: 16px;
  line-height: 24px;
}

.team-role {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--color-theme-tr-foreground-4);
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.team-handle {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-theme-base-foreground);
}

.team-card.is-placeholder .team-handle {
  color: var(--color-theme-mid-gray);
}

.team-recruit {
  grid-column: 2 / span 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.25px solid var(--color-theme-borders);
  border-radius: 16px;
  background: transparent;
}

.team-recruit-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--color-theme-base-foreground);
}

.team-recruit p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.ghost-btn {
  margin-left: auto;
  border: 0;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--color-theme-contrast-background);
  box-shadow: var(--shadow-card);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-theme-base-foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 160ms ease;
}

.ghost-btn:hover {
  opacity: 0.8;
}

.about-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
}

.about-footer-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.support-avatars {
  display: flex;
  align-items: center;
  padding-right: 24px;
}

.support-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--color-theme-contrast-background);
  background: var(--color-theme-base-foreground);
  color: var(--color-theme-contrast-background);
  display: grid;
  place-items: center;
  margin-right: -24px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
}

.support-avatar.is-count {
  color: var(--color-theme-contrast-background);
}

.support-avatar:nth-child(1) {
  background: var(--color-theme-neutral-300);
}

.support-avatar:nth-child(2) {
  background: var(--color-theme-neutral-400);
}

.support-avatar:nth-child(3) {
  background: var(--color-theme-neutral-500);
}

.support-avatar:nth-child(4) {
  background: var(--color-theme-neutral-600);
}

.support-avatar:nth-child(5) {
  background: var(--color-theme-neutral-700);
}

.support-avatar:nth-child(6) {
  background: var(--color-theme-neutral-800);
}

.support-avatar:nth-child(7) {
  background: var(--color-theme-neutral-900);
}

.about-support-copy {
  margin: 0;
  max-width: 780px;
  font-size: 20px;
  line-height: 30px;
}

.about-support-strong {
  margin: 0;
  max-width: 780px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.about-footer-logos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: var(--color-static-white);
  align-items: center;
  justify-content: center;
}

.about-footer-logos .logo-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-footer-logos .logo-tile img {
  width: auto;
  height: 48px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.future-section {
  padding: 96px 0;
  background: var(--color-theme-base-bg);
}

.future-wrap {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.future-header {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.future-header h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.future-card {
  border: 1.25px solid var(--color-theme-borders);
  border-radius: 16px;
  padding: 32px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-theme-base-bg);
}

.future-card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.future-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--color-theme-base-foreground);
}

.future-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.future-desc {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-theme-mid-gray);
}



.future-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 4px 4px 4px 32px;
  border: 1px solid var(--color-theme-borders);
  border-radius: 16px;
}

.future-footer-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.future-footer-left strong {
  font-size: 16px;
  line-height: 24px;
}

.future-footer-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.future-footer-copy {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.monetization-section {
  background: var(--color-theme-base-bg);
  padding: 0 0 120px;
}

.monetization-hero {
  position: relative;
  height: 825px;
  overflow: hidden;
}

.monetization-photo {
  position: absolute;
  inset: -140px 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  will-change: transform;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.monetization-photo img {
  width: min(1920px, 100%);
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transform-origin: center;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.monetization-shell {
  margin-top: -232px;
}

.monetization-card {
  background: var(--color-theme-base-bg);
  border-radius: 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.monetization-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 416px;
  gap: 32px;
  align-items: end;
}

.monetization-benefits {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.monetization-benefits h2 {
  margin: 0;
  font-size: 30px;
  line-height: 48px;
}

.monetization-benefits h2.title-size-40 {
  font-size: 40px;
}

.monetization-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.monetization-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
}

.monetization-list i {
  font-size: 18px;
  color: var(--color-theme-base-foreground);
}

.monetization-disclaimer {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.monetization-subscription {
  background: var(--color-theme-tr-background-50);
  backdrop-filter: blur(6px);
  border-radius: 40px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subscription-card {
  background: var(--color-theme-contrast-background);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subscription-eyebrow {
  font-size: 16px;
  line-height: 24px;
  display: block;
}

.hobb-plus-logo {
  display: inline-flex;
  align-items: center;
  padding-top: 12px;
}

.hobb-plus-logo .logo-hobb-plus {
  height: 40px;
  width: auto;
  display: block;
}

.logo-tile .logo-hobb-plus-light,
.hobb-plus-logo .logo-hobb-plus-light {
  display: none;
}

[data-theme="dark"] .logo-tile .logo-hobb-plus-dark,
[data-theme="dark"] .hobb-plus-logo .logo-hobb-plus-dark {
  display: none;
}

[data-theme="dark"] .logo-tile .logo-hobb-plus-light,
[data-theme="dark"] .hobb-plus-logo .logo-hobb-plus-light {
  display: block;
}

.subscription-copy {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.subscription-benefits {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-label {
  font-size: 16px;
  line-height: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
}

.benefit-item i {
  font-size: 20px;
  color: var(--color-theme-primary-500);
}

.benefit-note {
  padding: 8px 16px;
  border-radius: 16px;
  background: var(--color-theme-base-bg);
  margin-top: 4px;
  text-align: center;
}

.benefit-note-copy {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-theme-base-foreground);
  text-align: inherit;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .subscription-benefits .benefit-item i {
    background: var(--hobb-vertical);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.monetization-future {
  border: 1.25px solid var(--color-theme-borders);
  border-radius: 12px;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.future-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  line-height: 20px;
}

.future-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.future-item i {
  font-size: 16px;
  color: var(--color-theme-base-foreground);
}

.future-divider {
  width: 1px;
  height: 55px;
  background: var(--color-theme-borders);
}

.future-note {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
}

.download-cta-section {
  padding: 96px 0;
}

.download-cta-section.download-cta-oval-bg {
  background: radial-gradient(ellipse 150% 100% at 50% 0%, var(--color-theme-base-bg) 30%, var(--color-theme-accent-bg) 80%, var(--color-theme-primary-200) 100%);
}

.download-cta-shell {
  padding: 0 16px;
}

.download-cta-card {
  background: var(--color-theme-contrast-background);
  border-radius: 48px;
  padding: 80px 24px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.download-cta-label {
  margin: 0;
}

.download-cta-heading {
  width: min(100%, 768px);
  padding: 0 16px;
}

.download-cta-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  text-align: center;
}

.download-cta-art {
  width: min(100%, 600px);
  aspect-ratio: 600 / 453;
  position: relative;
}

.download-cta-art .asset-stack {
  overflow: visible;
}

.asset-stack[data-asset-group="asset-download-last"] .layer-background {
  opacity: 0;
  transform: translateY(14px) scale(0.9);
}

.asset-stack[data-asset-group="asset-download-last"] .layer-mockup {
  opacity: 0;
  transform: translateY(20px) scale(0.94);
}

.asset-stack.is-visible[data-asset-group="asset-download-last"] .layer-background {
  animation: downloadBloom 920ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 80ms;
}

.asset-stack.is-visible[data-asset-group="asset-download-last"] .layer-mockup {
  animation: layerFadeInSoft 900ms ease-out forwards;
  animation-delay: 0ms;
}

.asset-stack.is-visible[data-asset-group="asset-download-last"] {
  animation: heroPhonesFloat 5s ease-in-out 1200ms infinite;
}

.download-cta-subtitle {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
}

.download-store-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  position: relative;
  overflow: visible;
}

.store-badge img {
  display: block;
  height: 48px;
  max-height: 48px;
  width: auto;
}

.download-store-row.is-visible .store-badge {
  animation: badgeReveal 620ms ease-out forwards;
}

.download-store-row.is-visible .store-badge:nth-child(1) {
  animation-delay: 120ms;
}

.download-store-row.is-visible .store-badge:nth-child(2) {
  animation-delay: 250ms;
}

/* === Store Button Plant Burst Hover === */

.store-plant-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-plant-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.store-plant {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: calc(var(--size, 26px) * -0.5);
  margin-left: calc(var(--size, 26px) * -0.5);
  font-size: var(--size, 26px);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate(var(--tx, 0), var(--ty, 0)) scale(0) rotate(var(--rot, 0deg));
  filter: saturate(1.15);
  z-index: 0;
  will-change: transform, opacity;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.store-row a img,
.store-badge img,
.site-footer-store a img {
  position: relative;
  z-index: 1;
}

.store-plant-wrapper.store-plant-active .store-plant,
.video-promo-play-corner.play-plant-active .store-plant {
  animation:
    storePlantPop 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0s) both,
    storePlantFloat 3.4s ease-in-out calc(var(--delay, 0s) + 0.45s) infinite;
}

.download-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.download-cta-strong {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.download-cta-disclaimer {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--color-theme-base-foreground);
  opacity: 0.8;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.plant-burst-particle {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform, opacity;
  animation: plantBurst 900ms ease-out forwards;
}

.plant-burst-label {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  padding: 8px 12px;
  border-radius: 9999px;
  font: 700 20px/1.2 "Space Grotesk", sans-serif;
  color: var(--color-static-white);
  background: linear-gradient(180deg, rgba(151, 95, 243, 1) 0%, rgba(45, 179, 90, 1) 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  animation: plantLabel 1100ms ease-out forwards;
  white-space: nowrap;
}

.site-footer {
  background: var(--color-surface-dark-950);
  color: var(--color-static-white-50);
}

.site-footer-shell {
  width: min(var(--content-max-width), calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px 16px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 48px;
}

.site-footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding-bottom: 40px;
}

.site-footer-brand .brand-logo {
  width: 60px;
  height: 60px;
}

.site-footer-brand .brand-label {
  color: var(--color-static-white);
}

.site-footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h4 {
  margin: 0;
  padding: 24px 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7c7a85;
}

.site-footer p,
.site-footer li,
.site-footer a {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-static-white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-theme-primary-400);
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-company strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-purpose {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: var(--color-static-white-50);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.footer-contact-link::before {
  content: "";
  width: 2px;
  height: 20px;
  border-radius: 2px;
  background: var(--color-theme-primary-400);
}

.footer-contact-link.is-support::before {
  background: var(--color-theme-secondary-500);
}

.footer-contact-link.is-general::before {
  background: var(--color-static-white-50);
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--color-static-white);
  color: var(--color-surface-dark-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-footer-social a:hover {
  transform: translateY(-2px);
  background: var(--color-theme-primary-400);
  color: var(--color-static-white);
}

.site-footer-social i {
  font-size: 18px;
}

.site-footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.site-footer-note {
  font-size: 14px;
  line-height: 24px;
}

.site-footer-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 12px;
  border-radius: 9999px;
  background: linear-gradient(98.58deg, #c8b2ff 1.32%, #ad87fe 64.01%);
}

.site-footer-location span,
.site-footer-location i {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-static-white);
}

.site-footer-location i {
  font-size: 16px;
}

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

.site-footer-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-store {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer-store img {
  height: 41px;
  width: auto;
  display: block;
}

.site-footer-store a {
  position: relative;
  overflow: visible;
}

.site-footer-copy {
  background: var(--color-surface-dark-900);
  padding-bottom: 32px;
}

.site-footer-copy-shell {
  width: min(var(--content-max-width), calc(100vw - 32px));
  margin: 0 auto;
  padding: 0 16px;
}

.site-footer-copy-inner {
  border-top: 1px solid color-mix(in srgb, var(--color-static-white) 20%, transparent);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer-copy-text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-static-white);
}

.site-footer-copy-quote {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-static-white);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .nav-shell {
    height: 72px;
    gap: 12px;
    padding: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-label {
    padding-left: 10px;
    font-size: 11px;
    line-height: 1.1;
    max-width: 96px;
  }

  .menu-desktop,
  .nav-cta-desktop {
    display: none;
  }

  .mobile-nav-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-download-mobile {
    height: 40px;
    min-width: 96px;
    font-size: 14px;
    padding: 0 10px;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 72px;
    z-index: 97;
    background: color-mix(in srgb, var(--color-theme-primary-300) 40%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-menu-panel {
    display: block;
    position: relative;
    z-index: 101;
    margin-top: -1px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--color-theme-contrast-background) 94%, transparent);
    backdrop-filter: blur(16px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 220ms ease,
      transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      margin 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      padding 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .mobile-menu-switches {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 8px 10px;
  }

  .mobile-menu-switches .lang-btn {
    margin-left: auto;
  }

  .menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 8px 18px;
  }

  .menu-mobile a {
    font-size: 16px;
    line-height: 1.35;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .mobile-menu-store-row {
    justify-content: center;
    gap: 12px;
    padding: 10px 8px 20px;
    margin: 0;
    width: 100%;
  }

  .mobile-menu-store-row .store-badge img {
    height: 40px;
    max-height: 40px;
  }

  .mobile-menu-social {
    justify-content: center;
    padding: 10px 8px 18px;
    gap: 12px;
    border-top: 1px solid var(--line);
    margin-top: 2px;
  }

  .mobile-menu-plants {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 99;
    height: 0;
    max-height: 88px;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 16px;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    background: transparent;
    opacity: 0;
    transition: height 280ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
  }

  .mobile-menu-plants span {
    display: inline-block;
    line-height: 1;
    margin-top: 16px;
    transform-origin: top center;
    animation: mobilePlantDrop 3.4s ease-in-out infinite;
    opacity: 0.95;
    filter: saturate(1.1);
    --plant-rot: 0deg;
  }

  .mobile-menu-plants span:nth-child(1) {
    font-size: 27px;
    animation-delay: -0.2s;
    --plant-rot: -19deg;
  }

  .mobile-menu-plants span:nth-child(2) {
    font-size: 40px;
    animation-delay: -1.2s;
    --plant-rot: 14deg;
  }

  .mobile-menu-plants span:nth-child(3) {
    font-size: 32px;
    animation-delay: -0.8s;
    --plant-rot: -9deg;
  }

  .mobile-menu-plants span:nth-child(4) {
    font-size: 47px;
    animation-delay: -2.6s;
    --plant-rot: 18deg;
  }

  .mobile-menu-plants span:nth-child(5) {
    font-size: 36px;
    animation-delay: -0.4s;
    --plant-rot: -13deg;
  }

  .mobile-menu-plants span:nth-child(6) {
    font-size: 30px;
    animation-delay: -1.8s;
    --plant-rot: 8deg;
  }

  .mobile-menu-plants span:nth-child(7) {
    font-size: 50px;
    animation-delay: -2.1s;
    --plant-rot: -17deg;
  }

  .mobile-menu-plants span:nth-child(8) {
    font-size: 33px;
    animation-delay: -0.9s;
    --plant-rot: 11deg;
  }

  .mobile-menu-plants span:nth-child(9) {
    font-size: 44px;
    animation-delay: -1.5s;
    --plant-rot: -6deg;
  }

  .mobile-menu-plants span:nth-child(10) {
    font-size: 29px;
    animation-delay: -2.9s;
    --plant-rot: 20deg;
  }

  .mobile-menu-plants span:nth-child(11) {
    font-size: 39px;
    animation-delay: -1.1s;
    --plant-rot: -15deg;
  }

  .mobile-menu-plants span:nth-child(12) {
    font-size: 35px;
    animation-delay: -2.3s;
    --plant-rot: 9deg;
  }

  .mobile-menu-plants span:nth-child(13) {
    font-size: 46px;
    animation-delay: -0.6s;
    --plant-rot: -12deg;
  }

  .mobile-menu-plants span:nth-child(14) {
    font-size: 31px;
    animation-delay: -1.9s;
    --plant-rot: 16deg;
  }

  .mobile-menu-plants span:nth-child(15) {
    font-size: 42px;
    animation-delay: -2.7s;
    --plant-rot: -8deg;
  }

  .mobile-menu-plants span:nth-child(16) {
    font-size: 34px;
    animation-delay: -0.3s;
    --plant-rot: 13deg;
  }

  .mobile-menu-plants span:nth-child(17) {
    font-size: 48px;
    animation-delay: -1.4s;
    --plant-rot: -20deg;
  }

  .mobile-menu-plants span:nth-child(18) {
    font-size: 37px;
    animation-delay: -2.2s;
    --plant-rot: 10deg;
  }

  .main-nav.is-mobile-menu-open .mobile-menu-plants {
    height: 88px;
    opacity: 0.95;
  }

  .main-nav.is-mobile-menu-open .mobile-menu-panel {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin: 0;
    width: 100%;
    padding: 0 16px;
  }

  .main-nav.is-mobile-menu-open+.mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 12px;
  }

  .hero-copy {
    min-width: 0;
  }

  .store-row a {
    max-width: 100%;
  }

  .store-row img {
    max-width: 100%;
    height: 48px;
    max-height: 48px;
  }

  .store-row,
  .download-store-row {
    flex-wrap: nowrap;
  }

  .store-row a,
  .store-badge {
    min-width: 0;
  }

  .hero-visual {
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .application-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .application-art {
    width: min(100%, 495px);
    margin: 0 auto;
    height: auto;
    aspect-ratio: 495 / 639;
  }

  [data-asset-group="asset-general-zen"] .layer-background {
    width: 100%;
    height: 100%;
  }

  [data-asset-group="asset-general-zen"] .layer-mockup {
    left: 17.2%;
    width: 66.3%;
    height: 100%;
  }

  .application-content {
    min-height: 0;
    gap: 24px;
  }

  .application-cards {
    grid-template-columns: 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .plant-list-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .plant-list-art {
    width: min(100%, 592px);
    margin: 0 auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .tools-block {
    flex-direction: column;
    gap: 32px;
  }

  .tools-block.is-reverse {
    flex-direction: column-reverse;
  }

  .tools-text {
    padding-left: 0;
  }

  .tools-art {
    width: min(100%, 592px);
    height: auto;
    aspect-ratio: 592 / 633;
  }

  .photo-collage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .photo-collage-quote {
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1.1;
    letter-spacing: -1.2px;
    padding-bottom: 64px;
  }

  .photo-card {
    grid-column: span 1;
    min-width: 0;
    height: 280px;
  }

  .photo-card.is-featured {
    grid-column: 1 / -1;
  }

  .photo-card:nth-child(4) {
    grid-column: 1 / -1;
  }

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

  .social-asset {
    width: min(100%, 592px);
    height: auto;
    aspect-ratio: var(--social-asset-ratio);
  }

  .gamification-wrap {
    grid-template-columns: 1fr;
  }

  .gamification-stack {
    width: min(100%, 662px);
  }

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

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

  .team-recruit {
    grid-column: 1 / -1;
  }

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

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

  .monetization-subscription {
    max-width: 560px;
  }

  .monetization-future {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .future-divider {
    width: 100%;
    height: 1px;
  }

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

  .site-footer-head {
    justify-content: flex-start;
  }

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

  .download-cta-title,
  .download-cta-subtitle {
    font-size: 36px;
    line-height: 1.15;
  }

  .download-cta-disclaimer {
    flex-wrap: wrap;
    white-space: normal;
  }

  h1 {
    font-size: clamp(38px, 8vw, 64px);
    line-height: 1.1;
  }

  .lead {
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--content-max-width), calc(100vw - 32px));
  }

  .nav-download-mobile {
    flex: 0 0 auto;
    min-width: 92px;
    padding: 0 8px;
  }

  .hero-grid {
    padding: 0 0 72px;
  }

  .hero-visual {
    order: -1;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    margin-bottom: 24px;
  }

  .asset-stack-phones {
    width: min(430px, 100%);
    height: 100%;
    margin: 0 auto;
  }

  .store-row {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .store-row a {
    width: auto;
    min-width: 0;
  }

  .store-row img {
    width: auto;
    max-width: 100%;
    height: 48px;
    max-height: 48px;
  }

  .application-section {
    padding: 72px 0;
  }

  .video-promo-section {
    padding-bottom: 72px;
  }

  .video-promo-header {
    padding: 20px 20px 16px;
  }

  .video-promo-play-corner .video-promo-play svg {
    width: 60px;
    height: 60px;
  }

  .video-promo-footer {
    gap: 8px 12px;
  }

  .video-promo-share-btn {
    flex-basis: 100%;
    justify-content: center;
  }

  .audience-section {
    padding: 72px 0;
  }

  .plant-list-section {
    padding: 72px 0;
  }

  .tools-section {
    padding: 72px 0;
  }

  .photo-collage-section {
    padding: 72px 0;
  }

  .social-section {
    padding: 72px 0;
  }

  .gamification-section {
    padding: 72px 0;
  }

  .about-section {
    padding: 72px 0;
  }

  .monetization-section {
    padding-bottom: 88px;
  }

  .download-cta-section {
    padding: 72px 0;
  }

  .download-cta-card {
    border-radius: 32px;
    padding: 56px 16px 24px;
    gap: 20px;
  }

  .download-cta-title {
    font-size: 32px;
  }

  .download-cta-subtitle {
    font-size: 30px;
    line-height: 42px;
  }

  .download-store-row {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .store-badge {
    min-width: 0;
  }

  .store-badge img {
    width: auto;
    max-width: 100%;
    height: 48px;
    max-height: 48px;
    object-fit: contain;
  }

  .monetization-hero {
    height: 520px;
  }

  .monetization-shell {
    margin-top: 0;
  }

  .monetization-card {
    padding: 0;
  }

  .monetization-benefits h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .monetization-disclaimer,
  .subscription-copy {
    font-size: 18px;
    line-height: 28px;
  }

  .subscription-card {
    padding: 24px;
  }

  .subscription-benefits {
    padding: 0 24px 20px;
  }

  .application-header {
    padding: 0;
  }

  .application-header h2 {
    font-size: 40px;
  }

  .audience-header h2 {
    font-size: 40px;
  }

  .plant-list-title {
    font-size: 40px;
  }

  .tools-header h2 {
    font-size: 40px;
  }

  .application-lead {
    font-size: 18px;
    line-height: 28px;
  }

  .audience-subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .plant-list-lead {
    font-size: 18px;
    line-height: 28px;
  }

  .tools-lead {
    font-size: 18px;
    line-height: 28px;
  }

  .social-lead,
  .social-desc {
    font-size: 18px;
    line-height: 28px;
  }

  .gamification-lead {
    font-size: 18px;
    line-height: 28px;
  }

  .gamification-visual {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
  }

  .gamification-stack {
    width: min(100%, 662px);
    max-width: 662px;
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .about-lead,
  .about-support-copy,
  .about-support-strong {
    font-size: 18px;
    line-height: 28px;
  }

  .about-footer-logos {
    width: 100%;
  }

  .future-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .future-card {
    min-height: 0;
    padding: 16px;
  }

  .future-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 12px;
  }

  .future-footer-copy {
    text-align: center;
  }

  .future-footer-left {
    justify-content: center;
  }

  .future-footer .ghost-btn {
    width: auto;
  }

  .social-card h3 {
    font-size: 24px;
  }

  .photo-card {
    grid-column: span 1;
    height: 220px;
    border-radius: 24px;
  }

  .photo-collage-quote {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.9px;
    margin-top: 28px;
    padding-bottom: 56px;
  }

  .photo-card.is-featured {
    grid-column: 1 / -1;
  }

  .photo-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .application-main {
    padding: 0;
  }

  .audience-wrap,
  .plant-list-wrap,
  .tools-wrap,
  .social-wrap,
  .gamification-wrap,
  .about-wrap,
  .future-wrap,
  .download-cta-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .card h3 {
    font-size: 36px;
  }

  .application-footer h4 {
    font-size: 24px;
    line-height: 1.15;
  }

  .audience-card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .audience-card-top h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .scroll-separator {
    padding: 8px 16px;
  }

  .separator-center {
    padding: 0 16px;
    gap: 10px;
  }

  .site-footer-shell {
    width: min(var(--content-max-width), calc(100vw - 32px));
    padding: 32px 16px;
  }

  .site-footer-copy-shell {
    width: min(var(--content-max-width), calc(100vw - 32px));
    padding: 0 16px;
  }

  .site-footer-copy-inner {
    gap: 10px;
    padding-top: 24px;
  }

  .site-footer-copy-quote {
    font-size: 18px;
    line-height: 28px;
  }





  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-recruit {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .ghost-btn {
    margin-left: 0;
    width: 100%;
  }

  .team-name-row {
    flex-wrap: wrap;
  }

  .team-role {
    white-space: normal;
  }

  .site-footer-info,
  .site-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
  }

  .site-footer-store {
    flex-wrap: wrap;
  }
}


@keyframes layerFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobilePlantDrop {

  0%,
  100% {
    transform: translateY(10px) rotate(calc(180deg + var(--plant-rot))) scale(0.97);
  }

  50% {
    transform: translateY(2px) rotate(calc(180deg + var(--plant-rot))) scale(1.02);
  }
}

@keyframes layerFadeInSoft {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroPhonesFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes scheduleSweep {
  from {
    opacity: 0;
    transform: translateX(8%) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes wheelMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(2px);
    opacity: 0.45;
  }

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

@keyframes downloadBloom {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes downloadMockupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badgeReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes storePlantPop {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(0deg);
  }

  65% {
    opacity: 0.95;
    transform: translate(calc(var(--tx, 0px) * 1.06), calc(var(--ty, 0px) * 1.06)) scale(1.08) rotate(calc(var(--rot, 0deg) + 8deg));
  }

  100% {
    opacity: 0.92;
    transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(1) rotate(var(--rot, 0deg));
  }
}

@keyframes storePlantFloat {

  0%,
  100% {
    opacity: 0.92;
    transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(0.97) rotate(calc(var(--rot, 0deg) - 2deg));
  }

  50% {
    opacity: 0.95;
    transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(1.03) rotate(calc(var(--rot, 0deg) + 2deg));
  }
}

@keyframes plantBurst {
  0% {
    transform: translate3d(var(--sx), var(--sy), 0) scale(0.8) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate3d(var(--tx), var(--ty), 0) scale(1.25) rotate(var(--rot));
    opacity: 0;
  }
}

@keyframes plantLabel {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.95);
  }

  15% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  85% {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(0.98);
  }
}

@keyframes themeRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }

  72% {
    transform: translate(-50%, -50%) scale(var(--ripple-scale, 1));
    opacity: 0.46;
  }

  100% {
    transform: translate(-50%, -50%) scale(var(--ripple-scale, 1));
    opacity: 0;
  }
}

/* Subpages (non-legal): contact, community, work-with-us */
.subpage-main {
  padding: 72px 0;
  background:
    radial-gradient(1200px 420px at 92% -80px, rgba(99, 169, 132, 0.18), transparent 65%),
    radial-gradient(900px 360px at 8% 30%, rgba(194, 219, 204, 0.22), transparent 68%);
}

.subpage-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.subpage-shell h1 {
  margin: 0;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.subpage-lead {
  max-width: 760px;
  margin: 16px auto 30px;
  text-align: center;
  font-size: clamp(17px, 2.2vw, 20px);
  color: #4c6b5e;
  line-height: 1.55;
}

.subpage-content-card {
  border-radius: 24px;
  border: 1px solid rgba(81, 136, 110, 0.22);
  background:
    linear-gradient(180deg, rgba(248, 252, 249, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 20px 55px rgba(8, 37, 22, 0.08);
  padding: clamp(22px, 2.6vw, 34px);
  color: #1f3b30;
}

.subpage-content-card h2,
.subpage-content-card h3,
.subpage-content-card h4 {
  font-family: "Space Grotesk", sans-serif;
  margin: 24px 0 10px;
  line-height: 1.22;
  color: #153328;
}

.subpage-content-card h2 {
  margin-top: 0;
  font-size: clamp(24px, 2.5vw, 32px);
}

.subpage-content-card h3 {
  font-size: clamp(20px, 2vw, 25px);
}

.subpage-content-card h4 {
  font-size: clamp(17px, 1.7vw, 21px);
}

.subpage-content-card p,
.subpage-content-card li {
  font-size: 16px;
  line-height: 1.72;
}

.subpage-content-card p {
  margin: 0 0 14px;
}

.subpage-content-card ul,
.subpage-content-card ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.subpage-content-card a {
  color: #1c6b4b;
  text-underline-offset: 3px;
}

.subpage-content-card small {
  display: block;
  margin-top: 14px;
  color: #597466;
  font-size: 13px;
}

.contact-page .header-page.subpage {
  background: var(--color-theme-base-bg);
}

.contact-main {
  padding-bottom: 96px;
}

.subpage-breadcrumbs-wrap {
  width: 100%;
  background-color: var(--color-theme-primary-200);
}

.subpage-breadcrumbs-wrap .shell {
  padding-top: 16px;
  padding-bottom: 16px;
}

.subpage-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  line-height: 24px;
}

.subpage-breadcrumbs-home {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--color-theme-contrast-background);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.subpage-breadcrumbs>span {
  padding: 2px 8px;
  border-radius: 4px;
}

.subpage-breadcrumbs>span[aria-hidden="true"] {
  padding-inline: 4px;
}

.subpage-breadcrumbs>span[aria-current="page"] {
  background: var(--color-theme-contrast-background);
}

.contact-header {
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 32px;
}

.contact-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: end;
}

.contact-header-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-header-general {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: end;
  text-align: left;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.contact-header h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.contact-header p {
  margin: 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 30px;
}

.contact-header p+p {
  margin-top: 2px;
}

.contact-mail-general {
  color: var(--color-theme-secondary-500);
  overflow-wrap: normal;
  word-break: normal;
}

.contact-content {
  padding: 48px 16px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.contact-grid>div {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-theme-contrast-background);
  border-radius: 16px;
  padding: 32px;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 26px;
}

.contact-card-icon-app {
  background: var(--color-theme-primary-100);
  color: var(--color-theme-primary-600);
}

.contact-card-icon-business {
  background: var(--color-theme-secondary-100);
  color: var(--color-theme-secondary-500);
}

.contact-card h2 {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
}

.contact-card p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.contact-mail-label {
  margin-top: 0;
  color: var(--color-theme-mid-gray);
  font-size: 16px;
  line-height: 24px;
}

.contact-mail-purpose {
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #597466;
}

.contact-mail {
  display: inline-block;
  margin-top: 0;
  padding-left: 8px;
  border-left: 2px solid;
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-mail-app {
  border-left-color: var(--color-theme-primary-600);
}

.contact-mail-business {
  border-left-color: var(--color-theme-secondary-500);
}

.contact-list-block {
  padding: 16px;
}

.contact-list-block h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 24px;
}

.contact-list-block ul,
.contact-list-block ol {
  margin: 0;
  padding-left: 24px;
}

.contact-list-block li {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.contact-disclaimer {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 16px;
  margin-top: 36px;
  text-align: center;
}

.contact-disclaimer h4 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1;
}

.contact-disclaimer p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.contact-disclaimer p+p {
  margin-top: 2px;
  color: var(--color-theme-mid-gray);
}

.contact-about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding: 48px 16px 0;
}

.contact-about-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-location-pill {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 2px 12px;
  border-radius: 9999px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: linear-gradient(98.58deg, rgba(200, 178, 255, 1) 1.32%, rgba(173, 135, 254, 1) 64.01%);
}

.contact-location-pill i {
  font-size: 16px;
}

.contact-about-copy h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.1;
}

.contact-about-copy p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.contact-about-copy p+p {
  margin-top: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.contact-about-media {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 536 / 737;
}

.contact-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1080px) {
  .contact-card h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .contact-mail {
    font-size: 28px;
  }

  .contact-disclaimer h4 {
    font-size: 20px;
  }

  .contact-about-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .contact-header-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-header-general {
    justify-self: stretch;
    width: 100%;
  }

  .contact-header p {
    font-size: 18px;
    line-height: 28px;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-about {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .contact-card p {
    font-size: 18px;
    line-height: 28px;
  }

  .contact-mail {
    font-size: 24px;
  }

  .contact-about-copy h2 {
    font-size: 38px;
  }
}

.community-page .header-page.subpage {
  background: var(--color-theme-base-bg);
}

.community-article-main {
  padding-bottom: 96px;
}

.community-header {
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 32px;
}

.community-header-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 960px;
}

.community-header h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.community-header p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.community-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 0 0;
}

.community-featured-media {
  margin: 0 auto;
  width: min(1280px, calc(100vw - 32px));
  max-width: 1280px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1.2px 0.2px 0 rgba(0, 0, 0, 0.16);
  background: var(--color-theme-contrast-background);
}

.community-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-article {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.community-article-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.community-article h2,
.community-article h3,
.community-article h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
}

.community-article h2 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
}

.community-article h3 {
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.2;
}

.community-article h4 {
  font-size: 20px;
  line-height: 1.5;
}

.community-article p,
.community-article li {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.community-intro {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.community-article ul,
.community-article ol {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 4px;
}

.community-article strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.community-icon-list {
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

.community-icon-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}

.community-icon-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-theme-primary-600);
}

.community-term-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 10px;
}

.community-term-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}

.community-term-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-theme-secondary-500);
}

.community-article-mail {
  color: var(--color-theme-primary-600);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
}

.community-article-mail:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .community-header p {
    font-size: 18px;
    line-height: 28px;
  }

  .community-content {
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .community-featured-media {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .community-header h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .community-intro {
    font-size: 18px;
    line-height: 28px;
  }

  .community-content {
    gap: 40px;
  }

  .community-article {
    gap: 32px;
  }

  .community-featured-media {
    height: 220px;
  }
}

/* Launch Box Styles */
.launch-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--color-theme-base-foreground);
  color: var(--color-theme-contrast-background);
  border-radius: 12px;
  font-weight: 700;
  font-family: Space Grotesk, sans-serif;
  box-shadow: var(--shadow);
}

.launch-box-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.launch-text {
  font-size: 16px;
  line-height: 1.2;
}

.launch-icons {
  display: flex;
  gap: 8px;
  font-size: 24px;
}

.launch-icons i {
  display: block;
}

.hidden-content {
  display: none !important;
}

/* Specific overrides for sections */
.hero-copy .launch-box {
  margin-top: 28px;
  border: 1px solid var(--color-theme-borders);
  background: transparent;
  color: var(--color-theme-tr-foreground-50);
  box-shadow: none;
}

.hero-copy .launch-box-content {
  color: var(--color-theme-tr-foreground-50);
}

.site-footer-store .launch-box {
  width: 100%;
  justify-content: center;
}

.download-cta-card .launch-box {
  margin-top: 24px;
  background: var(--color-static-white);
  color: var(--color-static-black);
}