:root {
  color-scheme: light;
  --background: #f7f4ee;
  --surface: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --line: #e4ddd1;
  --accent: #1a73e8;
  --accent-dark: #1558b0;
  --warm: #f2d9a2;
  --shadow: 0 20px 60px rgba(32, 33, 36, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(242, 217, 162, 0.45), transparent 36rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 238, 0.86);
  border-bottom: 1px solid rgba(228, 221, 209, 0.8);
}

.identity-bar {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.identity-bar.signed-in {
  color: #155724;
  font-weight: 700;
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-weight: 650;
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
}

button,
.secondary-action,
.primary-action {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.nav-button {
  background: var(--accent);
  color: white;
  padding: 0.65rem 1rem;
}

.nav-button.secondary {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem 1rem 4rem;
}

.hero.compact {
  padding-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.25rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.primary-action {
  background: var(--text);
  color: white;
  padding: 0.95rem 1.35rem;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  color: var(--text);
  padding: 0.95rem 1.35rem;
  box-shadow: inset 0 0 0 1px var(--line);
}

.secondary-action:hover {
  text-decoration: none;
}

.section {
  max-width: 1080px;
  margin: 0 auto 1.25rem;
  padding: 2rem 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.two-column > div,
.card,
.callout,
.contact-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-height: 220px;
}

.callout {
  background:
    linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(242, 217, 162, 0.5)),
    var(--surface);
}

.inline-example {
  font-weight: 800;
}

.contact-panel {
  max-width: 760px;
}

.footer {
  max-width: 1080px;
  margin: 4rem auto 0;
  padding: 2rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}
