@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
:root {
  --fp-bg:#060B14;
  --fp-surface:#0A1020;
  --fp-card:#0D1525;
  --fp-card-hi:#101A2E;
  --fp-teal:#03C1B0;
  --fp-primary:#03C1B0;
  --fp-primary-hover:#05D7C4;
  --fp-primary-pressed:#029E91;
  --fp-primary-text:#041014;
  --fp-purple:#7C5CFF;
  --fp-teal-dim:rgba(3,193,176,.15);
  --fp-purple-dim:rgba(124,92,255,.15);
  --fp-border:rgba(255,255,255,.07);
  --fp-border-teal:rgba(3,193,176,.25);
  --fp-text:#E8EEFF;
  --fp-muted:#8892A4;
  --fp-glass:rgba(13,21,48,.55);
  --fp-glass-bright:rgba(255,255,255,.04);
  --fp-danger:#FF4D6A;
  --fp-success:#22D3A1;
  --fp-warn:#FFB547;
  --fp-gradient:linear-gradient(135deg,var(--fp-primary) 0%,#7C5CFF 100%);
  --fp-gradient-reverse:linear-gradient(135deg,#7C5CFF 0%,var(--fp-primary) 100%);
  --fp-gradient-soft:linear-gradient(135deg,rgba(3,193,176,.15) 0%,rgba(124,92,255,.15) 100%)}
* {
  box-sizing:border-box}
html {
  font-size:16px;
  scroll-behavior:smooth}
body {
  margin:0;
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#060B14;
  color:#E8EEFF}
h1,h2,h3,h4,h5,h6 {
  font-family:'Exo 2',system-ui,sans-serif}
::-webkit-scrollbar {
  width:4px;
  height:4px}
::-webkit-scrollbar-track {
  background:transparent}
::-webkit-scrollbar-thumb {
  background:rgba(255,255,255,.1);
  border-radius:2px}
@keyframes pulse-glow {
  0%,100% {
  opacity:.6;
  box-shadow:0 0 12px rgba(6,193,176,.4)}
50% {
  opacity:1;
  box-shadow:0 0 28px rgba(6,193,176,.8)}
}
@keyframes float {
  0%,100% {
  transform:translateY(0)}
50% {
  transform:translateY(-8px)}
}
@keyframes slide-in-up {
  from {
  opacity:0;
  transform:translateY(16px)}
to {
  opacity:1;
  transform:translateY(0)}
}
@keyframes shimmer {
  0% {
  background-position:-200% center}
100% {
  background-position:200% center}
}
@keyframes grid-drift {
  0% {
  transform:translateY(0)}
100% {
  transform:translateY(60px)}
}
.fp-animate-in {
  animation:slide-in-up .4s ease both}
.fp-float {
  animation:float 6s ease-in-out infinite}
.fp-pulse-glow {
  animation:pulse-glow 2.5s ease-in-out infinite}
.fp-gradient-text {
  background:var(--fp-gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text}
.fp-shimmer-text {
  background:linear-gradient(90deg,#06C1B0 0%,#E8EEFF 40%,#7C5CFF 60%,#06C1B0 100%);
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:shimmer 4s linear infinite}
.fp-glass {
  background:rgba(13,21,48,.55);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.07)}
.fp-glass-bright {
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.10)}
.fp-card-hover {
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.fp-card-hover:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 40px rgba(6,193,176,.12);
  border-color:rgba(6,193,176,.25)!important}
.fp-btn-primary {
  background:var(--fp-primary);
  color:var(--fp-primary-text);
  border:1px solid var(--fp-primary);
  cursor:pointer;
  transition:opacity .2s,transform .15s,box-shadow .2s}
.fp-btn-primary:hover {
  background:var(--fp-primary-hover);
  border-color:var(--fp-primary-hover);
  opacity:1;
  transform:translateY(-1px);
  box-shadow:0 8px 32px rgba(6,193,176,.35)}
.fp-btn-primary:active {
  background:var(--fp-primary-pressed);
  border-color:var(--fp-primary-pressed);
  transform:translateY(0)}
.fp-btn-secondary {
  background:rgba(255,255,255,.05);
  color:#E8EEFF;
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  transition:background .2s,border-color .2s,transform .15s}
.fp-btn-secondary:hover {
  background:rgba(6,193,176,.1);
  border-color:rgba(6,193,176,.35);
  transform:translateY(-1px)}
.fp-btn-ghost {
  background:transparent;
  color:#8892A4;
  border:none;
  cursor:pointer;
  transition:color .2s,background .2s}
.fp-btn-ghost:hover {
  color:#E8EEFF;
  background:rgba(255,255,255,.05)}
.fp-tag {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:3px 10px;
  border-radius:20px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.5px;
  font-family:'JetBrains Mono',monospace}
.fp-page {
  min-height:100vh;
  background:var(--fp-bg);
  color:var(--fp-text);
  overflow-x:hidden}
.fp-container {
  width:min(1160px,calc(100% - 48px));
  margin:0 auto}
.fp-nav {
  position:sticky!important;
  top:0;
  z-index:100;
  background:rgba(6,11,20,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--fp-border)}
.fp-nav-inner {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px}
.fp-brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--fp-text);
  text-decoration:none;
  font-family:'Exo 2',system-ui,sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.3px}
.fp-brand-mark {
  width:34px;
  height:34px;
  border-radius:9px;
  background:var(--fp-gradient);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  font-weight:900;
  font-size:12px}
.fp-brand-mark img {
  width:100%;
  height:100%;
  object-fit:contain}
.fp-nav-links,.fp-nav-actions {
  display:flex;
  align-items:center;
  gap:4px}
.fp-nav-actions {
  gap:10px}
.fp-nav-link {
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:8px;
  color:var(--fp-muted);
  text-decoration:none;
  font-size:14px;
  font-weight:500}
.fp-nav-link:hover {
  color:var(--fp-text);
  background:rgba(255,255,255,.05)}
.fp-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:40px;
  padding:10px 18px;
  border-radius:12px;
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  font-size:14px;
  font-weight:700;
  text-decoration:none}
.fp-hero {
  position:relative;
  min-height:calc(100vh - 68px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
  padding:96px 24px 72px}
.fp-hero::before {
  content:"";
  position:absolute;
  inset:-60px;
  background-image:linear-gradient(rgba(6,193,176,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(6,193,176,.04) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at center,black 0%,transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse at center,black 0%,transparent 70%);
  pointer-events:none}
.fp-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%,rgba(6,193,176,.12),transparent 35%),radial-gradient(circle at 80% 20%,rgba(124,92,255,.16),transparent 40%);
  pointer-events:none}
.fp-hero-content {
  position:relative;
  z-index:1;
  max-width:980px;
  margin:0 auto}
.fp-hero h1 {
  font-size:clamp(42px,7vw,86px);
  line-height:1.03;
  font-weight:900;
  letter-spacing:-1.6px;
  margin:20px 0 24px}
.fp-hero p {
  max-width:640px;
  margin:0 auto 40px;
  color:var(--fp-muted);
  font-size:18px;
  line-height:1.7}
.fp-hero-actions {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:60px}
.fp-highway-card {
  background:rgba(255,255,255,.02);
  border:1px solid var(--fp-border);
  border-radius:20px;
  padding:32px 24px 42px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  max-width:760px;
  margin:0 auto}
.fp-section {
  padding:96px 24px}
.fp-section-head {
  text-align:center;
  max-width:680px;
  margin:0 auto 64px}
.fp-section-head h2 {
  font-size:clamp(30px,4vw,52px);
  font-weight:800;
  letter-spacing:-.5px;
  margin:16px 0}
.fp-section-head p {
  color:var(--fp-muted);
  font-size:16px;
  line-height:1.65}
.fp-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:16px}
.fp-card {
  border-radius:16px;
  padding:28px}
.fp-feature-icon {
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  background:rgba(6,193,176,.09);
  border:1px solid rgba(6,193,176,.19);
  color:var(--fp-teal)}
.fp-card h3 {
  color:var(--fp-text);
  font-size:17px;
  font-weight:700;
  margin:0 0 10px}
.fp-card p {
  color:var(--fp-muted);
  font-size:14px;
  line-height:1.65;
  margin:0}
.fp-pricing-section {
  background:linear-gradient(180deg,var(--fp-bg) 0%,rgba(13,21,48,.4) 100%);
  padding:80px 24px}
.fp-pricing-grid {
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;
  align-items:start}
.fp-pricing-card {
  position:relative;
  overflow:hidden;
  border-radius:20px;
  padding:28px 24px;
  background:var(--fp-glass);
  border:1px solid var(--fp-border);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px)}
.fp-pricing-card-featured {
  background:transparent;
  border-color:var(--fp-teal);
  box-shadow:0 0 60px rgba(6,193,176,.15);
  transform:scale(1.02)}
.fp-pricing-card-featured::before {
  content:"";
  position:absolute;
  inset:0;
  background:var(--fp-gradient-soft);
  z-index:0}
.fp-pricing-card>* {
  position:relative;
  z-index:1}
.fp-price {
  display:flex;
  align-items:baseline;
  gap:4px;
  margin-bottom:6px}
.fp-price strong {
  font-family:'Exo 2',system-ui,sans-serif;
  font-size:42px;
  font-weight:900;
  color:var(--fp-text)}
.fp-price span {
  color:var(--fp-muted);
  font-size:14px}
.fp-pricing-card ul {
  list-style:none;
  padding:0;
  margin:20px 0 24px;
  display:flex;
  flex-direction:column;
  gap:10px}
.fp-pricing-card li {
  color:var(--fp-text);
  font-size:14px}
.fp-pricing-card li::before {
  content:"✓";
  color:var(--fp-teal);
  margin-right:10px}
.fp-cta-band {
  max-width:800px;
  margin:0 auto;
  text-align:center;
  background:var(--fp-gradient-soft);
  border:1px solid rgba(6,193,176,.2);
  border-radius:24px;
  padding:60px 40px;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px)}
.fp-footer {
  border-top:1px solid var(--fp-border);
  padding:32px 24px;
  text-align:center;
  color:var(--fp-muted);
  font-size:13px}
.fp-footer a {
  color:var(--fp-teal);
  text-decoration:none}
.fp-highway-simple {
  display:grid;
  grid-template-columns:auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items:center;
  gap:10px}
.fp-highway-node {
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(124,92,255,.55);
  background:rgba(124,92,255,.14);
  color:var(--fp-text);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  position:relative}
.fp-highway-node.active {
  border-color:var(--fp-teal);
  background:rgba(6,193,176,.12);
  box-shadow:0 0 18px rgba(6,193,176,.25)}
.fp-highway-node span {
  position:absolute;
  top:56px;
  left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
  color:var(--fp-muted);
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  font-size:11px}
.fp-highway-line {
  height:2px;
  min-width:60px;
  background:var(--fp-gradient);
  opacity:.85}
.fp-footer-brand {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:14px;
  color:var(--fp-text);
  font-family:'Exo 2',system-ui,sans-serif;
  font-weight:800}
.fp-mark-fallback {
  display:none}
.fp-brand-mark img[src=""] {
  display:none}
.fp-brand-mark img[src=""]+.fp-mark-fallback {
  display:inline}
@media(max-width:768px) {
  .fp-nav-inner {
  flex-wrap:wrap;
  min-height:auto;
  padding:16px 20px}
.fp-nav-links {
  order:3;
  width:100%;
  justify-content:center;
  overflow-x:auto}
.fp-hero {
  padding-top:64px}
.fp-hero h1 {
  font-size:clamp(40px,13vw,64px)}
.fp-pricing-card-featured {
  transform:none}
.fp-highway-simple {
  grid-template-columns:1fr;
  gap:28px;
  justify-items:center}
.fp-highway-line {
  width:2px;
  height:28px;
  min-width:2px}
}

/* Public marketing pages should keep the Figma container metrics even when legacy base hotfixes are present. */
.fp-page .fp-container {
  width: min(1160px, calc(100% - 48px)) !important;
  max-width: none !important;
  padding: 0 !important;
}

/* Hard scoped public marketing shell overrides: keep Figma dark UI isolated from legacy styles. */
.fp-marketing {
  min-height: 100vh;
  background: #060B14 !important;
  color: #E8EEFF !important;
}

.fp-marketing,
.fp-marketing main,
.fp-marketing section,
.fp-marketing .fp-section,
.fp-marketing .fp-pricing-section {
  background-color: #060B14 !important;
  color: #E8EEFF !important;
}

.fp-marketing .fp-section {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}

.fp-marketing .fp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,193,176,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,193,176,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.7;
}

.fp-marketing .fp-container,
.fp-nav-inner {
  width: min(1160px, calc(100% - 48px)) !important;
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.fp-marketing .fp-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.fp-marketing .fp-section-head h1,
.fp-marketing .fp-section-head h2,
.fp-marketing .fp-section-head h3 {
  color: #E8EEFF !important;
  opacity: 1 !important;
}

.fp-marketing .fp-section-head p {
  color: #8892A4 !important;
}

.fp-marketing .fp-feature-grid,
.fp-marketing .fp-pricing-grid {
  position: relative;
  z-index: 1;
}

.fp-marketing .fp-card,
.fp-marketing .fp-pricing-card {
  background: rgba(13,21,48,0.72) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  color: #E8EEFF !important;
  box-shadow: none !important;
}

.fp-marketing .fp-card h3,
.fp-marketing .fp-pricing-card h3 {
  color: #E8EEFF !important;
}

.fp-marketing .fp-card p,
.fp-marketing .fp-pricing-card p,
.fp-marketing .fp-pricing-card li {
  color: #8892A4 !important;
}

.fp-marketing .fp-feature-icon {
  font-size: 0 !important;
  position: relative;
}

.fp-marketing .fp-feature-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #06C1B0 0%, #7C5CFF 100%);
  box-shadow: 0 0 22px rgba(6,193,176,0.28);
}

.fp-marketing .fp-feature-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #E8EEFF;
  opacity: 0.9;
}

.fp-marketing .fp-btn-primary {
  background: var(--fp-primary) !important;
  color: var(--fp-primary-text) !important;
  border: 1px solid var(--fp-primary) !important;
  box-shadow: 0 8px 32px rgba(3,193,176,0.24) !important;
}

.fp-marketing .fp-btn-secondary {
  background: rgba(255,255,255,0.05) !important;
  color: #E8EEFF !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.fp-marketing .fp-cta-band {
  background:
    radial-gradient(circle at 20% 20%, rgba(6,193,176,0.22), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(124,92,255,0.24), transparent 40%),
    rgba(13,21,48,0.82) !important;
  border: 1px solid rgba(6,193,176,0.22) !important;
  color: #E8EEFF !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28) !important;
}

.fp-marketing .fp-cta-band h2 {
  color: #E8EEFF !important;
}

.fp-marketing .fp-cta-band p {
  color: #8892A4 !important;
}

/* FitPocket public premium motion + logo repair */
:root{
  --fp-foreground:#E8EEFF;--fp-primary:#03C1B0;--fp-primary-hover:#05D7C4;--fp-primary-pressed:#029E91;--fp-primary-text:#041014;--fp-secondary:#7C5CFF;--fp-muted:#8892A4;--fp-muted-bg:#111C35;--fp-muted-foreground:#8892A4;--fp-warning:#FFB547;--fp-input:rgba(255,255,255,0.05);--fp-radius-sm:4px;--fp-radius-md:8px;--fp-radius-base:10px;--fp-radius-lg:12px;--fp-radius-xl:16px;--fp-radius-2xl:20px;--fp-radius-pill:9999px
}
.fp-nav{background:transparent;border-bottom-color:transparent;transition:background .32s ease,border-color .32s ease,box-shadow .32s ease}.fp-nav.fp-nav--scrolled{background:rgba(6,11,20,.78);border-bottom-color:var(--fp-border);box-shadow:0 12px 32px rgba(0,0,0,.18)}
.fp-logo-link,.fp-logo-link:hover,.fp-logo-link:focus{background:transparent!important;border:0!important;box-shadow:none!important;text-decoration:none!important;padding:0!important;border-radius:0!important;color:inherit!important}.fp-wordmark{display:block;height:auto!important;object-fit:contain!important;background:transparent!important;border:0!important;box-shadow:none!important;border-radius:0!important}.fp-wordmark--header{width:156px!important}.fp-wordmark--footer{width:138px!important;margin:0 auto 14px}.fp-brand{gap:0!important}.fp-footer-brand{display:inline-block;margin-bottom:0}.fp-brand-mark,.fp-mark-fallback{display:none!important}
.fp-nav-link[aria-current="page"]{color:var(--fp-text);background:rgba(255,255,255,.055)}
.fp-route-hero{isolation:isolate;background:radial-gradient(circle at 50% 8%,rgba(124,92,255,.12),transparent 32%),var(--fp-bg)}.fp-route-canvas{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;background:transparent!important;border-radius:0!important}.fp-route-hero .fp-hero-content{z-index:2}.fp-route-hero::before{z-index:0}.fp-route-hero::after{z-index:1;background:linear-gradient(180deg,rgba(6,11,20,.18),rgba(6,11,20,.86)),radial-gradient(circle at 50% 44%,rgba(6,11,20,.2),rgba(6,11,20,.82) 72%)}.fp-route-hero--quiet .fp-route-canvas{opacity:.55}
.fp-enter{opacity:0;transform:translateY(18px);animation:fp-premium-enter .72s cubic-bezier(.2,.65,.3,.9) forwards}.fp-enter:nth-child(1){animation-delay:.06s}.fp-enter:nth-child(2){animation-delay:.13s}.fp-enter:nth-child(3){animation-delay:.20s}.fp-enter:nth-child(4){animation-delay:.27s}.fp-enter:nth-child(5){animation-delay:.34s}@keyframes fp-premium-enter{to{opacity:1;transform:translateY(0)}}.fp-gradient-text{background-size:180% 180%;animation:fp-gradient-drift 12s ease-in-out infinite}@keyframes fp-gradient-drift{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
.fp-route-divider{height:70px;margin:-34px 0;position:relative;z-index:2;pointer-events:auto}.fp-route-divider svg{width:100%;height:100%;display:block;overflow:visible}.fp-route-divider path{fill:none;stroke:url(#fpRouteDividerGradient);stroke-width:2.5;stroke-linecap:round;filter:drop-shadow(0 0 14px rgba(6,193,176,.24))}
.fp-journey-panel{position:relative;overflow:hidden}.fp-journey-panel::after{content:"";position:absolute;left:24px;right:24px;top:50%;height:2px;background:linear-gradient(90deg,transparent,#06C1B0,#7C5CFF,transparent);transform:translateY(-50%) scaleX(.16);transform-origin:left;filter:drop-shadow(0 0 10px rgba(6,193,176,.8));animation:fp-route-pulse 8s cubic-bezier(.2,.65,.3,.9) infinite;pointer-events:none}.fp-highway-node{transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;background:rgba(16,26,46,.9)}.fp-highway-node.is-current,.fp-highway-node:hover,.fp-highway-node:focus-visible{transform:translateY(-2px) scale(1.04);border-color:var(--fp-primary);box-shadow:0 0 24px rgba(6,193,176,.34)}.fp-highway-simple:focus-visible{outline:2px solid var(--fp-primary);outline-offset:12px;border-radius:16px}@keyframes fp-route-pulse{0%{transform:translateY(-50%) scaleX(.08);opacity:0}12%,70%{opacity:.95}100%{transform:translateY(-50%) scaleX(.92);opacity:0}}
.fp-reveal-card{opacity:0;transform:translateY(18px) scale(.985);transition:opacity .7s cubic-bezier(.2,.65,.3,.9),transform .7s cubic-bezier(.2,.65,.3,.9),border-color .2s ease,box-shadow .2s ease;--mx:50%;--my:50%;background:radial-gradient(circle at var(--mx) var(--my),rgba(6,193,176,.13),transparent 42%),rgba(13,21,48,.72)!important}.fp-reveal-card.is-visible{opacity:1;transform:translateY(0) scale(1)}.fp-reveal-card:hover,.fp-reveal-card:focus-within{transform:translateY(-3px) rotateX(1deg) rotateY(-1deg);border-color:rgba(6,193,176,.22)!important;box-shadow:0 18px 46px rgba(0,0,0,.22),0 0 30px rgba(6,193,176,.08)!important}.fp-feature-icon::before{clip-path:polygon(50% 0,100% 32%,82% 100%,18% 100%,0 32%)}.fp-icon-progress::before,.fp-icon-adapt::before{border-radius:50%;background:conic-gradient(#06C1B0 0 68%,rgba(124,92,255,.32) 68%)}.fp-icon-nutrition::before{border-radius:4px;clip-path:none}.fp-icon-voice::before{clip-path:polygon(0 50%,15% 20%,30% 80%,45% 15%,60% 85%,75% 25%,100% 50%)}.fp-icon-privacy::before{clip-path:polygon(50% 0,88% 14%,78% 78%,50% 100%,22% 78%,12% 14%)}
.fp-pricing-card{transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}.fp-pricing-card:hover,.fp-pricing-card:focus-within{transform:translateY(-4px)}.fp-pricing-card-featured{border-color:transparent!important;background:linear-gradient(var(--fp-card),var(--fp-card)) padding-box,conic-gradient(from var(--fp-sweep,0deg),#06C1B0,#7C5CFF,#06C1B0) border-box!important;border:1px solid transparent!important;animation:fp-pricing-sweep 14s linear infinite}.fp-pricing-card-featured .fp-tag{box-shadow:0 0 24px rgba(6,193,176,.2)}.fp-pricing-card li{opacity:.15;transform:translateX(-8px);transition:opacity .45s ease,transform .45s ease}.fp-pricing-section.is-visible li{opacity:1;transform:translateX(0)}@property --fp-sweep{syntax:'<angle>';initial-value:0deg;inherits:false}@keyframes fp-pricing-sweep{to{--fp-sweep:360deg}}
.fp-connected-cards{position:relative}.fp-connected-cards::before{content:"";position:absolute;left:12%;right:12%;top:54px;height:1px;background:var(--fp-gradient);opacity:.32;z-index:0}.fp-connected-cards>.fp-card{position:relative;z-index:1}
@media(max-width:768px){.fp-wordmark--header{width:134px!important}.fp-wordmark--footer{width:132px!important}.fp-route-divider{height:48px}.fp-journey-panel::after{display:none}.fp-connected-cards::before{display:none}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.001ms!important}.fp-route-canvas{display:none}.fp-enter,.fp-reveal-card{opacity:1!important;transform:none!important}.fp-route-divider path{d:path('M0 60 Q600 60 1200 60')}}

/* Public content/auth pages: Figma-inspired dark shells without touching app interiors. */
.fp-content-page,
.fp-auth-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(6,193,176,.12), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(124,92,255,.16), transparent 34%),
    var(--fp-bg) !important;
}
.fp-content-hero {
  position: relative;
  padding: 84px 24px 28px;
  text-align: center;
  overflow: hidden;
}
.fp-content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,193,176,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,193,176,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  pointer-events: none;
}
.fp-content-title,
.fp-page-title {
  position: relative;
  color: var(--fp-text) !important;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.8px;
  margin: 0 0 12px;
}
.fp-content-sub,
.fp-page-sub,
.fp-help,
.fp-disclaimer,
.faq-a {
  color: var(--fp-muted) !important;
}
.fp-content-shell,
.fp-auth-shell {
  padding: 28px 0 56px !important;
}
.fp-content-card,
.fp-content-page .fp-card,
.fp-auth-page .fp-card {
  background: linear-gradient(180deg, rgba(16,26,46,.88), rgba(13,21,37,.94)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.30) !important;
  color: var(--fp-text) !important;
}
.fp-content-card {
  padding: 28px !important;
  max-width: 980px;
  margin: 0 auto;
}
.fp-content-page h2,
.fp-content-page h3,
.fp-auth-page h1,
.fp-auth-page h2,
.fp-auth-page h3,
.faq-q {
  color: var(--fp-text) !important;
}
.fp-content-page a:not(.fp-btn),
.fp-auth-page a:not(.fp-btn) {
  color: #BFFCF6 !important;
}
.fp-content-page .fp-list li {
  color: var(--fp-muted) !important;
  margin: 8px 0;
}
.fp-content-card .fp-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fp-content-card .fp-list li {
  position: relative;
  display: block;
  margin: 0;
  padding-left: 18px;
  color: var(--fp-muted, #8892A4) !important;
  line-height: 1.65;
}
.fp-content-card .fp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fp-teal, #03C1B0), var(--fp-purple, #7C5CFF));
  transform: translateY(-50%);
  margin: 0;
  flex: none;
}
.fp-content-card .fp-list li strong {
  color: var(--fp-text, #E8EEFF);
  font-weight: 800;
}
.fp-content-card .fp-list li strong::after {
  content: " ";
}
.fp-auth-shell .fp-card {
  border-radius: 22px !important;
  padding: 22px !important;
}
.fp-auth-page .fp-input,
.fp-content-page .fp-input {
  background: rgba(6,11,20,.62) !important;
  color: var(--fp-text) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.fp-auth-page .fp-label,
.fp-content-page .fp-label {
  color: #BFC8DA !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fp-error-card {
  max-width: 720px;
  margin: 64px auto;
  padding: 56px 28px !important;
  text-align: center;
  background: linear-gradient(180deg, rgba(16,26,46,.88), rgba(13,21,37,.94));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
}
.fp-error-card .muted { color: var(--fp-muted) !important; }
@media (max-width: 640px) {
  .fp-content-hero { padding-top: 56px; }
  .fp-content-card { padding: 20px !important; }
}
.fp-highway-card { position: relative; }
.fp-highway-curve {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 70px;
  width: calc(100% - 68px);
  height: 120px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.fp-highway-curve path {
  fill: none;
  stroke: url(#fpHighwayGradient);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(6,193,176,.34));
  opacity: .9;
}
.fp-highway-simple { position: relative; z-index: 1; }
.fp-highway-card .fp-highway-line { opacity: .22; }
@media(max-width:768px){ .fp-highway-curve{display:none} .fp-highway-card .fp-highway-line{opacity:.85} }

/* App.tsx-first public marketing recreation. */
.fp-figma-app {
  min-height: 100vh;
  background: #060B14 !important;
  color: #E8EEFF !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  overflow: hidden;
}
.fp-figma-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  padding: 96px 24px 84px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.fp-figma-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6,193,176,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(6,193,176,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  z-index: -3;
}
.fp-figma-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .32;
  z-index: -2;
}
.fp-figma-orb--teal { left: -120px; top: 18%; background: #06C1B0; }
.fp-figma-orb--purple { right: -120px; top: 6%; background: #7C5CFF; }
.fp-figma-hero__inner {
  width: min(1160px, calc(100% - 16px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
}
.fp-figma-hero__copy { max-width: 620px; }
.fp-figma-badge,
.fp-figma-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 5px 12px;
  color: #BFFCF6;
  background: rgba(6,193,176,.10);
  border: 1px solid rgba(6,193,176,.28);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fp-figma-badge--purple { color: #D7CEFF; background: rgba(124,92,255,.12); border-color: rgba(124,92,255,.30); }
.fp-figma-hero h1,
.fp-figma-section h2,
.fp-figma-cta h2 {
  font-family: 'Exo 2', system-ui, sans-serif;
  color: #E8EEFF;
  letter-spacing: -.045em;
}
.fp-figma-hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: .96;
  font-weight: 900;
}
.fp-figma-hero h1 span,
.fp-figma-cta h2 span {
  background: linear-gradient(135deg, #06C1B0 0%, #7C5CFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fp-figma-hero__copy p,
.fp-figma-section__head p,
.fp-figma-cta p {
  color: #8892A4;
  font-size: 17px;
  line-height: 1.7;
}
.fp-figma-hero__copy p { max-width: 580px; margin: 0 0 34px; }
.fp-figma-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fp-figma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fp-figma-btn:hover { transform: translateY(-1px); }
.fp-figma-btn--primary { background: var(--fp-primary); border-color: var(--fp-primary); color: var(--fp-primary-text) !important; box-shadow: 0 16px 44px rgba(3,193,176,.24); }
.fp-figma-btn--secondary { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); color: #E8EEFF !important; }
.fp-figma-route-card {
  position: relative;
  min-height: 430px;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(16,26,46,.82), rgba(10,16,32,.92));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 36px 110px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.fp-figma-route-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: radial-gradient(circle at 20% 18%, rgba(6,193,176,.16), transparent 32%), radial-gradient(circle at 76% 28%, rgba(124,92,255,.18), transparent 36%);
  pointer-events: none;
}
.fp-figma-route-card__chrome { position: relative; z-index: 1; display: flex; gap: 7px; margin-bottom: 22px; }
.fp-figma-route-card__chrome span { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.22); }
.fp-figma-route-card__chrome span:first-child { background: #06C1B0; }
.fp-figma-route-card__chrome span:last-child { background: #7C5CFF; }
.fp-figma-kicker { position: relative; z-index: 1; margin: 0; background: transparent; border: 0; color: #8892A4; padding: 0; }
.fp-figma-route-map { position: relative; z-index: 1; min-height: 330px; margin-top: 18px; }
.fp-figma-route-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fp-figma-route-svg__shadow,
.fp-figma-route-svg__line { fill: none; stroke-linecap: round; }
.fp-figma-route-svg__shadow { stroke: rgba(6,193,176,.16); stroke-width: 18; filter: url(#fpFigmaGlow); }
.fp-figma-route-svg__line { stroke: url(#fpFigmaRoute); stroke-width: 4; filter: url(#fpFigmaGlow); }
.fp-figma-stop {
  position: absolute;
  width: 92px;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #8892A4;
  text-align: center;
}
.fp-figma-stop b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13,21,37,.96);
  border: 1px solid rgba(124,92,255,.55);
  color: #E8EEFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  box-shadow: 0 0 0 7px rgba(124,92,255,.08);
}
.fp-figma-stop span { font-size: 12px; font-weight: 700; }
.fp-figma-stop.is-active b { border-color: #06C1B0; box-shadow: 0 0 0 7px rgba(6,193,176,.10), 0 0 28px rgba(6,193,176,.34); }
.fp-figma-stop--1 { left: 6%; top: 70%; }
.fp-figma-stop--2 { left: 28%; top: 26%; }
.fp-figma-stop--3 { left: 50%; top: 48%; }
.fp-figma-stop--4 { left: 70%; top: 73%; }
.fp-figma-stop--5 { left: 92%; top: 25%; }
.fp-figma-section {
  position: relative;
  padding: 104px 24px;
  background: #060B14;
}
.fp-figma-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124,92,255,.10), transparent 34%);
  pointer-events: none;
}
.fp-figma-section__head {
  position: relative;
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}
.fp-figma-section h2,
.fp-figma-cta h2 { margin: 18px 0 14px; font-size: clamp(34px, 4.8vw, 64px); line-height: 1; font-weight: 900; }
.fp-figma-section__head p { margin: 0 auto; max-width: 650px; }
.fp-figma-card-grid {
  position: relative;
  width: min(1160px, calc(100% - 16px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.fp-figma-card-grid--features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fp-figma-feature-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16,26,46,.78), rgba(13,21,37,.92));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.fp-figma-feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(6,193,176,.22), rgba(124,92,255,.20));
  border: 1px solid rgba(6,193,176,.22);
  position: relative;
}
.fp-figma-feature-card__icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 7px;
  background: linear-gradient(135deg, #06C1B0, #7C5CFF);
  box-shadow: 0 0 20px rgba(6,193,176,.34);
}
.fp-figma-feature-card h3 { margin: 0 0 10px; color: #E8EEFF; font-family: 'Exo 2', system-ui, sans-serif; font-size: 21px; }
.fp-figma-feature-card p { margin: 0; color: #8892A4; line-height: 1.65; font-size: 14px; }
.fp-figma-cta-section { padding-top: 80px; }
.fp-figma-cta {
  position: relative;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 36px;
  text-align: center;
  border-radius: 30px;
  background: radial-gradient(circle at 18% 10%, rgba(6,193,176,.22), transparent 36%), radial-gradient(circle at 84% 0%, rgba(124,92,255,.28), transparent 42%), rgba(16,26,46,.78);
  border: 1px solid rgba(6,193,176,.22);
  box-shadow: 0 32px 100px rgba(0,0,0,.34);
}
.fp-figma-cta .fp-figma-badge { margin: 0 auto; }
.fp-figma-cta p { max-width: 620px; margin: 0 auto 30px; }
.fp-figma-app .fp-pricing-section {
  padding: 104px 24px !important;
  background: linear-gradient(180deg, #060B14 0%, rgba(13,21,48,.52) 100%) !important;
}
.fp-figma-app .fp-pricing-section .fp-section-head h2 { font-size: clamp(34px, 4.8vw, 64px); line-height: 1; }
.fp-figma-app .fp-pricing-grid { gap: 18px; }
.fp-figma-app .fp-pricing-card { border-radius: 24px !important; padding: 30px !important; }
@media (max-width: 980px) {
  .fp-figma-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .fp-figma-hero__copy { max-width: 760px; text-align: center; margin: 0 auto; }
  .fp-figma-hero__copy .fp-figma-badge, .fp-figma-actions { margin-left: auto; margin-right: auto; justify-content: center; }
  .fp-figma-card-grid--features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .fp-figma-hero { padding: 58px 18px 62px; }
  .fp-figma-hero h1 { font-size: clamp(44px, 15vw, 68px); }
  .fp-figma-hero__inner, .fp-figma-card-grid { width: 100%; }
  .fp-figma-route-card { min-height: 560px; border-radius: 24px; }
  .fp-figma-route-map { min-height: 460px; }
  .fp-figma-route-svg { display: none; }
  .fp-figma-stop { left: 50% !important; width: 140px; }
  .fp-figma-stop--1 { top: 10%; } .fp-figma-stop--2 { top: 30%; } .fp-figma-stop--3 { top: 50%; } .fp-figma-stop--4 { top: 70%; } .fp-figma-stop--5 { top: 90%; }
  .fp-figma-route-map::before { content: ""; position: absolute; top: 36px; bottom: 36px; left: 50%; width: 3px; transform: translateX(-50%); background: linear-gradient(#06C1B0, #7C5CFF); border-radius: 999px; box-shadow: 0 0 18px rgba(6,193,176,.32); }
  .fp-figma-card-grid--features { grid-template-columns: 1fr; }
  .fp-figma-section { padding: 72px 18px; }
}

/* Launch brand system applied broadly to authenticated and utility web templates. */
.fp-main {
  min-height: 70vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(6,193,176,.10), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(124,92,255,.13), transparent 34%),
    var(--fp-bg) !important;
  color: var(--fp-text) !important;
}
.fp-main > :not(.fp-figma-app):not(.fp-marketing):not(.fp-page):not(.fp-content-page):not(.fp-auth-page) {
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.fp-main h1,.fp-main h2,.fp-main h3,.fp-main h4,.fp-main h5,.fp-main h6 {
  color: var(--fp-text) !important;
  font-family: 'Exo 2', system-ui, sans-serif;
  letter-spacing: -.02em;
}
.fp-main p,.fp-main li,.fp-main td,.fp-main th,.fp-main label,.fp-main small {
  color: inherit;
}
.fp-main .muted,.fp-main .text-muted,.fp-main .fp-muted,.fp-main .hint,.fp-main .help-text {
  color: var(--fp-muted) !important;
}
.fp-main .fp-card,.fp-main .card,.fp-main .panel,.fp-main .box,.fp-main .tile,.fp-main .stat-card,
.fp-main .progress-card,.fp-main .tracking-card,.fp-main .group-card,.fp-main .referral-card,
.fp-main form:not([style*="display:inline"]),.fp-main table,.fp-main .fp-table-wrap {
  background: linear-gradient(180deg, rgba(16,26,46,.88), rgba(13,21,37,.94)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.30) !important;
  color: var(--fp-text) !important;
}
.fp-main .fp-card,.fp-main .card,.fp-main .panel,.fp-main .box,.fp-main .tile,
.fp-main .stat-card,.fp-main .progress-card,.fp-main .tracking-card,.fp-main .group-card,
.fp-main .referral-card,.fp-main form:not([style*="display:inline"]) {
  padding: 22px;
}
.fp-main a:not(.fp-btn):not(.btn) { color: #BFFCF6 !important; }
.fp-main a:not(.fp-btn):not(.btn):hover { color: #FFFFFF !important; }
.fp-main .fp-btn,.fp-main .btn,.fp-main button[type="submit"],.fp-main input[type="submit"] {
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  min-height: 42px;
  font-weight: 800;
}
.fp-main .fp-btn--primary,.fp-main .fp-btn-primary,.fp-main .btn-primary,
.fp-main button[type="submit"]:not(.fp-btn--ghost):not(.fp-btn--secondary):not(.fp-btn-secondary),.fp-main input[type="submit"] {
  background: var(--fp-primary) !important;
  color: var(--fp-primary-text) !important;
  border-color: var(--fp-primary) !important;
  box-shadow: 0 14px 34px rgba(3,193,176,.20) !important;
}
.fp-main .fp-btn--secondary,.fp-main .fp-btn-secondary,.fp-main .btn-secondary,
.fp-main .fp-btn--ghost,.fp-main .fp-btn-ghost {
  background: rgba(255,255,255,.055) !important;
  color: var(--fp-text) !important;
  border-color: rgba(255,255,255,.12) !important;
}
.fp-main input,.fp-main textarea,.fp-main select,.fp-main .fp-input {
  background: rgba(6,11,20,.62) !important;
  color: var(--fp-text) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 14px !important;
}
.fp-main input::placeholder,.fp-main textarea::placeholder { color: rgba(136,146,164,.78) !important; }
.fp-main table { border-collapse: separate; border-spacing: 0; overflow: hidden; }
.fp-main th { color: #BFFCF6 !important; }
.fp-main tr + tr td,.fp-main tr + tr th { border-top: 1px solid rgba(255,255,255,.07) !important; }
.fp-main hr { border: 0; border-top: 1px solid rgba(255,255,255,.08); }
@media (max-width:640px) {
  .fp-main > :not(.fp-figma-app):not(.fp-marketing):not(.fp-page):not(.fp-content-page):not(.fp-auth-page) {
    width: min(100% - 32px, 1160px);
  }
}

/* App Store/TestFlight CTA — local inline icon, dark premium web surfaces. */
.fp-app-store-row{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:18px}.fp-app-store-row--center{justify-content:center}.fp-app-store-row--auth{margin:0 auto 18px}.fp-app-store-button{display:inline-flex;align-items:center;gap:12px;min-height:56px;min-width:188px;padding:9px 16px;border-radius:16px;border:1px solid rgba(6,193,176,.42);background:linear-gradient(135deg,rgba(3,193,176,.96),rgba(2,158,145,.92));color:#041014!important;text-decoration:none!important;box-shadow:0 18px 44px rgba(3,193,176,.18),inset 0 1px 0 rgba(255,255,255,.22);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,opacity .18s ease;line-height:1}.fp-app-store-button:hover,.fp-app-store-button:focus-visible{transform:translateY(-1px);border-color:rgba(63,226,213,.72);box-shadow:0 22px 58px rgba(3,193,176,.25),inset 0 1px 0 rgba(255,255,255,.25)}.fp-app-store-button__icon{width:26px;height:26px;flex:0 0 26px}.fp-app-store-button__copy{display:flex;flex-direction:column;align-items:flex-start;gap:2px;white-space:nowrap}.fp-app-store-button__small{font-size:11px;font-weight:700;letter-spacing:.02em;opacity:.78}.fp-app-store-button__strong{font-size:19px;font-weight:900;letter-spacing:-.03em}.fp-app-store-button--testflight{background:linear-gradient(135deg,rgba(6,193,176,.94),rgba(92,103,149,.92));color:#fff!important}.fp-app-store-button--coming_soon,.fp-app-store-button--disabled{cursor:not-allowed;background:rgba(230,236,245,.08);border-color:rgba(230,236,245,.18);color:rgba(230,236,245,.72)!important;box-shadow:none}.fp-app-store-button--disabled:hover,.fp-app-store-button--disabled:focus-visible{transform:none;box-shadow:none}.fp-app-store-button--small{min-height:46px;min-width:154px;padding:7px 12px;border-radius:14px;margin:0 auto 14px}.fp-app-store-button--small .fp-app-store-button__icon{width:21px;height:21px;flex-basis:21px}.fp-app-store-button--small .fp-app-store-button__small{font-size:9px}.fp-app-store-button--small .fp-app-store-button__strong{font-size:15px}@media(max-width:640px){.fp-app-store-row{width:100%;gap:10px}.fp-app-store-button{width:100%;justify-content:center;max-width:320px}.fp-app-store-button--small{width:auto;max-width:260px}.fp-app-store-button__copy{align-items:flex-start}}

/* Liquid-metal secondary CTA treatment for Jinja/web secondary buttons. */
.fp-btn-secondary,.fp-btn--secondary{position:relative;overflow:hidden;isolation:isolate;background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.025));border-color:rgba(255,255,255,.14)}
.fp-btn-secondary::before,.fp-btn--secondary::before{content:"";position:absolute;inset:-45%;z-index:-1;background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.08) 28%,rgba(3,193,176,.22) 42%,rgba(255,255,255,.10) 52%,rgba(124,92,255,.12) 66%,transparent 82%);transform:translateX(-34%) rotate(8deg);opacity:.42;animation:fp-liquid-secondary-shimmer 7s ease-in-out infinite;pointer-events:none}
.fp-btn-secondary::after,.fp-btn--secondary::after{content:"";position:absolute;inset:1px;border-radius:inherit;z-index:-1;background:radial-gradient(circle at 18% 8%,rgba(255,255,255,.16),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.045),transparent);opacity:.55;pointer-events:none}
.fp-btn-secondary:hover,.fp-btn--secondary:hover{background:rgba(6,193,176,.075);border-color:rgba(3,193,176,.68);box-shadow:0 0 0 1px rgba(3,193,176,.16),0 14px 42px rgba(3,193,176,.18)}
.fp-btn-secondary:hover::before,.fp-btn--secondary:hover::before{opacity:.72;animation-duration:3.4s}.fp-btn-secondary:active::after,.fp-btn--secondary:active::after{background:radial-gradient(circle at 50% 50%,rgba(3,193,176,.20),transparent 44%),linear-gradient(180deg,rgba(255,255,255,.06),transparent)}
@keyframes fp-liquid-secondary-shimmer{0%{transform:translateX(-38%) rotate(8deg)}50%{transform:translateX(18%) rotate(8deg)}100%{transform:translateX(44%) rotate(8deg)}}
@media (prefers-reduced-motion: reduce){.fp-btn-secondary::before,.fp-btn--secondary::before{animation:none;transform:none;opacity:.28}.fp-btn-secondary,.fp-btn--secondary{transition:none}}

.fp-integrations-trust-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 8px 12px;
  color: var(--fp-muted, #AEB9CC);
  font-size: 13px;
  line-height: 1.4;
}

.fp-integrations-trust-row__badge {
  display: block;
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.fp-integrations-trust-row__copy {
  margin: 0;
}

@media (max-width: 640px) {
  .fp-integrations-trust-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
  }

  .fp-integrations-trust-row__badge {
    max-height: 32px;
    max-width: 160px;
  }
}
