
/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
html {
  background-color: var(--color-bg);
}

body {
  background-color: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   WEBGL BACKGROUND CANVAS
════════════════════════════════════════ */
.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ════════════════════════════════════════
   SKIP LINK
════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2);
  background: var(--color-pink);
  color: var(--color-white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-2); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform 0.3s ease;
}
.navbar--hidden {
  transform: translateY(-100%);
}
main {
  padding-top: 64px;
}
[id] {
  scroll-margin-top: 80px;
}
/* Navbar gets tighter horizontal padding than page sections
   so logo and CTA sit close to browser edges, like Notion's nav */
.navbar .container {
  padding-inline: clamp(12px, 1.5vw, 24px);
  max-width: 100%;
}
.navbar--scrolled {
  box-shadow: 0 2px 12px rgba(26,20,16,0.07);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-4);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 3px;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
}

.navbar__logo-text {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar__logo-own   { color: var(--color-text); }
.navbar__logo-treat { color: var(--color-pink); }

.navbar__nav { flex: 1; display: flex; justify-content: center; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}
.navbar__link:hover { color: var(--color-text); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar__login {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition-fast);
  padding: 0 var(--space-1);
}
.navbar__login:hover { color: var(--color-text); }

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.navbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) var(--container-pad) var(--space-5);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile-links { display: flex; flex-direction: column; gap: var(--space-3); }
.navbar__mobile-links .navbar__link {
  font-size: var(--text-lg);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar__actions { display: none; }
  .navbar__burger { display: flex; }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  padding-block: clamp(80px, 10vh, 120px);
  min-height: 90vh;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__bg-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-lines svg { width: 100%; height: 100%; }

.hero__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

.hero__text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-enter-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__headline {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.5px currentColor;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  animation: hero-enter 0.7s ease both 0.05s;
}

.hero__headline.has-typewriter {
  /* Let the JS control the entrance instead of the default hero-enter animation. */
  animation: none;
}

.hero__accent {
  color: var(--color-pink);
  /* removed white-space: nowrap — caused horizontal overflow on mobile */
}

.tw-line {
  display: block;
}

/* Prevent empty lines from collapsing to 0 height before typing starts */
.tw-line::before {
  content: '\200B';
}

.tw {
  display: inline;
}

@media (prefers-reduced-motion: no-preference) {
  .tw.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 0.08em;
    background: currentColor;
    opacity: 0.85;
    vertical-align: baseline;
    animation: tw-caret 0.85s step-end infinite;
  }
}

@keyframes tw-caret {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.85; }
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 560px;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.typing-done + .hero__sub {
  opacity: 1;
  transform: translateY(0);
}

.hero__sub-accent {
  display: block;
  color: var(--color-pink);
  font-weight: 500;
}

.tw-highlight-target {
  transition: background-color 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.6s ease;
  border-radius: 6px;
  padding: 2px 8px;
  margin-left: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.typing-done .tw-highlight-target {
  background-color: #000;
  /* Optional: a subtle border or shadow to make the black pop against the dark bg */
  box-shadow: 0 0 0 1px rgba(255, 45, 135, 0.15);
}

.hero__cta {
  padding: 16px 36px;
  font-size: var(--text-base);
  margin-top: var(--space-4);
  box-shadow: 0 8px 30px rgba(255,45,135,0.3);
  transition: all var(--transition-base);
  opacity: 0;
  transform: scale(0.5);
  animation: qr-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.0s;
}

/* ── Hero QR card ── */
.hero__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
  animation: hero-enter-right 0.8s ease both 0s;
}

.hero__qr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: white;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(168,85,247,0.20), 0 2px 8px rgba(255,45,135,0.15);
  text-decoration: none;
  overflow: hidden;
  animation: qr-breathe 5s ease-in-out infinite;
  will-change: transform;
  cursor: pointer;
}

@keyframes qr-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__qr-card { animation: none; }
}

/* Iridescent gradient mesh — animated via hue-rotate on ::before */
.hero__qr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(255, 185, 220, 0.85) 0%, transparent 68%),
    radial-gradient(ellipse at 82% 10%, rgba(210, 195, 255, 0.80) 0%, transparent 62%),
    radial-gradient(ellipse at 12% 78%, rgba(175, 240, 235, 0.82) 0%, transparent 60%),
    radial-gradient(ellipse at 88% 82%, rgba(255, 240, 195, 0.76) 0%, transparent 60%),
    radial-gradient(ellipse at 92% 44%, rgba(255, 195, 230, 0.70) 0%, transparent 54%),
    radial-gradient(ellipse at 48% 52%, rgba(235, 215, 255, 0.60) 0%, transparent 66%),
    linear-gradient(155deg, rgba(255, 228, 240, 1) 0%, rgba(236, 226, 255, 1) 38%, rgba(214, 242, 252, 1) 72%, rgba(236, 255, 244, 1) 100%);
  animation: iridescent-card 10s ease-in-out infinite alternate;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__qr-card::before { animation: none; }
}

@keyframes iridescent-card {
  0%   { filter: hue-rotate(0deg)   saturate(1.05) brightness(1.01); }
  25%  { filter: hue-rotate(18deg)  saturate(1.28) brightness(1.04); }
  50%  { filter: hue-rotate(-12deg) saturate(1.18) brightness(1.02); }
  75%  { filter: hue-rotate(26deg)  saturate(1.32) brightness(1.04); }
  100% { filter: hue-rotate(8deg)   saturate(1.22) brightness(1.02); }
}

/* Lift all card content above the gradient layer */
.hero__qr-card > * {
  position: relative;
  z-index: 1;
}

.hero__qr-card:hover {
  animation-play-state: paused;
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 60px rgba(168,85,247,0.28), 0 4px 16px rgba(255,45,135,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__qr-badge {
  font-size: var(--text-xs);
}

.hero__qr-frame {
  position: relative;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

/* Pink corner brackets */
.hero__qr-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--color-pink);
  border-style: solid;
}
.hero__qr-corner--tl { top: 0; left: 0; border-width: 2.5px 0 0 2.5px; border-radius: 4px 0 0 0; }
.hero__qr-corner--tr { top: 0; right: 0; border-width: 2.5px 2.5px 0 0; border-radius: 0 4px 0 0; }
.hero__qr-corner--bl { bottom: 0; left: 0; border-width: 0 0 2.5px 2.5px; border-radius: 0 0 0 4px; }
.hero__qr-corner--br { bottom: 0; right: 0; border-width: 0 2.5px 2.5px 0; border-radius: 0 0 4px 0; }

.hero__qr-img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 4px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero__qr-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.hero__qr-url {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

.hero__dashboard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(26,20,16,0.10), 0 2px 8px rgba(26,20,16,0.06);
  overflow: hidden;
}

.dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #F5F3F0;
  border-bottom: 1px solid var(--color-border);
}

.dashboard__dots {
  display: flex;
  gap: 5px;
}
.dashboard__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E8E3DE;
}
.dashboard__dots span:nth-child(1) { background: #FC6058; }
.dashboard__dots span:nth-child(2) { background: #FEC02F; }
.dashboard__dots span:nth-child(3) { background: #2DC840; }

.dashboard__url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--color-muted);
  background: white;
  border-radius: 4px;
  padding: 2px 10px;
  border: 1px solid var(--color-border);
}

.dashboard__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.dashboard__restaurant strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.dashboard__restaurant span {
  font-size: 11px;
  color: var(--color-muted);
}

.dashboard__date {
  font-size: 11px;
  color: var(--color-muted);
  background: var(--color-cream);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dashboard__stat {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashboard__stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
  font-family: 'Geist', var(--font-body);
}

.dashboard__stat-label {
  font-size: 10px;
  color: var(--color-muted);
  line-height: 1.3;
}

.dashboard__section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard__posts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard__post {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
}

.dashboard__post-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #8B4513, #D2691E);
  flex-shrink: 0;
}
.dashboard__post-thumb--b { background: linear-gradient(135deg, #1A1410, #3B2F8A); }
.dashboard__post-thumb--c { background: linear-gradient(135deg, #FF2D87, #A855F7); }

.dashboard__post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dashboard__post-info span:first-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
}
.dashboard__post-time {
  font-size: 10px;
  color: var(--color-muted);
}

.dashboard__post-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-pink);
  background: rgba(255,45,135,0.08);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.dashboard__chart-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.dashboard__bar {
  flex: 1;
  background: var(--color-border);
  border-radius: 3px 3px 0 0;
  transition: background var(--transition-fast);
}
.dashboard__bar:nth-child(1) { height: 32%; }
.dashboard__bar:nth-child(2) { height: 48%; }
.dashboard__bar:nth-child(3) { height: 40%; }
.dashboard__bar:nth-child(4) { height: 65%; }
.dashboard__bar:nth-child(5) { height: 55%; }
.dashboard__bar:nth-child(6) { height: 78%; }
.dashboard__bar--today { background: var(--color-pink); height: 95%; }

@media (max-width: 768px) {
  .hero__inner { 
    flex-direction: column; 
    align-items: center;
    gap: var(--space-8); 
    text-align: center; 
  }
  .hero__text { text-align: center; width: 100%; }
  .hero__qr-wrap { width: 100%; }
  .hero__sub { max-width: 100%; margin-inline: auto; }
  .hero__headline { font-size: clamp(1.8rem, 7vw, 2.6rem); word-break: break-word; overflow-wrap: break-word; }
  .hero__accent { white-space: normal; }
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-strip {
  background: var(--color-text);
  overflow: hidden;
  padding-block: 14px;
  width: 100%;
}

.marquee__track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-bg);
  padding-inline: 40px;
}

.marquee__logo {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.marquee__dot {
  color: var(--color-pink);
  font-size: 0.6rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ════════════════════════════════════════
   UGC FEATURE SECTION
════════════════════════════════════════ */
.ugc-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

/* Visual container */
.ugc-feature__visual {
  background: #EBEBEB;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  transform: rotate(-5deg);
}

.ugc-feature__mockup-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

/* Instagram-style post card */
.ugc-post {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 10px;
}

.ugc-post--1 { transform: rotate(-28deg) translateY(20px); }
.ugc-post--2 { transform: rotate(0deg); z-index: 1; }
.ugc-post--3 { transform: rotate(2deg) translateY(8px); }

/* ── Platform badge (bottom label) ── */
.ugc-post__platform-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
}
.ugc-badge--ig   { background: linear-gradient(90deg, #C13584, #E1306C, #FD1D1D); }
.ugc-badge--tiktok { background: #010101; }

/* ── Instagram Post (Card 1) ── */
.ugc-post__header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
}

.ugc-post__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF2D87, #A855F7);
  flex-shrink: 0;
}

.ugc-post__username {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
}

.ugc-post__menu {
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 1px;
}

.ugc-post__image {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.ugc-post__image--food {
  background: linear-gradient(160deg, #8B4513 0%, #D2691E 40%, #A0522D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ugc-post__overlay-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.ugc-post__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--color-text);
}

.ugc-post__bookmark { margin-left: auto; }
.ugc-post__heart--liked { color: #FF2D87; }

/* ── IG Story (Card 2) ── */
.ugc-post--story {
  overflow: visible;
}

/* Orbit hero story: full-bleed 9:16, no white wrapper */
/* Hero orbit review card */
.hero__review-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  padding: 14px 16px;
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__review-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__review-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.hero__review-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero__review-source {
  font-size: 9px;
  color: var(--color-muted);
  line-height: 1.2;
}

.hero__review-google-icon {
  flex-shrink: 0;
}

.hero__review-stars {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
}

.hero__review-text {
  font-size: 11px;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.ugc-post--story-bleed {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 85px;
  border-radius: 10px;
  overflow: hidden;
}

.ugc-post--story-bleed .story__image {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
}

.story__image {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, #8B4513 0%, #D2691E 35%, #FF6B35 70%, #FF2D87 100%);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.story__bars {
  display: flex;
  gap: 3px;
  padding: 8px 6px 4px;
  flex-shrink: 0;
}

.story__bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
}
.story__bar--done    { background: rgba(255,255,255,0.9); }
.story__bar--active  { background: rgba(255,255,255,0.9); width: 60%; flex: none; }

.story__header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 6px 6px;
  flex-shrink: 0;
}

.story__avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD600, #FF6B35);
  border: 1.5px solid white;
  flex-shrink: 0;
}

.story__meta { display: flex; flex-direction: column; flex: 1; }
.story__username { font-size: 8px; font-weight: 700; color: white; line-height: 1.2; }
.story__time     { font-size: 7px; color: rgba(255,255,255,0.75); }
.story__close    { font-size: 9px; color: rgba(255,255,255,0.8); margin-left: auto; }

.story__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}

.story__sticker {
  background: rgba(255,255,255,0.92);
  color: #1A1410;
  font-size: 7.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  transform: rotate(-4deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.story__caption {
  font-size: 8px;
  font-weight: 600;
  color: white;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.story__bottom {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 8px;
  flex-shrink: 0;
}

.story__reply-box {
  flex: 1;
  font-size: 7.5px;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 3px 8px;
}

.story__heart { font-size: 12px; color: rgba(255,255,255,0.85); }

/* ── TikTok Reel (Card 3) ── */
.tiktok__video {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, #1A1410 0%, #2D1B4E 50%, #0D1B2A 100%);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}

/* Full-bleed tiktok reel card for hero orbit */
.ugc-post--tiktok-bleed {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 90px;
  border-radius: 10px;
  overflow: hidden;
}

.ugc-post--tiktok-bleed .tiktok__video {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
}

.tiktok__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Ensure sidebar and bottom overlay the image */
.ugc-post--tiktok-bleed .tiktok__sidebar,
.ugc-post--tiktok-bleed .tiktok__bottom {
  z-index: 1;
}

.tiktok__sidebar {
  position: absolute;
  right: 6px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tiktok__avatar-wrap {
  position: relative;
  margin-bottom: 4px;
}

.tiktok__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #3B82F6);
  border: 1.5px solid white;
}

.tiktok__follow {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #FF2D87;
  color: white;
  font-size: 7px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.tiktok__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.tiktok__action-icon  { font-size: 14px; color: white; line-height: 1; }
.tiktok__action-count { font-size: 6.5px; color: rgba(255,255,255,0.85); font-weight: 600; }

.tiktok__bottom {
  position: absolute;
  left: 6px;
  bottom: 8px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tiktok__username { font-size: 8px; font-weight: 700; color: white; }
.tiktok__caption  { font-size: 7px; color: rgba(255,255,255,0.85); line-height: 1.3; }

.tiktok__music {
  font-size: 6.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Text side */
.ugc-feature__title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.ugc-feature__sub {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.ugc-feature__callout {
  background: #F5F5F5;
  border-left: 3px solid var(--color-pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.ugc-feature__callout p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

.ugc-feature__closing {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.6;
  text-wrap: balance;
}

.ugc-feature__closing strong { color: var(--color-text); }

@media (max-width: 900px) {
  .ugc-feature__inner { grid-template-columns: 1fr; }
  .ugc-feature__visual { min-height: 300px; }
  .ugc-post { width: 120px; }
  .ugc-post__overlay-text { font-size: 16px; }
}

/* ════════════════════════════════════════
   COMPARISON SECTION
════════════════════════════════════════ */
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.comparison__card {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comparison__card--dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.32);
}
.comparison__card--pink:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(212, 50, 126, 0.28);
}

.comparison__card--dark {
  background: #1A1410;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--color-white);
}

.comparison__card--pink {
  background: #D4327E;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}

.comparison__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.comparison__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.comparison__icon--cross {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.comparison__icon--check {
  background: rgba(255,255,255,0.25);
  color: var(--color-white);
}

.comparison__card-title {
  font-family: var(--font-body);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.1;
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}

.comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-base);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.comparison__list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.7);
  background: radial-gradient(circle, rgba(255,255,255,0.9) 35%, transparent 35%);
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.comparison__body p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.comparison__body strong {
  color: var(--color-white);
  font-weight: 700;
}

.comparison__quote {
  background: rgba(26,20,16,0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-8);
  text-align: center;
}

.comparison__quote p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .comparison__grid { grid-template-columns: 1fr; }
  .comparison__quote { padding: var(--space-4); }
}

/* ════════════════════════════════════════
   ONE QR CODE — FEATURE GRID
════════════════════════════════════════ */
.qr-engine {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.qr-engine::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,214,0,0.12) 0%, transparent 68%);
  pointer-events: none;
}

.qr-engine__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.qr-engine__title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.qr-engine__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-muted);
  line-height: 1.7;
}

.qr-engine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.qr-engine__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qr-engine__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 20, 16, 0.10);
}
}

.qr-engine__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 45, 135, 0.08);
  color: var(--color-pink);
  flex-shrink: 0;
}

.qr-engine__card-title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
}

.qr-engine__card-body {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .qr-engine__grid { grid-template-columns: 1fr; }
  .qr-engine__header { margin-bottom: var(--space-6); }
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats {
  background: linear-gradient(
    135deg,
    #fffbe6 0%,
    #fdf4f8 40%,
    #fce8f3 70%,
    #f0e8f8 100%
  );
}

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

.stats__item {
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.stats__item:not(:last-child) {
  border-right: 1px solid rgba(26, 20, 16, 0.10);
}

.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 700;
  line-height: 1;
  color: var(--color-pink);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.stats__pct {
  font-size: 55%;
  vertical-align: super;
  line-height: 0;
}

.stats__label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 240px;
  margin-inline: auto;
  text-wrap: balance;
}

.stats__source {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-muted);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.stats__source:hover { opacity: 1; }

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { padding-block: var(--space-6); }
  .stats__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(26, 20, 16, 0.10);
  }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.hiw__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.hiw__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
}

.hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.hiw__step {
  flex: 1;
  position: relative;
  text-align: center;
  padding: var(--space-5) var(--space-4);
  transition: transform 0.25s ease;
}
.hiw__step:hover { transform: translateY(-3px); }

.hiw__step-number {
  font-family: var(--font-display);
  font-size: var(--text-step);
  font-weight: 700;
  line-height: 1;
  color: var(--color-pink);
  opacity: 0.1;
  position: absolute;
  top: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.hiw__step-icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-3);
  margin-top: var(--space-4);
}

.hiw__step-title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.hiw__step-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
  text-wrap: balance;
}

.hiw__connector {
  width: 48px;
  flex-shrink: 0;
  height: 2px;
  border-top: 2px dashed var(--color-border);
  margin-top: 100px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .hiw__steps {
    flex-direction: column;
    gap: var(--space-4);
  }
  .hiw__connector { display: none; }
  .hiw__step { text-align: left; }
  .hiw__step-icon { justify-content: flex-start; }
  .hiw__step-number {
    left: auto;
    right: var(--space-3);
    transform: none;
  }
}

/* ════════════════════════════════════════
   PROBLEM / SOLUTION
════════════════════════════════════════ */
.contrast__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contrast__col {
  padding: var(--space-8) var(--space-6);
}

.contrast__col--problem {
  background: var(--color-cream);
}

.contrast__col--solution {
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
}

.contrast__col-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .contrast__grid { grid-template-columns: 1fr; }
  .contrast__col--solution { border-left: none; border-top: 1px solid var(--color-border); }
  .contrast__col { padding: var(--space-5) var(--space-4); }
}

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.features {
  background: transparent;
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.features__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
}

.features__grid {
  gap: var(--space-3);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26, 20, 16, 0.12);
}

.feature-card--yellow {
  border-color: rgba(255, 214, 0, 0.55);
  background: rgba(255, 252, 232, 0.55);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,45,135,0.07);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.feature-card--yellow .feature-card__icon {
  background: rgba(255,214,0,0.15);
}

.feature-card__badge {
  margin-bottom: var(--space-1);
  align-self: flex-start;
}

.feature-card__title {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.3;
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
  text-wrap: balance;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  background: transparent;
}

.testimonials .section-label {
  display: block;
  text-align: center;
  margin-bottom: var(--space-8);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.testimonial {
  position: relative;
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-pink);
  opacity: 0.2;
  position: absolute;
  top: -16px;
  left: -8px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #FF2D87, #A855F7);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__avatar--b {
  background: linear-gradient(135deg, #FFD600, #FF2D87);
}

.testimonial__name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
}

.testimonial__place {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.pricing__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.pricing__sub {
  font-size: var(--text-lg);
  color: var(--color-muted);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.pricing__plan {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}

.pricing__plan--featured {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 1px var(--color-pink), var(--shadow-card);
}

.pricing__plan .btn {
  width: 100%;
  justify-content: center;
}

.pricing__plan-badge {
  align-self: flex-start;
}

.pricing__plan-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
}

.pricing__plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing__plan-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pricing__plan-period {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.pricing__plan-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.5;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.pricing__check {
  color: var(--color-pink);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing__dash {
  color: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 900px) and (min-width: 600px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Managed plan spans full width on 2-col tablet layout */
  .pricing__grid .pricing__plan:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 599px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.cta-final {
  background: var(--color-bg);
}

.cta-final__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.cta-final__badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-4);
}

.cta-final__title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.cta-final__sub {
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.65;
}

.cta-final__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

.cta-final__card {
  background: rgba(10, 10, 14, 0.96);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  backdrop-filter: blur(28px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: var(--space-6);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 80vh;
}

.cta-final__card--growth {
  background: rgba(18, 14, 20, 0.96);
  border-color: rgba(255, 45, 135, 0.15);
}

.pricing-card__header {
  margin-bottom: var(--space-4);
}

.pricing-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.pricing-card__badge--primary {
  background: rgba(255, 45, 135, 0.15);
  color: var(--color-pink);
  border: 1px solid rgba(255, 45, 135, 0.3);
}

.pricing-card__badge--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card__name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__price span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.pricing-card__cancel {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: -12px;
  margin-bottom: var(--space-3);
}

.pricing-card__headline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-pink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pricing-card__body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.pricing-card__features {
  margin-bottom: var(--space-5);
}

.pricing-card__feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.pricing-card__feature-title--cross {
  margin-top: var(--space-3);
  color: rgba(255,255,255,0.4);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.pricing-card__item::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card__item--check::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF2D87' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.pricing-card__item--cross {
  color: rgba(255,255,255,0.4);
}

.pricing-card__item--cross::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.pricing-card__action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.cta-final__btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  position: relative;
  isolation: isolate;
}

.cta-final__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 8px 32px rgba(255, 45, 135, 0.4);
  animation: btn-glow 2.8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.cta-final__btn--alt {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-final__btn--alt:hover {
  background: rgba(255, 255, 255, 0.15);
}

@keyframes btn-glow {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__headline, .hero__sub, .hero__qr-wrap { animation: none; opacity: 1; transform: none; }
  .cta-final__btn::after { animation: none; }
}

.pricing-card__note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cta-final__cards { grid-template-columns: 1fr; }
  .cta-final__card { padding: var(--space-5); min-height: auto; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--color-bg);
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__logo-img {
  height: 28px;
  width: auto;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__qr-url {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.3s ease;
}

/* ══════════════════════════════════════════
   HERO ORBIT SYSTEM
══════════════════════════════════════════ */
.hero__orbit-system {
  position: relative;
  width: 100%;
  max-width: 360px;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: visible;
}

.hero__qr-pop-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  position: relative;
  opacity: 0;
  transform: scale(0.5);
  animation: qr-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.0s;
}

@keyframes qr-pop {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

.hero__qr-card {
  position: relative;
}

.hero__orbit-spin-wrapper {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  opacity: 0; /* start hidden until animation begins */
}

/* Add delays and different spin amounts/durations for an organic tornado feel */
.hero__orbit-spin-wrapper--1 {
  animation: tornado-spin 2.2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards 0s;
}
.hero__orbit-spin-wrapper--2 {
  animation: tornado-spin-fast 2.4s cubic-bezier(0.1, 0.8, 0.2, 1) forwards 0.15s;
}
.hero__orbit-spin-wrapper--3 {
  animation: tornado-spin 2.6s cubic-bezier(0.1, 0.8, 0.2, 1) forwards 0.25s;
}
.hero__orbit-spin-wrapper--4 {
  animation: tornado-spin-fast 2.8s cubic-bezier(0.1, 0.8, 0.2, 1) forwards 0.1s;
}

@keyframes tornado-spin {
  0% { transform: rotateY(-720deg) scale(0.5); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}

@keyframes tornado-spin-fast {
  0% { transform: rotateY(-1080deg) scale(0.4); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}

.hero__orbit-card {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.hero__orbit-card .ugc-post {
  width: 130px; /* slightly smaller than standard for orbit */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: none; /* override default tilt */
}

/* Card 1: Top Left */
.hero__orbit-card--1 {
  top: -10px;
  left: -165px;
  z-index: 5;
  transform: translateZ(-80px) rotateY(15deg) rotateX(10deg) scale(0.85);
  animation: orbit-float-1 6s ease-in-out infinite alternate;
  opacity: 0.95;
}

/* Card 2: Bottom Right */
.hero__orbit-card--2 {
  bottom: -30px;
  right: -185px;
  z-index: 10;
  transform: translateZ(-20px) rotateY(-20deg) rotateX(-5deg) scale(1.05);
  animation: orbit-float-2 7s ease-in-out infinite alternate-reverse;
  opacity: 1;
}

/* Card 3: Top Right */
.hero__orbit-card--3 {
  top: 10px;
  right: -195px;
  z-index: 2;
  transform: translateZ(-150px) rotateY(-25deg) rotateX(15deg) scale(0.8);
  animation: orbit-float-3 5.5s ease-in-out infinite alternate;
  opacity: 0.85;
}

/* Card 4: Bottom Left */
.hero__orbit-card--4 {
  bottom: 10px;
  left: -185px;
  z-index: 15;
  transform: translateZ(-10px) rotateY(25deg) rotateX(-10deg) scale(0.95);
  animation: orbit-float-4 6.5s ease-in-out infinite alternate;
  opacity: 0.95;
}

@keyframes orbit-float-1 {
  0% { transform: translateZ(-80px) rotateY(15deg) rotateX(10deg) scale(0.85) translateY(0); }
  100% { transform: translateZ(-80px) rotateY(18deg) rotateX(8deg) scale(0.85) translateY(-15px); }
}

@keyframes orbit-float-2 {
  0% { transform: translateZ(-20px) rotateY(-20deg) rotateX(-5deg) scale(1.05) translateY(0); }
  100% { transform: translateZ(-20px) rotateY(-22deg) rotateX(-7deg) scale(1.05) translateY(-20px); }
}

@keyframes orbit-float-3 {
  0% { transform: translateZ(-150px) rotateY(-25deg) rotateX(15deg) scale(0.8) translateY(0); }
  100% { transform: translateZ(-150px) rotateY(-20deg) rotateX(20deg) scale(0.8) translateY(-10px); }
}

@keyframes orbit-float-4 {
  0% { transform: translateZ(-10px) rotateY(25deg) rotateX(-10deg) scale(0.95) translateY(0); }
  100% { transform: translateZ(-10px) rotateY(28deg) rotateX(-12deg) scale(0.95) translateY(15px); }
}

@media (max-width: 1024px) {
  .hero__orbit-card { transform: scale(0.7) !important; }
  .hero__orbit-card--1 { left: -100px; }
  .hero__orbit-card--2 { right: -100px; }
  .hero__orbit-card--3 { right: -120px; }
  .hero__orbit-card--4 { left: -120px; }
}

@media (max-width: 768px) {
  .hero__orbit-card { display: none; } /* Hide orbiting cards on mobile to prevent overflow and keep QR central */
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--color-text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════
   BUY STAND SECTION
════════════════════════════════════════ */
.buy-stand__card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-6);
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
  .buy-stand__card {
    grid-template-columns: 1fr;
    padding: var(--space-4);
  }
}

.buy-stand__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.buy-stand__desc {
  color: var(--color-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.buy-stand__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.buy-stand__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.buy-stand__features .check {
  color: var(--color-pink);
  font-weight: bold;
}

.buy-stand__checkout {
  background: #F9F8F6;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border: 1px solid var(--color-border);
}

.buy-stand__price-tier {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.buy-stand__price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  font-family: var(--font-display);
}

.buy-stand__per {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.buy-stand__quantity-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buy-stand__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.buy-stand__counter {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-white);
}

.buy-stand__btn-adjust {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

.buy-stand__btn-adjust:hover:not(:disabled) {
  background: #F0F0F0;
}

.buy-stand__btn-adjust:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.buy-stand__input {
  width: 40px;
  height: 32px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  -moz-appearance: textfield;
}
.buy-stand__input::-webkit-outer-spin-button,
.buy-stand__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buy-stand__subtotal-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--color-border);
  font-size: var(--text-base);
}

.buy-stand__subtotal {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
}

.buy-stand__submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}

.buy-stand__secure {
  font-size: 11px;
  text-align: center;
  color: var(--color-muted);
  margin-top: -4px;
}
