/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #0a1628;
  --bg-section: #0d1f3c;
  --bg-card: rgba(255, 255, 255, 0.04);
  --teal: #00c4a1;
  --teal-hover: #00d4af;
  --teal-dim: rgba(0, 196, 161, 0.12);
  --teal-border: rgba(0, 196, 161, 0.25);
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  --radius: 12px;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.teal {
  color: var(--teal);
}

.muted {
  color: var(--text-muted);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #0a1628;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-primary:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-outline:hover {
  background: var(--teal-dim);
}

/* ── Tags / chips ────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Section labels ──────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Section shared padding ──────────────────────────────────── */
section {
  padding: 96px 0;
}

/* ── Responsive helpers ──────────────────────────────────────── */
@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

