/* Maviate Digital — static site styles */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --radius: 0.875rem;
  --brand-sky: #6fb4f5;
  --brand-blue: #5b5bf0;
  --brand-purple: #8b46e0;

  --background: #fbfbfe;
  --foreground: #12142b;
  --card: #ffffff;
  --muted: #f4f4fb;
  --muted-foreground: #6b6f89;
  --secondary: #f1f0fb;
  --secondary-foreground: #33355c;
  --accent: #efe9fd;
  --border: #e6e5f2;

  --gradient-brand: linear-gradient(135deg, #4f8ef7 0%, #7a4bf0 60%, #a63ee0 100%);
  --gradient-soft: linear-gradient(135deg, #f2f6ff 0%, #f7f1ff 100%);
  --gradient-hero:
    radial-gradient(ellipse at 20% 0%, rgba(150, 190, 255, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(205, 160, 255, 0.5), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(190, 185, 255, 0.35), transparent 60%);
  --shadow-soft: 0 4px 20px -8px rgba(80, 60, 180, 0.25);
  --shadow-glow: 0 20px 60px -20px rgba(105, 70, 210, 0.4);
  --shadow-card: 0 1px 2px rgba(60, 50, 110, 0.05), 0 8px 30px -12px rgba(70, 55, 140, 0.15);
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
section[id], [id] { scroll-margin-top: 5.5rem; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
}
h1, h2, h3, h4 { font-family: Sora, Inter, sans-serif; letter-spacing: -0.02em; margin: 0; line-height: 1.12; }
p { margin: 0; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 820px; }
.container-md { max-width: 980px; }
.section { padding: 5.5rem 0; }
.muted { color: var(--muted-foreground); }
.center { text-align: center; }
.grad-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.icon { width: 1.05rem; height: 1.05rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-lg { width: 1.4rem; height: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center;
  border-radius: 999px; padding: 0.85rem 1.6rem; font-size: 0.9rem; font-weight: 600;
  border: 1px solid transparent; transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { background-image: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-1px) scale(1.02); }
.btn-ghost { background: rgba(255, 255, 255, 0.75); border-color: var(--border); color: var(--foreground); }
.btn-ghost:hover { background: var(--accent); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.83rem; box-shadow: var(--shadow-soft); }
.btn-white { background: #fff; color: var(--foreground); box-shadow: var(--shadow-soft); }
.btn-outline-white { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 1.25rem 0; transition: padding 0.3s ease; }
.site-header.scrolled { padding: 0.7rem 0; }
.nav-shell {
  width: calc(100% - 2rem); max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: 999px; padding: 0.5rem 1.1rem; transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px);
}
.site-header.scrolled .nav-shell { box-shadow: var(--shadow-soft); background: rgba(255, 255, 255, 0.85); border: 1px solid rgba(255, 255, 255, 0.7); }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: Sora, sans-serif; font-weight: 700; font-size: 1.08rem; }
.brand img { height: 2.25rem; width: 2.25rem; border-radius: 0.6rem; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 0.15rem; }
.nav-links a { padding: 0.5rem 0.95rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500; color: var(--muted-foreground); }
.nav-links a:hover { background: var(--accent); color: var(--foreground); }
.nav-cta { display: none; }
.nav-toggle {
  background: none;
  border: 0;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--accent); }
.nav-toggle:active { transform: scale(0.92); }
.nav-toggle .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.7rem;
  margin-left: -0.7rem;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  pointer-events: none;
}
.nav-toggle .icon-hamburger {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.nav-toggle .icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}
.nav-toggle.open .icon-hamburger {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
.nav-toggle.open .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.mobile-menu {
  display: none;
  width: calc(100% - 2rem);
  max-width: 1180px;
  margin: 0.5rem auto 0;
  border-radius: 1.25rem;
  padding: 0.85rem;
  box-shadow: var(--shadow-glow);
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  display: block;
  animation: menuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { background: var(--accent); color: var(--brand-purple); }
.mobile-menu a.btn-primary {
  color: #fff;
  justify-content: center;
  margin-top: 0.6rem;
}
.mobile-menu a.btn-primary:hover {
  background-image: var(--gradient-brand);
  color: #fff;
}
@media (min-width: 860px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu.open { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 9rem 0 6rem; background-image: var(--gradient-hero); }
.hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75); border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); box-shadow: var(--shadow-soft);
}
.dot { position: relative; display: inline-flex; height: 0.5rem; width: 0.5rem; }
.dot::before { content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--brand-purple); opacity: 0.7; animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite; }
.dot::after { content: ""; position: relative; height: 0.5rem; width: 0.5rem; border-radius: 999px; background-image: var(--gradient-brand); }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.hero h1 { margin-top: 1.5rem; font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 800; }
.hero .lede { margin: 1.5rem auto 0; max-width: 640px; font-size: 1.05rem; color: var(--muted-foreground); }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero-ticks { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center; font-size: 0.8rem; color: var(--muted-foreground); }
.hero-ticks span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-ticks .icon { color: var(--brand-purple); }
.mock { position: relative; max-width: 960px; margin: 4rem auto 0; border-radius: 1.75rem; overflow: hidden; box-shadow: var(--shadow-glow); }
.mock-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.7); }
.mock-bar i { height: 0.6rem; width: 0.6rem; border-radius: 999px; display: inline-block; }
.mock-bar small { margin-left: 0.6rem; color: var(--muted-foreground); font-size: 0.75rem; }
.mock-grid { display: grid; gap: 1rem; padding: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.mock-card { border: 1px solid var(--border); background: rgba(255, 255, 255, 0.85); border-radius: 1.1rem; padding: 1.2rem; box-shadow: var(--shadow-soft); }
.mock-card header { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; }
.mock-card strong { display: block; margin-top: 0.7rem; font-family: Sora, sans-serif; font-size: 1.9rem; }

/* ---------- Trust ---------- */
.trust { border-block: 1px solid var(--border); background: rgba(255, 255, 255, 0.5); padding: 2rem 0; }
.trust p { text-align: center; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); font-weight: 500; }
.trust-row { margin-top: 1.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2.5rem; opacity: 0.7; }
.trust-row span { font-family: Sora, sans-serif; font-weight: 700; letter-spacing: 0.15em; color: var(--muted-foreground); }

/* ---------- Section headers ---------- */
.eyebrow {
  display: inline-flex; border: 1px solid var(--border); background: rgba(255, 255, 255, 0.75);
  border-radius: 999px; padding: 0.25rem 0.8rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-purple);
}
.sec-head { max-width: 680px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { margin-top: 1rem; font-size: clamp(1.8rem, 3.6vw, 3rem); font-weight: 700; }
.sec-head p { margin-top: 1rem; color: var(--muted-foreground); font-size: 1.02rem; }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.mt-14 { margin-top: 3.5rem; }

.card {
  position: relative; overflow: hidden; height: 100%;
  border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem;
  padding: 1.7rem; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card h3 { font-size: 1.15rem; font-weight: 600; }
.card p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted-foreground); }
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3rem; width: 3rem; border-radius: 1rem; margin-bottom: 1.1rem;
  background-image: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-soft);
}
.icon-badge.soft { background: var(--accent); background-image: none; color: var(--brand-purple); height: 2.75rem; width: 2.75rem; border-radius: 0.85rem; margin: 0; }
.card-link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.88rem; font-weight: 600; color: var(--brand-purple); }
.soft-bg { position: relative; }
.soft-bg::before { content: ""; position: absolute; inset: 0; background-image: var(--gradient-soft); opacity: 0.6; z-index: -1; }

.about-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.stat-card { position: relative; overflow: hidden; border-radius: 1.5rem; padding: 1.5rem; background-image: var(--gradient-soft); border: 1px solid var(--border); box-shadow: var(--shadow-card); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.stat-card b { font-family: Sora, sans-serif; font-size: 2.2rem; }
.stat-card span { display: block; margin-top: 0.4rem; font-size: 0.87rem; font-weight: 500; color: var(--muted-foreground); }

.why-card { display: flex; gap: 1rem; align-items: flex-start; }
.step-num { font-family: Sora, sans-serif; font-size: 1.9rem; font-weight: 700; color: rgba(107, 111, 137, 0.32); }

/* ---------- Testimonials ---------- */
.quote-card { position: relative; border-radius: 1.75rem; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.quote-card blockquote { margin: 1rem 0 0; font-family: Sora, sans-serif; font-size: 1.3rem; font-weight: 500; line-height: 1.5; }
.quote-meta { margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.avatar { height: 3rem; width: 3rem; border-radius: 999px; background-image: var(--gradient-brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: Sora, sans-serif; font-weight: 700; }
.stars { display: flex; gap: 0.15rem; color: var(--brand-purple); }
.stars .icon { fill: currentColor; }
.dots { margin-top: 1.5rem; display: flex; justify-content: center; gap: 0.4rem; }
.dots button { height: 0.35rem; width: 0.35rem; border: 0; border-radius: 999px; background: var(--border); padding: 0; transition: all 0.25s ease; }
.dots button.active { width: 2rem; background-image: var(--gradient-brand); }

/* ---------- Founders ---------- */
.founder-head { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.founder-head .avatar { height: 6rem; width: 6rem; font-size: 1.8rem; box-shadow: var(--shadow-soft); }
.founder-role { font-size: 0.88rem; font-weight: 600; color: var(--brand-purple); }
.socials { margin-top: 1.4rem; display: flex; gap: 0.5rem; }
.socials a { height: 2.25rem; width: 2.25rem; border-radius: 999px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--muted-foreground); }
.socials a:hover { background-image: var(--gradient-brand); color: #fff; border-color: transparent; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--border); background: var(--card); border-radius: 1.1rem; box-shadow: var(--shadow-card); margin-bottom: 0.75rem; overflow: hidden; }
.faq button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: 0; padding: 1.2rem 1.4rem; text-align: left; font-family: Sora, sans-serif; font-weight: 600; font-size: 1rem; }
.faq .icon { color: var(--muted-foreground); transition: transform 0.25s ease; }
.faq.open .icon { transform: rotate(180deg); }
.faq .answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq.open .answer { max-height: 400px; }
.faq .answer p { padding: 0 1.4rem 1.2rem; font-size: 0.92rem; color: var(--muted-foreground); }

/* ---------- Contact ---------- */
.contact-shell { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--card); border-radius: 2rem; padding: 2rem; box-shadow: var(--shadow-glow); }
@media (min-width: 720px) { .contact-shell { padding: 3.5rem; } }
.contact-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 950px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-row { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border); border-radius: 1.1rem; padding: 1rem; background: rgba(255, 255, 255, 0.7); margin-bottom: 0.85rem; }
.contact-row:hover { background: var(--accent); }
.contact-row .icon-badge { height: 2.5rem; width: 2.5rem; margin: 0; border-radius: 0.8rem; }
.contact-row small { display: block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-foreground); font-weight: 500; }
.contact-row strong { font-weight: 500; }
form.card-form { border-radius: 1.75rem; padding: 1.6rem; box-shadow: var(--shadow-soft); }
@media (min-width: 720px) { form.card-form { padding: 2rem; } }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: 0.4rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-foreground); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); background: var(--card); border-radius: 0.85rem;
  padding: 0.8rem 1rem; font-size: 0.9rem; font-family: inherit; color: inherit; outline: none; transition: border-color 0.2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-purple); }
.field-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.form-note { margin-top: 0.8rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }
.form-status { margin-top: 0.9rem; border-radius: 0.8rem; padding: 0.7rem 0.9rem; font-size: 0.85rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e9f9ef; color: #1c6b3d; }
.form-status.err { background: #fdecec; color: #a32020; }

/* ---------- CTA band + footer ---------- */
.cta-band { max-width: 1060px; margin: 0 auto; border-radius: 2rem; background-image: var(--gradient-brand); color: #fff; padding: 3rem 1.5rem; text-align: center; box-shadow: var(--shadow-glow); }
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-band p { margin: 1rem auto 0; max-width: 620px; color: rgba(255, 255, 255, 0.88); }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.site-footer { border-top: 1px solid var(--border); background: rgba(255, 255, 255, 0.6); padding: 3.5rem 0; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-grid h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.footer-grid ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-grid a { font-size: 0.9rem; color: var(--muted-foreground); }
.footer-grid a:hover { color: var(--foreground); }
.footer-bottom { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; font-size: 0.78rem; color: var(--muted-foreground); }

/* ---------- Portfolio ---------- */
.page-hero { padding: 9rem 0 3.5rem; background-image: var(--gradient-hero); text-align: center; }
.page-hero h1 { margin-top: 1.5rem; font-size: clamp(2.1rem, 5.5vw, 3.7rem); font-weight: 800; }
.page-hero p { margin: 1.2rem auto 0; max-width: 640px; color: var(--muted-foreground); }
.filters { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.chip { border: 1px solid var(--border); background: rgba(255, 255, 255, 0.75); color: var(--muted-foreground); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 500; transition: all 0.2s ease; }
.chip:hover { background: var(--accent); color: var(--foreground); }
.chip.active { background-image: var(--gradient-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-soft); }
.search { position: relative; width: 100%; max-width: 420px; }
.search .icon { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); }
.search input { height: 2.75rem; width: 100%; border-radius: 999px; border: 1px solid var(--border); background: rgba(255, 255, 255, 0.75); padding: 0 1rem 0 2.5rem; font-size: 0.9rem; outline: none; font-family: inherit; }
.search input:focus { border-color: var(--brand-purple); }

.work-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.work-card { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); text-align: left; padding: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.work-media { position: relative; aspect-ratio: 4 / 5; background-image: var(--gradient-brand); overflow: hidden; }
.work-media img, .work-media video { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform 0.6s ease; }
.work-card:hover .work-media img { transform: scale(1.06); }
.work-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05) 55%, transparent); }
.work-badges { position: absolute; left: 1rem; top: 1rem; display: flex; gap: 0.4rem; }
.badge { border-radius: 999px; padding: 0.25rem 0.65rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-premium { background-image: var(--gradient-brand); color: #fff; }
.badge-basic { background: var(--secondary); color: var(--secondary-foreground); }
.badge-featured { background: rgba(255, 255, 255, 0.92); color: var(--foreground); }
.badge-play { position: absolute; right: 1rem; top: 1rem; height: 2rem; width: 2rem; border-radius: 999px; background: rgba(255, 255, 255, 0.92); display: inline-flex; align-items: center; justify-content: center; }
.work-text { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; color: #fff; }
.work-text small { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); }
.work-text h2, .work-text h3 { margin-top: 0.25rem; font-size: 1.05rem; font-weight: 600; color: #fff; }
.empty { border: 1px dashed var(--border); background: rgba(255, 255, 255, 0.55); border-radius: 1.5rem; padding: 4rem 1.5rem; text-align: center; color: var(--muted-foreground); font-size: 0.92rem; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
.modal.open { display: flex; }
.modal-panel { position: relative; display: grid; width: 100%; max-width: 1000px; max-height: 90vh; overflow: hidden; border-radius: 1.5rem; background: var(--card); box-shadow: var(--shadow-glow); }
@media (min-width: 850px) { .modal-panel { grid-template-columns: 1.4fr 1fr; } }
.modal-media { position: relative; background: #000; display: flex; align-items: center; justify-content: center; min-height: 240px; }
.modal-media img, .modal-media video { max-height: 55vh; width: 100%; object-fit: contain; }
@media (min-width: 850px) { .modal-media img, .modal-media video { max-height: 90vh; } }
.modal-side { overflow-y: auto; padding: 1.6rem; }
.modal-close, .modal-nav { position: absolute; z-index: 5; height: 2.25rem; width: 2.25rem; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.modal-close { right: 0.75rem; top: 0.75rem; background: rgba(0, 0, 0, 0.55); color: #fff; }
.modal-nav { top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.88); color: var(--foreground); }
.modal-nav.prev { left: 0.75rem; }
.modal-nav.next { right: 0.75rem; }
.thumbs { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.thumbs button { aspect-ratio: 1; overflow: hidden; border-radius: 0.6rem; border: 1px solid var(--border); padding: 0; background: var(--secondary); }
.thumbs button.active { border-color: var(--brand-purple); }
.thumbs img { height: 100%; width: 100%; object-fit: cover; }
.note-box { margin-top: 1.2rem; border: 1px solid var(--border); background: rgba(241, 240, 251, 0.5); border-radius: 1rem; padding: 1rem; }
.note-box b { font-size: 0.82rem; }
.note-box p { margin-top: 0.3rem; font-size: 0.8rem; color: var(--muted-foreground); }
.tag { border-radius: 999px; background: var(--secondary); color: var(--secondary-foreground); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }

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

/* ---------- Responsive Breakpoints & Mobile Polish ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.75rem 0; }
  .mt-14 { margin-top: 2.25rem; }
  .hero { padding: 7rem 0 3.5rem; }
  .page-hero { padding: 7rem 0 2.5rem; }
  .hero h1 { font-size: clamp(1.95rem, 6.5vw, 2.75rem); }
  .hero .lede { font-size: 0.98rem; margin-top: 1rem; }
  .sec-head h2 { font-size: clamp(1.65rem, 5.5vw, 2.25rem); }
  .sec-head p { font-size: 0.95rem; margin-top: 0.75rem; }
  .grid-5 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
  .grid { gap: 1rem; }
  .card { padding: 1.4rem; border-radius: 1.25rem; }
  .quote-card { padding: 1.75rem 1.35rem; border-radius: 1.35rem; }
  .quote-card blockquote { font-size: 1.15rem; line-height: 1.45; }
  .contact-shell { padding: 1.6rem 1.25rem; border-radius: 1.5rem; }
  .field input, .field select, .field textarea, .search input { font-size: 16px; }
  .cta-band { padding: 2.25rem 1.25rem; border-radius: 1.5rem; }
  .cta-band h2 { font-size: 1.65rem; }
  .site-footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.9rem; }
  .nav-shell { width: calc(100% - 1.2rem); padding: 0.4rem 0.85rem; }
  .mobile-menu { width: calc(100% - 1.2rem); padding: 0.7rem; border-radius: 1rem; }
  .brand { font-size: 1rem; gap: 0.5rem; }
  .brand img { height: 2rem; width: 2rem; }
  .hero { padding: 6.5rem 0 3rem; }
  .hero h1 { font-size: 1.85rem; line-height: 1.18; }
  .pill { padding: 0.35rem 0.8rem; font-size: 0.72rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 0.65rem; }
  .hero-actions .btn { width: 100%; }
  .hero-ticks { flex-direction: column; align-items: center; gap: 0.55rem; margin-top: 2rem; }
  .mock { margin-top: 2.5rem; border-radius: 1.25rem; }
  .mock-grid { grid-template-columns: 1fr; padding: 1rem; gap: 0.75rem; }
  .mock-card { padding: 1rem; }
  .mock-card strong { font-size: 1.6rem; }
  .founder-head { gap: 1rem; }
  .founder-head .avatar { height: 4.25rem; width: 4.25rem; font-size: 1.35rem; }
  .founder-head h3 { font-size: 1.25rem !important; }
  .about-grid .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-card { padding: 1rem 0.85rem; border-radius: 1rem; }
  .stat-card b { font-size: 1.65rem; }
  .stat-card span { font-size: 0.75rem; }
  .faq button { padding: 1rem 1.1rem; font-size: 0.95rem; }
  .faq .answer p { padding: 0 1.1rem 1rem; font-size: 0.88rem; }
  form.card-form { padding: 1.25rem 0.9rem; border-radius: 1.25rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-row { padding: 0.85rem; gap: 0.75rem; }
  .contact-row strong { font-size: 0.88rem; word-break: break-all; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .quote-meta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
