/* HaiLaNunta — Catalog modele (dynamic showcase) */

:root {
  --brand-red: #e30613;
  --brand-red-dark: #c00510;
  --brand-black: #0a0a0a;
  --brand-white: #ffffff;

  --color-bg: #f7f6f4;
  --color-surface: #ffffff;
  --color-text: #141414;
  --color-text-muted: #5c5c5c;
  --color-text-light: rgba(255, 255, 255, 0.72);
  --color-border: rgba(20, 20, 20, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.12);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --title-weight: 800;
  --title-font: var(--font-sans);
  --title-transform: uppercase;
  --title-tracking: 0.03em;

  --header-h: 4.75rem;
  --max-w: 76rem;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Flow demo — cromatică brand per pas */
  --flow-blob-1: #e30613;
  --flow-blob-2: #0a0a0a;
  --flow-blob-3: #c00510;
  --flow-blob-4: #e8dfd4;
  --radius-lg: 1.5rem;
  --radius-xl: 1.75rem;
  --hero-dark: #070b14;
  --hero-glow: rgba(227, 6, 19, 0.35);
  --flow-visual-bg: #f0eeeb;
}

/* Titluri principale — bold majuscule */
.hero-lp__title,
.showcase__title,
.features-bento__header h2,
.features-bento__card h3,
.pitch-strip__title,
.mid-cta h2,
.testimonials h2,
.pricing__header h2,
.pricing__card h3,
.faq h2,
.cta__inner h2 {
  font-family: var(--title-font);
  font-weight: var(--title-weight);
  text-transform: var(--title-transform);
  letter-spacing: var(--title-tracking);
  text-wrap: balance;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

main {
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
}

.site-header__logo img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: 9.5rem;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-header__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.site-header__nav a:hover {
  color: var(--brand-white);
}

.site-header__cta {
  padding: 0.65rem 1.5rem;
  background: var(--brand-red);
  color: var(--brand-white) !important;
  border-radius: 999px;
  letter-spacing: 0.04em !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.35);
  transition: background var(--transition), transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header__cta:hover {
  background: var(--brand-red-dark);
  transform: scale(1.03);
}

.site-header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}

.site-header__menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--brand-white);
  transition: transform var(--transition), opacity var(--transition);
}

.site-header__menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(0.42rem) rotate(45deg);
}

.site-header__menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.site-header__mobile {
  display: flex;
  flex-direction: column;
  background: var(--brand-black);
  border-top: 1px solid var(--color-border-light);
  padding: 0.5rem 1.5rem 1.25rem;
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-header__mobile[hidden] {
  display: none !important;
}

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

.site-header__mobile a {
  padding: 0.85rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border-light);
}

.site-header__mobile a:last-child {
  border-bottom: none;
  margin-top: 0.75rem;
  text-align: center;
  padding: 0.85rem 1.25rem;
  background: var(--brand-red);
  color: var(--brand-white);
}

/* ── Hero LP — AirLume direction ── */
.hero-lp {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 4.5rem;
  color: var(--brand-white);
  overflow: hidden;
  background: var(--hero-dark);
}

.hero-lp__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(227, 6, 19, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 90% 70%, rgba(227, 6, 19, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #070b10 45%, #0a0a0a 100%);
}

.hero-lp__glow-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.025) 80px,
    rgba(255, 255, 255, 0.025) 81px
  );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 85%);
}

.hero-lp__glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-lp__glow-orb--1 {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -6rem;
  background: rgba(227, 6, 19, 0.2);
  animation: heroOrb 14s ease-in-out infinite alternate;
}

.hero-lp__glow-orb--2 {
  width: 20rem;
  height: 20rem;
  bottom: 10%;
  left: -5rem;
  background: rgba(227, 6, 19, 0.12);
  animation: heroOrb 18s ease-in-out infinite alternate-reverse;
}

@keyframes heroOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -15px) scale(1.08); }
}

.hero-lp__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-lp__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

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

.hero-lp__points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
  text-align: left;
}

.hero-lp__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.hero-lp__point-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-red);
  padding-top: 0.15rem;
}

.hero-lp__point-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-white);
  margin-bottom: 0.2rem;
}

.hero-lp__points p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.hero-lp__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  padding: 1rem 0;
}

.hero-lp__phone-wrap {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
}

.hero-lp__stats-card {
  position: absolute;
  left: 0;
  top: 8%;
  z-index: 3;
  width: min(10.5rem, 40vw);
  padding: 0.85rem 0.95rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  color: var(--brand-white);
  animation: heroStatsCard 5.5s ease-in-out infinite;
}

@keyframes heroStatsCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-lp__stats-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
}

.hero-lp__stats-value {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-lp__stats-value span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.hero-lp__stats-meta {
  display: block;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.55rem;
}

.hero-lp__stats-breakdown {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero-lp__stats-breakdown li {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.hero-lp__wa-card {
  position: absolute;
  left: 0;
  bottom: 28%;
  z-index: 3;
  width: min(11.5rem, 44vw);
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: var(--color-text);
  animation: heroWaCard 6s ease-in-out infinite;
}

@keyframes heroWaCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-lp__wa-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.hero-lp__wa-text {
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-bottom: 0.35rem;
}

.hero-lp__wa-link {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--brand-red);
  word-break: break-all;
}

.hero-lp__rsvp-card {
  position: absolute;
  right: 0;
  bottom: 12%;
  z-index: 3;
  width: min(11rem, 42vw);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  color: var(--color-text);
  animation: heroRsvpCard 5s ease-in-out infinite;
}

@keyframes heroRsvpCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-lp__rsvp-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.hero-lp__rsvp-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hero-lp__rsvp-meta {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.55rem;
}

.hero-lp__rsvp-status {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  color: #1a7a42;
  background: rgba(26, 122, 66, 0.1);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

@media (min-width: 900px) {
  .hero-lp__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-lp__copy {
    text-align: left;
    max-width: 34rem;
  }

  .hero-lp__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-lp__rsvp-card {
    right: -1rem;
    bottom: 18%;
  }

  .hero-lp__stats-card {
    left: -1rem;
    top: 6%;
  }

  .hero-lp__wa-card {
    left: -0.5rem;
    bottom: 32%;
  }
}

@media (max-width: 899px) {
  .hero-lp__rsvp-card {
    right: 4%;
    bottom: 8%;
  }

  .hero-lp__stats-card {
    left: 2%;
    top: 2%;
    width: min(9.25rem, 38vw);
    padding: 0.7rem 0.8rem;
  }

  .hero-lp__wa-card {
    display: none;
  }
}

.hero-lp__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-lp__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  text-wrap: wrap;
}

.hero-lp__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.hero-lp__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-white);
  background: var(--brand-red);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background var(--transition);
}

.hero-lp__btn--primary:hover {
  background: var(--brand-red-dark);
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(227, 6, 19, 0.5);
}

/* Hero bento floating cards */
.hero-lp__bento {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 52rem;
  margin: 0 auto;
  min-height: 20rem;
}

.hero-bento {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.35rem;
  color: var(--color-text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bento--stats {
  animation: heroBentoFloat 6s ease-in-out infinite;
}

.hero-bento--main {
  padding: 1.35rem;
  text-align: center;
  animation: heroBentoFloat 6s ease-in-out infinite -2s;
}

.hero-bento--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(227, 6, 19, 0.45);
  box-shadow:
    0 0 0 1px rgba(227, 6, 19, 0.15),
    0 0 40px rgba(227, 6, 19, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.4);
  color: var(--brand-white);
  animation: heroBentoFloat 6s ease-in-out infinite -4s;
}

@keyframes heroBentoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-bento__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.hero-bento__label--glass {
  color: rgba(255, 255, 255, 0.65);
}

.hero-bento__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.hero-bento__value span {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-bento__bar {
  height: 0.35rem;
  background: rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.hero-bento__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red), #ff4d56);
  border-radius: inherit;
}

.hero-bento__chip {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--brand-red);
  background: rgba(227, 6, 19, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.hero-bento__pill {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-red);
  background: rgba(227, 6, 19, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ── iPhone 16 — mockup 3D ── */
.iphone-16 {
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
}

.iphone-16--xs { width: min(9rem, 48vw); }
.iphone-16--sm { width: clamp(9rem, 44%, 11.5rem); }
.iphone-16--md { width: clamp(11.5rem, 28vw, 14.5rem); }
.iphone-16--lg { width: clamp(12.5rem, 32vw, 16.5rem); }

.iphone-16--tilt-left .iphone-16__body {
  transform: rotateY(-16deg) rotateX(7deg) rotateZ(-1deg);
}

.iphone-16--tilt-right .iphone-16__body {
  transform: rotateY(16deg) rotateX(7deg) rotateZ(1deg);
}

.iphone-16--center .iphone-16__body {
  transform: rotateY(0deg) rotateX(8deg) rotateZ(0deg);
}

.iphone-16__ground {
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: 72%;
  height: 1.1rem;
  transform: translateX(-50%) rotateX(82deg);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.38) 0%, transparent 72%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.iphone-16__body {
  position: relative;
  z-index: 1;
  padding: 0.42rem;
  border-radius: 2.75rem;
  background:
    linear-gradient(155deg, #6e6e73 0%, #3a3a3c 14%, #1d1d1f 42%, #2c2c2e 68%, #636366 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    -1px 0 0 rgba(255, 255, 255, 0.06),
    -20px 28px 52px rgba(0, 0, 0, 0.38),
    0 44px 88px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
}

.iphone-16--float .iphone-16__body {
  animation: iphone16Float 6s ease-in-out infinite;
}

.iphone-16--tilt-left.iphone-16--float .iphone-16__body {
  animation: iphone16FloatLeft 6s ease-in-out infinite;
}

.iphone-16--tilt-right.iphone-16--float .iphone-16__body {
  animation: iphone16FloatRight 6s ease-in-out infinite;
}

.iphone-16--center.iphone-16--float .iphone-16__body {
  animation: iphone16FloatCenter 6s ease-in-out infinite;
}

@keyframes iphone16FloatLeft {
  0%, 100% { transform: rotateY(-16deg) rotateX(7deg) translateY(0); }
  50% { transform: rotateY(-14deg) rotateX(6deg) translateY(-10px); }
}

@keyframes iphone16FloatRight {
  0%, 100% { transform: rotateY(16deg) rotateX(7deg) translateY(0); }
  50% { transform: rotateY(14deg) rotateX(6deg) translateY(-10px); }
}

@keyframes iphone16FloatCenter {
  0%, 100% { transform: rotateY(0deg) rotateX(8deg) translateY(0); }
  50% { transform: rotateY(2deg) rotateX(7deg) translateY(-12px); }
}

.iphone-16__screen {
  position: relative;
  border-radius: 2.25rem;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.85);
}

.iphone-16__screen > img:not(.showcase__poster),
.iphone-16__screen > iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  object-position: top;
}

.iphone-16__island {
  position: absolute;
  top: 0.72rem;
  left: 50%;
  transform: translateX(-50%);
  width: 27%;
  height: 0.82rem;
  background: #000;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.iphone-16__glare {
  position: absolute;
  inset: 0;
  border-radius: 2.75rem;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.24) 0%,
    transparent 36%,
    transparent 64%,
    rgba(255, 255, 255, 0.07) 100%
  );
  pointer-events: none;
  z-index: 5;
}

.iphone-16__btn {
  position: absolute;
  background: linear-gradient(90deg, #252527, #4a4a4e, #252527);
  border-radius: 2px;
  z-index: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.iphone-16__btn--action {
  right: -0.1rem;
  top: 27%;
  width: 0.13rem;
  height: 3.1rem;
}

.iphone-16__btn--vol-up {
  left: -0.1rem;
  top: 21%;
  width: 0.13rem;
  height: 1.65rem;
}

.iphone-16__btn--vol-down {
  left: -0.1rem;
  top: 31%;
  width: 0.13rem;
  height: 1.65rem;
}

.hero-bento__phone {
  width: min(10rem, 55vw);
  margin: 0 auto 1rem;
}

.hero-bento__phone .iphone-16 {
  margin: 0 auto;
}

.hero-bento__caption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.hero-bento__name {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.35rem 0 0.25rem;
}

.hero-bento__meta {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.65rem;
}

.hero-bento__status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #128c7e;
  background: rgba(37, 211, 102, 0.15);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.hero-float {
  display: none;
  position: absolute;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .hero-lp__bento {
    grid-template-columns: 1fr 1.35fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.15rem;
    min-height: 24rem;
  }

  .hero-bento--stats {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .hero-bento--main {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .hero-bento--glass {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
  }

  .hero-float {
    display: block;
  }

  .hero-float--a { top: 8%; left: 18%; animation: heroBentoFloat 5s ease-in-out infinite -1s; }
  .hero-float--b { top: 42%; right: 6%; animation: heroBentoFloat 5s ease-in-out infinite -2.5s; }
  .hero-float--c { bottom: 18%; left: 8%; animation: heroBentoFloat 5s ease-in-out infinite -3.5s; }
}

/* ── Features Bento Grid ── */
.features-bento {
  padding: 5rem 1.5rem;
  background: var(--color-surface);
}

.features-bento__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-bento__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.features-bento__header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: var(--hero-dark);
  margin-bottom: 0.65rem;
}

.features-bento__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.features-bento__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.features-bento__card {
  padding: 1.5rem 1.35rem;
  background: #f8f7f5;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.features-bento__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.08);
  border-color: rgba(227, 6, 19, 0.2);
}

.features-bento__card--featured {
  background: linear-gradient(145deg, var(--brand-red) 0%, #b8050f 100%);
  border-color: transparent;
  color: var(--brand-white);
  box-shadow: 0 20px 48px rgba(227, 6, 19, 0.35);
}

.features-bento__card--featured:hover {
  box-shadow: 0 24px 56px rgba(227, 6, 19, 0.42);
  border-color: transparent;
}

.features-bento__icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 0.65rem;
  background: rgba(20, 20, 20, 0.06);
  color: var(--brand-red);
  margin-bottom: 0.25rem;
}

.features-bento__card--featured .features-bento__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--brand-white);
}

.features-bento__card h3 {
  font-size: 1.125rem;
  line-height: 1.2;
}

.features-bento__card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex: 1;
}

.features-bento__card--featured p {
  color: rgba(255, 255, 255, 0.82);
}

.features-bento__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-top: 0.35rem;
}

.features-bento__card--featured .features-bento__link {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .features-bento__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-bento__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-bento__card--featured {
    grid-row: span 2;
  }
}

/* ── Hero LP legacy (unused markup) ── */
.hero-lp__pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-lp__pains {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-lp__pains li {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.hero-lp__pains li::before {
  content: "✕ ";
  color: var(--brand-red);
  font-weight: 700;
}

.hero-lp__actions {
  display: none;
}

.hero-lp__btn--ghost {
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: var(--brand-white);
  background: rgba(37, 211, 102, 0.12);
}

.hero-lp__btn--ghost:hover {
  border-color: rgba(37, 211, 102, 0.7);
  background: rgba(37, 211, 102, 0.22);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  transform: scale(1.03);
}

/* Hero carousel stage (split-screen) */
.hero-lp__stage-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0.5rem 1.25rem;
}

.hero-lp__stage-bg {
  position: absolute;
  inset: -25%;
  background-size: cover;
  background-position: center;
  filter: blur(52px) saturate(1.15);
  opacity: 0.5;
  animation: showcaseBgDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-lp__stage {
  position: relative;
  z-index: 1;
  min-height: 22rem;
}

.hero-lp__stage .showcase__viewport {
  min-height: 20rem;
}

.hero-lp__meta {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
}

.hero-lp__stage-wrap .showcase__dots {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
}

/* ── Glass blocks (shared) ── */
.glass-block {
  border-radius: 1.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.glass-block--dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-white);
}

.glass-block--light {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
}

.glass-block--spec {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  color: var(--color-text);
  padding: 0.85rem 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.glass-block--spec .glass-block__eyebrow,
.glass-block--spec .glass-block__meta {
  color: var(--color-text-muted);
}

.glass-block--feature {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.glass-block--feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.glass-block--feature.glass-block--featured,
.highlights__card--featured {
  background: rgba(227, 6, 19, 0.15);
  border-color: rgba(227, 6, 19, 0.35);
}

.glass-block--float {
  padding: 1rem 1.15rem;
  position: absolute;
}

.glass-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-red);
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.2);
  margin-bottom: 0.35rem;
}

.highlights__card--featured .glass-block__icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--brand-white);
}

.glass-block__eyebrow {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.glass-block__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.glass-block__text {
  font-size: 0.875rem;
  margin-bottom: 0.15rem;
}

.glass-block__meta {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.glass-block__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.glass-block__bar span {
  display: block;
  height: 100%;
  background: var(--brand-red);
  border-radius: 999px;
}

.glass-block__list {
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0 0.5rem;
}

.glass-block__chip {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-white);
  background: rgba(227, 6, 19, 0.45);
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
}

.glass-block__link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.glass-block__link:hover {
  color: var(--brand-white);
}

/* Hero visual — phone + floating glass */
.hero-lp__visual {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-lp__swirl {
  position: absolute;
  width: 85%;
  height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  animation: heroSwirl 12s ease-in-out infinite alternate;
}

@keyframes heroSwirl {
  from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  to { transform: translate(-48%, -52%) scale(1.06) rotate(3deg); }
}

.hero-lp__phone {
  position: relative;
  z-index: 2;
  animation: previewFloat 5s ease-in-out infinite;
}

.hero-lp__phone-shell {
  width: clamp(10rem, 28vw, 12.5rem);
  padding: 0.45rem;
  background: linear-gradient(165deg, rgba(30, 30, 35, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-lp__phone-shell img {
  width: 100%;
  border-radius: 1.25rem;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.hero-lp__glass--time {
  top: 2%;
  left: 0;
  width: min(9.5rem, 38vw);
  z-index: 4;
  animation: glassFloatA 5s ease-in-out infinite;
}

.hero-lp__glass--rsvp {
  top: 8%;
  right: -2%;
  width: min(10rem, 40vw);
  z-index: 5;
  animation: glassFloatB 6s ease-in-out infinite;
}

.hero-lp__glass--invite {
  bottom: 28%;
  left: -4%;
  width: min(11rem, 44vw);
  z-index: 4;
  animation: glassFloatC 5.5s ease-in-out infinite;
}

.hero-lp__glass--cabinet {
  bottom: 4%;
  right: 0;
  width: min(10.5rem, 42vw);
  z-index: 3;
  animation: glassFloatD 6.5s ease-in-out infinite;
}

@keyframes glassFloatA {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

@keyframes glassFloatB {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes glassFloatC {
  0%, 100% { transform: translate(0, 0) rotate(0.5deg); }
  50% { transform: translate(-4px, -6px) rotate(-0.5deg); }
}

@keyframes glassFloatD {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Legacy hero cards — removed */
.hero-lp__card {
  display: none;
}

/* ── Trust bar ── */
.trust {
  position: relative;
  z-index: 5;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(180deg, #111 0%, var(--brand-black) 100%);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.trust p {
  font-size: clamp(0.9375rem, 2.8vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.trust strong {
  color: var(--brand-red);
  font-weight: 700;
}

@media (max-width: 767px) {
  .trust {
    padding: 1.15rem 1.25rem;
  }

  .trust p {
    max-width: 22rem;
    margin: 0 auto;
  }
}

/* ── Pitch strip (mit brand) ── */
.pitch-strip {
  padding: 3rem 1.5rem 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.pitch-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pitch-strip__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.pitch-strip__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.pitch-strip__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pitch-strip__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.pitch-strip__lead strong {
  color: var(--color-text);
  font-weight: 600;
}

.pitch-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pitch-strip__tags li {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-white);
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
}

/* ── Bento Grid (customer journey) ── */
.bento {
  padding: 4.5rem 1.5rem;
  background: var(--color-bg);
}

.bento__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.bento__header {
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.bento__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.bento__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.bento__grid {
  display: grid;
  gap: 1rem;
}

.bento__cell--copy {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem;
}

.bento__step {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 0.65rem;
}

.bento__cell--copy h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.bento__cell--copy p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.bento__scene {
  position: relative;
  min-height: 22rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(227, 6, 19, 0.08) 0%, transparent 60%),
    linear-gradient(165deg, #f0eeeb 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bento__phone {
  position: relative;
  z-index: 2;
  width: clamp(9rem, 28vw, 11rem);
  padding: 0.45rem;
  background: linear-gradient(165deg, #1a1a22 0%, #0d0d12 100%);
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.2);
}

.bento__phone img {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
}

.bento__widget {
  position: absolute;
  z-index: 3;
  min-width: 8.5rem;
  max-width: 11rem;
  --parallax-x: 0px;
  --parallax-y: 0px;
  transform: translate(var(--parallax-x), var(--parallax-y));
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  animation: bentoWidgetFloat 5s ease-in-out infinite;
}

.bento__widget strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0.15rem 0;
}

.bento__widget--rsvp {
  top: 12%;
  left: 4%;
  animation-delay: 0s;
}

.bento__widget--maps {
  top: 18%;
  right: 3%;
  animation-delay: -1.2s;
}

.bento__widget--tables {
  bottom: 16%;
  left: 6%;
  animation-delay: -2.4s;
}

.bento__widget--time {
  bottom: 14%;
  right: 5%;
  animation-delay: -3.6s;
}

@keyframes bentoWidgetFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

.bento__map-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.bento__map-btns span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--brand-red);
}

@media (min-width: 900px) {
  .bento__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .bento__cell--copy:nth-child(1) { grid-column: 1; grid-row: 1; }
  .bento__cell--copy:nth-child(2) { grid-column: 4; grid-row: 1; }
  .bento__scene { grid-column: 2 / 4; grid-row: 1 / 3; min-height: 26rem; }
  .bento__cell--copy:nth-child(4) { grid-column: 1; grid-row: 2; align-self: end; }
  .bento__cell--copy:nth-child(5) { grid-column: 4; grid-row: 2; align-self: end; }
}

/* ── Journey steps (legacy) ── */
.journey {
  padding: 4.5rem 1.5rem;
  background: var(--color-bg);
}

.journey__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.journey__header {
  max-width: 32rem;
  margin-bottom: 3rem;
}

.journey__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.journey__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.journey__step {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.journey__step:last-child {
  margin-bottom: 0;
}

.journey__num {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.journey__content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.journey__content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 32rem;
}

.journey__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-red);
  transition: opacity var(--transition);
}

.journey__link:hover {
  opacity: 0.75;
}

.journey__visual {
  position: relative;
  min-height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey__catalog-grid {
  display: flex;
  gap: 0.75rem;
  perspective: 800px;
}

.journey__catalog-grid img {
  width: clamp(5rem, 14vw, 7rem);
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--brand-white);
}

.journey__catalog-grid img:nth-child(2) {
  transform: scale(1.08) translateY(-8px);
  z-index: 2;
}

.journey__visual--rsvp {
  flex-direction: column;
  gap: 1rem;
}

.journey__glass-card {
  width: min(16rem, 100%);
}

.journey__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: min(18rem, 100%);
}

.journey__bento-item {
  padding: 0.75rem 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.journey__bento-item span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--brand-red);
  line-height: 1;
}

.journey__bento-item small {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.journey__mini-phone {
  width: min(14rem, 100%);
  padding: 1.25rem;
  background: var(--brand-black);
  border-radius: 1.25rem;
  color: var(--brand-white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.journey__mini-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.journey__mini-program {
  list-style: none;
  margin-bottom: 1rem;
}

.journey__mini-program li {
  font-size: 0.8125rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.journey__mini-program time {
  font-weight: 600;
  color: var(--brand-red);
  margin-right: 0.5rem;
}

.journey__mini-actions {
  display: flex;
  gap: 0.5rem;
}

.journey__map-btn {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .journey__step {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .journey__step--reverse .journey__content {
    order: 2;
  }

  .journey__step--reverse .journey__visual {
    order: 1;
  }
}

/* ── Mid CTA banner ── */
.mid-cta {
  padding: 3.5rem 1.5rem;
  background: var(--brand-black);
  color: var(--brand-white);
  text-align: center;
}

.mid-cta__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.mid-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta__sub {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.mid-cta__btn {
  display: inline-flex;
  padding: 0.9rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--brand-red);
  color: var(--brand-white);
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.mid-cta__btn:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

/* ── Testimonials ── */
.testimonials {
  padding: 4rem 1.5rem;
  background: var(--color-bg);
}

.testimonials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.testimonials__card {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  padding: 1.75rem !important;
}

.testimonials__card blockquote p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.testimonials__card blockquote footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.testimonials__role {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Highlights (legacy) ── */
.highlights {
  padding: 3.5rem 1.5rem;
  background: var(--brand-black);
  color: var(--brand-white);
}

.highlights__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.highlights h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.highlights__lead {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.highlights__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.highlights__card {
  min-height: 100%;
}

.highlights__value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.highlights__card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

@media (min-width: 640px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Platform features ── */
.platform {
  padding: 4rem 1.5rem;
  background: var(--color-bg);
}

.platform__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.platform__header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.platform__pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(227, 6, 19, 0.08);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.platform__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.platform__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 28rem;
  line-height: 1.65;
}

.platform__grid--compact {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .platform__grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

.platform__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.platform__card {
  padding: 1.5rem 1.35rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.platform__card:hover {
  box-shadow: 0 8px 32px rgba(20, 20, 20, 0.06);
  transform: translateY(-2px);
}

.platform__card--featured {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}

.platform__card--featured .platform__icon {
  color: var(--brand-red);
}

.platform__card--featured p {
  color: var(--color-text-light);
}

.platform__icon {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  margin-bottom: 0.65rem;
}

.platform__card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.platform__card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.platform__bonus {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: var(--brand-black);
  color: var(--brand-white);
  border-radius: 0.75rem;
  text-align: center;
}

.platform__bonus h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.platform__bonus p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ── Showcase (models) — Voyage 3D coverflow ── */
.showcase {
  position: relative;
  min-height: auto;
  padding: 5rem 1.25rem 3rem;
  overflow: hidden;
  color: var(--brand-white);
}

.showcase--voyage {
  /* Cap phone by remaining viewport height — fixes overlap with title at 100% zoom */
  --showcase-phone-w: min(16.5rem, 72vw, max(9.5rem, calc((100vh - 28rem) * 9 / 19.5)));
  --showcase-phone-w: min(16.5rem, 72vw, max(9.5rem, calc((100dvh - 28rem) * 9 / 19.5)));
  --showcase-phone-h: calc(var(--showcase-phone-w) * 19.5 / 9);
  min-height: auto;
  padding: calc(var(--header-h) + 2.5rem) 1.25rem 3.5rem;
  display: flex;
  align-items: center;
}

.showcase--voyage .showcase__inner {
  width: 100%;
  gap: 1.75rem;
}

.showcase--voyage .showcase__stage {
  min-height: calc(var(--showcase-phone-h) + 3rem);
}

.showcase--voyage .showcase__viewport {
  max-width: 62rem;
  min-height: calc(var(--showcase-phone-h) + 2.5rem);
  perspective: 2000px;
  perspective-origin: 50% 50%;
}

@media (min-width: 768px) and (max-height: 760px) {
  .showcase--voyage {
    --showcase-phone-w: min(12.75rem, 42vw);
    padding: calc(var(--header-h) + 1.5rem) 1.25rem 2.25rem;
    align-items: flex-start;
  }

  .showcase--voyage .showcase__inner {
    gap: 1.15rem;
  }
}

.showcase__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.18);
  filter: blur(36px) saturate(1.15) brightness(0.55);
  transition: background-image 0.85s ease;
  will-change: transform;
  animation: showcaseBgDrift 18s ease-in-out infinite alternate;
}

@keyframes showcaseBgDrift {
  from { transform: scale(1.12) translateX(-1%); }
  to { transform: scale(1.18) translateX(1%); }
}

.showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.35) 42%, rgba(10, 10, 10, 0.82) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.45) 100%);
}

.showcase__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.showcase__intro {
  position: relative;
  z-index: 7;
  text-align: center;
  max-width: 34rem;
  flex-shrink: 0;
}

.showcase__mark {
  width: 2.25rem;
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.showcase__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.65rem;
}

.showcase__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.12;
  margin-bottom: 0.5rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.showcase__lead {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text-light);
}

/* Stage: Voyage coverflow + center live preview */
.showcase__stage {
  position: relative;
  width: 100%;
  overflow: visible;
}

.showcase__viewport {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: clamp(24rem, 68vh, 36rem);
  perspective: none;
  perspective-origin: 50% 50%;
  overflow: visible;
}

.showcase__carousel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: flat;
  pointer-events: none;
  z-index: 4;
  visibility: hidden;
}

.showcase__carousel.is-animating .theme-slide {
  transition: none;
}

.showcase__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.showcase__center-card {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.showcase__center-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.76s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.76s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase__center-visual.is-switching {
  animation: showcaseCenterSwap 0.76s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes showcaseCenterSwap {
  0% { transform: scale(1); opacity: 1; }
  38% { transform: scale(0.965); opacity: 0.78; }
  100% { transform: scale(1); opacity: 1; }
}

.showcase__phone-wrap {
  width: 100%;
}

/* Preview live — telefon din față, invitația încadrată în ecran */
.showcase__iphone.iphone-16 {
  perspective: none;
  width: var(--showcase-phone-w, min(16.5rem, 72vw));
}

.showcase__iphone .iphone-16__body,
.showcase__iphone.iphone-16--float .iphone-16__body,
.showcase__iphone.iphone-16--center .iphone-16__body,
.showcase__iphone.iphone-16--center.iphone-16--float .iphone-16__body {
  transform: none;
  animation: none;
  padding: 0.48rem;
  border-radius: 2.65rem;
  background:
    linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 38%, #111113 72%, #2c2c2e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 22px 48px rgba(0, 0, 0, 0.42);
}

.showcase__iphone .iphone-16__screen {
  border-radius: 2.15rem;
  overflow: hidden;
}

.showcase__iphone .iphone-16__island {
  top: 0.62rem;
  z-index: 6;
}

.showcase__iphone .iphone-16__glare {
  display: none;
}

.showcase__center-screen {
  --preview-scale: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.showcase__preview-frame {
  position: absolute;
  top: 0;
  left: 50%;
  width: 390px;
  height: 845px;
  transform: translateX(-50%) scale(var(--preview-scale));
  transform-origin: top center;
  will-change: transform;
}

.showcase__preview-frame .showcase__poster,
.showcase__preview-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.showcase__preview-frame .showcase__poster {
  z-index: 1;
  object-fit: cover;
  object-position: top center;
}

.showcase__preview-frame iframe {
  z-index: 2;
  background: #fff;
}

.showcase__preview-frame iframe.is-pending {
  visibility: hidden;
}

.showcase__preview-frame .showcase__loader {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.showcase__meta {
  width: 100%;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  padding: 0.5rem 0.5rem 0;
}

.showcase__meta-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.showcase__meta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.15;
  color: var(--brand-white);
}

.showcase__meta-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  max-width: 32rem;
}

.showcase__meta-audience {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  max-width: 32rem;
}

.showcase__meta-audience:empty {
  display: none;
}

.showcase__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  transition: color var(--transition), transform var(--transition);
  z-index: 8;
  pointer-events: auto;
}

.showcase__nav--prev {
  left: clamp(0.25rem, 2vw, 1rem);
}

.showcase__nav--next {
  right: clamp(0.25rem, 2vw, 1rem);
}

.showcase__nav:hover {
  color: var(--brand-white);
  transform: translateY(-50%) scale(1.08);
  background: transparent;
  border-color: transparent;
}

.theme-slide {
  display: none;
}

.theme-slide .iphone-16 {
  width: 100%;
  pointer-events: none;
  perspective: none;
}

.theme-slide .iphone-16__btn {
  display: none;
}

.theme-slide .iphone-16__glare {
  opacity: 0.35;
}

.theme-slide .iphone-16__body {
  transform: none;
  animation: none;
  padding: 0.55rem;
  border-radius: 2.35rem;
  background:
    linear-gradient(160deg, #d8d8dc 0%, #9a9aa0 16%, #3f3f44 48%, #b8b8be 88%, #ececec 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.45);
}

.theme-slide .iphone-16__screen {
  border-radius: 1.85rem;
}

.theme-slide.is-near .iphone-16__body {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 18px 44px rgba(0, 0, 0, 0.48);
}

.theme-slide.is-far .iphone-16__body {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.theme-slide .iphone-16__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.theme-slide__pill {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.theme-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
  text-align: left;
  pointer-events: none;
}

.theme-slide__tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
}

.theme-slide__name {
  font-family: var(--font-serif);
  font-size: clamp(0.8125rem, 2vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-white);
  letter-spacing: 0.03em;
}

.theme-slide__tagline {
  display: none;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.55rem;
  max-width: 14rem;
}

/* Card activ — ascuns; preview-ul live stă în centrul caruselului */
.theme-slide.is-active {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

/* Legacy label — removed from markup */
.theme-slide__label {
  display: none;
}

/* Center device (used inside preview-host) */
.showcase__device-notch {
  width: 32%;
  height: 0.3rem;
  background: #1a1a1a;
  border-radius: 0 0 0.4rem 0.4rem;
  margin: 0 auto 0.35rem;
}

.showcase__device-screen {
  position: relative;
  aspect-ratio: 390 / 720;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
}

.showcase__device-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #fff;
}

.showcase__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.showcase__poster[hidden] {
  display: none;
}

.showcase__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.75);
  z-index: 2;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.showcase__loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.showcase__loader span {
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--brand-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.showcase__scroll-hint {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 0.25rem 0.5rem;
}

.showcase__scroll-hint.is-paused {
  opacity: 0.65;
}

.showcase__scroll-hint.is-paused::after {
  content: " — oprit";
}

/* Meta panel → actions sub carusel */
.showcase__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 40rem;
}

.showcase__meta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.showcase__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.showcase__btn--primary {
  background: var(--brand-red);
  color: var(--brand-white);
}

.showcase__btn--primary:hover,
.showcase__btn--primary[aria-pressed="true"] {
  background: var(--brand-red-dark);
}

.showcase__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--brand-white);
}

.showcase__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* Dots */
.showcase__dots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.showcase__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.showcase__dot.is-active {
  background: var(--brand-white);
  width: 1.35rem;
  border-radius: 999px;
  transform: none;
}

.showcase__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Catalog vs de la zero */
.showcase__paths {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 40rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .showcase__paths {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.25rem;
    max-width: 52rem;
  }
}

.showcase__path {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  text-align: left;
}

.showcase__path--custom {
  background: rgba(227, 6, 19, 0.08);
  border-color: rgba(227, 6, 19, 0.25);
}

.showcase__path-title {
  display: block;
  font-family: var(--title-font);
  font-size: 0.8125rem;
  font-weight: var(--title-weight);
  letter-spacing: var(--title-tracking);
  text-transform: var(--title-transform);
  color: var(--brand-white);
  margin-bottom: 0.5rem;
}

.showcase__path p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.showcase__path-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-red);
  transition: opacity var(--transition);
}

.showcase__path-link:hover {
  opacity: 0.85;
}

.showcase__paths-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 639px) {
  .showcase__paths-or {
    padding: 0.25rem 0;
  }
}

/* ── Models guide ── */
.models-guide {
  padding: 5rem 1.5rem;
  background: var(--color-bg);
}

.models-guide__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.models-guide__header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.models-guide__label,
.pricing__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.85rem;
}

.models-guide__header h2,
.pricing__header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.models-guide__header p,
.pricing__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.models-guide__grid {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.models-guide__card {
  padding: 1.75rem 1.5rem;
  background: var(--color-surface);
}

.models-guide__card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.models-guide__num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  padding-top: 0.35rem;
}

.models-guide__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.models-guide__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.models-guide__lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}

.models-guide__story {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.models-guide__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-red);
  padding: 0;
  text-align: left;
  transition: opacity var(--transition);
}

.models-guide__link:hover {
  opacity: 0.75;
}

/* ── Pricing ── */
.pricing {
  padding: 5rem 1.5rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.pricing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing__header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.pricing__header h2 {
  color: var(--hero-dark);
}

.pricing__header p {
  color: var(--color-text-muted);
}

.pricing__routes {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .pricing__routes {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.pricing__route {
  padding: 1.15rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.pricing__route--custom {
  border-color: rgba(227, 6, 19, 0.22);
  background: rgba(227, 6, 19, 0.04);
}

.pricing__route-title {
  display: block;
  font-family: var(--title-font);
  font-size: 0.8125rem;
  font-weight: var(--title-weight);
  letter-spacing: var(--title-tracking);
  text-transform: var(--title-transform);
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.pricing__route p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.pricing__routes-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 639px) {
  .pricing__routes-or {
    padding: 0.15rem 0;
  }
}

.pricing__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.pricing__card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.pricing__card--featured {
  background: var(--color-surface);
  outline: none;
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow: 0 20px 48px rgba(227, 6, 19, 0.12);
  animation: pricingGlow 3s ease-in-out infinite;
}

@keyframes pricingGlow {
  0%, 100% {
    box-shadow: 0 12px 32px rgba(227, 6, 19, 0.1);
    border-color: rgba(227, 6, 19, 0.25);
  }
  50% {
    box-shadow: 0 20px 48px rgba(227, 6, 19, 0.22);
    border-color: rgba(227, 6, 19, 0.55);
  }
}

.pricing__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-white);
  background: var(--brand-red);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.92; }
}

.pricing__price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  color: var(--hero-dark);
}

.pricing__card h3 {
  font-size: 1.125rem;
  color: var(--color-text);
}

.pricing__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-muted);
  flex: 1;
}

.pricing__note {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.pricing__bullets {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.pricing__bullets li {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.pricing__bullets-inherit {
  font-weight: 600;
  color: var(--color-text) !important;
  padding-bottom: 0.5rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px dashed var(--color-border);
}

.pricing__card--featured .pricing__bullets-inherit {
  border-bottom-color: rgba(227, 6, 19, 0.2);
}

.pricing__card--featured .pricing__bullets li {
  color: var(--color-text-muted);
}

.pricing__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing__card--featured .pricing__bullets li::before {
  color: var(--brand-red);
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  background: var(--brand-red);
  color: var(--brand-white);
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.pricing__cta svg {
  flex-shrink: 0;
}

.pricing__cta:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.pricing__card--featured .pricing__cta {
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.28);
}

/* ── FAQ ── */
.faq {
  padding: 4rem 1.5rem;
  background: var(--color-bg);
}

.faq__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.faq__list {
  display: grid;
  gap: 0.5rem;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, padding 0.35s ease;
}

.faq__item[open] p {
  max-height: 12rem;
  opacity: 1;
  padding: 0 1.25rem 1rem;
}

/* ── Features ── */
.features {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 5rem 1.5rem;
}

.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features__header {
  margin-bottom: 2.5rem;
}

.features__label,
.process__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.85rem;
}

.features__header h2,
.process__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}

.features__list {
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--color-border-light);
  border: 1px solid var(--color-border-light);
}

.features__list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.features__list strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.features__list span {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ── Func showcase (3D phone + floating glass cards) ── */
.func-showcase {
  padding: 4.5rem 1.5rem 5rem;
  background: linear-gradient(180deg, #e8e7e4 0%, var(--color-bg) 45%, #ebeae7 100%);
  overflow: hidden;
}

.func-showcase__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.func-showcase__header {
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.func-showcase__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.func-showcase__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 0.65rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
  letter-spacing: normal;
}

.func-showcase__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.func-showcase__stage {
  position: relative;
  max-width: 44rem;
  min-height: 34rem;
  margin: 0 auto;
  perspective: 1400px;
  perspective-origin: 50% 42%;
}

.func-showcase__sculpture {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(92%, 36rem);
  height: 88%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background:
    radial-gradient(ellipse 80% 70% at 30% 25%, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
    linear-gradient(155deg, #ffffff 0%, #f3f1ee 35%, #e6e3de 100%);
  border-radius: 62% 38% 58% 42% / 45% 55% 48% 52%;
  box-shadow:
    inset 12px 12px 48px rgba(255, 255, 255, 0.85),
    inset -8px -16px 40px rgba(0, 0, 0, 0.04),
    0 48px 100px rgba(20, 20, 20, 0.1);
  z-index: 0;
  animation: funcSculpture 12s ease-in-out infinite alternate;
}

@keyframes funcSculpture {
  from { border-radius: 62% 38% 58% 42% / 45% 55% 48% 52%; transform: translate(-50%, -50%) rotate(-8deg); }
  to { border-radius: 48% 52% 42% 58% / 52% 48% 55% 45%; transform: translate(-50%, -50%) rotate(-5deg) scale(1.02); }
}

.func-showcase__phone-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.func-showcase__iphone {
  filter: drop-shadow(0 48px 80px rgba(0, 0, 0, 0.32));
}

.func-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 1.15rem;
  padding: 0.85rem 1rem;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  --parallax-x: 0px;
  --parallax-y: 0px;
  --float-y: 0px;
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) + var(--float-y)), 0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  animation: funcCardFloat 5.5s ease-in-out infinite;
}

@keyframes funcCardFloat {
  0%, 100% { --float-y: 0px; }
  50% { --float-y: -8px; }
}

@supports not (background: paint(id)) {
  .func-card {
    animation: funcCardFloatLegacy 5.5s ease-in-out infinite;
  }

  @keyframes funcCardFloatLegacy {
    0%, 100% { transform: translate3d(var(--parallax-x), var(--parallax-y), 0); }
    50% { transform: translate3d(var(--parallax-x), calc(var(--parallax-y) - 8px), 0); }
  }
}

.func-card--wa {
  top: 6%;
  left: 0;
  width: min(11.5rem, 42vw);
  animation-delay: 0s;
}

.func-card--rsvp {
  top: 36%;
  left: -1%;
  width: min(11rem, 40vw);
  animation-delay: -1.2s;
}

.func-card--guests {
  top: 14%;
  right: 0;
  width: min(12rem, 44vw);
  animation-delay: -2.4s;
}

.func-card--stats {
  bottom: 10%;
  right: 0;
  width: min(13rem, 46vw);
  animation-delay: -3.6s;
}

.func-card--table {
  bottom: 32%;
  left: 2%;
  width: min(10.5rem, 38vw);
  animation-delay: -4.2s;
}

.func-card--maps {
  top: 58%;
  right: 4%;
  width: min(10rem, 36vw);
  animation-delay: -1.8s;
}

.func-card__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.func-card__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.func-card__icon--wa {
  background: rgba(37, 211, 102, 0.18);
  color: #128c7e;
}

.func-card__icon--ok {
  background: rgba(227, 6, 19, 0.12);
  color: var(--brand-red);
  font-size: 0.875rem;
}

.func-card__eyebrow {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.func-card__title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
}

.func-card__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
  margin: 0.2rem 0 0.35rem;
}

.func-card__value span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.func-card__meta {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.func-card__avatars {
  list-style: none;
  display: flex;
  gap: 0.35rem;
}

.func-card__avatars li {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0eeeb, #e0deda);
  border: 2px solid var(--brand-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.func-card__avatars li:first-child {
  background: rgba(227, 6, 19, 0.12);
  color: var(--brand-red);
}

.func-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.func-card__chips span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--brand-red);
}

@media (max-width: 640px) {
  .func-showcase__stage {
    min-height: 28rem;
  }

  .func-card--wa { top: 2%; left: 2%; }
  .func-card--rsvp { top: auto; bottom: 42%; left: 2%; }
  .func-card--guests { top: 2%; right: 2%; }
  .func-card--stats { bottom: 2%; right: 2%; }
  .func-card--table { display: none; }
  .func-card--maps { display: none; }
}

@media (min-width: 900px) {
  .func-showcase__stage {
    min-height: 36rem;
    max-width: 48rem;
  }

  .func-card--wa { left: 4%; }
  .func-card--rsvp { left: 2%; }
  .func-card--guests { right: 4%; }
  .func-card--stats { right: 4%; bottom: 14%; }
}

/* ── Flow demo (Klickpin morning-routine style) ── */
.flow-demo {
  padding: 4rem 1.5rem;
  background: var(--color-bg);
}

.flow-demo__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

.flow-demo__header {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.flow-demo__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.flow-demo__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 0.65rem;
  text-transform: none;
  letter-spacing: normal;
}

.flow-demo__header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.flow-demo__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(20, 20, 20, 0.1);
  min-height: 26rem;
}

.flow-demo__visual {
  position: relative;
  min-height: 18rem;
  padding: 0;
  overflow: hidden;
  background: #e8e6e3;
}

.flow-demo__blob-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.flow-demo__blob {
  position: absolute;
  left: -20%;
  top: -14%;
  width: 92%;
  height: 128%;
  opacity: 0;
  border-radius: 58% 42% 62% 38% / 48% 55% 45% 52%;
  will-change: transform, opacity, border-radius, filter;
  pointer-events: none;
}

.flow-demo__blob::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28) 0%, transparent 52%),
    radial-gradient(circle at 78% 82%, rgba(0, 0, 0, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.flow-demo__blob.is-visible {
  opacity: 1;
}

.flow-demo__blob.is-idle {
  animation: blobBreathe 7.5s ease-in-out infinite;
}

.flow-demo__blob.is-morph-out {
  animation: blobMorphOut 1s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.flow-demo__blob.is-morph-in {
  animation: blobMorphIn 1s cubic-bezier(0.34, 1.12, 0.48, 1) forwards;
}

@keyframes blobBreathe {
  0%, 100% {
    border-radius: 58% 42% 62% 38% / 48% 55% 45% 52%;
    transform: scale(1) rotate(0deg);
  }
  50% {
    border-radius: 50% 50% 54% 46% / 46% 54% 52% 48%;
    transform: scale(1.025) rotate(1.2deg);
  }
}

@keyframes blobMorphOut {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.2) rotate(5deg) translateX(-8%);
    filter: blur(10px);
  }
}

@keyframes blobMorphIn {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-6deg) translateX(12%);
    filter: blur(12px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
    filter: blur(0);
  }
}

.flow-demo__depth {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.flow-demo__depth-shape {
  position: absolute;
  border-radius: 50%;
  transition: background 0.9s ease, opacity 0.9s ease;
}

.flow-demo__depth-shape--fg {
  left: -2%;
  bottom: 10%;
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(227, 6, 19, 0.35);
  filter: blur(20px);
  animation: depthDriftFg 5.5s ease-in-out infinite;
}

.flow-demo__depth-shape--bg {
  top: 6%;
  right: 34%;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(22px);
  animation: depthDriftBg 6.5s ease-in-out infinite;
}

.flow-demo__depth-shape--accent {
  top: 42%;
  left: 28%;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(227, 6, 19, 0.22);
  filter: blur(16px);
  animation: depthDriftAccent 4.8s ease-in-out infinite;
}

@keyframes depthDriftFg {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(14px, -12px); opacity: 1; }
}

@keyframes depthDriftBg {
  0%, 100% { transform: translate(0, 0); opacity: 0.55; }
  50% { transform: translate(-10px, 14px); opacity: 0.9; }
}

@keyframes depthDriftAccent {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -8px) scale(1.15); }
}

.flow-demo[data-step="0"] .flow-demo__depth-shape--fg { background: rgba(227, 6, 19, 0.42); }
.flow-demo[data-step="1"] .flow-demo__depth-shape--fg { background: rgba(255, 255, 255, 0.22); }
.flow-demo[data-step="2"] .flow-demo__depth-shape--fg { background: rgba(227, 6, 19, 0.38); }
.flow-demo[data-step="3"] .flow-demo__depth-shape--fg { background: rgba(247, 246, 244, 0.35); }

.flow-demo[data-step="0"] .flow-demo__depth-shape--bg { background: rgba(255, 255, 255, 0.18); }
.flow-demo[data-step="1"] .flow-demo__depth-shape--bg { background: rgba(227, 6, 19, 0.2); }
.flow-demo[data-step="2"] .flow-demo__depth-shape--bg { background: rgba(255, 255, 255, 0.16); }
.flow-demo[data-step="3"] .flow-demo__depth-shape--bg { background: rgba(227, 6, 19, 0.14); }

.flow-demo[data-step="0"] .flow-demo__depth-shape--accent { background: rgba(255, 255, 255, 0.2); }
.flow-demo[data-step="1"] .flow-demo__depth-shape--accent { background: rgba(227, 6, 19, 0.28); }
.flow-demo[data-step="2"] .flow-demo__depth-shape--accent { background: rgba(255, 255, 255, 0.18); }
.flow-demo[data-step="3"] .flow-demo__depth-shape--accent { background: rgba(10, 10, 10, 0.12); }

.flow-demo__title-stack {
  position: relative;
  z-index: 2;
  min-height: 7.5rem;
  padding: 2rem 1.5rem 0;
}

.flow-demo__visual-title {
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--brand-white);
  line-height: 1.05;
  max-width: 9ch;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.flow-demo__visual-title.is-on {
  opacity: 1;
  transform: translateY(0);
}

.flow-demo__visual-title.is-title-out {
  animation: flowTitleOut 0.85s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.flow-demo__visual-title.is-title-in {
  animation: flowTitleIn 0.9s cubic-bezier(0.34, 1.12, 0.48, 1) forwards;
}

.flow-demo__visual-title.is-dark {
  color: var(--brand-black);
  text-shadow: none;
}

@keyframes flowTitleOut {
  0% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-22px) scale(0.94); filter: blur(4px); }
}

@keyframes flowTitleIn {
  0% { opacity: 0; transform: translateY(28px) scale(0.92); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.flow-demo__float-stack {
  position: absolute;
  right: 0;
  top: 50%;
  width: 58%;
  height: 88%;
  z-index: 3;
  transform: translateY(-50%);
  pointer-events: none;
}

.flow-demo__float-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8%) scale(0.88);
  filter: blur(8px);
}

.flow-demo__float-layer.is-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
  animation: heroFloat 5s ease-in-out infinite;
}

.flow-demo__float-layer.is-float-out {
  animation: heroFloatOut 0.85s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.flow-demo__float-layer.is-float-in {
  animation: heroFloatIn 0.95s cubic-bezier(0.34, 1.12, 0.48, 1) forwards, heroFloat 5s ease-in-out 0.95s infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes heroFloatOut {
  0% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-18%) scale(0.82) rotate(-6deg); filter: blur(12px); }
}

@keyframes heroFloatIn {
  0% { opacity: 0; transform: translateY(20%) scale(0.78) rotate(5deg); filter: blur(14px); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}

.flow-demo__float-layer .iphone-16 {
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35));
}

.flow-float-ui--hero-card {
  width: clamp(10rem, 50%, 13rem);
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.25rem;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.18));
}

.flow-float-ui--phone {
  width: 7.5rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.flow-float-ui--phone img {
  width: 100%;
  border-radius: 0.75rem;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.flow-float-ui--edit {
  width: 10rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 0.5rem;
}

.flow-float-ui--edit span {
  display: block;
  height: 0.45rem;
  background: rgba(20, 20, 20, 0.08);
  border-radius: 999px;
}

.flow-float-ui--edit small {
  display: block;
  font-size: 0.5625rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.flow-float-ui--cabinet {
  width: 10.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 0.4rem;
}

.flow-float-ui__cabinet-title {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.flow-float-ui--cabinet span:not(.flow-float-ui__cabinet-title) {
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  background: rgba(20, 20, 20, 0.05);
  border-radius: 0.35rem;
}

.flow-float-ui--cabinet em {
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--brand-red);
  margin-top: 0.25rem;
}

.flow-float-ui--edit strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.35rem;
  color: var(--brand-red);
}

.flow-float-ui--rsvp {
  width: 9.5rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
}

.flow-float-ui--rsvp strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  margin: 0.35rem 0;
  color: var(--brand-red);
}

.flow-float-ui--rsvp small {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flow-float-ui--maps {
  width: 10rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 0.35rem;
}

.flow-float-ui__maps-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.flow-float-ui--maps span:not(.flow-float-ui__maps-label):not(small) {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  background: rgba(227, 6, 19, 0.1);
  color: var(--brand-red);
  border-radius: 999px;
  text-align: center;
}

.flow-float-ui--maps small {
  font-size: 0.5625rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.flow-float-ui--tables {
  width: 10rem;
  padding: 0.85rem;
  background: var(--brand-white);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.flow-float-ui--tables i {
  display: block;
  aspect-ratio: 1;
  background: rgba(20, 20, 20, 0.06);
  border-radius: 0.35rem;
  font-style: normal;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.flow-float-ui--tables i.is-filled {
  background: rgba(227, 6, 19, 0.15);
  color: var(--brand-red);
}

.flow-demo__panel {
  padding: 1.75rem 1.5rem 5rem;
}

.flow-demo__panel-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  transition: opacity 0.35s ease;
}

.flow-demo.is-transitioning .flow-demo__panel-title {
  opacity: 0.85;
}

.flow-demo__list {
  list-style: none;
  display: grid;
  gap: 0;
}

.flow-demo__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 1;
  transform: translateX(0);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    padding 0.35s ease,
    margin 0.35s ease;
}

.flow-demo__item.is-active {
  opacity: 1;
  transform: translateX(0);
  background: rgba(227, 6, 19, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(227, 6, 19, 0.08);
  margin: 0 -0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.65rem;
  border-bottom-color: transparent;
}

.flow-demo__item-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--brand-red);
}

.flow-demo__item-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.flow-demo__item-meta {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.flow-demo__item-tag {
  display: none;
}

.flow-demo__item-plus {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  line-height: 1;
  color: var(--color-text-muted);
}

.flow-demo__dock {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.45rem 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(20, 20, 20, 0.1);
  z-index: 5;
  backdrop-filter: blur(12px);
}

.flow-demo__arrow {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: var(--color-surface);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.flow-demo__arrow:hover {
  border-color: rgba(227, 6, 19, 0.35);
  color: var(--brand-red);
}

.flow-demo__arrow--next {
  background: var(--brand-black);
  border-color: var(--brand-black);
  color: var(--brand-white);
  width: 2.15rem;
  height: 2.15rem;
}

.flow-demo__arrow--next:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--brand-white);
  transform: scale(1.04);
}

.flow-demo__dots {
  display: flex;
  gap: 0.35rem;
}

.flow-demo__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.15);
  transition: background var(--transition), transform var(--transition);
}

.flow-demo__dot.is-active {
  background: var(--brand-red);
  transform: scale(1.2);
}

/* Platform scroll reveal */
.platform__card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--transition);
}

.platform__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.platform__card:nth-child(1).is-visible { transition-delay: 0ms; }
.platform__card:nth-child(2).is-visible { transition-delay: 60ms; }
.platform__card:nth-child(3).is-visible { transition-delay: 120ms; }
.platform__card:nth-child(4).is-visible { transition-delay: 180ms; }
.platform__card:nth-child(5).is-visible { transition-delay: 240ms; }
.platform__card:nth-child(6).is-visible { transition-delay: 300ms; }
.platform__card:nth-child(7).is-visible { transition-delay: 360ms; }
.platform__card:nth-child(8).is-visible { transition-delay: 420ms; }

/* ── Process (legacy fallback) ── */
.process {
  padding: 5rem 1.5rem;
  background: var(--color-bg);
}

.process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process__header {
  margin-bottom: 2.5rem;
}

.process__steps {
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.process__steps li {
  padding: 2rem 1.75rem;
  background: var(--color-surface);
}

.process__num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.process__steps h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.process__steps p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 28rem;
}

/* ── CTA ── */
.cta {
  padding: 0 1.5rem 5rem;
}

.cta__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.cta__logo {
  height: 2.25rem;
  width: auto;
  margin: 0 auto 1.75rem;
  display: block;
}

.cta__inner h2 {
  font-size: clamp(1.625rem, 4vw, 2.125rem);
  margin-bottom: 0.75rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.cta__inner p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta__btn {
  display: inline-flex;
  padding: 0.9rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.cta__btn--wa {
  background: var(--brand-red);
  color: var(--brand-white);
}

.cta__btn--wa:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.cta__btn--form {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.cta__btn--form:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.cta__link {
  display: none;
}

/* ── Footer ── */
.site-footer {
  background: var(--brand-black);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.site-footer__inner > a img {
  height: 1.75rem;
  width: auto;
  opacity: 0.9;
}

.site-footer__nav,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.site-footer__nav a,
.site-footer__links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.site-footer__nav a:hover,
.site-footer__links a:hover {
  color: var(--brand-white);
}

.site-footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .showcase__nav {
    display: flex;
  }

  .showcase__stage {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-lp__inner {
    max-width: 40rem;
  }

  .hero-lp__title {
    max-width: none;
  }

  .flow-demo__card {
    grid-template-columns: 1fr 1fr;
    min-height: 22rem;
  }

  .flow-demo__visual {
    min-height: 100%;
  }

  .flow-demo__float-stack {
    width: 54%;
  }

  .flow-demo__panel {
    padding: 2rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .platform__card--featured {
    grid-column: span 2;
  }

  .site-header__nav {
    display: flex;
  }

  .site-header__menu-btn {
    display: none;
  }

  .site-header__mobile {
    display: none !important;
  }

  .flow-demo__card {
    grid-template-columns: 1fr 1fr;
    min-height: 24rem;
  }

  .flow-demo__visual {
    min-height: 100%;
  }

  .flow-demo__panel {
    padding: 2rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .flow-demo__dock-icons {
    display: flex;
  }

  .models-guide__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .platform__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .platform__card--featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2rem;
  }

  .platform__card--featured h3 {
    font-size: 1.5rem;
  }

  .features__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .theme-slide {
    width: clamp(7.5rem, 13vw, 11.25rem);
  }
}

@media (max-width: 767px) {
  .showcase--voyage {
    min-height: auto;
    padding: calc(var(--header-h) + 1.25rem) 1rem 2rem;
    align-items: stretch;
  }

  .showcase--voyage .showcase__inner {
    gap: 1rem;
    width: 100%;
  }

  .showcase__intro {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 100%;
  }

  .showcase__title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .showcase--voyage .showcase__stage {
    min-height: auto;
    margin-top: 0.25rem;
    width: 100%;
  }

  .showcase--voyage .showcase__viewport {
    position: relative;
    min-height: calc(min(16.5rem, 88vw) * 19.5 / 9 + 1.5rem);
    height: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 0.75rem;
    overflow: visible;
    perspective: none;
  }

  .showcase__carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: calc(min(16.5rem, 88vw) * 19.5 / 9 + 0.84rem);
    transform-style: flat;
    z-index: 4;
  }

  .showcase__carousel .theme-slide.is-near {
    pointer-events: auto;
  }

  .showcase__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 6;
    isolation: isolate;
  }

  .showcase__center-visual {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .showcase__phone-wrap {
    width: min(16.5rem, 88vw);
    margin: 0 auto;
  }

  .showcase__phone-wrap .iphone-16--lg {
    width: 100%;
  }

  .showcase__center-screen {
    width: 100%;
  }

  .showcase__meta {
    max-width: none;
    padding: 0.65rem 0.25rem 0;
  }

  .showcase__scroll-hint {
    font-size: 0.5625rem;
  }

  .showcase__nav {
    width: 2.25rem;
    height: 2.25rem;
    top: 50%;
    z-index: 8;
  }

  .showcase__nav--prev {
    left: 0;
  }

  .showcase__nav--next {
    right: 0;
  }

  .showcase__dots {
    margin-top: 0.25rem;
  }

  .showcase__actions {
    gap: 0.5rem;
  }

  .showcase__btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.85rem 0.75rem;
    font-size: 0.6875rem;
  }

  .theme-slide {
    width: clamp(4.35rem, 18vw, 5.75rem);
    transform-style: flat;
    backface-visibility: visible;
  }

  .theme-slide.is-near {
    z-index: 4;
  }

  .hero-lp__visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .hero-lp__swirl {
    display: none;
  }

  .hero-lp__phone {
    align-self: center;
    margin-bottom: 0.5rem;
    animation: none;
  }

  .hero-lp__glass {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    animation: none !important;
  }

  .hero-lp__card {
    display: none;
  }

  .flow-demo__item {
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
  }

  .flow-demo__item-tag,
  .flow-demo__item-plus {
    display: none;
  }

  .flow-demo__float {
    right: 4%;
    transform: translateY(-50%) scale(0.85);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .showcase__bg {
    transform: none;
    animation: none;
  }

  .showcase__center-card,
  .func-showcase__iphone.iphone-16--float .iphone-16__body,
  .iphone-16--float .iphone-16__body {
    animation: none !important;
  }

  .flow-demo__blob.is-idle,
  .flow-demo__float-layer.is-on,
  .flow-demo__depth-shape {
    animation: none !important;
  }

  .hero-lp__phone,
  .hero-lp__glass,
  .hero-lp__swirl {
    animation: none !important;
  }
}

/* ── Pagini legale ── */
.legal-page {
  padding: calc(var(--header-h) + 2.75rem) 1.5rem 4.5rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.legal-page__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-page__kicker {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.legal-page h1 {
  font-family: var(--title-font);
  font-weight: var(--title-weight);
  text-transform: var(--title-transform);
  letter-spacing: var(--title-tracking);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  line-height: 1.15;
  color: var(--hero-dark);
  margin-bottom: 0.75rem;
}

.legal-page__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.legal-page__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--hero-dark);
  margin: 2.25rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
}

.legal-page p + p {
  margin-top: 0.85rem;
}

.legal-page ul,
.legal-page ol {
  margin: 0.75rem 0 0 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.legal-page a {
  color: var(--brand-red);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-page a:hover {
  color: var(--brand-red-dark);
}

.legal-page__note {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
