/* Base styles */
:root {
  --background: #ffffff;
  --foreground: #000000;
  --muted-foreground: #666666;
  --link: #7262ff;
  --light-grey: #9ca3af;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

/* Typography */
.font-serif {
  font-family: Georgia, serif;
  font-weight: 400;
}

.text-link {
  color: var(--link);
}

/* Layout */
.max-w-xl {
  max-width: 42rem;
  margin: 0 auto;
}

/* Spacing */
.p-4 {
  padding: 1.5rem;
}

.md\:p-12 {
  @media (min-width: 768px) {
    padding: 3rem;
  }
}

.mt-8 {
  margin-top: 2.5rem;
}

.mb-8 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* Header & Navigation */
header {
  margin-bottom: 3rem;
}

header a.text-3xl {
  font-size: 2.25rem;
  text-decoration: none;
  color: var(--foreground);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--link);
  color: var(--link);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
  border-bottom-width: 2px;
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:items-center {
    align-items: center;
  }
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1.5rem;
}

/* Grid */
.grid {
  display: grid;
}

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

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

.gap-y-1 {
  row-gap: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-left: 1rem;
  border-left: 1px solid #E5E7EB;
}

.timeline-dot {
  position: absolute;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--foreground);
  border-radius: 50%;
  border: 2px solid var(--background);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem;
  transition: all 0.2s;
}

.timeline-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.timeline-date {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.timeline-title {
  font-weight: 600;
  margin: 0.5rem 0;
}

.timeline-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.founder-involvement {
  color: var(--light-grey);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Cards */
.card {
  padding: 1.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.card-highlight {
  border: 1px solid #000;
  box-shadow: 3px 3px 0 #000;
}

.card-highlight:hover {
  box-shadow: 5px 5px 0 #000;
  transform: translateY(-1px);
}

/* Team section */
.team-grid {
  margin-top: 1rem;
}

.team-member {
  font-size: 0.875rem;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.team-member a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.team-member a:hover {
  color: var(--foreground);
}

/* Footer */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--foreground);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

/* Links */
.underline {
  text-decoration-line: underline;
}

.underline-offset-8 {
  text-underline-offset: 2rem;
}

.hover\:decoration-2:hover {
  text-decoration-thickness: 2px;
}

.hover\:decoration-foreground:hover {
  text-decoration-color: var(--foreground);
}

.hover\:text-foreground:hover {
  color: var(--foreground);
}

.hover\:decoration-foreground\/50:hover {
  text-decoration-color: rgba(var(--foreground), 0.5);
}

.hover\:text-foreground\/70:hover {
  color: rgba(var(--foreground), 0.7);
}

/* Cards and borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-black {
  border-color: #000000;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-t {
  border-top-width: 1px;
}

/* Shadows */
.shadow-\[3px_3px_0px_\#000\] {
  box-shadow: 3px 3px 0px #000;
}

.hover\:shadow-\[5px_5px_0px_\#000\]:hover {
  box-shadow: 5px 5px 0px #000;
}

/* Transitions */
.transition-all {
  transition-property: all;
}

/* Text styles */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* Utilities */
.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Timeline styles */
.border-l {
  border-left-width: 1px;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.size-\[7px\] {
  width: 7px;
  height: 7px;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.outline {
  outline-width: 1px;
  outline-style: solid;
}

.outline-2 {
  outline-width: 2px;
}

.outline-background {
  outline-color: var(--background);
}

/* Before/After pseudo-elements */
.before\:h-6::before {
  content: "";
  height: 1.5rem;
}

.before\:w-px::before {
  width: 1px;
}

.before\:bg-gradient-to-t::before {
  background-image: linear-gradient(to top, transparent, var(--background));
}

.after\:h-6::after {
  content: "";
  height: 1.5rem;
}

.after\:w-px::after {
  width: 1px;
}

.after\:bg-gradient-to-b::after {
  background-image: linear-gradient(to bottom, transparent, var(--background));
}

/* Hover states */
.hover\:bg-background-hover:hover {
  background-color: rgba(var(--foreground), 0.05);
}

.group:hover .group-hover\:shadow-\[5px_5px_0px_\#000\] {
  box-shadow: 5px 5px 0px #000;
} 