:root {
  --bg: #000;
  --panel: #1c1c1e;
  --panel-2: #2c2c2e;
  --panel-3: #3a3a3c;
  --text: #ebebf5;
  --text-2: rgba(235, 235, 245, 0.6);
  --line: rgba(235, 235, 245, 0.13);
  --accent: #e6b76f;
  --bone: #efead9;
  --bone-hover: #f5e9d1;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Sticky header height: announcement strip + top bar (used for in-page anchor scroll) */
  --header-sticky-offset: 156px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Let the document grow with content; fixed 100% height on both roots often breaks
   first touch/wheel scroll (especially on mobile). */
html {
  min-height: 100%;
  height: auto;
  scroll-padding-top: var(--header-sticky-offset);
  /* Reserve scrollbar width so a scrollbar appearing after first paint does not nudge layout */
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100svh;
  height: auto;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

/* Motion for links, buttons, and accordion headers (no position/transform hovers) */
a,
button,
summary.qa__q {
  transition:
    opacity 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    filter 0.22s ease;
}

/* App Store / Google Play badges: static — no transition or hover styling */
.store,
.store img {
  transition: none;
}

.brand .brand__logo,
.social a img,
.cta-pill__icon img,
.footer-cta__emailIcon img {
  transition: opacity 0.22s ease, filter 0.22s ease;
}

/* Hash targets: use header offset so content isn’t hidden under .header (announcement + topbar). */
#features,
#pricing {
  scroll-margin-top: var(--header-sticky-offset);
}

/* #cards: do not use a tiny scroll-margin here — #id beats .classes and was overriding .card-showcase.snap-panel. */

/* Sections: static layout (scroll-based entrance removed site-wide). */
.section-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(4px, 2vw, 16px);
  transform: translateX(-50%);
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 235, 245, 0.38);
  pointer-events: none;
  white-space: nowrap;
  display: none;
}

.marquee-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(235, 235, 245, 0.1);
  border-bottom: 1px solid rgba(235, 235, 245, 0.1);
  padding: 16px 0;
  background: linear-gradient(90deg, rgba(230, 183, 111, 0.04) 0%, transparent 40%, transparent 60%, rgba(230, 183, 111, 0.04) 100%);
}

.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-strip__item {
  flex-shrink: 0;
  padding-right: 4rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 235, 245, 0.45);
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-strip__track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .marquee-strip__item:last-child {
    display: none;
  }

  .scroll-hint {
    display: none;
  }
}

.page {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.bg {
  isolation: isolate;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Ensure content sits above the decorative background layer */
.page > header,
.page > main {
  position: relative;
}

@keyframes bg-glow-drift {
  0%,
  100% {
    transform: translateZ(0) translate(0, 0) scale(1);
  }

  33% {
    transform: translateZ(0) translate(28px, -22px) scale(1.04);
  }

  66% {
    transform: translateZ(0) translate(-20px, 16px) scale(0.97);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .bg__glow--top {
    animation: bg-glow-drift 24s ease-in-out infinite;
  }

  .bg__glow--mid {
    animation: bg-glow-drift 32s ease-in-out infinite reverse;
  }

  .bg__glow--bot {
    animation: bg-glow-drift 28s ease-in-out infinite;
    animation-delay: -9s;
  }
}

.bg__texture {
  position: absolute;
  inset: 54px -61px auto -61px;
  width: calc(100% + 122px);
  height: 1000px;
  opacity: 0.2;
  object-fit: cover;
  pointer-events: none;
}

.bg__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  pointer-events: none;
}

.bg__glow--top {
  left: 306px;
  top: 104px;
  transform: translateZ(0);
}

.bg__glow--mid {
  left: -420px;
  top: 1493px;
  transform: translateZ(0);
}

.bg__glow--bot {
  left: 994px;
  top: 2828px;
  transform: translateZ(0);
}

.container {
  width: min(1512px, 100%);
  margin: 0 auto;
  padding: 0 116px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.announcement {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #2d1f06 0%, #483618 50%, #2d1f06 100%);
}

/* Soft moving highlight — keeps the strip feeling alive without distraction */
.announcement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(230, 183, 111, 0.07) 42%,
    rgba(230, 183, 111, 0.14) 50%,
    rgba(230, 183, 111, 0.07) 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: announcement-shimmer 9s ease-in-out infinite;
  pointer-events: none;
}

.announcement .container {
  position: relative;
  z-index: 1;
}

@keyframes announcement-shimmer {
  0%,
  100% {
    background-position: 85% 0;
  }

  50% {
    background-position: 15% 0;
  }
}

.announcement__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
  text-align: center;
}

.announcement__content--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.announcement__content--link:focus-visible {
  outline: 2px solid rgba(230, 183, 111, 0.7);
  outline-offset: 3px;
  border-radius: 10px;
}

.announcement__content--link:hover .announcement__cta {
  opacity: 0.92;
  color: #f0c882;
  animation: none;
  text-shadow: 0 0 10px rgba(230, 183, 111, 0.25);
  filter: brightness(1.05);
}

.announcement__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text);
}

.announcement__text strong {
  font-weight: 700;
}

.announcement__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent);
  transition: opacity 0.2s ease, color 0.2s ease;
  animation: announcement-cta-glow 3.2s ease-in-out infinite;
}

.announcement__cta:hover {
  opacity: 0.92;
  color: #f0c882;
  animation: none;
  text-shadow: 0 0 10px rgba(230, 183, 111, 0.25);
  filter: brightness(1.05);
}

.announcement__cta:hover .announcement__cta-icon img {
  animation: none;
  transform: none;
}

@keyframes announcement-cta-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(230, 183, 111, 0);
    filter: brightness(1);
  }

  50% {
    text-shadow: 0 0 14px rgba(230, 183, 111, 0.35);
    filter: brightness(1.06);
  }
}

.announcement__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.announcement__cta-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.announcement__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 65%;
  animation: announcement-rocket 2.4s ease-in-out infinite;
}

@keyframes announcement-rocket {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

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

.announcement__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .bg__glow--top,
  .bg__glow--mid,
  .bg__glow--bot {
    animation: none;
  }

  .announcement::before {
    animation: none;
  }

  .announcement__cta {
    animation: none;
    text-shadow: none;
    filter: none;
  }

  .announcement__cta:hover {
    text-shadow: none;
    filter: none;
  }

  .announcement__cta:hover .announcement__cta-icon img {
    transform: none;
  }

  .announcement__cta-icon img {
    animation: none;
  }
}

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

.topbar {
  padding: 0;
  position: relative;
  z-index: 5;
  /* Opaque bar instead of backdrop-filter — blur behind sticky headers is a common scroll jank source. */
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(235, 235, 245, 0.06);
}

.topbar__inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__logo {
  width: clamp(160px, 22vw, 273.464px);
  height: auto;
}

.nav {
  display: flex;
  gap: 66px;
  font-size: 18px;
  line-height: 1.2;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.22s ease;
}

.menu-btn__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(235, 235, 245, 0.9);
  border-radius: 2px;
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(235, 235, 245, 0.9);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s ease, top 0.28s ease, background-color 0.28s ease;
}

.menu-btn__bars::before {
  top: -7px;
}

.menu-btn__bars::after {
  top: 7px;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars {
  background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.98);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__inner {
  padding-top: 14px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu__link {
  font-size: 16px;
  padding: 6px 0;
}

.mobile-menu__link:active {
  transform: translateY(1px);
}

.nav__link {
  opacity: 1;
  color: var(--text);
  transition: color 0.22s ease;
}

.nav:not(.nav--footer) .nav__link {
  position: relative;
  padding-bottom: 2px;
}

.nav:not(.nav--footer) .nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(230, 183, 111, 0.15));
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}

/* Full-viewport hero + card showcase */
.hero.snap-panel,
.card-showcase.snap-panel {
  box-sizing: border-box;
  scroll-margin-top: var(--header-sticky-offset);
}

.hero {
  position: relative;
  /* overflow: hidden on both axes can trap the first touch scroll on iOS; clip horizontally only. */
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235, 235, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 235, 245, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 35%, black 0%, transparent 72%);
  pointer-events: none;
  opacity: 0.65;
}

.hero .pill,
.hero .hero__content,
.hero .hero__cta,
.hero .hero-device {
  opacity: 1;
  transform: none;
}

/* Download app page — centered hero, QR, 3 phones [Figma node 239:78] */
.download-hero {
  position: relative;
  padding: clamp(48px, 1vw, 100px) 0 0;
  overflow: hidden;
}

.download-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(100px, 18vw, 173px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  pointer-events: none;
  z-index: 1;
}

.download-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.download-hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  width: 100%;
}

.download-hero__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
}

.download-hero__title {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.07;
  font-weight: 800;
  color: var(--text);
}

.download-hero__subtitle {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.35;
  color: var(--text);
  max-width: 900px;
  margin-top: 16px;
}

.download-hero__qr {
  width: min(280px, 88vw);
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
}

.download-hero__cta {
  margin: 0 !important;
  justify-content: center;
}

.download-hero__qr img {
  display: block;
  width: 100%;
  height: auto;
}

.download-hero__phones {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: clamp(-100px, -10vw, -100px) auto 0;
  padding: 0 8px clamp(72px, 12vw, 140px);
  min-height: min(520px, 85vw);
}

.download-hero__phones::after {
  content: "";
  position: absolute;
  left: -80px;
  right: -80px;
  bottom: 0;
  height: clamp(140px, 22vw, 220px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.28) 35%,
    rgba(0, 0, 0, 0.65) 72%,
    var(--bg) 100%
  );
  pointer-events: none;
  z-index: 10;
}

.download-hero__phone-slot {
  position: absolute;
  width: min(380px, 31vw);
  top: 0;
}

.download-hero__phone-slot--left {
  left: 0;
  z-index: 2;
}

.download-hero__phone-slot--right {
  right: 0;
  z-index: 2;
}

.download-hero__phone-slot--center {
  left: 50%;
  transform: translateX(-50%);
  top: clamp(48px, 12vw, 150px);
  z-index: 3;
}

.download-device {
  position: relative;
  width: 100%;
  aspect-ratio: 380 / 762;
  margin-top: -24px;
}

.download-device__screen {
  position: absolute;
  left: 8.95%;
  top: 5.01%;
  width: 82.4%;
  height: 89.4%;
  border-radius: 18px;
  object-fit: cover;
}

.download-device__frame {
  position: absolute;
  left: 5.26%;
  top: 4.02%;
  width: 89.47%;
  height: 91.97%;
  object-fit: contain;
  pointer-events: none;
}

/* Product Hunt block on download page: 5 stars + larger store badges */
.product-hunt--download .product-hunt__stars {
  display: block;
}

.product-hunt--download .product-hunt__label {
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.48px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 642.963px) minmax(0, 1fr);
  align-items: center;
  gap: 202px;
}

.hero__inner--showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Stack order: cards behind, copy can slide over cards on scroll; pill stays on top */
.hero__inner--showcase .pill {
  position: relative;
  z-index: 4;
}

.hero__inner--showcase .hero-cards {
  z-index: 1;
}

.hero__inner--showcase .hero__content,
.hero__inner--showcase .hero__cta {
  position: relative;
  z-index: 2;
}

.hero__inner--showcase .hero__title {
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.6);
}

.hero__left,
.hero__right {
  min-width: 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__inner:not(.hero__inner--showcase) .hero__content {
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 560px;
}

.hero__inner:not(.hero__inner--showcase) .hero__subtitle {
  margin-top: 8px;
}

.hero__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* Hero split: phone mockup (same proportions as download page device) */
.hero-device {
  position: relative;
  width: min(450px, 100%);
  aspect-ratio: 450 / 666;
  margin: 0;
  filter: drop-shadow(0 28px 64px rgba(0, 0, 0, 0.45));
}

.hero-device__screen {
  position: absolute;
  left: 8.95%;
  top: 5.01%;
  width: 82.4%;
  height: 89.4%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

.hero-device__frame {
  position: absolute;
  left: 5.26%;
  top: 4.02%;
  width: 89.47%;
  height: 91.97%;
  object-fit: contain;
  pointer-events: none;
}

/* Card fan: at least one viewport tall; no fixed height + no sticky footer — that pairing can make scroll feel stuck. */
.card-showcase {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
  /* Isolate layout for scroll-driven transforms (less cross-subtree invalidation). */
  contain: layout;
}

.card-showcase__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  min-height: 0;
  width: 100%;
}

.card-showcase__marquee {
  flex-shrink: 0;
  margin-top: auto;
  position: relative;
  z-index: 4;
  align-self: stretch;
}

.card-showcase__headline {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.card-showcase__lede {
  margin: 16px 0 36px 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-2);
}

.card-showcase .hero-cards {
  margin-top: clamp(20px, 4vw, 40px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: rgba(28, 28, 30, 0.92);
  border: 1px solid rgba(235, 235, 245, 0.1);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pill__avatars {
  display: flex;
  padding-right: 14px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 64px;
  border: 1px solid var(--text);
  overflow: hidden;
  margin-right: -14px;
  flex: 0 0 auto;
  background: #111;
}

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

.pill__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.hero__inner--showcase .hero__content {
  margin-top: clamp(28px, 4vw, 44px);
  max-width: 640px;
}

.hero__content {
  margin-top: 36px;
}

.hero__title {
  margin: 0 0 32px;
  font-size: clamp(46px, 6.2vw, 72px);
  line-height: clamp(54px, 6.6vw, 82px);
  letter-spacing: -2px;
  font-weight: 800;
}

.accent {
  color: var(--accent);
}

.hero__title .accent,
.feature__title .accent,
.footer-cta__title .accent,
.download-hero__title .accent {
  background: linear-gradient(118deg, #f5d49a 0%, var(--accent) 42%, #b8893f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-2);
}

.hero__inner--showcase .hero__subtitle {
  margin-top: 8px;
}

.hero__inner--showcase .hero__cta {
  margin-top: clamp(32px, 4vw, 48px);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta {
  display: flex;
  gap: 24px;
  margin-top: 52px;
  align-items: center;
}

.store {
  width: min(180px, 100%);
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* —— Hero: three fanned digital cards —— */
.hero-cards {
  position: relative;
  width: 100%;
  max-width: min(720px, 100%);
  min-height: clamp(260px, 42vw, 400px);
  margin: clamp(12px, 2vw, 24px) auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-cards__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 120%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 55% 48% at 50% 50%,
    rgba(200, 155, 90, 0.22) 0%,
    rgba(120, 80, 40, 0.08) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-cards__fan {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 0 clamp(8px, 3vw, 24px);
  backface-visibility: hidden;
}

.card-showcase .hero-card {
  backface-visibility: hidden;
}

.hero-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(168px, 24vw, 248px);
  transform-origin: 50% 100%;
  line-height: 0;
}

.hero-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Box-shadow (not filter: drop-shadow) so scroll-driven transforms stay on the compositor. */
}

/* Rest: cards close together; main.js scroll progress spreads the fan */
.hero-card--left {
  z-index: 1;
  transform: rotate(-3deg) translateY(6px) translateX(2px);
  margin-right: clamp(-66px, -11vw, -50px);
}

.hero-card--left .hero-card__img {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.hero-card--center {
  z-index: 3;
  transform: scale(1.02) translateY(-6px);
  margin-right: clamp(-66px, -11vw, -50px);
}

.hero-card--center .hero-card__img {
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
}

.hero-card--right {
  z-index: 2;
  transform: rotate(3deg) translateY(6px) translateX(-2px);
  margin-right: clamp(-66px, -11vw, -50px);
}

.hero-card--right .hero-card__img {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.credentials {
  padding: 60px 0;
}

.section-title {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  letter-spacing: -0.84px;
  font-weight: 800;
}

.section-title--lg {
  font-size: 52px;
}

.section-subtitle {
  margin: 16px 0 0;
  text-align: center;
  font-size: 24px;
  color: var(--text-2);
}

.credentials__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 227px;
  position: relative;
  border: 1px solid rgba(235, 235, 245, 0.08);
  border-radius: 0;
  background: #070708;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 24px 72px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.credentials__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 72%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 38%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 56px 28px;
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.stat > * {
  position: relative;
  z-index: 1;
}

.credentials__grid > .stat:not(:last-child) {
  border-right: 1px solid rgba(235, 235, 245, 0.1);
}


.stat__value {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.1px;
}

.stat__num {
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: rgba(235, 235, 245, 0.6);
  text-align: center;
  max-width: 260px;
}

.features {
  padding: 40px 0 0;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 539px);
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.feature--reverse {
  grid-template-columns: minmax(0, 539px) minmax(0, 1fr);
}

.feature--reverse .feature__copy {
  order: 2;
}

.feature__copy,
.feature__media {
  min-width: 0;
}

.feature__title, .card-showcase__headline--lg {
  margin: 0 0 16px;
  font-size: clamp(44px, 5.2vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}

.feature__desc {
  margin: 0;
  font-size: 24px;
  color: var(--text-2);
}

.phone-frame {
  position: relative;
  width: min(400px, 100%);
  height: clamp(380px, 70vw, 598px);
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  border-bottom: 0;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 4px 0 0 rgba(0, 0, 0, 0.35),
    0 28px 72px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(230, 183, 111, 0.07);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s ease,
    border-color 0.45s ease;
}

/* Feather bottom edge into page background so scaled video doesn’t read as a hard cut */
.phone-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(180px, 38%);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.28) 40%,
    var(--bg) 92%,
    var(--bg) 100%
  );
}

.phone-frame--first {
  height: clamp(380px, 70vw, 550px);
}

.phone-frame--first .phone-frame__video {
  width: 128%;
  height: 121%;
  top: 60%;
}


.phone-frame--first {
  height: clamp(380px, 70vw, 550px);
}

.phone-frame--first .phone-frame__video {
  width: 128%;
  height: 121%;
  top: 60%;
}

.phone-frame--first-1 .phone-frame__video {
  width: 124%;
  height: 129%;
  top: 49%;
}
.phone-frame--first-1 {
  height: clamp(380px, 70vw, 700px);
}

.phone-frame__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120px 120px at 70% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(0, 0, 0, 0.2) 100%),
    #171717;
}

.phone-frame__video {
  position: absolute;
  z-index: 0;
  width: 113%;
  height: 114%;
  display: block;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.pricing {
  padding: 0 0 80px 0;
}
.plan__top .pill__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
  width: 128px;
  padding: 5px 10px;
  box-shadow: none;
  color: var(--text-2);
 }

.pricing__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
}

.toggle {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  background: var(--panel);
  padding: 4px;
  margin-top: 48px;
  border-radius: 50px;
}

.toggle__thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  border-radius: 40px;
  background: var(--panel-2);
  border: 1px solid var(--panel-3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  box-sizing: border-box;
}

.toggle--yearly .toggle__thumb {
  transform: translateX(100%);
}

.toggle__item {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-size: 18px;
  padding: 14px 20px;
  border-radius: 40px;
  color: var(--text-2);
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.25s ease;
}

.toggle__item--active {
  color: var(--text);
}

.toggle__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .toggle__thumb,
  .toggle__item {
    transition: none;
  }

  a,
  button,
  summary.qa__q,
  .brand .brand__logo,
  .social a,
  .social a img,
  .cta-pill,
  .cta-pill__icon img,
  .footer-cta__emailIcon img,
  .plan__btn,
  .menu-btn,
  .mobile-menu__link {
    transition: none;
  }

  .menu-btn__bars,
  .menu-btn__bars::before,
  .menu-btn__bars::after {
    transition: none;
  }

  .faq__list details.qa > .qa__panel {
    transition: none;
  }

  .faq__list details.qa::details-content {
    transition: none;
  }

  .qa__icon--plus::after {
    transition: none;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 609px;
  position: relative;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.5s ease,
    border-color 0.35s ease;
}

.plan--glass {
  background: rgba(28, 28, 30, 0.94);
  border: 1px solid rgba(235, 235, 245, 0.12);
}

.plan--premium {
  border: 1px solid #c3923d;
  background: radial-gradient(130.5px 88px at 50% -18%, rgba(174, 114, 49, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
    #000;
  box-shadow: 0 0 0 1px rgba(195, 146, 61, 0.12), 0 20px 56px rgba(0, 0, 0, 0.45);
}

.plan__badge {
  position: absolute;
  top: -17px;
  right: -70px;
  transform: translateX(-50%);
  background: #443521;
  border: 1px solid #a17935;
  border-radius: 40px;
  padding: 8px 14px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.plan__top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan__name {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.plan__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.plan__amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.96px;
}

.plan__period {
  font-size: 18px;
  color: var(--text-2);
  padding-bottom: 6px;
}

.plan__desc {
  margin: 0;
  font-size: 18px;
  color: var(--text-2);
}

.plan__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--bone);
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition:
    background-color 0.22s ease,
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s ease;
}

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

.plan__incl {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.plan__tier-note {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  color: var(--text-2);
}

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

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: var(--text-2);
}

.plan__list li img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  object-fit: contain;
}

.plan__list .is-disabled {
  text-decoration: line-through;
  text-decoration-thickness: from-font;
}

.faq {
  padding: 40px 0;
}

.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__link {
  text-decoration: underline;
  font-weight: 650;
  transition: color 0.22s ease;
}

.faq__list {
  width: min(1044px, 100%);
  margin: 48px auto 0;
}

.qa {
  border-bottom: 1px solid var(--panel-2);
  padding: 32px 0;
}

.faq__list > details.qa:last-child {
  border-bottom: none;
}

.qa__q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
  transition: opacity 0.22s ease;
}

.qa__q::-webkit-details-marker {
  display: none;
}

.qa__q > span:first-child {
  font-size: 20px;
  font-weight: 600;
  transition: color 0.22s ease;
}

.qa__panel {
  margin: 0;
}

.qa__a {
  margin: 0;
  padding-top: 24px;
  font-size: 18px;
  color: var(--text-2);
  max-width: 800px;
}

/*
 * FAQ height: one animation path per engine — avoid grid + ::details-content together (jerky).
 * - interpolate-size browsers: animate ::details-content only.
 * - Others: 0fr / 1fr grid on .qa__panel.
 */
.faq__list details.qa > .qa__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq__list details.qa[open] > .qa__panel {
  grid-template-rows: 1fr;
}

.faq__list details.qa > .qa__panel > .qa__a {
  overflow: hidden;
  min-height: 0;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  .faq__list details.qa > .qa__panel {
    display: block;
    grid-template-rows: none;
    transition: none;
  }

  .faq__list details.qa > .qa__panel > .qa__a {
    overflow: visible;
  }

  .faq__list details.qa::details-content {
    overflow: hidden;
    height: 0;
    transition: height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .faq__list details.qa[open]::details-content {
    height: auto;
  }
}

.qa__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.qa__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.qa__icon--plus {
  position: relative;
  width: 36px;
  height: 36px;
}

.qa__icon--plus::before,
.qa__icon--plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(235, 235, 245, 0.85);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.qa__icon--plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.3s ease;
}

details[open] .qa__icon--plus::after {
  opacity: 0;
}

.product-hunt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    ellipse 120% 85% at 50% 50%,
    #1c1c1e 0%,
    #0e0e0f 45%,
    #070708 72%,
    #000 100%
  );
}

.product-hunt__badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-hunt__badge img {
  width: 42px;
}

.product-hunt__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 66px;
  padding: 100px 0;
}

.product-hunt__top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(16px, 4vw, 48px);
}

.product-hunt__laurel {
  flex: 0 0 auto;
  color: var(--text);
  opacity: 0.2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
}

.product-hunt__laurel--right .product-hunt__laurelSvg {
  transform: scaleX(-1);
}

.product-hunt__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 674px;
  flex: 0 1 auto;
  gap: 36px;
}

.product-hunt__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.product-hunt__stars {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4.8px;
  line-height: 1.2;
}

.product-hunt__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.product-hunt__label {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
  line-height: 1.2;
}

.product-hunt__title {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.product-hunt__ratings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.product-hunt__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: var(--text-2);
  line-height: 1;
}

.product-hunt__rating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--text-2);
}

.product-hunt__rating-icon svg {
  display: block;
  width: 32px;
  height: 32px;
}

.product-hunt__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-cta {
  background: var(--panel);
  padding: 80px 0;
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.footer-cta__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 52px;
}

.cta-pill {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 12px 12px 16px;
  background: var(--panel-2);
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 18px;
  transition: background-color 0.22s ease;
}

.cta-pill__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.cta-pill__icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.footer-cta__copy {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 36px;
}

.footer-cta__email {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 28px;
  text-decoration: underline;
  transition: color 0.22s ease;
}

.footer-cta__emailIcon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.footer-cta__emailIcon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.footer__nav {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.footer__navInner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.footer__brand {
  width: 273.464px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social {
  display: flex;
  gap: 16px;
}

.social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s ease;
}

.social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav--footer {
  gap: 66px;
}

.footer__bottom {
  background: var(--panel-2);
  padding: 16px 0;
}

.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-2);
  font-size: 16px;
}

.footer__bottomInner p {
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 36px;
}

.footer__links a {
  color: var(--text-2);
  transition: color 0.22s ease, opacity 0.22s ease;
}

@media (hover: hover) {
  .brand:hover .brand__logo {
    opacity: 0.92;
  }

  .nav__link:hover {
    color: var(--accent);
  }

  .nav:not(.nav--footer) .nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: 0 50%;
  }

  .mobile-menu__link:hover {
    background: rgba(44, 44, 46, 0.88);
    border-color: rgba(235, 235, 245, 0.22);
  }

  .menu-btn:hover {
    opacity: 0.88;
  }

  .plan__btn:hover {
    background: var(--bone-hover);
  }

  .toggle__item:not(.toggle__item--active):hover {
    color: rgba(235, 235, 245, 0.88);
  }

  .faq__link:hover {
    color: var(--accent);
  }

  .qa__q:hover > span:first-child {
    color: rgba(235, 235, 245, 0.95);
  }

  .cta-pill:hover {
    background: var(--panel-3);
  }

  .footer-cta__email:hover {
    color: var(--accent);
  }

  .footer-cta__email:hover .footer-cta__emailIcon img {
    filter: brightness(1.12);
  }

  .social a:hover {
    opacity: 1;
  }

  .social a:hover img {
    filter: brightness(1.32) drop-shadow(0 0 5px rgba(230, 183, 111, 0.4));
  }

  .social a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  .footer__links a:hover {
    color: var(--text);
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .plan__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(239, 234, 217, 0.22);
  }

  .stat:hover {
    transform: none;
  }

  .feature__media:hover .phone-frame {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(230, 183, 111, 0.22);
    box-shadow:
      0 4px 0 0 rgba(0, 0, 0, 0.35),
      0 36px 88px rgba(0, 0, 0, 0.58),
      0 0 120px rgba(230, 183, 111, 0.12);
  }

  .plan--glass:hover,
  .plan--team:hover {
    transform: translateY(-6px);
    border-color: rgba(235, 235, 245, 0.18);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48);
  }

  .plan--premium:hover {
    transform: translateY(-6px);
    box-shadow:
      0 0 0 1px rgba(195, 146, 61, 0.22),
      0 28px 64px rgba(195, 146, 61, 0.12),
      0 20px 48px rgba(0, 0, 0, 0.5);
  }
}

/* Mobile Responsive Styles */

/* Tablet & Medium Devices (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .hero__inner:not(.hero__inner--showcase) {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__inner:not(.hero__inner--showcase) .hero__right {
    justify-content: center;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

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

  .feature--reverse .feature__copy {
    order: 0;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .credentials__grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .credentials__grid > .stat:not(:last-child) {
    border-right: 1px solid rgba(235, 235, 245, 0.13);
  }

  .credentials__grid > .stat:nth-child(2) {
    border-right: none;
  }

  .credentials__grid > .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(235, 235, 245, 0.13);
  }

  .stat {
    padding: 32px 24px;
  }

  .footer__navInner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav {
    gap: 40px;
    font-size: 18px;
  }

  .nav--footer {
    gap: 40px;
  }

  .hero__title {
    font-size: clamp(36px, 5vw, 56px);
  }

  .feature__title {
    font-size: clamp(32px, 4.5vw, 36px);
  }

  .section-title {
    font-size: 36px;
  }

  .section-title--lg {
    font-size: 36px;
  }

  .product-hunt__inner {
    padding: 80px 0;
    gap: 48px;
  }

  .product-hunt__title {
    font-size: 36px;
  }
}

/* Mobile Devices (max 767px) */
@media (max-width: 767px) {
  :root {
    --header-sticky-offset: 112px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .container {
    padding: 0 16px;
  }

  .topbar__inner {
    height: 80px;
    gap: 16px;
  }

  .brand__logo {
    width: 160px;
    height: 36px;
  }

  .announcement__content {
    gap: 6px;
    padding: 8px 4px;
  }

  .pill__avatars {
    padding-right: 10px;
  }

  .pill__text {
    font-size: 12px;
  }

  .avatar {
    width: 20px;
    height: 20px;
    margin-right: -10px;
  }

  .hero {
    padding: 16px 0 clamp(0px, 8vw, 40px);
  }

  .download-hero__phones {
    position: static;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 36px;
    min-height: 0;
    padding-bottom: 64px;
  }

  .download-hero__phone-slot,
  .download-hero__phone-slot--left,
  .download-hero__phone-slot--right,
  .download-hero__phone-slot--center {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: min(280px, 88vw);
  }

  .download-hero__phone-slot--left {
    order: 1;
  }

  .download-hero__phone-slot--center {
    order: 2;
  }

  .download-hero__phone-slot--right {
    order: 3;
  }

  .hero__inner:not(.hero__inner--showcase) {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-cards {
    min-height: 240px;
    margin-top: 8px;
  }

  .hero-card {
    width: clamp(150px, 28vw, 168px);
  }

  .hero-card--left {
    transform: rotate(-3deg) translateY(4px) translateX(1px);
    margin-right: clamp(-50px, -13vw, -32px);
  }

  .marquee-strip__item {
    font-size: 8px;
  }

  .hero-card--center {
    transform: scale(1.015) translateY(-4px);
    margin-right: clamp(-50px, -13vw, -32px);
  }

  .hero-card--right {
    transform: rotate(3deg) translateY(4px) translateX(-1px);
  }

  .hero__content {
    margin-top: 20px;
    text-align: center;
  }

  .hero__title {
    margin-bottom: 36px;
    font-size: clamp(24px, 7vw, 32px);
    line-height: clamp(28px, 8vw, 38px);
  }

  .hero__inner:not(.hero__inner--showcase) .hero__content {
    margin-top: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__cta {
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .product-hunt__inner {
    padding: 56px 0;
    gap: 40px;
  }

  .product-hunt__laurel {
    display: none;
  }

  .product-hunt__top {
    gap: 0;
  }

  .product-hunt__stars {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .product-hunt__label {
    font-size: 16px;
  }

  .product-hunt__rating {
    font-size: 16px;
  }

  .product-hunt__rating-icon svg {
    width: 24px;
    height: 28px;
  }

  .product-hunt__cta {
    gap: 12px;
  }

  .credentials {
    padding: 40px 0;
  }

  .section-title {
    font-size: 36px;
    letter-spacing: -0.5px;
    text-align: center;
  }

  .section-title--lg {
    font-size: 36px;
  }

  .credentials__grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    height: auto;
  }

  .credentials__grid > .stat {
    border-right: none !important;
  }

  .credentials__grid > .stat:not(:last-child) {
    border-bottom: 1px solid rgba(235, 235, 245, 0.13);
  }

  .stat {
    gap: 20px;
    padding: 28px 16px;
    border: 1px solid var(--line);
  }

  .stat__value {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .stat__label {
    font-size: 14px;
  }

  .features {
    padding: 0;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

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

  .feature--reverse .feature__copy {
    order: 0;
  }

  .feature__title {
    font-size: clamp(36px, 6vw, 36px);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .feature__desc {
    font-size: 16px;
  }

  .phone-frame {
    width: 340px;
    height: 500px;
    max-width: 100%;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border-width: 1px;
  }
  .phone-frame--first {
    height: 540px;
  }

  .toggle {
    margin-top: 36px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .plan {
    min-height: auto;
    padding: 24px 20px;
    gap: 24px;
  }

  .plan__name {
    font-size: 20px;
  }

  .plan__amount {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .plan__desc {
    font-size: 16px;
  }

  .plan__btn {
    padding: 14px 16px;
    font-size: 16px;
  }

  .plan__incl {
    font-size: 18px;
  }

  .plan__list li {
    font-size: 16px;
    gap: 10px;
  }

  .toggle__item {
    font-size: 14px;
    padding: 12px 16px;
  }

  .qa__q span:first-child {
    font-size: 16px;
  }

  .qa__a {
    font-size: 16px;
    padding-top: 16px;
  }

  .qa__icon {
    width: 28px;
    height: 28px;
  }

  .qa__icon img {
    width: 28px;
    height: 28px;
  }

  .qa__q {
    gap: 12px;
  }

  .footer-cta {
    padding: 60px 0;
  }
  

  .footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-cta__title {
    font-size: 32px;
    line-height: 42px;
  }

  .footer-cta__copy {
    font-size: 18px;
    line-height: 26px;
  }

  .footer-cta__email {
    font-size: 18px;
  }

  .footer-cta__emailIcon {
    width: 32px;
    height: 32px;
  }

  .cta-pill {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 10px 10px 12px;
    gap: 10px;
  }

  .cta-pill__icon {
    width: 24px;
    height: 24px;
  }

  .footer__nav {
    padding: 20px 0;
  }

  .footer__navInner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__brand {
    width: 100%;
    gap: 16px;
  }

  .nav--footer {
    gap: 16px;
    font-size: 16px;
    flex-wrap: wrap;
  }

  .social {
    gap: 12px;
  }

  .social a {
    width: 40px;
    height: 40px;
  }

  .social a img {
    width: 28px;
    height: 28px;
  }

  .footer__bottom {
    padding: 16px 0;
  }

  .footer__bottomInner {
    font-size: 14px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer__links {
    gap: 16px;
    font-size: 14px;
  }

  .hero__left {
    align-items: center;
  }
  .hero__inner:not(.hero__inner--showcase) {
    gap: 0px !important;
    margin-top: 36px;
  }
}

/* Small Mobile Devices (max 480px) */
@media (max-width: 480px) {
  :root {
    --header-sticky-offset: 100px;
  }

  .container {
    padding: 0 12px;
  }

  .topbar__inner {
    height: 70px;
  }

  .brand__logo {
    width: 140px;
    height: 32px;
  }

  .hero__cta {
    flex-direction: column;
    gap: 10px;
  }

  .store {
    width: 100%;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }

  .stat__value {
    font-size: 28px;
  }

  .plan__name {
    font-size: 18px;
  }

  .plan__amount {
    font-size: 32px;
  }

  .toggle__item {
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 48px;
  }

  .product-hunt {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__inner:not(.hero__inner--showcase) {
    grid-template-columns: 1fr 420px;
    gap: 64px;
  }

  .hero__title {
    font-size: clamp(46px, 6vw, 56px);
    line-height: clamp(54px, 6.5vw, 72px);
    letter-spacing: -1px;
  }

  .feature {
    grid-template-columns: 1fr 460px;
    gap: 48px;
  }

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

@media (max-width: 740px) {
  .container {
    padding: 0 24px;
  }

  .hero__cta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__inner {
    gap: 36px;
  }

  .feature {
    padding: 48px 0;
    gap: 28px;
    text-align: center;
  }
}

@media (max-width: 900px) {

  .menu-btn {
    display: inline-flex;
  }

  .hero__inner:not(.hero__inner--showcase) {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__inner:not(.hero__inner--showcase) .hero__right {
    justify-content: center;
  }

  .hero-cards {
    max-width: 100%;
  }

  .credentials__grid {
    grid-template-columns: 1fr;
    height: auto;
  }

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

  .feature {
    gap: 36px;
  }

  .feature--reverse .feature__copy {
    order: 0;
  }

  .feature__media {
    display: flex;
    justify-content: center;
  }

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

  .plan {
    min-height: auto;
  }

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

  .footer__navInner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottomInner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 20px;
  }

  .topbar__inner {
    height: 76px;
  }

  .brand__logo {
    width: clamp(160px, 58vw, 200px);
    height: auto;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .toggle__item {
    padding: 12px 16px;
    font-size: 16px;
  }

  .feature__desc {
    font-size: 18px;
  }

  .footer-cta__copy {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-cta__email {
    font-size: 22px;
  }
}

/* —— Terms of Service (legal) page —— [Figma: Terms of Services] */
.legal-hero {
  padding: 72px 0;
}

.legal-hero__inner {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 36px 0;
}

.legal-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
}

.legal-hero__lead {
  margin: 0;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: var(--text-2);
  max-width: 100%;
}

.legal-hero__lead strong {
  font-weight: 700;
  color: var(--text);
}

.legal-hero__updated {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.25px;
  color: var(--text-2);
}

/* Help docs hero: uses legal page system, adds media block */
.legal-hero--help {
  padding: 36px 0 0 0;
}
.legal-hero--help .legal-hero__inner {
  max-width: 980px;
}

.legal-hero--help .pill {
  margin: 0 auto 18px;
}

.help-hero__media {
  width: min(1240px, 100%);
  margin: 26px auto 0;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.55);
  aspect-ratio: var(--help-hero-ar, 16 / 9);
  box-shadow:
    0 0 0 1px rgba(235, 235, 245, 0.08) inset,
    0 26px 70px rgba(0, 0, 0, 0.55);
}

.help-hero__mediaInner {
  position: relative;
  width: 100%;
  height: 100%;
}

.help-hero__mediaVideo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.help-hero__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 1px solid rgba(235, 235, 245, 0.16);
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.help-hero__playIcon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent rgba(235, 235, 245, 0.88);
  margin-left: 4px;
}

.help-hero__media.is-playing .help-hero__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.legal-body {
  padding: 60px 0;
}

.legal-body__inner {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-section__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.legal-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-2);
  overflow-wrap: anywhere;
}

.legal-p--emphasis {
  font-weight: 800;
  color: var(--text-2);
}

.legal-subhead {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-2);
  margin-top: 24px;
}

.legal-inline-link {
  font-weight: 800;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-inline-link:hover {
  color: var(--accent);
}

.legal-divider {
  width: 100%;
  height: 48px;
  flex-shrink: 0;
  position: relative;
  pointer-events: none;
}

.legal-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid var(--line);
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 48px 0;
  }

  .legal-hero__inner {
    padding: 24px 0;
    gap: 20px;
  }

  .legal-hero__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .legal-hero__updated {
    font-size: 16px;
    line-height: 24px;
  }

  .legal-body {
    padding: 40px 0;
  }

  .legal-section__title {
    font-size: clamp(28px, 7vw, 28px);
  }

  .legal-p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.3px;
  }

  .legal-subhead {
    font-size: 18px;
    letter-spacing: -0.5px;
  }

  .card-showcase {
    height: auto;
    min-height: auto;
  }

  .card-showcase__marquee {
    margin-top: 72px;
  }

  .product-hunt__badge img {
    width: 36px
  }

  .product-hunt__title {
    font-size: 28px;
  }

  .store {
    width: 180px;
    height: 54px;
  }

  .pricing {
    padding-bottom: 40px;
  }

  .legal-hero--help {
    padding-bottom: 0px;
    padding-top: 36px;
  }

  .phone-frame--first-1 {
    height: 600px;
  }

  .phone-frame--first-1 .phone-frame__video {
    width: 124%;
    height: 129%;
    top: 48%;
  }

  .download-hero {
    padding-bottom: 80px;
  }

  .nav {
    display: none;
  }

  .hero-card {
    width: clamp(170px, 28vw, 168px);
  }
  .hero-card--center {
    transform: scale(1.015) translateY(-4px);
    margin-right: clamp(-50px, -13vw, -32px);
  }
  
}

/* (Custom cursor removed; reverted to default system cursor) */

