/* Airward — product site. Light, modern, startup/product style.
   Brand accents: cyan → emerald. Dark app screenshots pop on the light canvas. */
:root {
  --ink: #0a1222;
  --muted: #5a6b85;
  --line: #e7edf6;
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --cyan: #06b6d4;
  --cyan-bright: #22d3ee;
  --emerald: #10b981;
  --emerald-bright: #34e0a1;
  --navy: #0a1426;
  --radius: 18px;
  --shadow: 0 30px 70px rgba(10,20,40,.16);
  --shadow-sm: 0 8px 24px rgba(10,20,40,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--bg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
h1,h2,h3,.brand { font-family: "Sora","Inter",sans-serif; letter-spacing: -.02em; color: var(--ink); }
a { color: var(--cyan); text-decoration: none; } a:hover { color: #0894ac; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.grad-text { background: linear-gradient(100deg, var(--cyan), var(--emerald)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 11px;
  font-weight: 600; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(100deg, var(--cyan), var(--emerald)); color: #022; box-shadow: 0 10px 24px rgba(16,185,129,.30); }
.btn-primary:hover { filter: brightness(1.05); color: #022; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--cyan); color: #0894ac; }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* Header */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.8);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid transparent; transition: .2s; }
header.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
header.nav .bar { display: flex; align-items: center; gap: 16px; height: 68px; }
.brandrow { display: flex; align-items: center; gap: 10px; }
.brandrow img { width: 30px; height: 30px; }
.brand { font-weight: 800; font-size: 20px; }
.brand small { color: var(--muted); font-weight: 500; font-family: "Inter"; margin-left: 6px; font-size: 13px; }
nav.menu { margin-left: auto; display: flex; align-items: center; gap: 26px; }
nav.menu a { color: var(--ink); font-weight: 500; font-size: 15px; } nav.menu a:hover { color: var(--cyan); }
.navtoggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; }

/* Hero */
.hero { position: relative; text-align: center; padding: 84px 0 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -10% -10% auto -10%; height: 620px; z-index: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(34,211,238,.18), transparent 70%),
              radial-gradient(50% 60% at 75% 10%, rgba(52,224,161,.16), transparent 70%); }
.hero .inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 600; color: var(--muted); }
.pill b { color: var(--emerald); }
.hero h1 { font-size: 62px; line-height: 1.03; margin: 22px 0 18px; font-weight: 800; }
.hero p.sub { font-size: 21px; color: var(--muted); max-width: 30em; margin: 0 auto 28px; }
.hero .cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 14px; color: var(--muted); font-size: 13px; }

/* Hero screenshot stage */
.stage { position: relative; z-index: 1; margin: 56px auto 0; max-width: 900px; padding: 0 24px 90px; }
.stage::after { content: ""; position: absolute; left: 50%; top: 20px; transform: translateX(-50%);
  width: 70%; height: 360px; background: radial-gradient(closest-side, rgba(34,211,238,.35), transparent);
  filter: blur(40px); z-index: -1; }
.stage .shots { display: flex; justify-content: center; align-items: flex-end; gap: -40px; }
.stage img.main { width: 300px; border-radius: 20px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.stage img.side { width: 250px; border-radius: 18px; box-shadow: var(--shadow); opacity: .96;
  position: relative; margin: 0 -38px 24px; z-index: 1; }

/* Trust strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.strip .row { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; padding: 20px 0;
  color: var(--muted); font-size: 14px; font-weight: 600; }
.strip .row span { display: inline-flex; align-items: center; gap: 8px; }
.strip .dot { color: var(--emerald); }

/* Sections */
section { padding: 92px 0; }
.eyebrow { font: 700 13px/1 "Inter"; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
h2.h { font-size: 40px; line-height: 1.1; margin: 8px 0 14px; font-weight: 800; }
.center { text-align: center; } .center .sub { color: var(--muted); font-size: 19px; max-width: 36em; margin: 0 auto; }

/* Feature rows (alternating) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 64px; }
.feature:first-of-type { margin-top: 40px; }
.feature.rev .copy { order: 2; }
.feature .copy h3 { font-size: 28px; margin: 8px 0 12px; }
.feature .copy p { color: var(--muted); font-size: 17px; margin: 0 0 14px; }
.feature ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.feature li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; color: var(--ink); font-size: 15px; }
.feature li b { color: var(--emerald); }
.shotwrap { display: flex; justify-content: center; position: relative; }
.shotwrap::after { content: ""; position: absolute; inset: 10% 15%; z-index: 0; border-radius: 40px;
  background: radial-gradient(closest-side, rgba(34,211,238,.22), transparent); filter: blur(34px); }
.shotwrap img { position: relative; z-index: 1; width: 280px; border-radius: 20px; box-shadow: var(--shadow); }

/* Feature grid */
.fgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.fcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; transition: .18s; }
.fcard:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.fcard .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(52,224,161,.16)); font-size: 20px; }
.fcard h3 { font-size: 18px; margin: 0 0 6px; } .fcard p { color: var(--muted); font-size: 14px; margin: 0; }

/* Honest band */
.band { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; max-width: 900px; margin: 0 auto; }
.band p { margin: 0; color: var(--muted); } .band strong { color: var(--ink); }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 44px auto 0; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: #fff; }
.plan.pro { border: 0; background: linear-gradient(160deg, var(--navy), #122140); color: #fff; box-shadow: var(--shadow); position: relative; }
.plan.pro h3, .plan.pro .price { color: #fff; }
.plan .tag { position: absolute; top: -12px; right: 20px; background: linear-gradient(100deg,var(--cyan),var(--emerald));
  color:#022; font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 999px; }
.plan h3 { font-size: 20px; margin: 0; } .plan .price { font-size: 38px; font-weight: 800; margin: 10px 0; }
.plan .price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan.pro .price small { color: #9fb4dd; }
.plan ul { list-style: none; padding: 0; margin: 14px 0 22px; display: grid; gap: 9px; }
.plan li { padding-left: 26px; position: relative; font-size: 15px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }
.plan.pro li::before { color: var(--emerald-bright); }
.plan li.muted { color: var(--muted); } .plan li.muted::before { content: "–"; color: var(--muted); }
.plan .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 10px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 10px 0 0; }

/* CTA */
.finale { text-align: center; }
.finale .box { background: linear-gradient(120deg, var(--cyan), var(--emerald)); border-radius: 24px; padding: 60px 24px; color: #022; }
.finale h2 { color: #022; font-size: 36px; margin: 0 0 10px; }
.finale p { color: #023; opacity: .8; margin: 0 0 22px; font-size: 18px; }
.btn-dark { background: var(--navy); color: #fff; } .btn-dark:hover { color: #fff; filter: brightness(1.1); }

/* Footer */
footer.site { background: var(--navy); color: #aebfdd; padding: 50px 0 28px; }
footer.site .top { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
footer.site .brand { color: #fff; } footer.site .brand small { color: #8fa6d3; }
footer.site .links { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
footer.site a { color: #aebfdd; font-size: 15px; } footer.site a:hover { color: #fff; }
footer.site .copy { border-top: 1px solid rgba(255,255,255,.1); margin-top: 26px; padding-top: 18px; font-size: 14px; color: #8fa6d3; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1 !important; transform:none !important; } html{scroll-behavior:auto;} }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 0 70px; }
.legal h1 { font-size: 34px; margin: 10px 0 4px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.callout { border: 1px solid var(--line); border-left: 3px solid var(--emerald); background: var(--bg-soft);
  border-radius: 10px; padding: 14px 16px; margin: 18px 0; color: var(--muted); }
.legal h2 { font-size: 19px; margin: 28px 0 8px; }

@media (max-width: 900px) {
  .hero h1 { font-size: 46px; } .feature, .pricing { grid-template-columns: 1fr; }
  .feature.rev .copy { order: 0; } .fgrid { grid-template-columns: 1fr 1fr; }
  .stage img.side { display: none; }
}
@media (max-width: 600px) {
  nav.menu { display: none; } nav.menu.open { display: flex; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 16px; }
  nav.menu.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .navtoggle { display: block; }
  .hero { padding-top: 56px; } .hero h1 { font-size: 38px; } .hero p.sub { font-size: 18px; }
  h2.h { font-size: 30px; } .fgrid { grid-template-columns: 1fr; }
  .stage img.main { width: 78vw; }
}
