:root {
  color-scheme: light dark;
  --paper: #fff4e8;
  --paper-deep: #ffe4c5;
  --ink: #211b18;
  --muted: #7e7067;
  --faint: rgba(38, 29, 24, 0.1);
  --orange: #ff8a1f;
  --orange-deep: #ff4f10;
  --orange-soft: #ffd4a7;
  --cream: #fffaf3;
  --stage: #19110f;
  --stage-soft: #34231d;
  --shadow: rgba(95, 48, 17, 0.22);
  --max-width: 1152px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  --button-ease: cubic-bezier(0.2, 0.8, 0.18, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --paper: #150e0b;
    --paper-deep: #251711;
    --ink: #fff7ed;
    --muted: #d6bfb0;
    --faint: rgba(255, 216, 188, 0.14);
    --orange: #ff8a1f;
    --orange-deep: #ff6a18;
    --orange-soft: #ffb15f;
    --cream: #fff8ef;
    --stage: #110b09;
    --stage-soft: #2a1811;
    --shadow: rgba(0, 0, 0, 0.46);
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--paper) 0%, #fff8f0 42%, #ffffff 100%);
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Inter",
    "Segoe UI",
    system-ui,
    "Helvetica Neue",
    Arial,
    sans-serif;
  text-rendering: geometricPrecision;
}

@media (prefers-color-scheme: dark) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 138, 31, 0.2), transparent 34rem),
      linear-gradient(180deg, var(--paper) 0%, #1d120e 48%, #0f0a08 100%);
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 138, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 31, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 62%);
  content: "";
}

@media (prefers-color-scheme: dark) {
  body::before {
    background-image:
      linear-gradient(rgba(255, 138, 31, 0.16) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 138, 31, 0.1) 1px, transparent 1px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 68%);
  }
}

::selection {
  background: rgba(255, 138, 31, 0.24);
}

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

img,
svg {
  display: block;
}

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

a:focus-visible {
  outline: 3px solid rgba(255, 138, 31, 0.42);
  outline-offset: 5px;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

@keyframes reveal-mark {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .feature.reveal {
  transform: translateY(14px) scale(0.985);
}

.motion-ready .feature.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.motion-ready .hero mark::after {
  transform-origin: left center;
  animation: reveal-mark 900ms var(--ease-out) 240ms both;
}

@keyframes orbit-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: var(--float-x, 10px) var(--float-y, -10px);
  }
}

@keyframes orbit-preview-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.012);
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px max(24px, calc((100vw - var(--max-width)) / 2)) 18px;
  background: rgba(255, 244, 232, 0.82);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 18px;
  box-shadow: 0 1px 0 var(--faint);
  background: rgba(255, 248, 240, 0.92);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    color 180ms ease,
    transform 220ms var(--ease-out);
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 95, 18, 0.28);
  transition:
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-spring);
}

.brand-link:hover .brand-mark {
  box-shadow: 0 16px 30px rgba(255, 95, 18, 0.34);
  transform: rotate(-4deg) scale(1.04);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms var(--ease-out);
}

.brand-link:hover .brand-mark img {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(33, 27, 24, 0.58);
  font-size: 16px;
  font-weight: 800;
}

.header-nav a:not(.store-link) {
  position: relative;
}

.header-nav a:not(.store-link)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.62) translateY(2px);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.header-nav a:not(.store-link):hover::after {
  opacity: 0.42;
  transform: scaleX(1) translateY(0);
}

.header-nav a:not(.store-link):hover {
  color: var(--ink);
}

.store-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 10px;
  overflow: hidden;
  border-radius: 17px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 340ms var(--button-ease),
    box-shadow 360ms var(--button-ease),
    background 360ms var(--button-ease);
}

.store-link::before {
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.28) 50%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-26%);
  transition:
    opacity 180ms ease,
    transform 520ms var(--ease-out);
}

.store-link svg {
  position: relative;
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 420ms var(--button-ease);
}

.store-link span {
  position: relative;
}

.store-icon {
  display: grid;
  width: 24px;
  place-items: center;
  overflow: visible;
  transition:
    opacity 280ms ease,
    transform 460ms var(--button-ease);
}

.store-label {
  transition: transform 460ms var(--button-ease);
}

.store-arrow {
  position: absolute;
  top: 50%;
  right: 26px;
  display: grid;
  width: 24px;
  place-items: center;
  overflow: visible;
  font-size: 22px;
  font-weight: 800;
  opacity: 0;
  transform: translate(10px, -50%);
  transition:
    opacity 300ms ease,
    transform 460ms var(--button-ease);
}

.store-link-primary {
  display: inline-flex;
  gap: 10px;
  position: relative;
}

.store-link:hover {
  transform: translateY(-1px);
}

.store-link:hover::before {
  opacity: 1;
  transform: translateX(26%);
}

.store-link:not(.store-link-primary):hover svg {
  transform: translateY(-1px) scale(1.06);
}

.store-link:active {
  transform: translateY(0) scale(0.985);
}

.store-link-primary {
  width: 178px;
  min-height: 60px;
  padding: 0 14px;
  border-radius: 14px;
  background: #241f1c;
  color: #fffaf4;
  font-size: 18px;
  font-weight: 800;
  box-shadow:
    0 18px 34px rgba(33, 27, 24, 0.2),
    0 8px 18px rgba(95, 48, 17, 0.16);
}

.store-link-primary::before {
  display: none;
}

.store-link-primary:hover {
  background: #241f1c;
  box-shadow:
    0 20px 36px rgba(33, 27, 24, 0.23),
    0 10px 20px rgba(95, 48, 17, 0.18);
}

.store-link-primary:hover .store-icon {
  opacity: 0;
  transform: translateX(-18px) scale(0.9);
}

.store-link-primary:hover .store-label {
  transform: translateX(-34px);
}

.store-link-primary:hover .store-arrow {
  opacity: 1;
  transform: translate(0, -50%);
}

.store-link-quiet {
  min-height: 54px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(33, 27, 24, 0.72);
}

.hero {
  padding-top: 148px;
  padding-bottom: 64px;
}

.hero-copy {
  max-width: 1010px;
  margin: 0 auto 42px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 104px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.headline-mobile {
  display: none;
}

.hero mark {
  position: relative;
  isolation: isolate;
  display: inline-block;
  padding: 0 0.03em;
  background: transparent;
  color: inherit;
}

.hero mark::after {
  position: absolute;
  right: -0.02em;
  bottom: -0.02em;
  left: -0.02em;
  z-index: -1;
  height: 0.24em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-soft), var(--orange));
  content: "";
}

.hero p {
  max-width: 670px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}

.platform-note {
  display: inline-flex;
  gap: 14px;
  color: rgba(33, 27, 24, 0.48);
  font-size: 15px;
  font-weight: 800;
}

.platform-note span {
  position: relative;
}

.platform-note span + span::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(33, 27, 24, 0.2);
  content: "";
  transform: translateY(-50%);
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--stage-rotate-x, 0deg)) rotateY(var(--stage-rotate-y, 0deg)) translateY(var(--stage-lift, 0px));
  transform-style: preserve-3d;
  transition: transform 520ms var(--ease-out);
  will-change: transform;
}

.product-stage:hover {
  --stage-lift: -2px;
}

.stage-sheen {
  display: none;
}

.orbit-preview {
  position: relative;
  z-index: 6;
  isolation: isolate;
  width: min(390px, calc(100% - 64px));
  padding: 25px 27px 27px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 143, 37, 0.98), rgba(255, 82, 17, 0.98)),
    var(--orange);
  box-shadow:
    0 26px 58px rgba(255, 95, 18, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: #fff;
  text-align: left;
  animation: orbit-preview-breathe 6s ease-in-out infinite;
}

.orbit-preview p {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
}

.variable-token {
  display: inline-block;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
}

.orbit-preview .variable-token {
  padding: 0.05em 0.28em 0.12em;
  background: rgba(255, 255, 255, 0.24);
  color: #fff7ec;
}

.message-card .variable-token {
  padding: 0.08em 0.32em 0.14em;
  background: rgba(255, 138, 31, 0.16);
  color: var(--orange-deep);
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  user-select: none;
  pointer-events: none;
  transform: translate(-50%, -50%) translate3d(var(--orbit-x), var(--orbit-y), 0) rotate(var(--tilt, 0deg));
  will-change: transform;
}

.profile-bubble {
  --glow: rgba(33, 27, 24, 0.12);
  --avatar-y: 38%;

  width: 66px;
  height: 66px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 12px 24px var(--glow),
    0 0 0 1px rgba(255, 255, 255, 0.86),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.profile-one {
  --avatar-y: 39%;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center var(--avatar-y);
  transform: translateZ(0);
}

.profile-two {
  --avatar-y: 38%;
}

.profile-three {
  --avatar-y: 37%;
}

.profile-four {
  --avatar-y: 38%;
}

.profile-five {
  --avatar-y: 38%;
}

.profile-six {
  --avatar-y: 39%;
}

.profile-seven {
  --avatar-y: 38%;
}

.message-card {
  --bubble-bg: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: var(--bubble-bg);
  box-shadow:
    0 18px 42px rgba(85, 63, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.message-card {
  max-width: 246px;
  padding: 13px 15px;
  color: rgba(33, 27, 24, 0.74);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.message-card-one {
  --float-speed: 8.6s;
  --float-delay: -1.7s;
}

.message-card-two {
  --float-speed: 7.8s;
  --float-delay: -0.6s;
}

.message-card-three {
  --float-speed: 9.4s;
  --float-delay: -2.2s;
}

.feature-section {
  padding: 40px 0 78px;
}

#features {
  scroll-margin-top: 108px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.feature-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.workflow-copy h2 {
  margin: 0;
  font-size: 66px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.workflow-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

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

.feature {
  position: relative;
  z-index: 0;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 8px 0;
  text-align: center;
  transition:
    color 220ms ease,
    transform 260ms var(--ease-out);
}

.feature::before {
  position: absolute;
  top: -6px;
  z-index: -1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 138, 31, 0.18), transparent 64%),
    rgba(255, 255, 255, 0.52);
  content: "";
  opacity: 0;
  transform: translateY(8px) scale(0.74);
  transition:
    opacity 220ms ease,
    transform 300ms var(--ease-spring);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature svg {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  overflow: visible;
  transition:
    color 220ms ease,
    filter 220ms ease,
    transform 300ms var(--ease-spring);
}

.feature h3 {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.feature:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature:hover svg {
  color: var(--orange-deep);
  filter: drop-shadow(0 10px 18px rgba(255, 95, 18, 0.2));
  transform: translateY(-4px) scale(1.06);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 68px;
  align-items: center;
  padding: 70px 0 90px;
  overflow: visible;
  color: var(--ink);
}

.workflow-copy {
  max-width: 440px;
}

.workflow-copy p {
  color: var(--muted);
}

.workflow-media {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 540px;
  isolation: isolate;
  transform: perspective(1100px) rotateX(var(--workflow-rotate-x, 0deg)) rotateY(var(--workflow-rotate-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 560ms var(--ease-out);
  will-change: transform;
}

.media-phone {
  position: relative;
  width: min(252px, 42%);
  margin: 0;
  transition: transform 640ms var(--ease-out);
  will-change: transform;
}

.workflow-media .media-phone:first-child {
  transform: translate3d(var(--media-left-x, 0px), var(--media-left-y, 0px), 0);
}

.media-phone-raised {
  align-self: flex-start;
  margin-top: 42px;
  transform: translate3d(var(--media-right-x, 0px), var(--media-right-y, 0px), 0);
}

.media-phone picture {
  display: block;
}

.media-phone img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 44px rgba(95, 48, 17, 0.2));
  transition:
    filter 300ms var(--ease-out),
    transform 300ms var(--ease-spring);
}

.workflow-media:hover .media-phone img {
  filter: drop-shadow(0 34px 52px rgba(95, 48, 17, 0.24));
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  min-height: clamp(310px, 35vw, 430px);
  margin-top: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 244, 232, 0.84) 100%);
  isolation: isolate;
}

.footer-inner {
  position: relative;
  display: grid;
  min-height: clamp(310px, 35vw, 430px);
  justify-items: center;
  align-content: start;
  padding-top: 72px;
}

.footer-store-link,
.footer-socials,
.footer-privacy {
  position: relative;
  z-index: 2;
}

.footer-store-link {
  min-height: 60px;
  padding-inline: 14px;
  border-radius: 14px;
  box-shadow:
    0 18px 34px rgba(33, 27, 24, 0.2),
    0 8px 18px rgba(95, 48, 17, 0.16);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(58px, 8vw, 88px);
}

.footer-social {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(33, 27, 24, 0.06);
  color: rgba(33, 27, 24, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(95, 48, 17, 0.08);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-spring);
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 28px rgba(95, 48, 17, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.footer-social:active {
  transform: translateY(0) scale(0.98);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.footer-social:first-child svg {
  fill: currentColor;
}

.footer-social:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-privacy {
  margin-top: 16px;
  color: rgba(33, 27, 24, 0.36);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 220ms var(--ease-out);
}

.footer-privacy:hover {
  color: rgba(33, 27, 24, 0.68);
  transform: translateY(-1px);
}

.footer-wordmark {
  position: absolute;
  bottom: -0.18em;
  left: 50%;
  z-index: 0;
  width: 100vw;
  background: linear-gradient(180deg, rgba(33, 27, 24, 0.085) 0%, rgba(33, 27, 24, 0.046) 42%, rgba(33, 27, 24, 0) 90%);
  background-clip: text;
  color: transparent;
  font-size: clamp(134px, 24vw, 330px);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: 0;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%) translateY(var(--footer-wordmark-y, 0px));
  transition: transform 480ms var(--ease-out);
  user-select: none;
  -webkit-background-clip: text;
}

.site-footer:hover .footer-wordmark {
  --footer-wordmark-y: -8px;
}

@media (prefers-color-scheme: dark) {
  ::selection {
    background: rgba(255, 138, 31, 0.34);
    color: #fff;
  }

  .site-header {
    background: rgba(21, 14, 11, 0.78);
  }

  .site-header.is-scrolled {
    box-shadow:
      0 1px 0 var(--faint),
      0 16px 36px rgba(0, 0, 0, 0.22);
    background: rgba(18, 11, 9, 0.92);
  }

  .brand-mark {
    box-shadow: 0 12px 28px rgba(255, 106, 24, 0.32);
  }

  .brand-link:hover .brand-mark {
    box-shadow: 0 16px 34px rgba(255, 106, 24, 0.4);
  }

  .header-nav {
    color: rgba(255, 238, 224, 0.66);
  }

  .store-link-primary {
    background: #241f1c;
    color: #fffaf4;
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.28),
      0 8px 18px rgba(0, 0, 0, 0.22);
  }

  .store-link-primary:hover {
    background: #241f1c;
    box-shadow:
      0 20px 36px rgba(0, 0, 0, 0.32),
      0 10px 20px rgba(0, 0, 0, 0.24);
  }

  .store-link-quiet {
    background: rgba(255, 138, 31, 0.12);
    color: rgba(255, 247, 237, 0.82);
    box-shadow:
      inset 0 1px 0 rgba(255, 207, 172, 0.16),
      0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .hero mark::after {
    background: linear-gradient(90deg, rgba(255, 138, 31, 0.38), rgba(255, 106, 24, 0.78));
  }

  .platform-note {
    color: rgba(255, 238, 224, 0.5);
  }

  .platform-note span + span::before {
    background: rgba(255, 238, 224, 0.24);
  }

  .profile-bubble {
    background: rgba(255, 244, 232, 0.14);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.26),
      0 0 0 1px rgba(255, 204, 164, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .message-card {
    --bubble-bg: rgba(31, 21, 16, 0.8);

    border-color: rgba(255, 177, 95, 0.2);
    box-shadow:
      0 20px 46px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 213, 180, 0.12);
    color: rgba(255, 247, 237, 0.78);
  }

  .message-card .variable-token {
    background: rgba(255, 138, 31, 0.22);
    color: #ffc07b;
  }

  .feature::before {
    background:
      radial-gradient(circle at 50% 40%, rgba(255, 138, 31, 0.26), transparent 64%),
      rgba(255, 138, 31, 0.08);
  }

  .feature:hover svg {
    color: var(--orange-soft);
    filter: drop-shadow(0 10px 18px rgba(255, 95, 18, 0.28));
  }

  .media-phone img {
    filter:
      drop-shadow(0 30px 44px rgba(0, 0, 0, 0.46))
      drop-shadow(0 0 24px rgba(255, 138, 31, 0.1));
  }

  .workflow-media:hover .media-phone img {
    filter:
      drop-shadow(0 34px 52px rgba(0, 0, 0, 0.54))
      drop-shadow(0 0 30px rgba(255, 138, 31, 0.14));
  }

  .site-footer {
    background: linear-gradient(180deg, rgba(15, 10, 8, 0) 0%, rgba(37, 23, 17, 0.86) 100%);
  }

  .footer-store-link {
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.28),
      0 8px 18px rgba(0, 0, 0, 0.22);
  }

  .footer-social {
    background: rgba(255, 138, 31, 0.1);
    color: rgba(255, 238, 224, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 213, 180, 0.12),
      0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .footer-social:hover {
    background: rgba(255, 138, 31, 0.18);
    color: var(--ink);
    box-shadow:
      inset 0 1px 0 rgba(255, 213, 180, 0.18),
      0 16px 34px rgba(0, 0, 0, 0.24);
  }

  .footer-privacy {
    color: rgba(255, 238, 224, 0.42);
  }

  .footer-privacy:hover {
    color: rgba(255, 247, 237, 0.74);
  }

  .footer-wordmark {
    background: linear-gradient(180deg, rgba(255, 138, 31, 0.18) 0%, rgba(255, 138, 31, 0.08) 42%, rgba(255, 138, 31, 0) 90%);
    background-clip: text;
    -webkit-background-clip: text;
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 32px, var(--max-width));
  }

  .header-nav {
    gap: 14px;
  }

  .header-nav a:not(.store-link) {
    display: none;
  }

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-copy {
    margin-bottom: 30px;
  }

  .hero p {
    font-size: 18px;
  }

  .product-stage {
    min-height: 520px;
  }

  .orbit-preview {
    width: min(430px, calc(100% - 48px));
  }

  .profile-bubble {
    width: 58px;
    height: 58px;
  }

  .message-card {
    max-width: 220px;
  }

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

  .workflow {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 54px 0 74px;
  }

  .section-heading h2,
  .workflow-copy h2 {
    font-size: 54px;
  }

  .workflow-media {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: calc(14px + env(safe-area-inset-top)) 16px 14px;
    background: rgba(255, 244, 232, 0.9);
    box-shadow: 0 1px 0 rgba(95, 48, 17, 0.06);
  }

  .brand-link {
    gap: 9px;
    font-size: 19px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    padding-top: calc(102px + env(safe-area-inset-top));
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.4vw, 52px);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: min(350px, 100%);
    margin-bottom: 26px;
  }

  .headline-desktop {
    display: none;
  }

  .headline-mobile {
    display: block;
  }

  .hero mark::after {
    bottom: -0.1em;
    height: 0.16em;
  }

  .hero p {
    max-width: 300px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .store-link-primary {
    width: 166px;
    min-height: 56px;
    padding-inline: 12px;
    border-radius: 17px;
    font-size: 16px;
  }

  .platform-note {
    gap: 12px;
    font-size: 13px;
  }

  .product-stage {
    min-height: clamp(360px, 100vw, 430px);
    border-radius: 26px;
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.82), transparent 53%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 238, 220, 0.8) 100%);
    box-shadow:
      0 20px 48px rgba(129, 71, 29, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.92);
  }

  .orbit-preview {
    width: min(306px, calc(100% - 44px));
    padding: 19px 20px 20px;
    border-radius: 23px;
    box-shadow:
      0 22px 46px rgba(255, 95, 18, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }

  .orbit-preview p {
    font-size: 15px;
    line-height: 1.38;
  }

  .profile-bubble {
    width: 44px;
    height: 44px;
    padding: 3px;
  }

  .message-card {
    max-width: 148px;
    padding: 9px 11px;
    border-radius: 15px;
    font-size: 11px;
    line-height: 1.32;
  }

  .message-card-two,
  .message-card-five {
    max-width: 140px;
  }

  .section-heading h2,
  .workflow-copy h2 {
    font-size: 42px;
  }

  .section-heading p,
  .workflow-copy p {
    font-size: 16px;
  }

  .feature-grid {
    gap: 34px 18px;
  }

  .feature svg {
    width: 48px;
    height: 48px;
  }

  .feature h3 {
    font-size: 19px;
  }

  .workflow {
    width: calc(100% - 20px);
    padding: 46px 0 58px;
  }

  .workflow-media {
    min-height: 390px;
    gap: 6px;
  }

  .media-phone {
    width: 47%;
  }

  .media-phone-raised {
    margin-top: 26px;
  }

  .site-footer {
    min-height: 280px;
    margin-top: 10px;
  }

  .footer-inner {
    min-height: 280px;
    padding-top: 50px;
  }

  .footer-store-link {
    min-height: 56px;
    padding-inline: 12px;
  }

  .footer-socials {
    margin-top: 50px;
  }

  .footer-social {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .footer-wordmark {
    bottom: -0.14em;
    font-size: clamp(114px, 34vw, 150px);
  }
}

@media (prefers-color-scheme: dark) and (max-width: 640px) {
  .site-header {
    background: rgba(21, 14, 11, 0.9);
    box-shadow: 0 1px 0 rgba(255, 176, 110, 0.1);
  }

  .product-stage {
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 138, 31, 0.14), transparent 56%),
      linear-gradient(180deg, rgba(43, 27, 20, 0.92) 0%, rgba(17, 11, 9, 0.96) 100%);
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.34),
      inset 0 0 0 1px rgba(255, 176, 110, 0.16);
  }
}

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

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
