:root {
  --snow: #f8fbff;
  --glacier: #d9edf7;
  --ice-blue: #8ecae6;
  --alpine-blue: #2f6f8f;
  --deep-slate: #243746;
  --warm-gray: #5a6b74;
  --sunrise: #f4a261;
  --evergreen: #376b58;
  --card: rgba(255, 255, 255, 0.86);
  --line: rgba(47, 111, 143, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --max-width: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--deep-slate);
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 162, 97, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 6%, rgba(142, 202, 230, 0.40), transparent 34rem),
    linear-gradient(180deg, var(--snow) 0%, #eef7fb 48%, #f7faf8 100%);
}
a { color: inherit; text-decoration: none; }
.page-shell { width: min(calc(100% - 32px), var(--max-width)); margin: 0 auto; }

.site-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 0 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; }
.brand-mark svg { width: 46px; height: 46px; display: block; }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.brand small { margin-top: 4px; color: var(--warm-gray); font-size: 0.82rem; }
.top-nav { display: flex; align-items: center; gap: 18px; color: var(--warm-gray); font-weight: 600; }
.top-nav a { transition: color 160ms ease, transform 160ms ease; }
.top-nav a:hover { color: var(--alpine-blue); transform: translateY(-1px); }
.nav-pill { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.7); }

.hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr); gap: 42px; align-items: center; padding: 52px 0 64px; }
.eyebrow { margin: 0 0 14px; color: var(--evergreen); font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; font-size: 0.78rem; font-family: var(--font-body); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--font-display); max-width: 620px; margin-bottom: 20px; font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.02em; font-weight: 600; }
.hero-text { max-width: 560px; color: var(--warm-gray); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 600; transition: transform 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translateY(-2px); }
.primary { color: #fff; background: linear-gradient(135deg, var(--alpine-blue), var(--evergreen)); box-shadow: 0 16px 34px rgba(47, 111, 143, 0.26); }
.secondary { color: var(--deep-slate); background: rgba(255, 255, 255, 0.8); border: 1px solid var(--line); }
.status-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--warm-gray); font-size: 0.9rem; }
.status-row span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.6); }

.hero-art { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 60px rgba(36, 55, 70, 0.18)); }

.apps-section { padding: 40px 0 64px; }
.section-heading { max-width: 720px; margin-bottom: 26px; }
.section-heading h2, .about-band h2 { font-family: var(--font-display); font-weight: 600; margin-bottom: 12px; font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.05; letter-spacing: -0.02em; }
.section-heading p, .about-band p { color: var(--warm-gray); line-height: 1.62; }
.app-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.app-card { display: flex; flex-direction: column; min-height: 212px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); box-shadow: 0 14px 40px rgba(36, 55, 70, 0.08); transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease; }
.app-card:hover { transform: translateY(-5px); border-color: rgba(47, 111, 143, 0.32); box-shadow: 0 22px 58px rgba(36, 55, 70, 0.14); }
.app-card h3 { font-family: var(--font-display); font-weight: 600; margin: 12px 0 10px; font-size: 1.3rem; letter-spacing: -0.01em; }
.app-card p { color: var(--warm-gray); line-height: 1.55; flex: 1; }
.featured { color: #fff; background: linear-gradient(135deg, rgba(47, 111, 143, 0.97), rgba(55, 107, 88, 0.95)); border-color: transparent; }
.featured h3 { color: #fff; }
.featured p, .featured .app-kicker, .featured .card-link { color: rgba(255, 255, 255, 0.88); }
.app-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(142, 202, 230, 0.22); font-size: 1.4rem; }
.app-kicker { color: var(--evergreen); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.card-link { display: inline-flex; margin-top: 12px; color: var(--alpine-blue); font-weight: 600; }

.about-band { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: center; margin: 8px 0 60px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255, 255, 255, 0.7); }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0 42px; color: var(--warm-gray); border-top: 1px solid var(--line); }
.site-footer p { margin: 0; }
.site-footer a { font-weight: 600; color: var(--alpine-blue); }

:focus-visible { outline: 3px solid var(--alpine-blue); outline-offset: 2px; border-radius: 6px; }

@media (max-width: 920px) {
  .hero, .about-band { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .page-shell { width: min(calc(100% - 22px), var(--max-width)); }
  .site-header { align-items: flex-start; gap: 18px; flex-direction: column; }
  .top-nav { width: 100%; justify-content: space-between; gap: 10px; font-size: 0.92rem; }
  .hero { padding-top: 36px; }
  .app-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
