:root {
  --page-bg: #f4f7fb;
  --text: #101828;
  --muted: #5d6677;
  --panel: #ffffff;
  --brand: #2563eb;
  --brand-dark: #163ea5;
  --line: rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.minimal-home {
  min-height: 100vh;
  overflow-x: hidden;
}

.minimal-home-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
}

.minimal-home-main .grid-container {
  width: 100%;
}

.minimal-home-main .grid-x {
  width: 100%;
}

.wordmark-title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.4rem, 10vw, 10rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 39.9375em) {
  .wordmark-title {
    font-size: clamp(2.25rem, 10vw, 4.5rem);
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(244, 247, 251, 0.76);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.site-logo {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-logo:hover,
.site-nav a:hover {
  color: var(--brand-dark);
}

.site-top-bar {
  min-height: 74px;
  background: transparent;
}

.site-top-bar .menu {
  background: transparent;
}

.site-top-bar .menu-text {
  padding-left: 0;
}

.site-top-bar .menu a {
  color: var(--muted);
  font-weight: 800;
}

.site-top-bar .menu a:hover,
.site-top-bar .menu a:focus {
  color: var(--brand-dark);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.hero-section {
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: 9rem 0 5rem;
}

.dev-components {
  padding-top: 0;
}

.dev-callout {
  border-radius: 8px;
}

.dev-callout h2,
.dev-dummy-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
}

.dev-dummy-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-text {
  max-width: 46rem;
  margin: 1.8rem 0 2.2rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  gap: 0.9rem;
}

.button.primary {
  background: var(--brand);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--brand-dark);
}

.button.hollow {
  border-color: rgba(37, 99, 235, 0.55);
  color: var(--brand-dark);
}

.section-panel {
  padding: 5rem 0 6rem;
}

.not-found-page .section-panel {
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding-top: 8rem;
}

.not-found-page h1 {
  max-width: none;
}

.not-found-text {
  max-width: 34rem;
  margin: 1.3rem auto 2rem;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

.feature-card {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

.feature-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-weight: 900;
}

.feature-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media screen and (max-width: 39.9375em) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero-section {
    min-height: 80vh;
    padding-top: 10rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }
}
