/* ============================================================
   Planmasta — landing styles
   Light, airy, Apple-inspired with indigo/violet accent gradient.
   ============================================================ */

:root {
  --bg: #f6f6fb;
  --bg-2: #ffffff;
  --ink: #0c0c1a;
  --ink-2: #1f2030;
  --muted: #5f6373;
  --muted-2: #8a8fa3;
  --line: rgba(15, 17, 40, 0.08);
  --line-2: rgba(15, 17, 40, 0.05);

  --brand: #5b5bea;
  --brand-2: #7c5cf2;
  --brand-3: #a855f7;
  --brand-4: #06b6d4;

  --grad: linear-gradient(120deg, #5b5bea 0%, #7c5cf2 45%, #a855f7 100%);
  --grad-soft: linear-gradient(120deg, rgba(91, 91, 234, 0.18), rgba(168, 85, 247, 0.18));
  --grad-light: linear-gradient(120deg, #c4b5fd 0%, #a5f3fc 100%);

  --shadow-1: 0 6px 24px rgba(15, 17, 40, 0.06), 0 2px 6px rgba(15, 17, 40, 0.04);
  --shadow-2: 0 30px 60px -20px rgba(91, 91, 234, 0.35), 0 18px 36px -18px rgba(15, 17, 40, 0.18);
  --shadow-3: 0 50px 120px -30px rgba(91, 91, 234, 0.55), 0 30px 60px -25px rgba(15, 17, 40, 0.25);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { background: var(--bg); }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.02; font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.05; font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.25; font-weight: 700; }

p { margin: 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-light {
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- ambient bg ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}

.blob-1 {
  width: 620px; height: 620px;
  top: -240px; left: -160px;
  background: radial-gradient(circle, #7c5cf2 0%, rgba(124, 92, 242, 0) 70%);
  animation: float1 18s ease-in-out infinite;
}

.blob-2 {
  width: 560px; height: 560px;
  top: 220px; right: -200px;
  background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
  opacity: 0.35;
  animation: float2 22s ease-in-out infinite;
}

.blob-3 {
  width: 720px; height: 720px;
  bottom: -300px; left: 30%;
  background: radial-gradient(circle, #a855f7 0%, rgba(168, 85, 247, 0) 70%);
  opacity: 0.25;
  animation: float3 26s ease-in-out infinite;
}

.bg-fx .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 17, 40, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 17, 40, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 60px) scale(1.15); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.05); }
}

/* ---------- nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px var(--pad);
  background: rgba(246, 246, 251, 0.6);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}

.nav-wrap.scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 246, 251, 0.85);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
}

.brand-name { font-size: 1.05rem; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 14px rgba(15, 17, 40, 0.18);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(91, 91, 234, 0.45);
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 100px) var(--pad) 60px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(20px, 5vw, 80px);
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-1);
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(91, 91, 234, 0.18);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91, 91, 234, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(91, 91, 234, 0.05); }
}

.eyebrow-pill {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 3px 8px;
  background: rgba(91, 91, 234, 0.1);
  border-radius: 999px;
}

.hero-title {
  margin: 22px 0 18px;
  letter-spacing: -0.035em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  transition: transform .2s, filter .2s;
}

.appstore-btn img {
  height: 46px;
  width: auto;
  display: block;
}

.appstore-btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 28px rgba(15, 17, 40, 0.25));
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform .2s, box-shadow .2s, color .2s;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 17, 40, 0.12);
  color: var(--brand);
}

.ghost-btn svg { transition: transform .2s; }
.ghost-btn:hover svg { transform: translateX(3px); }

.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: #f5b400; }

/* ---------- hero phones ---------- */
.hero-phones {
  position: relative;
  height: clamp(520px, 60vw, 720px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: relative;
  width: clamp(220px, 26vw, 320px);
  aspect-ratio: 9 / 19.5;
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone-frame {
  position: absolute;
  inset: 0;
  border-radius: 42px;
  background: linear-gradient(160deg, #1a1a2e 0%, #0c0c1a 100%);
  padding: 8px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    0 30px 80px -20px rgba(91, 91, 234, 0.4),
    0 18px 40px -18px rgba(15, 17, 40, 0.4);
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  display: block;
}

.notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 28px;
  background: #0c0c1a;
  border-radius: 999px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 60%, rgba(91, 91, 234, 0.45), transparent 60%);
  z-index: -1;
  filter: blur(30px);
  opacity: 0.85;
}

.hero-phones .phone-back {
  position: absolute;
  left: 8%;
  top: 8%;
  transform: rotate(-8deg) translateY(0);
  z-index: 1;
  animation: floatPhone 6s ease-in-out infinite;
}

.hero-phones .phone-front {
  position: absolute;
  right: 6%;
  bottom: 4%;
  transform: rotate(6deg);
  z-index: 2;
  animation: floatPhone 7s ease-in-out -2s infinite;
}

@keyframes floatPhone {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@media (max-width: 960px) {
  .hero-phones { height: 580px; margin-top: 24px; }
  .hero-phones .phone-back { left: 6%; }
  .hero-phones .phone-front { right: 4%; }
}

@media (max-width: 540px) {
  .hero-phones { height: 480px; }
  .phone { width: 60vw; }
}

/* ---------- floating chips ---------- */
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-2);
  z-index: 5;
  white-space: nowrap;
}

.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.chip-arrow {
  color: #22c55e;
  font-weight: 800;
}

.chip-ai {
  top: 6%;
  right: 0%;
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-followers {
  top: 38%;
  left: -2%;
  animation: chipFloat 6s ease-in-out -2s infinite;
}
.chip-cal {
  bottom: 8%;
  right: 4%;
  animation: chipFloat 7s ease-in-out -3s infinite;
  color: var(--brand);
}
.chip-cal svg { color: var(--brand); }

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

@media (max-width: 540px) {
  .chip-followers { left: -4%; top: 32%; }
  .chip-ai { right: -4%; }
}

/* ---------- marquee ---------- */
.marquee {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: scrollLeft 38s linear infinite;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.m-item { white-space: nowrap; }
.m-dot { color: var(--brand); font-size: 0.5rem; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- stats ---------- */
.stats {
  max-width: var(--maxw);
  margin: 80px auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: transform .3s, box-shadow .3s;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.stat-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- section heads ---------- */
.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-eyebrow.on-dark { color: #c4b5fd; }
.on-dark { color: white; }

.section-head h2 { margin-bottom: 14px; }

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- features grid ---------- */
.features {
  max-width: var(--maxw);
  margin: 100px auto;
  padding: 0 var(--pad);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

.feat {
  position: relative;
  grid-column: span 3;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .35s;
}

.feat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.feat:hover::before { opacity: 0.55; }

.feat-lg { grid-column: span 6; }
@media (max-width: 980px) { .feat-lg, .feat { grid-column: span 2; } }
@media (max-width: 540px) { .feat-lg, .feat { grid-column: span 1; } }

.feat-lg { padding: 48px; }

.feat-text {
  position: relative;
  z-index: 2;
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.feat-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 14px;
}

.feat h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 12px; }
.feat-lg h3 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.feat p { color: var(--muted); font-size: 1rem; }

.feat-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feat-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(91, 91, 234, 0.12);
}

.feat-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.phone-static {
  width: clamp(180px, 22vw, 240px);
}

.feat-dark {
  background: linear-gradient(160deg, #14142a 0%, #0c0c1a 100%);
  border-color: rgba(255, 255, 255, 0.06);
  color: white;
}

.feat-dark::before {
  background: radial-gradient(circle at 80% 20%, rgba(124, 92, 242, 0.4), transparent 60%);
  opacity: 0.6;
}

.feat-dark h3 { color: white; }
.feat-dark p { color: rgba(255, 255, 255, 0.7); }
.feat-dark .feat-tag { color: #c4b5fd; }
.feat-dark .feat-list li { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 720px) {
  .feat { flex-direction: column; padding: 28px; gap: 20px; }
  .feat-lg { padding: 32px; }
  .feat-visual { min-height: 380px; }
}

/* ---------- showcase rail ---------- */
.showcase {
  margin: 100px auto;
  padding: 0 var(--pad);
}

.showcase-rail {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 24px;
}
.showcase-rail::-webkit-scrollbar { display: none; }

.rail-track {
  display: flex;
  gap: 28px;
  padding: 8px 4px 4px;
}

.rail-card {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 300px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rail-card .phone { width: 100%; }

.rail-card figcaption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rail-card figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.rail-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- AI band (dark) ---------- */
.ai-band {
  margin: 120px var(--pad);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(40px, 6vw, 80px);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0% 0%, #1f1f3d 0%, #0c0c1a 60%);
  position: relative;
  overflow: hidden;
}

.ai-band::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, rgba(91, 91, 234, 0.6), rgba(168, 85, 247, 0.4), rgba(6, 182, 212, 0.5));
  z-index: -1;
  border-radius: inherit;
  filter: blur(40px);
  opacity: 0.5;
}

.ai-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

@media (max-width: 920px) { .ai-band-inner { grid-template-columns: 1fr; } }

.ai-band-copy h2 { color: white; }
.ai-band-sub {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 520px;
}

.ai-band-bullets {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.ai-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-bullet-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--grad-light);
  box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.15);
}

.ai-bullet strong {
  display: block;
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}

.ai-bullet span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* ---------- orbit ---------- */
.ai-band-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit {
  position: relative;
  width: clamp(280px, 35vw, 400px);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-core {
  width: 96px; height: 96px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.05),
    0 30px 60px -10px rgba(91, 91, 234, 0.6);
  z-index: 3;
}
.orbit-core img {
  width: 80px; height: 80px;
  border-radius: 18px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.r1 { width: 50%; height: 50%; animation: spin 22s linear infinite; }
.r2 { width: 75%; height: 75%; animation: spinRev 32s linear infinite; }
.r3 { width: 100%; height: 100%; animation: spin 46s linear infinite; }

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

.orbit-tag {
  position: absolute;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  animation: tagFloat 6s ease-in-out infinite;
}

.o-1 { top: 4%; left: 50%; transform: translateX(-50%); }
.o-2 { top: 28%; right: -4%; animation-delay: -1s; }
.o-3 { bottom: 22%; right: 0%; animation-delay: -2s; }
.o-4 { bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: -3s; }
.o-5 { bottom: 22%; left: 0%; animation-delay: -4s; }
.o-6 { top: 28%; left: -4%; animation-delay: -5s; }

@keyframes tagFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 540px) {
  .orbit { width: 90vw; max-width: 360px; }
  .orbit-tag { font-size: 0.74rem; padding: 6px 10px; }
}

/* ---------- pricing ---------- */
.pricing {
  max-width: var(--maxw);
  margin: 100px auto;
  padding: 0 var(--pad);
}

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

@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-1);
  transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.price-card-featured {
  background: linear-gradient(160deg, #1a1a35 0%, #0c0c1a 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-3);
  transform: translateY(-8px);
}

.price-card-featured:hover { transform: translateY(-14px); }

.price-card-featured h3,
.price-card-featured .price-num { color: white; }
.price-card-featured .price-head p { color: rgba(255, 255, 255, 0.65); }
.price-card-featured .price-list li { color: rgba(255, 255, 255, 0.85); }
.price-card-featured .price-list li::before { background: var(--grad-light); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--grad);
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(91, 91, 234, 0.45);
}

.price-head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-head p { color: var(--muted); font-size: 0.92rem; }

.price-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-num span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-left: 4px;
}

.price-card-featured .price-num span { color: rgba(255, 255, 255, 0.55); }

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.price-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
}

.price-cta {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.price-card-featured .price-cta {
  background: var(--grad);
  box-shadow: 0 12px 28px rgba(91, 91, 234, 0.45);
}

.price-cta:hover {
  transform: translateY(-2px);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(91, 91, 234, 0.45);
}

.price-card-featured .price-cta:hover { box-shadow: 0 18px 38px rgba(168, 85, 247, 0.55); }

/* ---------- testimonials ---------- */
.testimonials {
  max-width: var(--maxw);
  margin: 100px auto;
  padding: 0 var(--pad);
}

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

@media (max-width: 820px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1);
  margin: 0;
  transition: transform .3s, box-shadow .3s;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.t-stars { color: #f5b400; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.t-card blockquote { margin: 0 0 12px; font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.t-card figcaption { color: var(--muted); font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 100px auto;
  padding: 0 var(--pad);
}

.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
  transition: box-shadow .25s, border-color .25s;
}

.faq-item[open] {
  box-shadow: var(--shadow-1);
  border-color: rgba(91, 91, 234, 0.25);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

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

.faq-icon {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(91, 91, 234, 0.08);
  color: var(--brand);
  font-size: 1.1rem;
  transition: transform .3s, background .3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--grad);
  color: white;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- final CTA ---------- */
.final-cta {
  max-width: var(--maxw);
  margin: 100px auto 60px;
  padding: 0 var(--pad);
}

.final-cta-inner {
  position: relative;
  text-align: center;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #5b5bea 0%, #7c5cf2 50%, #a855f7 100%);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.final-cta-inner::before {
  width: 360px; height: 360px;
  background: rgba(255, 255, 255, 0.18);
  top: -120px; left: -100px;
}

.final-cta-inner::after {
  width: 460px; height: 460px;
  background: rgba(6, 182, 212, 0.4);
  bottom: -200px; right: -120px;
}

.final-cta-inner > * { position: relative; z-index: 1; }

.final-icon {
  width: 76px; height: 76px;
  border-radius: 18px;
  margin: 0 auto 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.final-cta-inner h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.appstore-btn-lg img { height: 58px; }

.final-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px var(--pad);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links a:hover { color: var(--ink); }

.footer-meta {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-top: 6px;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.2, 0.8, 0.2, 1), transform .9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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