/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #f7fbfb;
  --bg-2: #fff;
  --text: #0c2830;
  --muted: #33535f;
  --accent: #1aa6a0;
  --accent-strong: #0d7a74;
  --soft: #d8f3f0;
  --card: #fff;
  --border: #cce5e8;
  --shadow: 0 16px 45px #0c28301f;
  --glow: 0 0 0 12px #1aa6a014;
  --gradient: linear-gradient(135deg, #d8f3f0 0%, #f5fbff 50%, #d6f0ff 100%);
}

[data-theme="dark"] {
  --bg: #0b1418;
  --bg-2: #101c22;
  --text: #e7f4f4;
  --muted: #9fb8bf;
  --accent: #22d3c5;
  --accent-strong: #1a9c91;
  --soft: #123036;
  --card: #0f1a1f;
  --border: #1d3239;
  --shadow: 0 16px 45px #00000073;
  --glow: 0 0 0 12px #22d3c50f;
  --gradient: linear-gradient(135deg, #0f1d23 0%, #122a33 50%, #0d1a21 100%);
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Segoe UI, Helvetica Neue, sans-serif;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  color: #0c2830;
  background: #c4efea;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/