@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;1,400;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --accent-color: #ffffff;
  
  --font-primary: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --nav-height: 80px;
  --site-padding: 4vw;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

.aws-logos img {
  max-height: 45px;
  opacity: 0.8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-section h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.mono {
  font-family: var(--font-mono);
}

.text-white {
  color: #ffffff;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  padding: 0 var(--site-padding);
  background: #000;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Footer */
footer {
  padding: 10rem var(--site-padding) 4rem var(--site-padding);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.aws-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  gap: 1.5rem;
}

.hero-section .aws-section {
  margin-top: 4rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.marquee span {
  display: inline-block;
  padding-left: 2rem;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-primary);
  white-space: pre;
}

/* Pill Button */
.btn-pill {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--text-primary);
  color: var(--bg-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-pill:hover {
  opacity: 0.8;
  color: var(--bg-color);
}

/* Layout */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

main {
  padding-top: calc(var(--nav-height) + 4rem);
  margin-top: 0;
  flex: 1;
  min-height: calc(100vh - var(--nav-height));
}

@media (max-width: 900px) {
  nav { display: none; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-info { text-align: left; }
}
