*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,0.85);
  line-height: 1.3;
}
a { color: rgba(0,0,0,0.85); }

/* Nav */
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
}
.nav a {
  text-decoration: none;
  color: rgba(0,0,0,0.5);
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: rgba(0,0,0,0.85); }

/* Split layout */
.split { display: flex; min-height: 100vh; }
.split-left {
  width: 50%;
  background: url('/bg.png') center/cover no-repeat;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
}
.split-right {
  width: 50%;
  margin-left: 50%;
  background: #fff;
  padding: 40px 45px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

/* Logo */
.logo img { width: 60px; height: auto; display: block; }
.site-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
  margin-top: 16px;
  letter-spacing: -0.5px;
}
.pronunciation {
  font-size: 14px;
  margin-top: 6px;
  color: rgba(0,0,0,0.7);
}
.definition { margin-top: 12px; }
.definition .noun { color: rgba(0,0,0,0.45); font-style: italic; }
.definition .meaning { color: rgba(0,0,0,0.36); line-height: 1.35; }

hr { border: none; height: 1px; background: rgba(0,0,0,0.5); margin: 20px 0; }

/* Two column content area */
.content-area {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.content-left { flex: 1; min-width: 0; }
.content-right {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content-left h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.content-left .desc {
  margin-top: 14px;
  line-height: 1.4;
  font-size: 14px;
}
.content-left .desc a { text-decoration: underline; }
.services-label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
}
.marquee-wrap {
  overflow: hidden;
  margin-top: 8px;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.case-studies { margin-top: 16px; font-size: 14px; }
.case-studies .label { font-style: italic; font-weight: 600; }
.case-studies .locations { margin-top: 6px; }
.case-studies .locations a { text-decoration: underline; }

.maria-photo {
  width: 100%;
  border: 2px solid rgba(0,0,0,0.85);
  display: block;
}
.founder-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 12px;
}
.founder-title {
  font-weight: 400;
  font-size: 14px;
}
.role-note {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(0,0,0,0.6);
}
.button-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}
.button-stack .contact-btn {
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 8px 10px;
}
.contact-btn {
  display: inline-block;
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0,0,0,0.85);
  background: #fff;
  border: 2px solid rgba(0,0,0,0.85);
  padding: 8px 14px;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.85);
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.contact-btn:hover { box-shadow: 2px 2px 0 rgba(0,0,0,0.85); }
.contact-btn.secondary {
  background: #f8f8f8;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  border-color: rgba(0,0,0,0.65);
  color: rgba(0,0,0,0.75);
}
.contact-btn.secondary:hover {
  box-shadow: 1px 1px 0 rgba(0,0,0,0.45);
}

/* AI Teaser on homepage */
.ai-teaser {
  margin-top: 28px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 3px solid rgba(0,0,0,0.85);
}
.ai-teaser h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ai-teaser p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.6);
  margin-bottom: 10px;
}
.ai-teaser a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ========== FULL PAGE LAYOUT (non-split pages) ========== */
.page-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
}
.page-wrap .nav {
  margin-bottom: 40px;
}
.page-header {
  margin-bottom: 40px;
}
.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.page-header .subtitle {
  font-size: 16px;
  color: rgba(0,0,0,0.5);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 600px;
}
.section-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.section-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  padding: 22px;
}
.section-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.7);
}
.section-card p + p { margin-top: 10px; }
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: rgba(0,0,0,0.7);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.proof-card {
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 16px;
  background: #fafafa;
}
.proof-card .metric {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.proof-card .label {
  display: block;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  margin-top: 6px;
  line-height: 1.35;
}
.video-card {
  margin-bottom: 24px;
}
.video-frame {
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
  overflow: hidden;
}
.video-frame-inner {
  aspect-ratio: 16 / 9;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.video-frame-inner p {
  margin: 0;
  max-width: 640px;
}
.video-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 5px 8px;
  border-radius: 999px;
}
.text-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.text-list li {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.text-list li:last-child { border-bottom: none; }
.text-list li strong { font-weight: 600; }
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.resource-links a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.kicker {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  margin-bottom: 8px;
}
.muted-note {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0,0,0,0.5);
  margin-top: 10px;
}

/* ========== TOOL CARDS ========== */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.tool-card {
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  border-top: 4px solid #ccc;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tool-card:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.tool-card.accent-green { border-top-color: #00B4AB; }
.tool-card.accent-blue { border-top-color: #0066FF; }
.tool-card.accent-gradient { border-top: 4px solid; border-image: linear-gradient(90deg, #00B4AB, #0066FF, #8B5CF6) 1; }
.tool-card.full-width { grid-column: 1 / -1; }

.tool-card .icon { font-size: 28px; margin-bottom: 12px; }
.tool-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tool-card .card-subtitle {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 12px;
  font-weight: 500;
}
.tool-card .card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.65);
  margin-bottom: 14px;
}
.tool-card .features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tool-card .features li {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  background: #f3f4f6;
  border-radius: 20px;
  color: rgba(0,0,0,0.6);
}
.tool-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f0fdf4;
  color: #16a34a;
}
.tool-card .tag.dev {
  background: #fef3c7;
  color: #b45309;
}

.cta-section {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 40px;
}
.cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section p {
  color: rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.cta-section .contact-btn {
  font-size: 16px;
}
.cta-section .link-row {
  justify-content: center;
}

/* ========== ABOUT PAGE ========== */
.about-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.about-photo {
  width: 260px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 2px solid rgba(0,0,0,0.85);
}
.about-content h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.4);
  margin-top: 24px;
  margin-bottom: 10px;
}
.about-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.about-content ul {
  list-style: none;
  padding: 0;
}
.about-content ul li {
  font-size: 14px;
  padding: 4px 0;
  line-height: 1.5;
}
.about-content ul li::before {
  content: "→ ";
  color: rgba(0,0,0,0.3);
}
.social-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}
.contact-item h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.35);
  margin-bottom: 6px;
}
.contact-item p, .contact-item a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.contact-item a { text-decoration: underline; }

.page-footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 12px;
  color: rgba(0,0,0,0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .split-left {
    position: relative;
    width: 100%;
    height: 50vh;
  }
  .split-right {
    width: 100%;
    margin-left: 0;
    padding: 30px 20px;
  }
  .split { flex-direction: column; }
  .content-area { flex-direction: column; }
  .content-right { width: 100%; }
  .maria-photo { max-width: 200px; }
  .site-title { font-size: 30px; }
  .button-stack { width: 100%; }
  .button-stack .contact-btn { width: 100%; text-align: center; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card.full-width { grid-column: auto; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .section-grid { grid-template-columns: 1fr; }
  .about-layout { flex-direction: column; }
  .about-photo { width: 100%; max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-wrap { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .marquee-inner {
    animation: none;
    transform: none;
  }
  .tool-card,
  .contact-btn,
  .nav a {
    transition: none !important;
  }
}
