/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f4efe7;
  --panel: rgba(255, 252, 247, 0.82);
  --panel-strong: #fffdf9;
  --text: #1f1b17;
  --muted: #61574e;
  --line: rgba(31, 27, 23, 0.12);
  --accent: #ca5f2a;
  --accent-soft: rgba(202, 95, 42, 0.12);
  --font-display: "Trebuchet MS", "Avenir Next", sans-serif;
  --font-body: "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(202, 95, 42, 0.18), transparent 35%),
    radial-gradient(circle at right, rgba(29, 70, 112, 0.12), transparent 30%),
    var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

code,
pre {
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

.shell {
  min-height: 100vh;
  padding: 32px 20px;
}

.hero-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(31, 27, 23, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 0.95;
}

h2 {
  font-size: 1.15rem;
}

.lede {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.placeholder-form,
.grid {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin-top: 28px;
}

.placeholder-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.placeholder-form label,
.panel {
  padding: 18px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.placeholder-form label {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  font-weight: 600;
}

.placeholder-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f2ea;
}

.placeholder-form button {
  min-height: 54px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ca5f2a, #e38a3a);
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.placeholder-form button:disabled {
  opacity: 0.78;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-links a,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.panel {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

pre {
  overflow: auto;
  margin: 0;
  padding: 18px;
  border-radius: 16px;
  background: #201d1a;
  color: #f6efe6;
}

@media (max-width: 640px) {
  .hero-card {
    padding: 22px;
    border-radius: 22px;
  }

  .shell {
    padding: 16px;
  }
}


