/* Pooly — site vitrine (aligné app mobile) */
:root {
  --purple: #4d3ee8;
  --purple-dark: #3b2fc4;
  --purple-soft: rgba(77, 62, 232, 0.1);
  --bg: #f7f6fb;
  --text: #111124;
  --muted: #74748a;
  --card: #ffffff;
  --green: #17a964;
  --tab-inactive: #ada0dc;
  --kfc: #c8102e;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(15, 15, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(77, 62, 232, 0.15);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 251, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(77, 62, 232, 0.1);
  box-shadow: 0 4px 24px rgba(15, 15, 40, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--purple-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 24px rgba(77, 62, 232, 0.35);
}

.btn-primary:hover {
  background: var(--purple-dark);
}

.btn-ghost {
  background: var(--card);
  color: var(--purple);
  border: 1px solid rgba(77, 62, 232, 0.22);
}

/* Hero landing — fond Fortuneo × couleurs Pooly + carte 3D */
.has-hero-landing {
  background: var(--bg);
}

.site-header--hero {
  background: rgba(247, 246, 251, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: transparent;
}

.site-header--hero.is-scrolled {
  background: rgba(247, 246, 251, 0.92);
  border-color: rgba(77, 62, 232, 0.1);
}

.hero-landing {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 72px;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(165deg, #f7f6fb 0%, #efeaff 38%, #f7f6fb 72%, #eef0ff 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.hero-blob--1 {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(77, 62, 232, 0.42) 0%, transparent 68%);
  animation: blobDrift1 16s ease-in-out infinite;
}

.hero-blob--2 {
  width: min(48vw, 440px);
  height: min(48vw, 440px);
  bottom: -8%;
  left: -12%;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.55) 0%, transparent 70%);
  animation: blobDrift2 18s ease-in-out infinite;
}

.hero-blob--3 {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  top: 38%;
  left: 28%;
  background: radial-gradient(circle, rgba(23, 169, 100, 0.12) 0%, transparent 72%);
  animation: blobDrift3 14s ease-in-out infinite;
}

.hero-blob--4 {
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  top: 18%;
  left: 8%;
  background: radial-gradient(circle, rgba(77, 62, 232, 0.22) 0%, transparent 70%);
  animation: blobDrift2 20s ease-in-out infinite reverse;
}

.hero-mesh-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

@keyframes blobDrift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-28px, 22px) scale(1.06);
  }
}

@keyframes blobDrift2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.08);
  }
}

@keyframes blobDrift3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, 14px);
  }
}

.hero-landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-landing-title {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5.2vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  background: linear-gradient(105deg, var(--purple) 0%, #6b5cf0 45%, #17a964 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow--hero {
  animation: fadeUp 0.8s var(--ease) both;
}

.lead--hero {
  max-width: 34rem;
  animation: fadeUp 0.8s 0.08s var(--ease) both;
}

.hero-landing-copy .hero-actions {
  animation: fadeUp 0.8s 0.16s var(--ease) both;
}

.hero-landing-copy .hero-note {
  animation: fadeUp 0.8s 0.24s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carte Pooly 3D (style B for Bank) */
.hero-card-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  perspective: 1400px;
}

.hero-card-glow {
  position: absolute;
  width: 72%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(77, 62, 232, 0.35) 0%, transparent 72%);
  filter: blur(28px);
  animation: cardGlowPulse 5s ease-in-out infinite;
}

@keyframes cardGlowPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-card-scene {
  position: relative;
  transform-style: preserve-3d;
  animation: cardFloat 6.5s ease-in-out infinite;
}

.hero-card-scene.is-ready {
  animation: none;
}

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

.pooly-card {
  position: relative;
  width: min(380px, 92vw);
  aspect-ratio: 1.586 / 1;
  border-radius: 26px;
  background: var(--purple);
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(18, 8, 42, 0.38),
    0 2px 0 rgba(255, 255, 255, 0.12) inset;
  transform: rotateY(-20deg) rotateX(14deg);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s var(--ease);
}

.pooly-card__arc {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #c4b5fd;
  opacity: 0.42;
  right: -100px;
  top: -120px;
  pointer-events: none;
}

.pooly-card__arc--inner {
  width: 200px;
  height: 200px;
  background: #ede9fe;
  opacity: 0.35;
  right: -20px;
  top: auto;
  bottom: -70px;
}

.pooly-card__shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 56%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-12deg);
  animation: cardShine 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes cardShine {
  0%,
  28% {
    transform: translateX(-120%) skewX(-12deg);
  }
  52%,
  100% {
    transform: translateX(120%) skewX(-12deg);
  }
}

.pooly-card__chip {
  position: absolute;
  left: 24px;
  bottom: 52px;
  width: 44px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(145deg, #f5e6a8 0%, #d4af37 42%, #b8860b 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
  opacity: 0.92;
}

.pooly-card__chip::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

.pooly-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 22px 24px 20px;
  box-sizing: border-box;
}

.pooly-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pooly-card__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.pooly-card__brand {
  flex: 1;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
}

.pooly-card__nfc {
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

.pooly-card__bottom {
  margin-top: auto;
  padding-top: 12px;
}

.pooly-card__tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

.pooly-card__visa {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 1.45rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  z-index: 2;
}

.pooly-card-shadow {
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 72%;
  height: 28px;
  transform: translateX(-50%) rotateX(82deg);
  background: radial-gradient(ellipse, rgba(18, 8, 42, 0.45) 0%, transparent 72%);
  filter: blur(10px);
  z-index: -1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 12px;
  text-decoration: none;
}

.hero-scroll-hint__line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--purple));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Legacy hero grid (sections internes) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.8vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Phone mockup shell */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  animation: floatPhone 5s ease-in-out infinite;
}

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

.phone-device {
  width: min(300px, 100%);
  background: #1a1a2e;
  border-radius: 36px;
  padding: 11px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.phone-notch {
  width: 88px;
  height: 5px;
  background: #2d2d44;
  border-radius: 999px;
  margin: 6px auto 10px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

/* App UI replicas */
.app-status {
  height: 12px;
}

.app-header {
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.app-header-title {
  font-weight: 700;
  font-size: 1.05rem;
  flex: 1;
  text-align: center;
}

.app-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--card);
  border: none;
  display: grid;
  place-items: center;
  color: var(--purple);
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.app-body {
  flex: 1;
  padding: 0 14px 8px;
  overflow: hidden;
}

.app-members {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 8px 4px;
}

.app-avatars {
  display: flex;
  gap: -6px;
  margin-bottom: 14px;
}

.app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.app-avatar:first-child {
  margin-left: 0;
}

.app-balance-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 16px 48px rgba(77, 62, 232, 0.12);
  }
}

.app-balance-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 4px;
}

.app-balance-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

.app-balance-sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.app-percent-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid var(--purple-soft);
  border-top-color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple);
  animation: spinSlow 12s linear infinite;
}

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

.app-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.app-quick {
  background: var(--card);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.app-quick-icon {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--purple);
}

.app-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.app-expense {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.app-expense-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.app-expense-body {
  flex: 1;
  min-width: 0;
}

.app-expense-title {
  font-size: 0.72rem;
  margin: 0;
  line-height: 1.3;
}

.app-expense-title strong {
  font-weight: 700;
}

.app-expense-sub {
  font-size: 0.65rem;
  color: var(--muted);
  margin: 2px 0 0;
}

.app-expense-amount {
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.app-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 14px;
  background: var(--card);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

.app-tab {
  font-size: 0.58rem;
  color: var(--tab-inactive);
  text-align: center;
  font-weight: 600;
}

.app-tab.is-on {
  color: var(--purple);
}

.app-tab-dot {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: var(--purple-soft);
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.app-tab.is-on .app-tab-dot {
  background: var(--purple);
  color: #fff;
}

/* Screen panels (showcase section) */
.screens-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.screen-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(77, 62, 232, 0.2);
  background: var(--card);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.screen-tab:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.screen-tab.is-active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 6px 20px rgba(77, 62, 232, 0.3);
}

.screen-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.screen-copy h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.screen-copy p {
  color: var(--muted);
  margin: 0 0 20px;
}

.screen-panel {
  display: none;
}

.screen-panel.is-active {
  display: contents;
}

.screen-panels {
  position: relative;
}

.screen-panel-wrap {
  display: none;
}

.screen-panel-wrap.is-active {
  display: block;
  animation: fadeIn 0.45s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add money screen */
.app-add-amount {
  text-align: center;
  padding: 24px 0;
}

.app-add-amount-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
  margin: 0;
}

.app-pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 8px;
  border: 2px solid var(--purple);
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: #fff;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  text-align: center;
}

.section-lead {
  margin: 0 auto 40px;
  color: var(--muted);
  max-width: 36rem;
  text-align: center;
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(77, 62, 232, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(77, 62, 232, 0.12);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--purple-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 20px;
}

.price-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.price-card-featured {
  background: linear-gradient(160deg, rgba(77, 62, 232, 0.1) 0%, #fff 55%);
  border-color: rgba(77, 62, 232, 0.25);
  transform: scale(1.02);
}

.price-badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 10px;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--purple);
}

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 18px;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(77, 62, 232, 0.08);
}

.contact-list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}

.form-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 40px 0 48px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: #fff;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Legal */
.legal-page {
  padding: 48px 0 80px;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  font-weight: 800;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  margin: 28px 0 8px;
  font-size: 1.12rem;
}

.legal-page p,
.legal-page li {
  color: #333;
  max-width: 42rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--purple);
}

@media (max-width: 900px) {
  .hero-landing-grid,
  .hero-grid,
  .screen-showcase,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-landing {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-card-stage {
    order: -1;
    min-height: 300px;
  }

  .pooly-card {
    width: min(340px, 88vw);
    transform: rotateY(-12deg) rotateX(10deg);
  }

  .hero-landing-copy {
    text-align: center;
  }

  .lead--hero {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .phone-stage {
    order: -1;
  }

  .price-card-featured {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
