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

:root {
  --primary: #181d26;
  --primary-active: #0d1218;
  --canvas: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #e0e2e6;
  --surface-dark: #181d26;
  --surface-dark-elevated: #1d1f25;
  --hairline: #dddddd;
  --ink: #181d26;
  --body-color: #333840;
  --muted: #41454d;
  --on-primary: #ffffff;
  --link: #1b61c9;
  --link-active: #1a3866;
  --signature-coral: #aa2d00;
  --signature-forest: #0a2e0e;
  --signature-cream: #f5e9d4;
  --signature-peach: #fcab79;
  --signature-mint: #a8d8c4;
  --signature-yellow: #f4d35e;
  --signature-mustard: #d9a441;
  --rounded-xs: 2px;
  --rounded-sm: 6px;
  --rounded-md: 10px;
  --rounded-lg: 12px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-section: 96px;
  --max-width: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--body-color);
  background: var(--canvas);
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-active); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-xxl);
}

.site-nav {
  height: 64px;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  list-style: none;
}

.nav-links a {
  color: var(--body-color);
  font-size: 14px;
}

.nav-links a:hover { color: var(--ink); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--canvas);
  z-index: 200;
  flex-direction: column;
  padding: var(--spacing-xxl);
  gap: var(--spacing-xl);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.nav-mobile-links a {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }

.btn-secondary {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: border-color 0.15s;
}

.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

.btn-legal {
  display: inline-block;
  background: var(--link);
  color: var(--on-primary);
  font-size: 13.12px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: var(--rounded-xs);
  border: none;
  cursor: pointer;
}

.hero-band {
  padding: var(--spacing-section) 0;
  background: var(--canvas);
}

.hero-band h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  max-width: 680px;
  margin-bottom: var(--spacing-lg);
}

.hero-band p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-color);
  max-width: 560px;
  margin-bottom: var(--spacing-xl);
}

.hero-btn-row {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-wrap {
  margin-top: var(--spacing-xxl);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  max-height: 420px;
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.signature-coral-card {
  background: var(--signature-coral);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xxl);
  color: var(--on-primary);
}

.signature-coral-card h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.signature-coral-card p {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: var(--spacing-xl);
  max-width: 540px;
  opacity: 0.9;
}

.signature-forest-card {
  background: var(--signature-forest);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xxl);
  color: var(--on-primary);
}

.signature-forest-card h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.signature-forest-card p {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: var(--spacing-xl);
  max-width: 540px;
  opacity: 0.9;
}

.hero-card-dark {
  background: var(--surface-dark);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xxl);
  color: var(--on-primary);
}

.hero-card-dark h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.hero-card-dark p {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: var(--spacing-xl);
  max-width: 540px;
  opacity: 0.9;
}

.section { padding: var(--spacing-section) 0; }

.section-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: var(--spacing-xxl);
  max-width: 560px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.article-card {
  background: var(--canvas);
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color 0.15s;
}

.article-card:hover { border-color: var(--ink); }

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card-body {
  padding: var(--spacing-md);
}

.article-card-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: var(--spacing-xs);
}

.article-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}

.article-card-meta {
  font-size: 13px;
  color: var(--muted);
}

.article-card-title a { color: var(--ink); }
.article-card-title a:hover { color: var(--link); }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  align-items: start;
}

.demo-card {
  border-radius: var(--rounded-md);
  padding: var(--spacing-md);
}

.demo-card-peach { background: var(--signature-peach); }
.demo-card-mint { background: var(--signature-mint); }
.demo-card-cream { background: var(--signature-cream); }
.demo-card-yellow { background: var(--signature-yellow); }

.demo-card h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}

.demo-card p {
  font-size: 14px;
  color: var(--body-color);
}

.demo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--rounded-sm);
  margin-bottom: var(--spacing-sm);
}

.cta-band-light {
  background: var(--surface-strong);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xxl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.cta-band-light h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  max-width: 560px;
}

.cream-callout {
  background: var(--signature-cream);
  border-radius: var(--rounded-md);
  padding: var(--spacing-lg);
}

.cream-callout h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.cream-callout p {
  font-size: 14px;
  color: var(--body-color);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

.contact-form {
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.form-input {
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  border-radius: var(--rounded-sm);
  padding: 12px 16px;
  height: 44px;
  border: 1px solid var(--hairline);
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
}

.form-input:focus { border-color: #458fff; }

.form-input.full { width: 100%; }

.page-hero {
  padding: var(--spacing-section) 0 var(--spacing-xxl);
  background: var(--canvas);
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--spacing-md);
}

.page-hero p {
  font-size: 18px;
  color: var(--body-color);
  max-width: 640px;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--spacing-xxl) 0 var(--spacing-md);
  line-height: 1.2;
}

.prose h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--spacing-xl) 0 var(--spacing-sm);
  line-height: 1.35;
}

.prose p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: var(--spacing-md);
}

.prose ul {
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.prose li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: var(--spacing-xs);
}

.prose a { color: var(--link); }
.prose a:hover { color: var(--link-active); }

.prose-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--rounded-md);
  margin: var(--spacing-xl) 0;
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--spacing-md);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }

.related-articles {
  padding: var(--spacing-section) 0;
  border-top: 1px solid var(--hairline);
}

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-section) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  margin-top: var(--spacing-sm);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--spacing-md);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
}

.footer-col ul li a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom-links a:hover { color: var(--ink); }

.cookie-banner {
  position: fixed;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-dark);
  color: var(--on-primary);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  max-width: 600px;
  width: calc(100% - var(--spacing-xl) * 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.24);
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.cookie-banner p a { color: var(--on-primary); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: var(--spacing-xs);
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--link);
  color: var(--on-primary);
  font-size: 13.12px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: var(--rounded-xs);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-reject {
  background: transparent;
  color: var(--on-primary);
  font-size: 13.12px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: var(--rounded-xs);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  white-space: nowrap;
}

.disclaimer-bar {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-md) 0;
}

.disclaimer-bar p {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-section);
  align-items: center;
}

.two-col-layout img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--rounded-md);
}

.text-muted { color: var(--muted); }
.text-ink { color: var(--ink); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-xxl { margin-bottom: var(--spacing-xxl); }
.mt-xl { margin-top: var(--spacing-xl); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-sm);
  padding: 4px 8px;
}

.section-divider {
  height: 1px;
  background: var(--hairline);
  border: none;
  margin: 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.team-card {
  background: var(--surface-soft);
  border-radius: var(--rounded-md);
  padding: var(--spacing-xl);
}

.team-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-card p { color: var(--muted); font-size: 14px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--spacing-md); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-band { padding: var(--spacing-xxl) 0; }
  .hero-band h1 { font-size: 28px; }
  .hero-band p { font-size: 16px; }
  .section { padding: var(--spacing-xxl) 0; }
  .grid-3, .grid-2, .demo-grid, .stat-grid, .two-col-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-team-grid { grid-template-columns: 1fr; }
  .cta-band-light { flex-direction: column; align-items: flex-start; }
  .cta-band-light h2 { font-size: 24px; }
  .signature-coral-card h2, .signature-forest-card h2, .hero-card-dark h2 { font-size: 24px; }
  .section-title { font-size: 24px; }
  .page-hero h1 { font-size: 28px; }
  .prose h2 { font-size: 24px; }
  .prose h3 { font-size: 20px; }
  .cookie-banner { flex-direction: column; bottom: var(--spacing-md); }
  .stat-number { font-size: 32px; }
}
