@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
/* cache-bust: store-badge layout 2026-08-11 */

:root {
  --brand-blue: #0040c0;
  --brand-cyan: #00e5ff;
  --brand-green: #39ff14;
  --brand-navy: #003366;
  --brand-navy-dark: #001a4d;
  --brand-offwhite: #f5f7fa;
  --brand-steel: #a0aab5;
  --border-subtle: #e0e6f0;
  --white: #ffffff;
  --shadow: rgba(0, 64, 192, 0.08);
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --gradient-header: linear-gradient(135deg, #001a4d 0%, #0040c0 100%);
  --gradient-launch: linear-gradient(160deg, #001a4d 0%, #0040c0 50%, #003366 100%);
  --gradient-primary: linear-gradient(135deg, #0040c0 0%, #39ff14 100%);
  --gradient-tab: linear-gradient(90deg, #0040c0 0%, #39ff14 100%);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--brand-navy);
  background-color: var(--brand-offwhite);
  background-image:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(0, 229, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(57, 255, 20, 0.1), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 64, 192, 0.06), transparent 45%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Header —— */
.site-header {
  background: var(--gradient-header);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(0, 26, 77, 0.35);
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-tab) 1;
}

.site-header .inner,
.wrap,
.site-footer .inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none !important;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 16px rgba(0, 229, 255, 0.2);
}

.brand-wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-wordmark .your {
  color: #ffffff;
}

.brand-wordmark .ai {
  color: var(--brand-green);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-cyan);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--brand-green);
}

/* —— Main —— */
.wrap {
  padding: 2rem 1.5rem 3rem;
  flex: 1;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px var(--shadow);
}

h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}

.meta {
  color: var(--brand-steel);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

h2 {
  margin: 1.75rem 0 0.6rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
}

h3 {
  font-weight: 600;
  color: var(--brand-navy);
}

p,
li {
  color: #243447;
  font-weight: 400;
}

ul {
  padding-left: 1.25rem;
}

.cta {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.75rem 1.35rem;
  background: var(--gradient-primary);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 64, 192, 0.3);
}

.cta:hover {
  opacity: 0.94;
}

.cta-secondary {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(0, 229, 255, 0.65);
  box-shadow: none;
  margin-left: 0;
}

.hero {
  background: var(--gradient-launch);
  color: var(--white);
  border-radius: 20px;
  padding: 2.35rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 26, 77, 0.28);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(57, 255, 20, 0.14), transparent 42%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  max-width: 16ch;
}

.hero-kicker {
  margin: 0 0 0.55rem !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-cyan) !important;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 46ch;
  margin: 0.75rem 0 1.35rem;
  font-weight: 400;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

a.store-badge {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.7rem;
  width: fit-content;
  max-width: 240px;
  min-height: 56px;
  height: auto;
  box-sizing: border-box;
  padding: 8px 16px 8px 12px;
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

a.store-badge svg.store-badge-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  flex: 0 0 28px !important;
  display: block !important;
  overflow: hidden;
}

a.store-badge .store-badge-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-width: 0;
  line-height: 1.15;
}

a.store-badge:hover {
  opacity: 0.92;
  text-decoration: none !important;
}

a.store-badge .store-badge-label,
a.store-badge .store-badge-name {
  display: block !important;
  white-space: nowrap;
}

a.store-badge .store-badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

a.store-badge .store-badge-name {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

a.store-badge.store-badge-on-light {
  background: #001a4d !important;
}

.landing-section {
  margin: 2rem 0 0.5rem;
}

.landing-section h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.section-lead {
  margin: 0 0 1.1rem;
  max-width: 58ch;
  color: #243447;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.95rem 1.05rem 0.95rem 3.4rem;
  position: relative;
  box-shadow: 0 2px 12px var(--shadow);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  color: var(--brand-navy);
  margin-bottom: 0.15rem;
}

.download-banner {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 12px var(--shadow);
}

.download-banner h2 {
  margin: 0 0 0.4rem;
}

.download-banner p {
  margin: 0 0 1rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 2px 12px var(--shadow);
  border-top: 3px solid transparent;
  border-image: var(--gradient-tab) 1;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--brand-steel);
}

/* —— Footer —— */
.site-footer {
  background: var(--brand-navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.25rem 1.5rem 1.5rem;
  margin-top: auto;
  border-top: 2px solid transparent;
  border-image: var(--gradient-tab) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

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

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand .your {
  color: #fff;
}

.footer-brand .ai {
  color: var(--brand-green);
}

.footer-blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  max-width: 34ch;
  font-weight: 400;
}

.footer-col h4 {
  margin: 0 0 0.65rem;
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: var(--brand-green);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--brand-cyan);
}
