:root {
  --paper: #f5f6fa;
  --surface: #ffffff;
  --ink: #0e1a38;
  --muted: #5c6780;
  --faint: #8a93a8;
  --cyan: #00b8d4;
  --cyan-deep: #0093a8;
  --magenta: #e91e8c;
  --line: #e3e6ef;
  --on-ink: #f7f8fc;
  --shadow: 0 0 0 1px rgb(14 26 56 / 0.06), 0 1px 2px -1px rgb(14 26 56 / 0.06), 0 2px 4px 0 rgb(14 26 56 / 0.04);
  --shadow-hover: 0 0 0 1px rgb(14 26 56 / 0.08), 0 12px 32px -16px rgb(14 26 56 / 0.18);
  --font: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --display: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); text-wrap: balance; font-weight: 600; letter-spacing: -0.03em; margin: 0; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-top: 0.75rem; }
h3 { font-size: 1.125rem; }
p { text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
.hidden { display: none !important; }
.cyan { color: var(--cyan-deep); }
.magenta { color: var(--magenta); }
.muted { color: var(--muted); }

.wrap { width: min(1152px, calc(100% - 2.5rem)); margin-inline: auto; }
@media (min-width: 640px) { .wrap { width: min(1152px, calc(100% - 4rem)); } }

.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgb(245 246 250 / 0.8);
  backdrop-filter: blur(12px);
}
.header.scrolled { border-color: var(--line); background: rgb(255 255 255 / 0.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4.25rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { width: 40px; height: 40px; }
.wordmark { font-family: var(--display); font-weight: 600; font-size: 1.125rem; letter-spacing: -0.03em; display: block; line-height: 1; }
.studios { display: block; margin-top: 2px; font-size: 0.625rem; font-weight: 500; letter-spacing: 0.28em; color: rgb(14 26 56 / 0.7); }
.nav-desktop { display: none; gap: 0.25rem; }
.nav-desktop a { padding: 0.5rem 0.75rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.nav-desktop a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--surface); padding: 1rem 0 1.25rem; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a { padding: 0.75rem; border-radius: 0.75rem; font-weight: 500; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .show-lg { display: none !important; }
}
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline-flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; letter-spacing: -0.02em;
  border-radius: 0.75rem; border: 0; white-space: nowrap;
  transition: transform 150ms ease-out, background-color 150ms ease-out;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--ink); color: var(--on-ink); box-shadow: var(--shadow); }
.btn-primary:hover { background: #1c2a4d; }
.btn-outline { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.btn-outline:hover { box-shadow: var(--shadow-hover); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-sm { height: 2.75rem; padding: 0 1.25rem; font-size: 0.875rem; }
.btn-lg { height: 3rem; padding: 0 1.5rem; font-size: 0.875rem; }
.icon-btn { width: 2.75rem; height: 2.75rem; padding: 0; }

.eyebrow { font-family: var(--display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 0; }
.brand-rule { display: flex; height: 2px; width: 4.5rem; border-radius: 999px; overflow: hidden; margin-top: 1.25rem; }
.brand-rule::before, .brand-rule::after { content: ""; flex: 1; }
.brand-rule::before { background: var(--cyan); }
.brand-rule::after { background: var(--magenta); }

.hero { padding: 3.5rem 0 4rem; overflow: hidden; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.lead { max-width: 36rem; color: var(--muted); font-size: 1.05rem; margin-top: 1.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding: 0; margin: 2.5rem 0 0; list-style: none; color: var(--muted); font-size: 0.875rem; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--cyan); display: inline-block; margin-right: 0.4rem; }
.hero-logo { position: relative; }
.hero-logo img { margin-inline: auto; width: min(100%, 28rem); }
@media (min-width: 1024px) {
  .hero { padding: 6rem 0; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .hero-logo img { width: min(100%, 32rem); }
}

.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 6rem 0; } }
.section-surface { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head .muted { max-width: 36rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--cyan-deep); }
.text-link:hover { color: var(--ink); }

.grid-2, .grid-3 { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  display: block; background: var(--surface); border-radius: 1.5rem;
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-top { display: flex; align-items: flex-start; gap: 1rem; }
.app-icon { width: 64px; height: 64px; border-radius: 1rem; object-fit: cover; flex-shrink: 0; }
.chip {
  display: inline-flex; align-items: center; border-radius: 999px;
  padding: 0.25rem 0.65rem; font-size: 0.625rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.chip-play { background: rgb(0 184 212 / 0.12); color: var(--cyan-deep); }
.chip-soon { background: rgb(233 30 140 / 0.1); color: #c21875; }
.chip-test { background: rgb(14 26 56 / 0.06); color: #1c2a4d; }
.rating { font-size: 0.75rem; font-weight: 600; margin-left: 0.35rem; }
.card h3 { margin-top: 0.5rem; }
.cat { margin: 0.25rem 0 0; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.card > p { color: var(--muted); font-size: 0.875rem; margin: 1rem 0 0; }
.card-cta { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--cyan-deep); }
.muted-cta { color: var(--muted); }

.studio-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .studio-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }
.studio-grid .muted { margin-top: 1.25rem; }
.pillars { display: grid; gap: 1rem; list-style: none; padding: 0; margin: 0; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillars li { background: var(--paper); border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow); }
.pillars h3 { margin-top: 1rem; font-size: 1rem; }
.pillars p { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted); }

.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; } }
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0.5rem; }
.contact-list a, .contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem; margin-left: -0.5rem; border-radius: 0.75rem; font-weight: 500; }
.contact-list a:hover { background: var(--surface); }
.icon-box {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem; background: var(--surface); box-shadow: var(--shadow); color: var(--cyan-deep); flex-shrink: 0;
}
.label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.form-card { padding: 1.5rem; }
@media (min-width: 640px) { .form-card { padding: 2rem; } }
form { display: grid; gap: 1rem; }
form h3 { font-size: 1.25rem; }
label { display: grid; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
input, textarea {
  font: 0.875rem/1.4 var(--font); color: var(--ink);
  background: var(--paper); border: 0; border-radius: 0.75rem;
  padding: 0.7rem 0.85rem; box-shadow: var(--shadow); outline: none; width: 100%;
}
input { height: 2.75rem; }
textarea { resize: vertical; }
input:focus, textarea:focus { box-shadow: var(--shadow-hover); outline: 2px solid var(--cyan); }
.form-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .form-actions { flex-direction: row; } .form-actions .btn { flex: 1; } }
.thanks { text-align: center; padding: 3rem 1rem; }
.check { width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 999px; background: rgb(0 184 212 / 0.15); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }

.footer { background: var(--surface); border-top: 1px solid var(--line); }
.footer-top { display: flex; flex-direction: column; gap: 2rem; padding: 2.5rem 0; }
@media (min-width: 1024px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer-top .muted { max-width: 20rem; margin-top: 1rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-cols a { display: block; font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }
.footer-cols a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .wrap { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.1rem 0; font-size: 0.75rem; color: var(--faint); }
@media (min-width: 640px) { .footer-bottom .wrap { flex-direction: row; justify-content: space-between; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
