/* ------ CSS Variables (palette from your starting CSS) ------ */
:root {
  --bg-primary: #C0EE36;
  --bg-primary-shadow: #9ABE2B;
  --bg-secondary: #318E52;
  --bg-black: #030E18;
  --bg-white: #FDFFF7;
  --text: #E9F2FA;
  --muted: #A9B7C6;
  --card: #0B1C29;
  --card-soft: #102838;
  --radius: 10px;
  --shadow-1: 0 10px 24px rgba(0,0,0,.25);
  --shadow-2: 0 20px 60px rgba(0,0,0,.45);
}

/* ------ Base ------ */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans';
  color: var(--text);
  background: var(--bg-black);
  font-size: 1em;
}

h1 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 .5rem; }
h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 .5rem; }
h3 { font-size: clamp(18px, 2vw, 22px); margin: .25rem 0 .35rem; }
p { margin: 0 0 1rem; font-size: 110%; line-height: 1.7; color: #0d2231; }
a { color: inherit; text-decoration: none;}

.brand-font, button{font-family: 'Zen Dots', system-ui; letter-spacing: .5px;}

.Container { width: min(1200px, 92vw); margin: 0 auto; justify-content: space-between;}
.Flex{display: flex;}
.Row{flex-direction: row;}
.Column{flex-direction: column;}
.ColumnRow{flex-direction: row;}

/* Focus styles */
:where(a, button, [role="button"]) { outline: none; }
:where(a, button, [role="button"]):focus-visible { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--bg-secondary); border-radius: 10px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px; background: #fff; color: #000; padding: .6rem .8rem; border-radius: 10px; z-index: 9999;
}
.skip-link:focus { left: 8px; }

/* ------ Buttons & Badges ------ */
button {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.4rem;  cursor: pointer;
  font-weight: 700; color: var(--bg-white); background: var(--bg-secondary);
  background: #C0EE36; 
  border: 1px solid #9ABE2B;
  color: #FDFFF7;
  border-radius: 14px;
  transition: transform .12s ease, box-shadow .12s ease;
}
button:hover { transform: translateY(-1px); box-shadow: 0 10px 16px rgba(49,142,82,.45), inset 0 -4px 0 rgba(0,0,0,.18); }

.StoreBadges { align-items: center; gap: 20px;}
.ApplicationButton {width:180px; margin-right:10px; margin-top: 10px;}

/* ------ Header ------ */
header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(8px); background: linear-gradient(180deg, rgba(3,14,24,.85), rgba(3,14,24,.6)); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; font-weight: 500;}
.brand { display: flex; align-items: center;}
.brand-icon { width: 54px; height: 54px;}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-top { font-size: 24px; }
.brand-bottom { margin-top: -4px; font-size: 22px; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 18px; }
.primary-nav a { color: var(--text); opacity: .9; }
.primary-nav a:hover { opacity: 1; }

/* ------ Hero ------ */
.Hero { position: relative; overflow: hidden; background:#FDFFF7; color:#030E18;}
.HeroPhone{width: 380px; padding-top:20px;  margin: auto; display: flex;}
.HeroContent{max-width: 500px; padding-top: 140px; text-align:left;}


/* ------ Mid CTA ------ */
.MidCTA { background: var(--bg-black); margin-top:-100px; text-align: center; padding: 80px 0 54px; position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; }


/* ------ Features ------ */
.features { background: var(--bg-white); color: #0b1c29; padding: 80px 0; }
.features :is(h2, h3, p) { color: #0b1c29; }
.subtitle { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 28px; text-align: center; }
.subtitle-top { text-transform: uppercase; letter-spacing: .08em; font-size: clamp(22px, 3vw, 26px); }
.subtitle-bottom { font-size: clamp(16px, 2.2vw, 20px); opacity: .85; }

.feature-grid { display: flex; flex-wrap: wrap; gap: 22px; }
.feature {flex: 1 1 calc(33.333% - 15px); min-width: 260px; background: #E6E6E0; border-radius: var(--radius); padding: 18px; text-align: center; box-shadow: 0 1px 0 rgba(0,0,0,.03); }
.feature-illus {overflow: auto; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: #0b1c29; font-weight: 800; }
.feature-illus img{width:100%; border: 1px solid #B9BAA6; border-radius: 24px;}

/* ------ Pricing / Download strip ------ */
.strip { background: #E6E6E0; color: #0b1c29; padding: 110px 0; text-align: center;}
.strip p { color: #2c3b47; margin: 6px auto 12px; max-width: 720px; }
.strip .store-badges { justify-content: center; }

/* ------ Help section ------ */
.help { background: var(--bg-white); color: #0b1c29; padding: 48px 0 72px; }
.help h2 { text-align: center; margin-bottom: 28px; }
.help-grid { display: flex; flex-wrap: wrap; gap: 26px; }
.help-card { flex: 1 1 calc(50% - 13px); min-width: 280px; background: #f3f7f9; border: 1px solid #e6edf1; border-radius: var(--radius); padding: 18px; }
.help-illus { height: 170px; border-radius: 14px; background: linear-gradient(180deg, #d2ffe0, #bfe6ff); display: flex; align-items: center; justify-content: center; color: #0b1c29; font-weight: 800; margin-bottom: 12px; }

/* ------ Footer ------ */
footer { padding: 36px 0 60px; text-align: center; color: var(--muted); background: transparent; }
.footer-rows { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #b8c6d2; }
.footer-links a:hover { color: #e6eef6; }

/* ------ Utilities ------ */
.noscript { background: #132a3b; padding: 12px; border-left: 4px solid var(--bg-secondary); color: #e5f2f8; }

/* ------ Responsive tweaks ------ */
@media (max-width: 960px) 
{
	.ColumnRow{flex-direction: column;}
	.HeroContent{width: fit-content; padding: 80px 2% 0 2%; align-content: center; display: flex; flex-direction: column; align-self: center; text-align: center;}
}
