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

:root {
  /* Color Palette - Premium Dark Theme */
  --bg-main: #050811;
  --bg-surface: rgba(13, 20, 38, 0.45);
  --bg-surface-hover: rgba(20, 30, 58, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(20, 184, 166, 0.35);
  
  --brand-50: #f0fdfa;
  --brand-100: #ccfbf1;
  --brand-500: #14b8a6;
  --brand-600: #0d9488;
  --brand-700: #0f766e;
  --brand-900: #134e4a;
  
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-300: #cbd5e1;
  --slate-500: #94a3b8; /* Lighter slate for dark background */
  --slate-700: #cbd5e1; /* For readability on dark mode */
  --slate-900: #ffffff; /* Titles are white */
  --ink: #e2e8f0;       /* Base body text */
  --white: #ffffff;
  
  /* Accent Colors */
  --blue: #3b82f6;
  --green: #10b981;
  --orange: #f59e0b;
  
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.mesh-bg {
  position: fixed;
  inset: -25vmax;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.15), transparent 28vmax),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.12), transparent 26vmax),
    radial-gradient(circle at 78% 76%, rgba(245, 158, 11, 0.08), transparent 25vmax),
    radial-gradient(circle at 16% 88%, rgba(16, 185, 129, 0.08), transparent 26vmax),
    linear-gradient(135deg, #050811, #0b0f19 52%, #050811);
  filter: saturate(1.2);
  animation: meshMove 20s ease-in-out infinite alternate;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: rgba(13, 20, 38, 0.7);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: transform 0.32s ease, opacity 0.32s ease, background 0.32s ease;
}

.site-header.header-hidden {
  opacity: 0;
  transform: translate(-50%, -120%);
}

.brand,
.desktop-nav,
.trust-row,
.site-footer,
.hero-actions,
.price-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
}

.brand img,
.site-footer img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-nav {
  gap: 28px;
  color: var(--slate-300);
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--brand-500);
}

.nav-cta,
.secondary-button,
.glow-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.nav-cta {
  padding: 0 20px;
  background: var(--white);
  color: var(--bg-main);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  background: var(--brand-100);
  color: var(--brand-900);
}

.glow-button {
  padding: 0 26px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700) 58%, var(--blue));
  color: white;
  box-shadow: 0 16px 42px rgba(20, 184, 166, 0.3), 0 0 0 5px rgba(20, 184, 166, 0.12);
}

.glow-button::before {
  position: absolute;
  inset: -2px;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35), transparent 55%);
  transform: translateX(-120%);
  animation: shine 3.2s ease-in-out infinite;
}

.secondary-button {
  padding: 0 21px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: var(--slate-100);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.glow-button:hover,
.secondary-button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: white;
}

.mobile-menu {
  position: fixed;
  top: 96px;
  left: 16px;
  right: 16px;
  z-index: 45;
  display: none;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  background: rgba(13, 20, 38, 0.95);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.mobile-menu.open {
  display: grid;
  gap: 14px;
}

.mobile-menu a {
  padding: 12px 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--slate-100);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:last-of-type {
  border-bottom: 0;
}

.mobile-menu .glow-button {
  margin-top: 10px;
  border-radius: 999px;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
  min-height: 94svh;
  padding-top: 164px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--brand-500);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.1rem, 6.1vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 40%, var(--brand-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 800;
}

p {
  color: var(--slate-500);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.18rem;
  color: var(--slate-300);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 9px 15px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--slate-300);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  perspective: 1200px;
}

.hero-art-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(500px, 100%);
  aspect-ratio: 1280 / 917;
  margin-left: auto;
  overflow: hidden;
  padding: 12px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(20, 184, 166, 0.15), transparent 30%),
    rgba(13, 20, 38, 0.45);
  border: 1px solid var(--border-color);
}

.hero-art-card::before,
.hero-art-card::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero-art-card::before {
  inset: 12%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12), transparent 66%);
  filter: blur(12px);
}

.hero-art-card::after {
  right: 9%;
  bottom: 10%;
  width: 34%;
  aspect-ratio: 1;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(8px);
}

.hero-art-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 24px;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-preview-grid {
  position: relative;
  display: none;
  grid-template-columns: 1.15fr 0.9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin-left: auto;
}

.hero-preview-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 198px;
  padding: 14px;
  overflow: hidden;
  border-radius: 28px;
}

.hero-preview-card span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-preview-card img {
  display: block;
  width: 100%;
  height: 182px;
  border: 8px solid rgba(13, 20, 38, 0.95);
  border-radius: 24px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.hero-preview-main {
  grid-row: span 2;
}

.hero-preview-main img {
  height: 384px;
}

.phone-frame {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(500px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(13, 20, 38, 0.95), rgba(15, 118, 110, 0.75));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
}

.hero-dashboard-frame {
  display: none;
  width: min(520px, 100%);
}

.phone-bar {
  width: 92px;
  height: 8px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 760 / 480;
  object-fit: cover;
  border-radius: 24px;
}

.hero-visual .floating-card {
  display: none;
}

.floating-layer {
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.floating-card {
  position: absolute;
  padding: 18px;
  border-radius: 22px;
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin: 7px 0 4px;
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
}

.card-balance {
  right: 342px;
  bottom: 72px;
  width: 190px;
}

.card-alert {
  right: -12px;
  top: 58px;
  width: 176px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: -56px auto 28px;
  position: relative;
  z-index: 10;
}

.metric {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.25);
}

.metric strong {
  display: block;
  color: var(--brand-500);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--slate-300);
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.bento-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(20, 184, 166, 0.05);
  transform: translateY(-4px);
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 16px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--brand-500);
}

.icon-badge i {
  width: 22px;
  height: 22px;
}

.distribution-bars {
  display: flex;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.distribution-bars span {
  width: var(--w);
  background: var(--c);
  transform-origin: left center;
  animation: growBar 1.4s ease both;
}

.motion-widget {
  position: relative;
  width: 180px;
  height: 160px;
  flex: 0 0 180px;
  display: grid;
  place-items: center;
}

.orbit-ring,
.orbit-ring-2 {
  position: absolute;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  animation: orbitSpin 9s linear infinite;
}

.orbit-ring-2 {
  width: 96px;
  height: 96px;
  border-color: rgba(59, 130, 246, 0.15);
  animation-duration: 6.5s;
  animation-direction: reverse;
}

.coin-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fef3c7, #fbbf24 52%, #f97316);
  color: var(--brand-900);
  font-size: 1.3rem;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.35);
  animation: coinPulse 2.4s ease-in-out infinite;
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 9px rgba(20, 184, 166, 0.08);
}

.dot-a {
  top: 18px;
  right: 34px;
  animation: floatDot 3s ease-in-out infinite;
}

.dot-b {
  left: 28px;
  bottom: 34px;
  background: var(--blue);
  box-shadow: 0 0 0 9px rgba(37, 99, 235, 0.08);
  animation: floatDot 3.6s ease-in-out infinite reverse;
}

.dot-c {
  right: 44px;
  bottom: 24px;
  background: var(--green);
  box-shadow: 0 0 0 9px rgba(16, 185, 129, 0.08);
  animation: floatDot 3.2s ease-in-out infinite;
}

.mockups {
  overflow: hidden;
}

.mockup-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.mockup-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
}

.mockup-card > span {
  color: var(--slate-900);
  font-size: 1rem;
  font-weight: 950;
}

.compact-device {
  position: relative;
  width: min(220px, 100%);
  aspect-ratio: 390 / 844;
  padding: 18px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(15, 118, 110, 0.88));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.compact-device img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top;
}

.mockup-stage {
  position: relative;
  display: none;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mockup-tabs {
  display: grid;
  gap: 12px;
}

.mockup-tab {
  min-height: 48px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--slate-700);
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mockup-tab.active,
.mockup-tab:hover {
  background: var(--slate-900);
  color: white;
  transform: translateX(4px);
}

.mockup-slider {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 38px;
  padding: 40px;
}

.device-shell {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 390 / 844;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(15, 118, 110, 0.88));
  box-shadow: 0 38px 95px rgba(15, 23, 42, 0.24);
}

.device-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 86px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: translateX(-50%);
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #f8fafc;
}

.mockup-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.98) translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mockup-shot.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.chart-card,
.pricing-card {
  border-radius: 38px;
  padding: 34px;
}

.chart-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 280px;
  gap: 34px;
  align-items: center;
}

/* Simulator Styles */
.calc-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  color: var(--slate-300);
  font-weight: 700;
  font-size: 0.95rem;
}

.input-row-wrapper {
  display: flex;
  align-items: center;
}

.input-numeric-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 180px;
}

.currency-prefix {
  position: absolute;
  left: 14px;
  color: var(--brand-500);
  font-weight: 800;
  font-size: 1.1rem;
}

#income-val {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border-radius: 12px;
  background: rgba(13, 20, 38, 0.6);
  border: 1px solid var(--border-color);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#income-val:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
}

#income-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin: 12px 0;
}

#income-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-500);
  border: 3px solid #050811;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

#income-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--brand-100);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.result-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.result-row:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.card-essential:hover { border-color: rgba(245, 158, 11, 0.35); }
.card-free:hover { border-color: rgba(16, 185, 129, 0.35); }
.card-invest:hover { border-color: rgba(59, 130, 246, 0.35); }

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

.legend-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.orange { background: var(--orange); }
.legend-dot.green { background: var(--green); }
.legend-dot.blue { background: var(--blue); }

.result-label strong {
  display: block;
  color: white;
  font-size: 0.88rem;
}

.desc-text {
  display: block;
  font-size: 0.72rem;
  color: var(--slate-500);
  line-height: 1.3;
}

.result-value {
  font-size: 1.18rem;
  font-weight: 900;
  color: white;
  margin-top: 10px;
}

.chart-wrap {
  display: grid;
  justify-items: center;
  gap: 20px;
  min-height: 300px;
  align-content: center;
}

.donut-chart {
  position: relative;
  display: grid;
  place-items: center;
  width: min(240px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #050811 0 51%, transparent 52%),
    conic-gradient(
      var(--orange) 0 var(--contas-pct, 50%),
      var(--green) var(--contas-pct, 50%) var(--livre-pct, 80%),
      var(--blue) var(--livre-pct, 80%) 100%
    );
  box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.03), 0 26px 70px rgba(0, 0, 0, 0.45);
  animation: chartPop 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.donut-center {
  display: grid;
  place-items: center;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 20, 38, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.donut-center strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
}

.donut-center small {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-300);
  font-size: 0.88rem;
  font-weight: 600;
}

.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-orange { background: var(--orange); }
.legend-green { background: var(--green); }
.legend-blue { background: var(--blue); }

.testimonial-stack {
  display: grid;
  gap: 18px;
}

.testimonial {
  padding: 24px;
  border-radius: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.testimonial p {
  color: var(--slate-100);
  font-weight: 600;
  line-height: 1.5;
}

.testimonial strong {
  color: var(--brand-500);
  font-size: 0.9rem;
}

.pricing {
  display: grid;
  place-items: center;
}

.pricing-card {
  width: min(760px, 100%);
  text-align: center;
  transform-style: preserve-3d;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border-radius: 38px;
  padding: 42px 34px;
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.launch-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--brand-500);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.price-row {
  justify-content: center;
  gap: 8px;
  margin: 26px 0;
}

.price-row span,
.price-row small {
  color: var(--slate-500);
  font-weight: 800;
}

.price-row strong {
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 14px;
  max-width: 540px;
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--slate-300);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--brand-500);
  font-weight: 900;
  font-size: 1.1rem;
}

.price-note {
  display: block;
  margin-top: 16px;
  color: var(--slate-500);
  font-size: 0.82rem;
}

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

details {
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: rgba(13, 20, 38, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

details:hover,
details[open] {
  border-color: var(--border-hover);
  background: rgba(13, 20, 38, 0.5);
}

summary {
  padding: 22px 24px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  user-select: none;
}

details p {
  margin: -8px 24px 22px;
  color: var(--slate-300);
  line-height: 1.6;
}

.site-footer {
  justify-content: center;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 0;
  padding: 36px 0 48px;
  color: var(--slate-500);
  font-weight: 600;
  border-top: 1px solid var(--border-color);
}

.site-footer a {
  color: var(--brand-500);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--brand-100);
}

.reveal {
  opacity: 0.95;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes meshMove {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) rotate(8deg) scale(1.04);
  }
}

@keyframes shine {
  0%,
  45% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes growBar {
  from {
    transform: scaleX(0);
  }
}

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

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

@keyframes coinPulse {
  50% {
    transform: translateY(-4px) scale(1.04);
  }
}

@keyframes floatDot {
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes chartPop {
  from {
    opacity: 0;
    transform: scale(0.82) rotate(-18deg);
  }
}

@media (max-width: 1100px) {
  .hero {
    gap: 34px;
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(3rem, 5.4vw, 4.2rem);
  }

  .hero-copy p {
    margin-bottom: 22px;
    font-size: 1.04rem;
  }

  .trust-row {
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-art-card {
    width: min(430px, 100%);
    border-radius: 30px;
  }

  .hero-art-card img {
    border-radius: 22px;
  }

  .hero-preview-grid {
    max-width: 430px;
    gap: 12px;
  }

  .hero-preview-card {
    min-height: 156px;
    padding: 12px;
    border-radius: 24px;
  }

  .hero-preview-card img {
    height: 140px;
    border-width: 7px;
    border-radius: 20px;
  }

  .hero-preview-main img {
    height: 306px;
  }

  .phone-frame {
    width: min(420px, 100%);
  }

  .compact-device {
    width: min(178px, 100%);
  }

  .mockup-card {
    padding: 14px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .proof-section,
  .chart-card {
    grid-template-columns: 1fr;
  }

  .chart-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-art-card {
    margin: 0 auto;
  }

  .hero-preview-grid {
    margin: 0 auto;
  }

  .phone-frame {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .metrics-strip,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: auto;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .mockup-stage {
    grid-template-columns: 1fr;
  }

  .mockup-gallery {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .mockup-card {
    scroll-snap-align: start;
  }

  .mockup-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-tab {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-right: 0;
  }

  .mockup-tab.active,
  .mockup-tab:hover {
    transform: translateY(-2px);
  }

  .mockup-slider {
    min-height: 600px;
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    height: 62px;
    padding-left: 12px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .section-pad {
    width: min(100% - 24px, 1180px);
    padding: 58px 0;
  }

  .hero {
    padding-top: 112px;
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.55rem, 13.8vw, 3.95rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  p,
  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions a,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-art-card {
    width: min(520px, 92vw);
    border-radius: 30px;
  }

  .hero-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-preview-card {
    min-height: 132px;
    padding: 10px;
    border-radius: 22px;
  }

  .hero-preview-card span {
    font-size: 0.8rem;
  }

  .hero-preview-card img {
    height: 116px;
    border-width: 6px;
    border-radius: 18px;
  }

  .hero-preview-main img {
    height: 258px;
  }

  .phone-frame {
    width: min(94%, 420px);
    padding: 12px;
    border-radius: 32px;
  }

  .phone-frame img {
    border-radius: 22px;
  }

  .floating-card {
    padding: 14px;
  }

  .floating-card strong {
    font-size: 1.4rem;
  }

  .card-balance {
    width: 150px;
    bottom: 12px;
  }

  .card-alert {
    width: 144px;
  }

  .metrics-strip {
    width: min(100% - 24px, 1180px);
    margin-top: 0;
  }

  .bento-card,
  .chart-card,
  .pricing-card {
    padding: 22px;
    border-radius: 24px;
  }

  .bento-card {
    min-height: 180px;
  }

  .mockup-tab {
    width: 100%;
    margin: 0;
  }

  .mockup-slider {
    min-height: 580px;
    border-radius: 26px;
    padding: 18px;
  }

  .device-shell {
    width: min(310px, 100%);
    border-radius: 36px;
    padding: 20px 12px;
  }

  .device-screen {
    border-radius: 26px;
  }

  .chart-wrap {
    min-height: 250px;
  }

  .price-row strong {
    font-size: 4.6rem;
  }

  .site-footer {
    flex-wrap: wrap;
    text-align: center;
  }
}

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