:root {
  color-scheme: dark;
  --bg: #07070b;
  --panel: #101116;
  --panel-soft: #15171f;
  --text: #f6f7fb;
  --muted: #a7adba;
  --line: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.05);
  
  /* Brand Colors */
  --violet: #8B5CF6;
  --cyan: #22D3EE;
  --mint: #34D399;
  --gold: #f0c86a;
  --rose: #FB7185;
  --amber: #FBBF24;
  --ink: #07070b;
  
  --grad: linear-gradient(135deg, var(--violet), var(--cyan));
  --font-display: 'Space Grotesk', sans-serif;
  --font-sans: 'Outfit', sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Background Glowing Blobs Animation */
.aura-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.03), transparent 50%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: floatAround 25s infinite alternate ease-in-out;
}

.blob-violet {
  width: 600px;
  height: 600px;
  background: var(--violet);
  top: -200px;
  left: -200px;
  animation-duration: 28s;
}

.blob-cyan {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  bottom: -150px;
  right: -150px;
  animation-duration: 22s;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 50px) scale(1.1);
  }
  100% {
    transform: translate(-40px, -70px) scale(0.95);
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(7, 7, 11, 0.75);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(180%);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 500;
}

.custom-select {
  position: relative;
  display: inline-block;
  user-select: none;
}

.custom-select-trigger {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.custom-select-trigger:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.custom-select-trigger .select-arrow {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.custom-select.open .select-arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 110px;
  background: rgba(16, 17, 22, 0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  margin: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 3px;
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.custom-select.open .custom-options {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.custom-options li {
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
  text-align: center;
}

.custom-options li:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.custom-options li.selected {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.nav-links a, .site-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover, .site-footer a:hover {
  color: var(--text);
}

.header-cta {
  text-decoration: none;
  color: var(--ink);
  background: var(--text);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .9rem;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.section-band, .privacy-strip, .feature-section, .showcase-section, .compliance-section, .final-cta {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(52px, 8vw, 92px) 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1, h2, h3, p { letter-spacing: 0; }

h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 40%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  margin: 20px 0 0;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

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

.store-button {
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 11px 24px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  background: rgba(255, 255, 255, 0.02);
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
}

.store-button.primary {
  background: var(--grad);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.store-button.primary:hover {
  background: linear-gradient(135deg, #996bf8, #3ae4ff);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.store-kicker {
  font-size: .7rem;
  color: currentColor;
  opacity: .75;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-button strong { font-size: 1.05rem; }

.text-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
  padding: 10px 0;
}

.text-link:hover { color: var(--text); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.02);
  font-weight: 500;
}

.hero-visual { position: relative; display: flex; justify-content: center; }

/* Phone Mockup Styling */
.phone-preview {
  width: min(380px, 100%);
  aspect-ratio: 9 / 18.5;
  padding: 22px;
  border-radius: 40px;
  background: linear-gradient(180deg, #111118, #07070a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(139, 92, 246, 0.15), transparent 45%), radial-gradient(circle at 100% 30%, rgba(34, 211, 238, 0.1), transparent 40%);
  pointer-events: none;
}

.phone-speaker {
  width: 70px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.app-topline, .balance-card, .mini-grid, .flow-list, .tab-preview { position: relative; z-index: 1; }

.app-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 20px;
}

.greeting-mock {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.profile-name-mock {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.avatar-mock {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.25);
}

.ic-mock {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  display: inline-block;
  vertical-align: middle;
}

.balance-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-title-mock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
}

.balance-mock {
  display: block;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 6px 0 14px;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #ffffff 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.balance-split-mock {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.68rem;
}

.split-in-mock, .split-out-mock {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}

.dot-in-mock { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); display: block; }
.dot-out-mock { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); display: block; }

.balance-split-mock strong {
  color: var(--text);
  font-weight: 700;
  margin-left: 2px;
}

/* CARDS TRACK: transparent gradients as per DESIGN.md */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.mini-cell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 72px;
}

.cell-head-mock {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: var(--muted);
}

.cell-icon-mock {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cell-icon-mock .ic-mock {
  width: 12px;
  height: 12px;
}

.mini-cell strong {
  display: block;
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 800;
  font-family: var(--font-display);
}

.cell-mint {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.14), rgba(52, 211, 153, 0.03));
  border-color: rgba(52, 211, 153, 0.12);
  color: var(--mint);
}
.cell-mint .cell-icon-mock { color: var(--mint); }
.cell-mint strong { color: var(--text); }

.cell-sun {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(251, 191, 36, 0.03));
  border-color: rgba(251, 191, 36, 0.12);
  color: var(--gold);
}
.cell-sun .cell-icon-mock { color: var(--gold); }
.cell-sun strong { color: var(--text); }

.cell-sky {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(34, 211, 238, 0.03));
  border-color: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
}
.cell-sky .cell-icon-mock { color: var(--cyan); }
.cell-sky strong { color: var(--text); }

.mini-grid span, .flow-list p { color: var(--muted); font-size: .72rem; margin: 0; }

.flow-list { display: grid; gap: 8px; }
.flow-list div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: block; }
.dot.violet { background: var(--violet); }
.dot.mint { background: var(--mint); }
.dot.gold { background: var(--gold); }
.dot.rose { background: var(--rose); }

.flow-list strong { font-size: .78rem; }

/* TAB BAR MOCK */
.tab-preview {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  height: 46px;
  border-radius: 14px;
  background: rgba(20, 20, 26, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 6px;
}

.tab-item-mock {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s;
}

.tab-item-mock.active {
  color: var(--violet);
}

.tab-item-mock .ic-mock {
  width: 18px;
  height: 18px;
}

.tab-fab-mock {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-8px);
  box-shadow: 0 6px 14px rgba(139, 92, 246, 0.35);
}

.tab-fab-mock .ic-mock {
  width: 16px;
  height: 16px;
}

.privacy-strip {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(34, 211, 238, 0.04));
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(24px) saturate(180%);
}

.privacy-strip p:last-child { color: var(--muted); font-size: 1.05rem; margin: 0; line-height: 1.6; }

.feature-section, .showcase-section, .compliance-section, .final-cta { padding: clamp(64px, 8vw, 110px) 0; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.compact { text-align: center; margin-inline: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

/* Elite Glassmorphic Cards */
.feature-card, .compliance-grid > div {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.05);
}

.feature-card p, .compliance-grid p, .showcase-copy p { color: var(--muted); margin: 0; font-size: 0.94rem; line-height: 1.6; }

.feature-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin-bottom: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.feature-icon.mint { color: var(--mint); }
.feature-icon.violet { color: var(--violet); }
.feature-icon.gold { color: var(--gold); }
.feature-icon.rose { color: var(--rose); }

.showcase-section {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.showcase-copy p { margin-top: 18px; font-size: 1.05rem; }

/* WIDE LANDSCAPE SHOWCASE FRAME */
.dashboard-frame {
  width: 100%;
  padding: 24px;
  background: rgba(16, 17, 22, 0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.dash-brand .dot {
  width: 8px;
  height: 8px;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

.dash-date {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.dash-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 16px;
}

.dash-column-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-row-layout {
  display: flex;
  gap: 16px;
}

.flex-card {
  flex: 1;
}

.dash-widget-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 104px;
  backdrop-filter: blur(10px);
}

.compass-widget {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.03));
  border-color: rgba(139, 92, 246, 0.1);
  min-height: 124px;
}

.widget-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget-val {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-top: 6px;
}

.text-mint {
  color: var(--mint);
}

.widget-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

.sub-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
}

.mascot-bubble-box {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
}

.mascot-avatar-circle {
  width: 38px;
  height: 38px;
  background: var(--violet);
  border-radius: 50% 50% 40% 40%;
  position: relative;
  animation: blobWobble 4s infinite alternate ease-in-out;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}

.mascot-eyes {
  position: relative;
  width: 100%;
  height: 100%;
}

.mascot-eyes span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  top: 14px;
}

.mascot-eyes span:first-child { left: 11px; }
.mascot-eyes span:last-child { right: 11px; }

.mascot-msg-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 14px;
  position: relative;
}

.mascot-msg-box p {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  font-style: italic;
}

.mascot-msg-box::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #111217;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.radar-bars-preview {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 24px;
  margin-top: 10px;
}

.radar-bars-preview span {
  flex: 1;
  height: 0;
  background: var(--mint);
  border-radius: 2px 2px 0 0;
  opacity: 0.7;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-frame.animate-in .radar-bars-preview span {
  height: var(--h);
}

.travel-widget {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.02));
  border-color: rgba(251, 191, 36, 0.1);
  min-height: 116px;
}

.travel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.travel-status-badge {
  font-size: 0.68rem;
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 700;
}

.travel-widget .progress-bar-mock {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}

.travel-widget .progress-bar-mock span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-frame.animate-in .travel-widget .progress-bar-mock span {
  width: 44%;
}

@keyframes blobWobble {
  0% { transform: scale(1) translateY(0); border-radius: 50% 50% 40% 40%; }
  50% { transform: scale(1.05) translateY(-2px); border-radius: 45% 55% 42% 48%; }
  100% { transform: scale(0.98) translateY(1px); border-radius: 52% 48% 45% 42%; }
}

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

.final-cta { text-align: center; border-top: 1px solid var(--line); }
.final-cta h2 { max-width: 860px; margin: 0 auto 16px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer span { color: var(--text); font-weight: 800; font-family: var(--font-display); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* Responsive Media Queries */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero, .privacy-strip, .showcase-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .phone-preview { max-width: 320px; }
  .feature-grid, .compliance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dash-grid-layout { grid-template-columns: 1fr; }
  .dash-row-layout { flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { min-height: 64px; }
  .header-cta { display: none; }
  .section-band, .privacy-strip, .feature-section, .showcase-section, .compliance-section, .final-cta { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 28px; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .feature-grid, .compliance-grid, .dash-columns { grid-template-columns: 1fr; }
  .privacy-strip { padding: 24px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  
  /* Mobile padding and sizing optimizations */
  .dashboard-frame { padding: 16px; border-radius: 18px; }
  .dash-widget-box { padding: 12px; min-height: 90px; }
  .compass-widget { min-height: auto; }
  .travel-widget { min-height: auto; }
  .mascot-bubble-box { gap: 10px; }
  .feature-card, .compliance-grid > div { padding: 18px; }
  .custom-options { width: 100px; }
}

/* Informative and Legal Pages Styling */
.content-page {
  padding: 120px 0 80px;
  min-height: calc(100vh - 180px);
}
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 52px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 26px;
  backdrop-filter: blur(24px) saturate(180%);
}
.legal-card h1 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 40%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 34px 0 16px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.legal-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 24px 0 12px;
  color: var(--text);
}
.legal-card p, .legal-card ul {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 16px;
}
.legal-card ul {
  padding-left: 20px;
}
.legal-card li {
  margin-bottom: 8px;
}
.legal-card a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}
.legal-card a:hover {
  text-decoration: underline;
}
.legal-item {
  margin-bottom: 32px;
}
.legal-item:last-child {
  margin-bottom: 0;
}
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.18s ease, background 0.18s ease;
}
.btn-back-home:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}
.ic {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Staggered Load Entry Animations */
.hero-copy > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-visual {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.loaded .hero-copy > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
body.loaded .hero-copy > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
body.loaded .hero-copy > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
body.loaded .hero-copy > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
body.loaded .hero-copy > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
body.loaded .hero-visual { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* Tap Target Sizing Optimizations (Mobile-First) */
.custom-select-trigger {
  min-height: 44px;
}

.custom-options li {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-button {
  min-height: 48px;
}

/* Custom Modal Overlay */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.custom-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.custom-modal {
  width: min(520px, 100%);
  background: rgba(20, 21, 26, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 5vw, 32px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  transform: translateY(15px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-modal-overlay.show .custom-modal {
  transform: translateY(0);
}

.custom-modal h2 {
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-display);
}

.modal-intro {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.modal-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 8px 0;
}

.modal-step {
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  text-align: left;
}

.modal-step strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.modal-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0 0 10px;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.18s, transform 0.15s;
}

.modal-btn.primary {
  background: var(--grad);
  color: #ffffff;
}

.modal-btn.primary:hover {
  background: linear-gradient(135deg, #996bf8, #3ae4ff);
  transform: translateY(-1px);
}

.modal-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.modal-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.modal-close {
  background: var(--text);
  color: var(--ink);
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  align-self: center;
  width: 100px;
  margin-top: 8px;
}

.modal-close:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* Compliance card specific button */
.btn-refund {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 14px;
  align-self: flex-start;
  transition: border-color 0.18s, background 0.18s;
  min-height: 44px; /* optimized tap target */
}

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


