/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Assistant', sans-serif;
  font-size: 1.5rem;
  color: #121212;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === CSS Variables === */
:root {
  --bg: #fff;
  --bg-2: #f3f3f3;
  --bg-dark: #242833;
  --text: #121212;
  --text-inv: #fff;
  --text-muted: #555;
  --accent-blue: #334fb4;
  --accent-coral: #d65e42;
  --accent-teal: #27a8b8;
  --accent-gold: #eab15a;
  --max-width: 1200px;
  --header-height: 6rem;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
p { margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 8rem 0; }
.section--sm { padding: 5rem 0; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 1.2rem 2.6rem;
  font-family: 'Assistant', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: #121212; color: #fff; }
.btn-primary:hover { background: #2a2a2a; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: #1a1e29; }
.btn-ghost { background: transparent; color: var(--accent-blue); border-color: var(--accent-blue); }
.btn-ghost:hover { background: var(--accent-blue); color: #fff; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo { height: 2.4rem; width: auto; }
.main-nav ul { list-style: none; display: flex; gap: 3.5rem; }
.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-dark);
  z-index: 99;
  padding: 1rem 2.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 1.4rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mobile-nav a:hover { color: #fff; }

/* === Hero Section === */
.hero {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 2.5rem 0;
}
.hero .container { max-width: 75rem; text-align: center; }
.hero-eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 2rem;
  display: block;
}
.hero-text {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}

/* === Plugins Section === */
.plugins-section { background: var(--bg); }
.section-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  display: block;
}
.section-title { font-size: 3rem; margin-bottom: 1.5rem; }
.plugins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.plugin-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.plugin-info .plugin-name {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}
.plugin-info .plugin-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.plugin-info .plugin-desc {
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.plugin-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* === Game Dev Section === */
.gamedev-section { background: var(--bg-2); }
.gamedev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.gamedev-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1rem;
  display: block;
}
.gamedev-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }
.gamedev-content p {
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.gamedev-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* === Consulting / Carousel Section === */
.consulting-section {
  background: var(--bg-dark);
  color: var(--text-inv);
}
.consulting-header {
  padding: 7rem 0 4rem;
  text-align: center;
}
.consulting-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}
.consulting-header h2 { font-size: 3rem; color: #fff; }

.carousel { position: relative; overflow: hidden; }
.carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-item {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}
.carousel-bg {
  width: 100%;
  height: 52rem;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
}
.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 4rem 0 3rem;
}
.carousel-overlay-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.case-eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.8rem;
  display: block;
}
.carousel-overlay h3 { font-size: 2.6rem; color: #fff; margin-bottom: 1.2rem; }
.carousel-overlay p {
  color: rgba(255,255,255,0.82);
  font-size: 1.5rem;
  line-height: 1.75;
  max-width: 62rem;
  margin-bottom: 1.5rem;
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-teal);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.case-link:hover { color: #5dd1df; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem;
}
.carousel-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
  line-height: 1;
}
.carousel-btn:hover { background: rgba(255,255,255,0.22); }
.carousel-dots { display: flex; gap: 0.8rem; align-items: center; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.consulting-cta {
  text-align: center;
  padding: 4rem 0 6rem;
}

/* === Product Page === */
.product-hero { background: var(--bg-2); padding: 3rem 0; }
.breadcrumb { font-size: 1.3rem; color: #888; }
.breadcrumb a { color: #888; text-decoration: underline; }
.breadcrumb span { margin: 0 0.6rem; }

.product-page { padding: 5rem 0 8rem; }
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}
.product-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.product-info { position: sticky; top: calc(var(--header-height) + 2rem); }
.product-vendor {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.8rem;
  display: block;
}
.product-title { font-size: 3.2rem; margin-bottom: 1.2rem; }
.product-price { font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-tagline {
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}
.product-purchase { margin-bottom: 2.5rem; }
.purchase-placeholder {
  display: inline-block;
  padding: 1.4rem 3rem;
  background: #121212;
  color: #fff;
  font-family: 'Assistant', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: default;
  opacity: 0.6;
  margin-bottom: 0.8rem;
}
.purchase-note {
  font-size: 1.3rem;
  color: #888;
  line-height: 1.6;
}
.purchase-note a { color: var(--accent-blue); text-decoration: underline; }

.demo-section { margin-bottom: 2.5rem; }
.demo-section h3 { font-size: 1.5rem; margin-bottom: 1.2rem; font-family: 'Assistant', sans-serif; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; font-size: 1.2rem; color: #666; }
.demo-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--text);
}
.demo-link:hover { background: var(--bg-2); border-color: #bbb; }

.product-features { padding: 6rem 0; background: var(--bg-2); }
.features-title { font-size: 2.4rem; margin-bottom: 1rem; }
.features-intro { font-size: 1.6rem; color: var(--text-muted); margin-bottom: 4rem; max-width: 70rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}
.feature-item {}
.feature-marker {
  width: 3rem;
  height: 3px;
  background: var(--accent-blue);
  margin-bottom: 1.5rem;
}
.feature-item h3 { font-size: 1.7rem; margin-bottom: 0.8rem; font-family: 'Assistant', sans-serif; font-weight: 700; }
.feature-item p { color: var(--text-muted); font-size: 1.5rem; line-height: 1.7; }

/* === Wwise Page === */
.wwise-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 7rem 0 6rem;
}
.wwise-hero h1 { font-size: 3.5rem; margin-bottom: 1.2rem; }
.wwise-hero .hero-sub {
  font-size: 1.8rem;
  opacity: 0.8;
  line-height: 1.7;
  max-width: 60rem;
}

.wwise-content { padding: 6rem 0; }
.wwise-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 6rem;
}
.wwise-intro-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.wwise-intro-text h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.wwise-intro-text p { color: var(--text-muted); font-size: 1.6rem; line-height: 1.75; margin-bottom: 1.5rem; }

.use-cases { margin-bottom: 5rem; }
.use-cases h2 { font-size: 2.4rem; margin-bottom: 3rem; }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.use-case {}
.use-case-marker {
  width: 3rem;
  height: 3px;
  background: var(--accent-teal);
  margin-bottom: 1.2rem;
}
.use-case h3 { font-size: 1.7rem; margin-bottom: 0.8rem; font-family: 'Assistant', sans-serif; font-weight: 700; }
.use-case p { color: var(--text-muted); font-size: 1.5rem; line-height: 1.7; }

.pricing-section { background: var(--bg-2); padding: 5rem 0; margin-bottom: 0; }
.pricing-section h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.pricing-section .pricing-intro { font-size: 1.6rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.7; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-table th, .pricing-table td {
  padding: 1.2rem 1.8rem;
  text-align: left;
  border: 1px solid #ddd;
}
.pricing-table th {
  background: var(--bg-dark);
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}
.pricing-table td:not(:first-child) { text-align: center; }
.pricing-table th:not(:first-child) { text-align: center; }
.pricing-table tr:nth-child(even) td { background: #fff; }
.pricing-note { font-size: 1.4rem; color: #666; line-height: 1.7; }
.pricing-note a { color: var(--accent-blue); text-decoration: underline; }

.downloads-section { padding: 5rem 0; }
.downloads-section h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.downloads-section .dl-intro { font-size: 1.6rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.7; }
.downloads-list { display: flex; flex-direction: column; gap: 1.2rem; max-width: 55rem; }
.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-2);
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}
.download-label { font-size: 1.5rem; font-weight: 600; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-blue);
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 3px;
  transition: background 0.2s;
  text-decoration: none;
}
.download-btn:hover { background: #2a3f96; }
.license-note {
  margin-top: 2.5rem;
  font-size: 1.4rem;
  color: #666;
  line-height: 1.75;
  max-width: 60rem;
}
.license-note a { color: var(--accent-blue); text-decoration: underline; }
.doc-link-section { margin-top: 3rem; }
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent-blue);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}
.doc-link:hover { color: #2a3f96; }

/* === Blog Listing === */
.blog-listing { padding: 6rem 0 8rem; }
.blog-listing-header { margin-bottom: 5rem; border-bottom: 2px solid #eee; padding-bottom: 2.5rem; }
.blog-listing-header h1 { font-size: 3.5rem; }
.listing-note { font-size: 1.6rem; color: var(--text-muted); line-height: 1.75; max-width: 70rem; margin-top: 1.2rem; }
.post-list { display: flex; flex-direction: column; gap: 4rem; }
.post-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 4rem;
}
.post-card:last-child { border-bottom: none; padding-bottom: 0; }
.post-card-image {
  flex: 0 0 22rem;
  overflow: hidden;
  border-radius: 3px;
}
.post-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}
.post-card-image:hover img { opacity: 0.88; }
.post-card-body { flex: 1; min-width: 0; }
.post-meta { font-size: 1.3rem; color: #888; margin-bottom: 0.8rem; }
.post-title { font-size: 2.2rem; margin-bottom: 1rem; }
.post-title a:hover { text-decoration: underline; }
.post-excerpt {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.read-more { font-size: 1.4rem; font-weight: 700; color: var(--accent-blue); text-decoration: underline; }
.read-more:hover { color: #2a3f96; }

/* === Blog Post === */
.blog-post-page { padding: 5rem 0 8rem; }
.post-back { margin-bottom: 3rem; font-size: 1.4rem; }
.post-back a { color: var(--accent-blue); text-decoration: underline; }
.post-back a:hover { color: #2a3f96; }
.post-featured-image { margin-bottom: 4rem; border-radius: 3px; overflow: hidden; }
.post-featured-image img { width: 100%; max-height: 45rem; object-fit: cover; }
.post-header { margin-bottom: 3rem; }
.post-header .post-meta { font-size: 1.4rem; }
.post-header h1 { font-size: 3.5rem; margin-top: 0.8rem; }
.post-body { font-size: 1.6rem; line-height: 1.8; max-width: 75rem; }
.post-body h2 { font-size: 2.4rem; margin: 4rem 0 1.5rem; }
.post-body h3 { font-size: 2rem; margin: 3rem 0 1.2rem; }
.post-body p { margin-bottom: 2rem; }
.post-body a { color: var(--accent-blue); text-decoration: underline; }
.post-body a:hover { color: #2a3f96; }
.post-body ul, .post-body ol { margin: 0 0 2rem 2.5rem; }
.post-body li { margin-bottom: 0.8rem; line-height: 1.7; }
.post-body code {
  font-family: 'Courier New', monospace;
  background: var(--bg-2);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.9em;
}
.post-body .download-block {
  background: var(--bg-2);
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
}
.post-body .download-block h4 { font-family: 'Assistant', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 1.2rem; color: #555; text-transform: uppercase; letter-spacing: 0.05em; }
.post-body .download-block .demo-links { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === Math / Article === */
.math-display {
  overflow-x: auto;
  margin: 2.5rem 0;
  padding: 0.5rem 0;
}
.katex-display { margin: 0 !important; overflow: visible !important; }

/* === Contact Page === */
.contact-page { padding: 6rem 0 8rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.contact-info h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.6rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-info a { color: var(--accent-blue); text-decoration: underline; }
.contact-info a:hover { color: #2a3f96; }
.contact-form-wrap {
  background: var(--bg-2);
  padding: 3.5rem;
  border-radius: 3px;
}
.form-group { margin-bottom: 2rem; }
.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
  color: #444;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.3rem;
  border: 1px solid #ddd;
  font-family: 'Assistant', sans-serif;
  font-size: 1.5rem;
  background: #fff;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(51,79,180,0.1);
}
.form-group textarea { resize: vertical; min-height: 15rem; }
.form-submit { margin-top: 0.5rem; }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1.5rem 2rem;
  border-radius: 3px;
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* === Footer === */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 3rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-subscribe h3 { color: #fff; font-size: 1.5rem; font-family: 'Assistant', sans-serif; font-weight: 700; margin-bottom: 1.5rem; }
.subscribe-form { display: flex; }
.subscribe-form input {
  flex: 1;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Assistant', sans-serif;
  border-right: none;
  min-width: 0;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-form input:focus { outline: none; border-color: rgba(255,255,255,0.4); }
.subscribe-form button {
  padding: 1rem 1.8rem;
  background: rgba(255,255,255,0.9);
  color: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: #fff; }
.footer-logo-wrap { text-align: center; }
.footer-logo-wrap img { height: 2.6rem; margin: 0 auto; }
.footer-social { text-align: right; }
.footer-social h3 { color: #fff; font-size: 1.5rem; font-family: 'Assistant', sans-serif; font-weight: 700; margin-bottom: 1.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-size: 1.4rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-copyright { font-size: 1.3rem; }

/* === Consulting blurb (homepage) === */
.consulting-blurb { background: #e0e2e6; }
.consulting-blurb-text {
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 70rem;
  margin: 0;
}
.consulting-blurb-text a { color: var(--accent-blue); text-decoration: underline; }
.consulting-blurb-text a:hover { color: #2a3f96; }

/* === Page header for inner pages === */
.page-header {
  background: var(--bg-dark);
  color: #fff;
  padding: 5rem 0 4.5rem;
}
.page-header h1 { font-size: 3.5rem; }

/* === Responsive === */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 56.25%; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  .plugins-grid,
  .gamedev-inner,
  .product-layout,
  .wwise-intro-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .gamedev-inner { direction: ltr; }
  .gamedev-image { order: -1; }

  .features-grid,
  .use-cases-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-logo-wrap,
  .footer-social { text-align: left; }

  .carousel-bg { height: 38rem; }
  .hero { padding: 3.5rem 0; }
  .hero-text { font-size: 1.8rem; }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  .post-header h1,
  .product-title,
  .wwise-hero h1,
  .page-header h1,
  .contact-info h1 { font-size: 2.8rem; }

  .product-info { position: static; }
  .section { padding: 5rem 0; }
  .post-card { flex-direction: column; }
  .post-card-image { flex: 0 0 auto; width: 100%; }
}

@media (max-width: 480px) {
  .demo-links { flex-direction: column; }
  .downloads-list { max-width: 100%; }
  .download-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .carousel-overlay p { display: none; }
}
