/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../app/shared-node-modules/.pnpm/next@16.1.6_@babel+core@7.29.0_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!../../app/shared-node-modules/.pnpm/next@16.1.6_@babel+core@7.29.0_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./app/globals.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --wg-accent: #7c3aed;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.hero {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.eyebrow {
  color: var(--wg-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0.75rem 0;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.subtitle {
  margin: 0 auto;
  color: #475569;
  max-width: 62ch;
}

.cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 1.1rem;
  border-radius: 0.6rem;
  color: white;
  background: var(--wg-accent);
  font-weight: 600;
  text-decoration: none;
}

.grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
}

