@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-primary: #faf9f6; /* Warm off-white page background */
  --bg-secondary: #f4f4f2; /* Brand warm white card background */
  --bg-tertiary: #ebeae6; /* Slightly darker warm gray/cream */
  --border-subtle: rgba(24, 24, 27, 0.08);
  --border-focus: rgba(24, 24, 27, 0.18);
  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #71717a;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Custom HTML Brand Logo classes */
.logo-word {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text-primary);
}
.logo-swoosh {
  margin-top: -2px;
  height: 6px;
  border-bottom: 2px solid var(--text-primary);
  border-radius: 50%;
}
.logo-tagline {
  font-size: 9px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1px;
  line-height: 1;
}

/* Navigation items hover effect */
.nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--text-primary);
}

/* Sticky Header (with subtle drop shadow instead of bottom border on scroll) */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 250, 246, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s ease;
}

/* Brand panels and cards (No pure white) */
.glass-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(24, 24, 27, 0.02);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: var(--border-focus);
  box-shadow: 0 8px 30px rgba(24, 24, 27, 0.04);
}

/* Pill buttons matching Cursor.com but styled as solid Black */
.btn-pill-primary {
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 14px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}
.btn-pill-primary:hover {
  background-color: #27272a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.btn-pill-primary:active {
  transform: scale(0.98);
}

.btn-pill-secondary {
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 14px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}
.btn-pill-secondary:hover {
  background-color: #27272a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.btn-pill-secondary:active {
  transform: scale(0.98);
}

/* Headers */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* App windows */
.mac-window {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-secondary);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(24, 24, 27, 0.04);
}

.mac-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mac-dot-red { background-color: #ef4444; }
.mac-dot-yellow { background-color: #f59e0b; }
.mac-dot-green { background-color: #10b981; }

/* Tech badge styling */
.tech-badge {
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Mockup Specific Styles */
.mockup-column-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
}
.mockup-input:focus {
  border-color: var(--border-focus);
}

.chat-bubble-user {
  background-color: #18181b;
  color: #ffffff;
  border-radius: 12px 12px 2px 12px;
  padding: 10px 14px;
  font-size: 13px;
  align-self: flex-end;
  max-width: 85%;
  line-height: 1.4;
}

.chat-bubble-ai {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px 12px 12px 2px;
  padding: 10px 14px;
  font-size: 13px;
  align-self: flex-start;
  max-width: 85%;
  line-height: 1.4;
}
