@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Sora:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --brand-primary: #2074bb;
  /* Mariner */
  --brand-secondary: #cc1f26;
  /* Cardinal */
  --brand-dark: #071A3A;
  /* Denim */
  --brand-light: #f5f8fa;
  /* Pale grey-blue */
  --brand-accent: #d46c74;
  /* New York Pink */
  --brand-white: #ffffff;
  --brand-text: #1e293b;
  /* Slate 800 */
  --brand-muted: #64748b;
  /* Slate 500 */
  --brand-border: #cbd5e1;
  /* Slate 300 */
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--brand-text);
  background-color: var(--brand-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-primary);
}

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

.table-tech {
  font-family: 'JetBrains Mono', monospace;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--brand-light);
}

.section-dark {
  background: var(--brand-primary);
  color: var(--brand-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--brand-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}