/* MouseTech Studios · palette sampled from the studio logo */
:root {
  --blue: #0070c8;
  --blue-deep: #0058a3;
  --blue-tint: #e8f2fc;
  --gold: #d4a017;
  --gold-deep: #b8880f;
  --ink: #14263a;
  --ink-soft: #4a5d72;
  --paper: #ffffff;
  --paper-soft: #f6f9fc;
  --line: #d9e3ee;
  --indigo: #4f5bd5;
  --radius: 16px;
  --font: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.6rem; font-weight: 800; }
h4 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap { width: min(1080px, calc(100% - 2.5rem)); margin-inline: auto; }
.wrap--narrow { width: min(720px, calc(100% - 2.5rem)); }

.skip {
  position: absolute; left: -999px; top: 0; padding: .5rem 1rem;
  background: var(--gold); color: var(--ink); z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--ink); font-weight: 800; letter-spacing: .02em; text-transform: uppercase; font-size: .95rem;
}
.nav__brand img { width: 40px; height: 40px; border-radius: 9px; }
.nav__brand b { color: var(--gold-deep); }
.nav nav { display: flex; gap: 1.5rem; }
.nav nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; }
.nav nav a:hover { color: var(--blue); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.hero__inner {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__logo {
  width: clamp(200px, 30vw, 320px); border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700;
  color: var(--gold); margin-bottom: .75rem;
}
.hero h1 { color: #fff; }
.lede { font-size: 1.2rem; color: rgba(255,255,255,.88); max-width: 32em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; margin-top: 1.5rem; }
.hero .link-arrow { color: #fff; }

/* Buttons and links */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.btn--gold:hover { background: #e0ab1c; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(0,112,200,.25); }
.btn--blue:hover { background: var(--blue-deep); }
.link-arrow { font-weight: 700; text-decoration: none; }
.link-arrow::after { content: " →"; }
.link-arrow:hover { text-decoration: underline; }

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--paper-soft); border-block: 1px solid var(--line); }
.section__title { margin-bottom: 1.5rem; }
.section__sub { margin-top: 3rem; color: var(--ink-soft); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .08em; }

/* Featured app */
.feature {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--paper-soft));
}
.feature__art img { width: 100%; }
.tagline { font-weight: 700; color: var(--indigo); font-size: 1.1rem; }
.feature__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; margin-top: 1rem; }

.badge {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; background: var(--blue-tint); color: var(--blue-deep); margin: 0 0 .75rem;
}
.badge--live { background: #e6f6ea; color: #1b7a38; }

/* Coming soon grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  display: flex; flex-direction: column;
}
.card p { flex: 1; color: var(--ink-soft); }
.card .badge { flex: 0; align-self: flex-start; margin: .5rem 0 0; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue); margin-bottom: 1rem;
}

/* About / contact */
.about { font-size: 1.15rem; }
.disclaimer { color: var(--ink-soft); font-size: .95rem; }
.socials { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .6rem; }
.socials a { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 600; }
.socials a:hover { text-decoration: underline; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.75); font-size: .9rem; padding: 2rem 0; }
.footer a { color: #fff; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.footer p { margin: 0; }

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero__actions { justify-content: center; }
  .lede { margin-inline: auto; }
  .feature { grid-template-columns: 1fr; text-align: center; }
  .feature__art img { max-width: 260px; margin-inline: auto; }
  .feature__actions { justify-content: center; }
  .grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav__brand span { display: none; }
  .nav nav { gap: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
