:root {
  --violet: #8B6DC0;
  --violet-light: #B4A0E8;
  --violet-muted: #a08ad0;
  --teal: #82BFB0;
  --teal-light: #9DCFBF;
  --gradient: linear-gradient(135deg, #B4A0E8, #9BA2E0, #82BFB0);
  --gradient-subtle: linear-gradient(135deg, rgba(180,160,232,0.06), rgba(130,191,176,0.06));
  --text-primary: #1a1a2e;
  --text-body: #3d3d50;
  --text-secondary: #5a5a6e;
  --text-muted: #6b6b78;
  --bg: #ffffff;
  --bg-alt: #f7f7fb;
  --bg-card: #ffffff;
  --border: #e6e6ee;
  --border-hover: #cfc4e8;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.10);
  --shadow-xl: 0 32px 64px rgba(0,0,0,0.14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

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

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg); color: var(--text-body); line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

.wrapper { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

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

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity 0.3s ease; transform: none; }
  .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { transition-delay: 0s; }
  .hero-glow, .ai-glow, .hero-badge-dot, .hero-logo-glow { animation: none !important; }
  .btn:hover, .feature-card:hover, .testimonial-card:hover,
  .pricing-card:hover, .download-card:hover, .ai-card:hover { transform: none !important; }
}

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0 24px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; max-width: 1140px; margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 800; letter-spacing: 0.15em;
}
.nav-brand span {
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-logo-wrap {
  position: relative; width: 55px; height: 55px; flex-shrink: 0; border-radius: 13px; overflow: hidden;
}
.nav-logo { width: 100%; height: 100%; display: block; }
.nav-logo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient); mix-blend-mode: color; pointer-events: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary); font-size: 15px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-signin {
  background: var(--gradient); color: #fff !important;
  -webkit-text-fill-color: #fff; padding: 9px 22px; border-radius: var(--radius-sm);
  font-weight: 600 !important; transition: all 0.2s !important;
  box-shadow: 0 2px 8px rgba(139,109,192,0.2);
}
.nav-signin:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,109,192,0.3); }
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-direction: column; justify-content: space-between;
}
.nav-mobile-toggle span {
  display: block; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: 0.2s;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md); font-size: 15px;
  font-weight: 600; text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 16px rgba(139,109,192,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,109,192,0.35); }
.btn-secondary { background: var(--bg-alt); color: var(--violet); border: 1px solid var(--border); }
.btn-secondary:hover { background: #eeecf7; border-color: var(--border-hover); }
.btn-outline { background: transparent; color: var(--violet); border: 2px solid var(--violet-light); }
.btn-outline:hover { background: rgba(180,160,232,0.06); }
.btn-white { background: #fff; color: var(--violet); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.hero {
  padding: 88px 0 72px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.10;
  pointer-events: none;
}
.hero-glow-1 {
  width: 560px; height: 560px; background: var(--violet-light); top: -120px; right: -80px;
  animation: heroGlow1 16s ease-in-out infinite;
}
.hero-glow-2 {
  width: 440px; height: 440px; background: var(--teal); bottom: -100px; left: -100px;
  animation: heroGlow2 18s ease-in-out infinite;
}
@keyframes heroGlow1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(60px, 30px) scale(1.08); }
  50%  { transform: translate(-40px, 50px) scale(0.95); }
  75%  { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes heroGlow2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-50px, -30px) scale(1.06); }
  50%  { transform: translate(40px, -40px) scale(0.96); }
  75%  { transform: translate(-30px, 25px) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}
.hero-content {
  display: flex; flex-direction: column; align-items: center; gap: 48px;
  position: relative; z-index: 1; text-align: center;
}
.hero-text { flex: 1; }
.hero-text-centered { display: flex; flex-direction: column; align-items: center; }
.hero-visual-centered { width: 100%; display: flex !important; flex-direction: column !important; align-items: center !important; gap: 16px; }
.hero-brand-text {
  font-size: 32px; font-weight: 800; letter-spacing: 0.45em;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-brand-tagline {
  font-size: 16px; color: var(--text-muted); font-weight: 400;
}
.hero-rotating {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-rotating.out {
  opacity: 0;
  transform: translateY(-14px);
}
.hero-rotating.pre-in {
  opacity: 0;
  transform: translateY(14px);
  transition: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 20px;
  background: rgba(180,160,232,0.08); color: var(--violet);
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
  border: 1px solid rgba(180,160,232,0.12);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: 52px; font-weight: 800; line-height: 1.2;
  color: var(--text-primary); margin-bottom: 22px; letter-spacing: -0.8px;
  text-align: center;
}
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 560px;
  margin-bottom: 36px; line-height: 1.7; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--text-muted); font-weight: 500;
}
.hero-trust-item svg { color: var(--teal); flex-shrink: 0; }

.hero-visual { flex-shrink: 0; }

.hero-logo-anim {
  position: relative; width: 210px; height: 237px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-container {
  position: relative; width: 100%; height: 100%; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-anim-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: contain; display: block;
  z-index: 1;
}
.hero-logo-svg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2; mix-blend-mode: color;
}
.hero-logo-anim-img.hidden { display: none; }

.social-proof {
  padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  display: flex; justify-content: center; align-items: center; gap: 48px;
}
.social-divider { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, var(--border), transparent); }
.social-stat { text-align: center; }
.social-stat-number {
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.social-stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; max-width: 170px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; padding: 5px 16px; border-radius: 20px;
  background: rgba(180,160,232,0.08); color: var(--violet);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 18px; border: 1px solid rgba(180,160,232,0.10);
}
.section-title {
  font-size: 38px; font-weight: 800; color: var(--text-primary);
  margin-bottom: 14px; letter-spacing: -0.4px; line-height: 1.18;
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary); max-width: 520px;
  margin: 0 auto; line-height: 1.65;
}

.pain-points { padding: 96px 0; }

.pain-timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #DC6464 0%, #B4A0E8 25%, #9BA2E0 50%, #82BFB0 75%, #5E9478 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.timeline-phase-label {
  position: relative;
  margin-bottom: 28px;
  padding-left: 8px;
}
.phase-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.phase-before {
  background: rgba(220, 100, 100, 0.08);
  color: #DC6464;
  border: 1px solid rgba(220, 100, 100, 0.15);
}
.phase-after {
  background: rgba(94, 148, 120, 0.08);
  color: #5E9478;
  border: 1px solid rgba(94, 148, 120, 0.15);
}

.timeline-node {
  position: relative;
  margin-bottom: 32px;
}
.timeline-dot {
  position: absolute;
  left: calc(-40px + 4px);
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-node:hover .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 25%, transparent);
}
.timeline-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.solution-dot {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
}

.timeline-content {
  padding-bottom: 4px;
}
.timeline-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.timeline-icon {
  color: var(--accent);
  display: flex;
  flex-shrink: 0;
}
.timeline-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}
.timeline-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  padding-left: 32px;
}

.solution-node .timeline-content h3 {
  color: var(--accent);
}

.timeline-transition {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 36px;
  position: relative;
  left: -40px;
  width: calc(100% + 40px);
}
.transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.transition-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.how-it-works { padding: 96px 0; }
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
}
.step-card {
  flex: 1; max-width: 280px; padding: 36px 28px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--bg-card); text-align: center;
  position: relative; transition: all 0.25s;
}
.step-card:hover { border-color: rgba(180,160,232,0.3); transform: translateY(-2px); }
.step-number {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--gradient); color: #fff; font-size: 18px; font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.step-arrow {
  display: flex; align-items: center; padding-top: 56px; color: var(--text-muted); opacity: 0.4;
}

.features { padding: 96px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.feature-card {
  padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card); transition: all 0.2s; position: relative;
}
.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.feature-card.bento-wide { grid-column: span 2; }
.feature-card.bento-tall { grid-row: span 2; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(180,160,232,0.10), rgba(130,191,176,0.10));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--violet);
}
.feature-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary);
}
.feature-card p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.6;
}

.app-showcase { padding: 96px 0; background: var(--bg); position: relative; overflow: hidden; }
.showcase-phones {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 32px; max-width: 960px; margin: 0 auto; padding-top: 8px;
}
.phone-frame {
  width: 260px; background: #1a1a2e; border-radius: 36px;
  padding: 12px; position: relative; box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone-frame-hero { width: 280px; transform: translateY(-16px); }
.phone-notch {
  width: 100px; height: 28px; background: #1a1a2e; border-radius: 0 0 18px 18px;
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.phone-screen {
  background: #fafafe; border-radius: 26px; padding: 40px 16px 20px;
  min-height: 440px; overflow: hidden;
}
.phone-frame-hero .phone-screen { min-height: 470px; }
.phone-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-top: 14px;
}

.ps-greeting { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.ps-hero-card {
  background: linear-gradient(135deg, #B4A0E8, #82BFB0); border-radius: 16px;
  padding: 18px 16px 14px; margin-bottom: 14px; color: #fff;
}
.ps-hero-label { font-size: 11px; opacity: 0.85; font-weight: 500; }
.ps-hero-amount { font-size: 28px; font-weight: 800; letter-spacing: -1px; margin: 2px 0 6px; }
.ps-hero-sparkline svg { width: 100%; height: 24px; }

.ps-pills { display: flex; gap: 6px; margin-bottom: 14px; }
.ps-pill {
  flex: 1; font-size: 10px; font-weight: 600; padding: 7px 0; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-body);
}
.ps-pill-count { font-weight: 800; color: var(--violet); margin-right: 3px; }
.ps-pill-warn { border-color: rgba(220,100,100,0.3); }
.ps-pill-warn .ps-pill-count { color: #dc6464; }

.ps-stat-row { display: flex; gap: 10px; margin-bottom: 12px; }
.ps-stat {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 10px;
}
.ps-stat small { font-size: 10px; color: var(--text-muted); display: block; margin-bottom: 2px; }
.ps-stat-income { font-size: 16px; font-weight: 800; color: #82BFB0; }
.ps-stat-expense { font-size: 16px; font-weight: 800; color: #DC6464; }
.ps-mini-bars { display: flex; gap: 3px; height: 24px; align-items: flex-end; margin-top: 6px; }
.ps-mini-bars div { flex: 1; background: linear-gradient(180deg, #82BFB0, #82BFB066); border-radius: 3px 3px 0 0; }
.ps-mini-bars.expense div { background: linear-gradient(180deg, #DC6464, #DC646466); }

.ps-insight {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: rgba(180,160,232,0.06); border-radius: 12px; border: 1px solid rgba(180,160,232,0.12);
}
.ps-insight-icon {
  width: 28px; height: 28px; border-radius: 8px; background: rgba(130,191,176,0.12);
  color: #82BFB0; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ps-insight-text { font-size: 11px; color: var(--text-secondary); line-height: 1.4; }
.ps-insight-text strong { display: block; color: var(--text-primary); font-size: 12px; }

.ps-header { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 14px; }

.ps-pipeline { display: flex; justify-content: space-around; margin-bottom: 16px; }
.ps-pipe-item { text-align: center; }
.ps-pipe-donut {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 6px;
  border: 4px solid var(--border); position: relative;
}
.ps-pipe-donut.matched { border-color: #82BFB0; border-top-color: var(--border); }
.ps-pipe-donut.ready { border-color: #B4A0E8; border-top-color: var(--border); border-right-color: var(--border); }
.ps-pipe-donut.processing { border-color: var(--border); border-left-color: #9BA2E0; }
.ps-pipe-label strong { font-size: 16px; color: var(--text-primary); display: block; }
.ps-pipe-label small { font-size: 10px; color: var(--text-muted); }

.ps-receipt-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.ps-receipt {
  display: flex; align-items: center; gap: 10px; padding: 10px 10px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
}
.ps-receipt-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
}
.ps-receipt-icon.bunnings { background: #D42D23; }
.ps-receipt-icon.officeworks { background: #00447C; }
.ps-receipt-icon.coles { background: #E31837; }
.ps-receipt-icon.telstra { background: #0072BC; }
.ps-receipt-icon::after { font-size: 8px; font-weight: 700; }
.ps-receipt-icon.bunnings::after { content: 'BUN'; }
.ps-receipt-icon.officeworks::after { content: 'OW'; }
.ps-receipt-icon.coles::after { content: 'COL'; }
.ps-receipt-icon.telstra::after { content: 'TEL'; }
.ps-receipt-info { flex: 1; min-width: 0; }
.ps-receipt-info strong { font-size: 12px; color: var(--text-primary); display: block; }
.ps-receipt-info span { font-size: 10px; color: var(--text-muted); }
.ps-receipt-badge {
  font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 6px; white-space: nowrap;
}
.ps-receipt-badge.matched { background: rgba(130,191,176,0.12); color: #5a9a87; }
.ps-receipt-badge.ready { background: rgba(180,160,232,0.12); color: #8b6dc0; }
.ps-receipt-badge.processing { background: rgba(155,162,224,0.12); color: #7a80c0; }

.ps-scan-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gradient); color: #fff; border-radius: 14px;
  padding: 12px; font-size: 13px; font-weight: 700;
}

.ps-tabs { display: flex; gap: 0; margin-bottom: 14px; background: var(--border); border-radius: 10px; padding: 3px; }
.ps-tab {
  flex: 1; text-align: center; font-size: 11px; font-weight: 600; padding: 7px;
  border-radius: 8px; color: var(--text-muted); cursor: default;
}
.ps-tab.active { background: var(--bg-card); color: var(--text-primary); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

.ps-gst-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px; text-align: center; margin-bottom: 14px; position: relative;
}
.ps-gst-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.ps-gst-amount { font-size: 28px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.ps-gst-due { font-size: 10px; color: var(--text-muted); margin-bottom: 10px; }
.ps-gst-donut { width: 72px; margin: 0 auto 10px; }
.ps-gst-donut svg { width: 100%; height: auto; }
.ps-gst-legend { display: flex; justify-content: center; gap: 16px; font-size: 10px; color: var(--text-secondary); }
.ps-gst-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
.dot.collected { background: #B4A0E8; }
.dot.paid { background: #82BFB0; }

.ps-profit-trend {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 14px;
}
.ps-trend-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ps-trend-header strong { font-size: 12px; color: var(--text-primary); }
.ps-trend-up { font-size: 11px; font-weight: 700; color: #82BFB0; }
.ps-trend-chart { width: 100%; height: 40px; }

.ai-section {
  padding: 100px 0; position: relative; overflow: hidden;
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
  background: #09090f;
}
.ai-bg { position: absolute; inset: 0; }
.ai-glow {
  position: absolute; border-radius: 50%; filter: blur(140px); pointer-events: none;
}
.ai-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,160,232,0.16) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: aiGlow 14s ease-in-out infinite;
}
.ai-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(130,191,176,0.12) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: aiGlow 14s ease-in-out infinite reverse;
}
@keyframes aiGlow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(25px, -18px); }
  66% { transform: translate(-18px, 12px); }
}
.ai-grid-lines {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(180,160,232,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,160,232,0.5) 1px, transparent 1px);
  background-size: 64px 64px;
}
.ai-content { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; }
.ai-badge { background: rgba(180,160,232,0.12); border-color: rgba(180,160,232,0.18); }
.ai-title { color: #f0f0f5; }
.ai-subtitle { color: rgba(255,255,255,0.50); }

.ai-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.ai-card {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.ai-card:hover { border-color: rgba(180,160,232,0.20); transform: translateY(-2px); }
.ai-card h3 { font-size: 18px; font-weight: 700; color: #f0f0f5; margin-bottom: 10px; }
.ai-card p { font-size: 16px; color: rgba(255,255,255,0.50); line-height: 1.6; }
.ai-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(180,160,232,0.14), rgba(130,191,176,0.14));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--violet-light);
}

.ai-card-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(180,160,232,0.06), rgba(130,191,176,0.04));
  border-color: rgba(180,160,232,0.10);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.ai-card-hero-text {}
.ai-card-icon-large {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #fff;
  box-shadow: 0 8px 24px rgba(139,109,192,0.25);
}
.ai-card-hero h3 { font-size: 22px; }
.ai-card-hero > .ai-card-hero-text > p { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 460px; }

.ai-chat-demo {
  display: flex; flex-direction: column; gap: 10px;
}
.ai-chat-bubble {
  padding: 12px 16px; border-radius: 14px; font-size: 14px; line-height: 1.55;
}
.ai-chat-bubble.user {
  background: linear-gradient(135deg, var(--violet-light), #9BA2E0);
  color: #fff; align-self: flex-end; border-bottom-right-radius: 4px;
  font-weight: 500; max-width: 280px;
}
.ai-chat-bubble.assistant {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65); border-bottom-left-radius: 4px;
}
.ai-chat-bubble.assistant strong { color: var(--teal); font-weight: 700; }
.ai-chat-typing { display: inline-flex; gap: 4px; margin-bottom: 8px; }
.ai-chat-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--violet-light);
  animation: typingDot 1.4s ease-in-out infinite;
}
.ai-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.2; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1); }
}

.testimonials {
  padding: 96px 0; background: var(--bg-alt);
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1140px; margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card); padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: all 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars span { color: #f59e0b; font-size: 16px; }
.testimonial-card > p {
  font-size: 16px; color: var(--text-body); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

.web-app-section {
  padding: 96px 0;
  background: var(--gradient-subtle);
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.web-app-content {
  display: flex; align-items: center; gap: 64px;
  max-width: 1140px; margin: 0 auto;
}
.web-app-text { flex: 1; }
.web-app-text h2 {
  font-size: 38px; font-weight: 800; color: var(--text-primary);
  margin-bottom: 18px; margin-top: 12px; line-height: 1.18;
}
.web-app-text p { font-size: 17px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.web-app-features { list-style: none; margin-bottom: 32px; }
.web-app-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 16px; color: var(--text-body); font-weight: 500;
}
.check-circle {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(130,191,176,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #22c55e; flex-shrink: 0;
}
.web-app-visual { flex-shrink: 0; }

.browser-mock {
  width: 460px; background: var(--bg-card); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}
.browser-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; background: #f5f5f8; border-bottom: 1px solid #eaeaee;
}
.browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }
.browser-bar {
  flex: 1; padding: 6px 12px; background: #fff; font-size: 12px; color: #999;
  border-radius: 6px; display: flex; align-items: center; gap: 6px;
}
.browser-content { display: flex; min-height: 280px; }
.browser-sidebar {
  width: 125px; background: #fafafa; padding: 14px 10px; border-right: 1px solid #eee;
}
.browser-sidebar-logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 800; margin-bottom: 14px;
}
.browser-nav-item {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 9px; font-size: 11px; color: var(--text-muted);
  border-radius: 7px; margin-bottom: 2px; font-weight: 500;
}
.browser-nav-item.active {
  background: linear-gradient(135deg, rgba(180,160,232,0.10), rgba(130,191,176,0.10));
  color: var(--violet); font-weight: 600;
}
.browser-main { flex: 1; padding: 16px; }
.browser-greeting { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.browser-stat-row { display: flex; gap: 8px; margin-bottom: 12px; }
.browser-stat {
  flex: 1; border-radius: var(--radius-sm); padding: 10px; border: 1px solid var(--border);
}
.browser-stat small { font-size: 10px; color: var(--text-muted); display: block; margin-bottom: 3px; }
.browser-stat span { display: block; font-size: 16px; font-weight: 800; letter-spacing: -0.5px; }
.browser-stat-trend {
  font-size: 9px; font-weight: 600; margin-top: 3px; padding: 2px 5px;
  border-radius: 4px; display: inline-block;
}
.browser-stat-trend.up { background: rgba(34,197,94,0.08); color: #22c55e; }
.browser-stat-trend.down { background: rgba(239,68,68,0.08); color: #ef4444; }
.income-stat span { color: #22c55e; }
.expense-stat span { color: #ef4444; }
.gst-stat span { color: var(--violet); }
.browser-chart { display: flex; gap: 6px; align-items: flex-end; height: 72px; padding: 8px 0; }
.browser-chart-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(180,160,232,0.12), rgba(180,160,232,0.25));
  transition: all 0.2s;
}
.browser-chart-bar.active { background: linear-gradient(to top, var(--violet-light), var(--teal)); }

.pricing { padding: 96px 0; }
.pricing-grid {
  display: flex; justify-content: center; gap: 24px;
  max-width: 740px; margin: 0 auto;
}
.pricing-card {
  flex: 1; padding: 40px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card); position: relative; transition: all 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--violet-light);
  box-shadow: 0 12px 40px rgba(180,160,232,0.14);
  background: linear-gradient(180deg, #fff 0%, rgba(245,243,255,0.4) 100%);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  padding: 5px 18px; border-radius: 14px; font-size: 12px; font-weight: 600;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(139,109,192,0.2);
}
.pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.price { font-size: 48px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; letter-spacing: -1.5px; }
.price span { font-size: 16px; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.pricing-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card li {
  padding: 8px 0; font-size: 15px; color: var(--text-body);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card li::before { content: "\2713"; color: var(--teal); font-weight: 700; font-size: 14px; }
.pricing-card .btn { width: 100%; justify-content: center; }

.download {
  padding: 96px 0; position: relative; overflow: hidden;
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.download-bg { position: absolute; inset: 0; background: var(--gradient-subtle); }
.download-grid {
  display: flex; gap: 20px; justify-content: center;
  max-width: 920px; margin: 0 auto; position: relative;
}
.download-card {
  flex: 1; padding: 36px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  text-align: center; background: var(--bg-card); transition: all 0.2s;
}
.download-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.download-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(180,160,232,0.10), rgba(130,191,176,0.10));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--violet);
}
.download-card-icon.web-icon {
  background: linear-gradient(135deg, rgba(130,191,176,0.10), rgba(180,160,232,0.10));
}
.download-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.download-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 22px; line-height: 1.6; }
.store-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text-body);
  background: #fff; transition: all 0.2s; cursor: pointer; font-family: inherit;
}
.store-button:hover { border-color: var(--violet-light); color: var(--violet); transform: translateY(-1px); }
.store-icon { width: 18px; height: 18px; }
.webapp-btn { border-color: var(--violet-light); color: var(--violet); }
.webapp-btn:hover { background: rgba(180,160,232,0.04); }
.qr-card {
  background: var(--gradient); border: none; color: #fff;
  box-shadow: 0 12px 32px rgba(139,109,192,0.18);
}
.qr-card:hover { box-shadow: 0 16px 40px rgba(139,109,192,0.25); }
.qr-card h3 { color: #fff; }
.qr-card p { color: rgba(255,255,255,0.82); }
.qr-code {
  width: 150px; height: 150px; margin: 0 auto 14px;
  background: #fff; border-radius: var(--radius-md); padding: 10px;
}
.qr-code canvas { width: 100%; height: 100%; }
.open-button {
  display: inline-block; padding: 10px 20px; font-size: 14px; font-weight: 600;
  border: none; border-radius: var(--radius-sm); text-decoration: none;
  color: var(--violet); background: #fff; transition: all 0.2s;
}
.open-button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.cta-banner {
  padding: 72px 0; position: relative; overflow: hidden; margin: 0 -24px;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: var(--gradient);
}
.cta-banner-content {
  position: relative; text-align: center; max-width: 600px;
  margin: 0 auto; padding: 0 24px;
}
.cta-banner h2 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.6; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.footer { border-top: 1px solid var(--border); }
.footer-top { display: flex; gap: 64px; padding: 56px 0 40px; }
.footer-brand-section { flex: 1.5; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800; letter-spacing: 0.15em; margin-bottom: 8px;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-logo-wrap {
  position: relative; width: 55px; height: 55px; flex-shrink: 0; border-radius: 13px; overflow: hidden;
}
.footer-logo { width: 100%; height: 100%; display: block; }
.footer-logo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient); mix-blend-mode: color; pointer-events: none;
}
.footer-tagline { font-size: 15px; color: var(--text-muted); }
.footer-link-group { display: flex; flex-direction: column; gap: 10px; }
.footer-link-group h4 {
  font-size: 13px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-link-group a {
  text-decoration: none; color: var(--text-muted); font-size: 15px; transition: color 0.15s;
}
.footer-link-group a:hover { color: var(--violet); }
.footer-bottom { padding: 22px 0; border-top: 1px solid var(--border); }
.footer-copy { font-size: 14px; color: #8a8a96; text-align: center; }

.loading { display: none; text-align: center; margin: 60px 0; }
.spinner {
  border: 2px solid #eee; border-top-color: var(--violet-light); border-radius: 50%;
  width: 32px; height: 32px; animation: spin 0.8s linear infinite; margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 16px; color: var(--text-secondary); }

@media (max-width: 1024px) {
  .hero-content { gap: 48px; }
  .hero h1 { font-size: 42px; }
  .hero-logo-anim { width: 170px; height: 192px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.bento-wide { grid-column: span 2; }
  .ai-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-card-hero { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .web-app-content { gap: 40px; }
  .browser-mock { width: 380px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 60px; left: 0; right: 0; background: rgba(255,255,255,0.97);
    padding: 16px 24px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); gap: 14px; z-index: 200;
    backdrop-filter: blur(20px);
  }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 48px 0 40px; }
  .hero-content { gap: 32px; }
  .hero-text { align-items: center; }
  .hero h1 { font-size: 34px; }
  .hero-subtitle { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-logo-anim { width: 140px; height: 158px; }
  .social-proof-inner { flex-wrap: wrap; gap: 24px; }
  .social-divider { display: none; }
  .social-stat-number { font-size: 24px; }
  .section-title { font-size: 28px; }
  .pain-timeline { padding-left: 32px; }
  .timeline-dot { left: calc(-32px + 2px); }
  .timeline-transition { left: -32px; width: calc(100% + 32px); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card.bento-wide { grid-column: span 1; }
  .showcase-phones { flex-direction: column; align-items: center; gap: 24px; }
  .phone-frame, .phone-frame-hero { width: 260px; }
  .phone-frame-hero { transform: none; }
  .ai-features-grid { grid-template-columns: 1fr; }
  .ai-card-hero { grid-template-columns: 1fr; }
  .ai-card-hero h3 { font-size: 19px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .web-app-content { flex-direction: column; gap: 40px; }
  .browser-mock { width: 100%; max-width: 400px; }
  .pricing-grid { flex-direction: column; }
  .download-grid { flex-direction: column; }
  .cta-banner h2 { font-size: 26px; }
  .footer-top { flex-direction: column; gap: 32px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f0f0f5;
    --text-body: #c8c8d0;
    --text-secondary: #9898a5;
    --text-muted: #787888;
    --bg: #0a0a0e;
    --bg-alt: #0f0f14;
    --bg-card: #111116;
    --border: #1e1e28;
    --border-hover: #3a3060;
  }
  .nav { background: rgba(10,10,14,0.90); border-bottom-color: rgba(255,255,255,0.04); }
  .nav-links a { color: #9898a5; }
  .nav-links a:hover { color: #f0f0f5; }
  .nav-links.open { background: rgba(22,22,28,0.97); border-bottom-color: #1e1e28; }
  .hero-badge { background: rgba(180,160,232,0.10); border-color: rgba(180,160,232,0.12); }
  .social-proof { border-color: #1e1e28; }
  .timeline-line { opacity: 0.2; }
  .phase-before { background: rgba(220, 100, 100, 0.12); border-color: rgba(220, 100, 100, 0.2); }
  .phase-after { background: rgba(94, 148, 120, 0.12); border-color: rgba(94, 148, 120, 0.2); }
  .phone-frame { background: #0a0a0e; box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset; }
  .phone-notch { background: #0a0a0e; }
  .phone-screen { background: #111116; }
  .ps-receipt-badge.matched { background: rgba(130,191,176,0.15); color: #82BFB0; }
  .ps-receipt-badge.ready { background: rgba(180,160,232,0.15); color: #B4A0E8; }
  .ps-receipt-badge.processing { background: rgba(155,162,224,0.15); color: #9BA2E0; }
  .step-card { border-color: #1e1e28; background: #111116; }
  .step-card:hover { border-color: #3a3060; }
  .feature-card { border-color: #1e1e28; background: #111116; }
  .feature-card:hover { border-color: #3a3060; box-shadow: 0 12px 32px rgba(139,109,192,0.05); }
  .feature-icon { background: linear-gradient(135deg, rgba(180,160,232,0.10), rgba(130,191,176,0.10)); }
  .testimonials { background: #0c0c10; }
  .testimonial-card { background: #111116; border-color: #1e1e28; }
  .testimonial-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
  .web-app-section { background: linear-gradient(135deg, rgba(180,160,232,0.02), rgba(130,191,176,0.02)); }
  .browser-mock { background: #111116; box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.03); }
  .browser-chrome { background: #161620; border-bottom-color: #1e1e28; }
  .browser-bar { background: #0e0e14; color: #666; }
  .browser-sidebar { background: #0e0e14; border-right-color: #1e1e28; }
  .browser-nav-item { color: #787888; }
  .browser-nav-item.active { background: rgba(139,109,192,0.10); color: var(--violet-light); }
  .browser-stat { background: #161620; border-color: #1e1e28; }
  .browser-stat small { color: #787888; }
  .browser-chart-bar { background: linear-gradient(to top, rgba(180,160,232,0.08), rgba(180,160,232,0.16)); }
  .pricing-card { background: #111116; border-color: #1e1e28; }
  .pricing-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
  .pricing-card.featured { border-color: var(--violet); box-shadow: 0 12px 40px rgba(139,109,192,0.08); background: linear-gradient(180deg, #131318 0%, rgba(26,18,42,0.3) 100%); }
  .btn-secondary { background: #131318; color: var(--violet-light); border-color: rgba(180,160,232,0.12); }
  .btn-secondary:hover { background: #1a1a22; }
  .btn-outline { border-color: var(--violet); color: var(--violet-light); }
  .btn-outline:hover { background: rgba(180,160,232,0.06); }
  .download-bg { background: rgba(10,10,14,0.5); }
  .download-card { background: #111116; border-color: #1e1e28; }
  .download-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
  .store-button { border-color: #2a2a36; color: #c8c8d0; background: #161620; }
  .store-button:hover { border-color: var(--violet); color: var(--violet-light); background: #1e1e28; }
  .webapp-btn { border-color: var(--violet); color: var(--violet-light); }
  .footer { border-top-color: #1e1e28; }
  .footer-bottom { border-top-color: #1e1e28; }
  .footer-link-group a { color: #787888; }
  .footer-link-group a:hover { color: var(--violet-light); }
  .footer-tagline { color: #7a7a88; }
  .footer-copy { color: #6a6a78; }
}

.glow-card {
  position: relative;
}
.glow-card > *:not(.glow-border):not(.glow-border-bg) {
  position: relative;
  z-index: 1;
}
.glow-border {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  background: conic-gradient(
    from calc(var(--glow-angle, 0) * 1deg),
    transparent 0deg,
    #B4A0E8 30deg,
    #9BA2E0 60deg,
    #82BFB0 90deg,
    transparent 120deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
}
.glow-card:hover > .glow-border {
  opacity: 1;
}
.glow-border-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  background: radial-gradient(
    300px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(180, 160, 232, 0.06),
    transparent 70%
  );
}
.glow-card:hover > .glow-border-bg {
  opacity: 1;
}
@supports not (mask-composite: exclude) {
  .glow-border {
    background: none;
    border: 2px solid transparent;
    border-image: conic-gradient(
      from calc(var(--glow-angle, 0) * 1deg),
      transparent 0deg,
      #B4A0E8 30deg,
      #9BA2E0 60deg,
      #82BFB0 90deg,
      transparent 120deg,
      transparent 360deg
    ) 1;
    -webkit-mask: none;
    mask: none;
    padding: 0;
  }
}
