:root {
  --bg: #fbf8f3;
  --bg-soft: #f4eee5;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #fffdf8;
  --surface-alt: #efe6da;
  --panel: #f7f0e7;
  --panel-deep: #e8dccb;
  --border: rgba(43, 35, 29, 0.12);
  --border-strong: rgba(43, 35, 29, 0.2);
  --text: #161616;
  --text-soft: #5d544b;
  --text-muted: #7a7067;
  --accent: #c46a3c;
  --accent-deep: #8f4a28;
  --accent-soft: rgba(196, 106, 60, 0.12);
  --olive: #6f7756;
  --shadow-sm: 0 18px 40px rgba(32, 23, 18, 0.07);
  --shadow-md: 0 28px 80px rgba(32, 23, 18, 0.12);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(196, 106, 60, 0.11), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 119, 86, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #fbf8f3 30%, #f5eee5 100%);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 0 0;
}

.legal-card, .article-card, .article-cta {
  margin-bottom: 2rem;
}

.section--tight {
  padding: 3.5rem 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading--compact {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-copy h1,
.site-footer h2,
.article-hero__inner h1,
.product-hero__copy h1,
.legal-card h1,
.legal-card h2,
.product-card h3,
.studio-card h3,
.support-card h3,
.journal-card h3,
.quote-card blockquote,
.feature-story__copy h3,
.showcase-card h3,
.article-cta h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.section-heading h2,
.site-footer h2,
.manifesto-copy h2,
.product-hero__copy h1,
.page-hero__inner h1,
.article-hero__inner h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p,
.hero-copy p,
.hero-note,
.manifesto-copy p,
.product-card p,
.studio-card p,
.support-card p,
.journal-card p,
.footer-card p,
.legal-card p,
.legal-card li,
.article-card p,
.article-card li,
.article-cta p,
.page-hero__inner p,
.product-hero__copy p,
.product-footnote,
.quote-card p,
.feature-story__copy p,
.showcase-card p,
.site-footer__lede {
  margin: 0;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fffaf3;
  background: var(--accent);
  box-shadow: 0 18px 35px rgba(143, 74, 40, 0.18);
}

.button--primary:hover {
  background: var(--accent-deep);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border);
}

.button--secondary:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.button--nav,
.button--block {
  color: #fffaf3;
  background: var(--text);
}

.button--nav:hover,
.button--block:hover {
  background: #2b2b2b;
}

.button--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(32, 23, 18, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled .site-header__inner {
  background: rgba(255, 251, 245, 0.96);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0.5rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 234, 224, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-mark__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark__text {
  display: grid;
  gap: 0.08rem;
}

.brand-mark__text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

.brand-mark__text small {
  color: var(--text-muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a,
.mobile-nav a {
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav a.is-active,
.site-nav a:hover,
.mobile-nav a.is-active,
.mobile-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  padding: 0.3rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav {
  margin-top: 0.7rem;
}

.mobile-nav__inner {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--shadow-md);
}

.hero {
  padding: 2.2rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem 0 0.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  max-width: 11.5ch;
}

.hero-copy > p {
  max-width: 58ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.hero-note {
  max-width: 58ch;
  padding-top: 0.25rem;
  font-size: 0.95rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span,
.hero-card__actions span,
.card-tag,
.platform-badge,
.support-list li::before {
  font-weight: 700;
}

.hero-badges span {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 35, 29, 0.1);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-card,
.platform-panel,
.manifesto-panel,
.support-card,
.product-card,
.studio-card,
.journal-card,
.quote-card,
.legal-card,
.article-card,
.article-cta,
.metric-card,
.showcase-card,
.feature-story {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hero-card {
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 235, 224, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
}

.hero-card__window {
  display: grid;
  min-height: 100%;
}

.hero-card__window-top {
  display: flex;
  gap: 0.45rem;
  padding: 1.1rem 1.2rem 0;
}

.hero-card__window-top span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(43, 35, 29, 0.16);
}

.hero-card__dashboard {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem 1rem 1rem;
}

.hero-card__lead {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 249, 242, 0.78);
  border: 1px solid rgba(43, 35, 29, 0.08);
}

.hero-card__lead small,
.hero-stat small,
.showcase-metric small,
.journal-card time,
.article-meta,
.footer-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.hero-card__lead strong,
.hero-stat strong,
.showcase-metric strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.05em;
}

.hero-card__lead p,
.hero-stat span,
.showcase-metric span {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-stat,
.showcase-metric {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(43, 35, 29, 0.08);
}

.hero-product-grid {
  display: grid;
  gap: 0.75rem;
}

.hero-product {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(38, 28, 20, 0.98);
  color: #f8efe3;
}

.hero-product:nth-child(2) {
  background: linear-gradient(135deg, #b06037, #8f4a28);
}

.hero-product:nth-child(3) {
  background: linear-gradient(135deg, #5b6249, #414634);
}

.hero-product small {
  color: rgba(248, 239, 227, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-product strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.hero-product span {
  font-size: 0.9rem;
}

.hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-card__actions span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(43, 35, 29, 0.08);
  font-size: 0.82rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-strip {
  padding: 0 0 2rem;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1.35rem;
}

.metric-card small {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.metric-card p {
  margin: 0;
  color: var(--text-soft);
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.66fr);
  gap: 1.2rem;
  padding: 1.4rem;
  margin-bottom: 1.2rem;
}

.feature-story__copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.feature-story__copy h3 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.feature-story__copy p {
  max-width: 58ch;
}

.feature-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.feature-story__meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-story__panel {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.showcase-card {
  padding: 1.2rem;
}

.showcase-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.showcase-metrics {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.products-grid {
  display: grid;
  gap: 1rem;
}

.products-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.product-card h3 {
  font-size: 1.2rem;
}

.product-card--portfolio {
  align-content: start;
}

.product-card__meta {
  display: grid;
  gap: 0.45rem;
}

.product-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-card__meta-row span {
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.05);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.06);
  color: var(--text-soft);
  font-size: 0.78rem;
}

.feature-list,
.platform-points,
.support-list,
.legal-card ul,
.article-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.platform-points li,
.support-list li,
.legal-card ul li,
.article-card ul li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.feature-list li::before,
.platform-points li::before,
.support-list li::before,
.legal-card ul li::before,
.article-card ul li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.product-footnote {
  padding-top: 0.2rem;
  font-size: 0.95rem;
}

.product-link,
.journal-link,
.article-back,
.footer-link {
  width: fit-content;
  color: var(--accent-deep);
  font-weight: 700;
}

.product-link:hover,
.journal-link:hover,
.article-back:hover,
.footer-link:hover {
  color: var(--accent);
}

.platform-panel,
.manifesto-panel {
  padding: 1.5rem;
}

.company-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.company-snapshot__copy {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.platform-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.platform-copy,
.manifesto-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.platform-grid,
.studio-grid,
.journal-grid,
.support-grid {
  display: grid;
  gap: 1rem;
}

.platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-grid--compact {
  align-content: start;
}

.platform-module,
.studio-card {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(43, 35, 29, 0.08);
}

.platform-module strong,
.studio-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.platform-badge {
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  color: var(--accent-deep);
  background: var(--accent-soft);
  font-size: 0.77rem;
}

.quote-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(38, 28, 20, 0.98), rgba(64, 47, 35, 0.98));
  color: #f8efe3;
}

.quote-card blockquote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.quote-card p {
  color: rgba(248, 239, 227, 0.78);
}

.studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-grid--compact {
  gap: 0.9rem;
}

.journal-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
}

.journal-card h3 {
  font-size: 1.08rem;
}

.journal-card--feature {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(243, 232, 218, 0.94));
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid--home {
  align-items: start;
}

.support-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.support-card--highlight {
  background: linear-gradient(135deg, rgba(239, 230, 218, 0.84), rgba(248, 241, 233, 0.94));
}

.page-hero,
.article-hero {
  padding: 3.4rem 0 2rem;
}

.page-hero__inner,
.article-hero__inner {
  padding: 2rem 0 1rem;
}

.page-hero--product .product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
}

.product-hero__copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  margin-top: 1.5rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-meta span:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--border-strong);
  display: inline-block;
}

.article-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.article-actions .button {
  width: auto;
  min-width: 200px;
}

.article-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: start;
}

.legal-card,
.article-card,
.article-cta {
  padding: 1.6rem;
}

.legal-card,
.article-card {
  display: grid;
  gap: 1rem;
}

.legal-card h2,
.article-card h2 {
  font-size: 1.5rem;
}

.article-card blockquote {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(196, 106, 60, 0.08);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.14rem;
  line-height: 1.4;
}

.article-cta {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 7rem;
}

.article-actions {
  display: flex;
  gap: 0.8rem;
}

.site-footer {
  padding: 2rem 0 2.2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.65fr));
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.98), rgba(43, 35, 29, 0.98));
  box-shadow: var(--shadow-md);
}

.site-footer__intro,
.footer-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.site-footer .eyebrow,
.site-footer h2,
.site-footer__lede,
.footer-card p,
.footer-link,
.site-footer__meta p {
  color: #f3e8db;
}

.site-footer .eyebrow {
  color: rgba(243, 232, 219, 0.72);
}

.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-footer__lede,
.footer-card p,
.site-footer__meta p {
  color: rgba(243, 232, 219, 0.72);
}

.footer-label {
  text-transform: uppercase;
}

/* --- Product Studio & Bento Grid Extensions --- */

:root {
  --studio-950: #0f172a;
  --studio-900: #1e293b;
  --studio-600: #475569;
  --studio-50: #f8fafc;
  --brand: #c46a3c;
}

.glass-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--studio-950);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
}

.btn-primary:hover {
  background: var(--studio-900);
}

.btn-secondary {
  background: white;
  color: var(--studio-950);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  background: var(--studio-50);
  border-color: rgba(15, 23, 42, 0.2);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: var(--studio-50);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.05);
}

.col-span-8 { grid-column: span 8; }
.col-span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

@media (max-width: 768px) {
  .col-span-8, .col-span-4 { grid-column: span 1; }
  .row-span-2 { grid-row: span 1; }
}

/* Utility Fallbacks */
.bg-studio-950 { background-color: var(--studio-950); }
.text-white { color: white; }
.bg-white { background-color: white; }
.bg-studio-50 { background-color: var(--studio-50); }
.text-brand { color: var(--brand); }
.text-studio-950 { color: var(--studio-950); }
.text-studio-600 { color: var(--studio-600); }
.font-heading { font-family: "Plus Jakarta Sans", sans-serif; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.025em; }

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-20 { padding-top: 5rem; }
.pb-12 { padding-bottom: 3rem; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.uppercase { text-transform: uppercase; }
.inline-flex { display: inline-flex; }
.gap-2 { gap: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.text-brand { color: var(--brand); }
.bg-brand\/10 { background-color: rgba(196, 106, 60, 0.1); }
.border-brand\/20 { border-color: rgba(196, 106, 60, 0.2); }
.tracking-wider { letter-spacing: 0.05em; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.text-5xl { font-size: 3rem; }
.font-extrabold { font-weight: 800; }
.text-studio-950 { color: var(--studio-950); }
.leading-\[1\.1\] { line-height: 1.1; }
.text-xl { font-size: 1.25rem; }
.text-studio-600 { color: var(--studio-600); }
.mb-10 { margin-bottom: 2.5rem; }
.max-w-2xl { max-width: 42rem; }
.flex-col { flex-direction: column; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-brand\/5 { --tw-gradient-from: rgba(196, 106, 60, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 106, 60, 0)); }
.blur-3xl { filter: blur(64px); }
.pt-24 { padding-top: 6rem; }
.bg-white { background-color: #fff; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-studio-100 { border-color: rgba(15, 23, 42, 0.1); }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.bg-studio-950 { background-color: var(--studio-950); }
.pt-12 { padding-top: 3rem; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.text-studio-500 { color: #64748b; }
.text-xs { font-size: 0.75rem; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.block { display: block; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:items-end { align-items: flex-end; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:text-7xl { font-size: 4.5rem; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .company-snapshot,
  .platform-panel,
  .manifesto-panel,
  .page-hero--product .product-hero,
  .article-layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid,
  .portfolio-grid,
  .studio-grid,
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-story {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 4.7rem 0;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .brand-mark__text small {
    display: none;
  }

  .proof-strip__grid,
  .platform-grid,
  .portfolio-grid,
  .products-grid--two,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .site-header {
    padding-top: 0.6rem;
  }

  .site-header__inner {
    padding: 0.9rem 1rem;
  }

  .hero {
    padding: 1.8rem 0 2.3rem;
  }

  .section-heading h2,
  .site-footer h2,
  .manifesto-copy h2,
  .product-hero__copy h1,
  .page-hero__inner h1,
  .article-hero__inner h1 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-card__stats,
  .proof-strip__grid,
  .portfolio-grid,
  .studio-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .feature-story,
  .platform-panel,
  .manifesto-panel,
  .support-card,
  .product-card,
  .journal-card,
  .legal-card,
  .article-card,
  .article-cta {
    padding: 1.2rem;
  }

  .hero-card__dashboard {
    padding: 0.9rem;
  }
}
