/* src/styles.scss */
:root {
  --ink-900: #0b1215;
  --ink-800: #131b1f;
  --ink-700: #1b252a;
  --sand-50: #f7f5f2;
  --sand-100: #f1ede7;
  --sand-200: #e6dfd4;
  --teal-400: #1bb5a8;
  --teal-500: #0f9f93;
  --copper-500: #c57a3a;
  --copper-600: #a8642f;
  --gold-300: #ffd487;
  --shadow-soft: 0 12px 40px rgba(7, 13, 15, 0.15);
  --shadow-card: 0 18px 55px rgba(11, 18, 21, 0.18);
}
html,
body {
  height: 100%;
  margin: 0;
  font-family:
    "Sora",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.2vw, 2rem);
}
.btn {
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}
.btn-primary {
  background:
    linear-gradient(
      120deg,
      var(--teal-500),
      var(--teal-400));
  color: black;
  box-shadow: 0 10px 25px rgba(15, 159, 147, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(15, 159, 147, 0.35);
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: var(--ink-900);
  color: white;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}
.app-shell {
  min-height: 100vh;
  background:
    linear-gradient(
      180deg,
      #fcfbf9 0%,
      #f3eee6 100%);
}
.app-shell--sidebar {
  display: grid;
  grid-template-columns: minmax(216px, 252px) minmax(0, 1fr);
  background:
    radial-gradient(
      900px 450px at -10% 10%,
      rgba(27, 181, 168, 0.18),
      transparent 60%),
    radial-gradient(
      850px 420px at 100% 0%,
      rgba(197, 122, 58, 0.16),
      transparent 55%),
    linear-gradient(
      180deg,
      #f8f4ee 0%,
      #f1ebe1 100%);
}
.app-main {
  min-width: 0;
  min-height: 100vh;
  box-sizing: border-box;
}
.app-main--public {
  padding: 0;
}
.app-main--sidebar {
  padding: 1.35rem clamp(0.9rem, 2vw, 1.8rem) 1.8rem;
}
@media (max-width: 960px) {
  .app-shell--sidebar {
    display: block;
  }
  .app-main--sidebar {
    padding: 5.5rem 1rem 1.5rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 15px;
}
body {
  overflow-x: hidden;
  text-wrap: pretty;
}
img,
svg,
canvas,
video {
  max-width: 100%;
  height: auto;
}
a.btn-primary:visited {
  color: black;
  background:
    linear-gradient(
      120deg,
      var(--teal-500),
      var(--teal-400));
  box-shadow: 0 10px 25px rgba(15, 159, 147, 0.35);
}
a.btn:visited {
  text-decoration: none;
}
.btn {
  padding: 0.66rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1.15;
  vertical-align: middle;
  max-width: 100%;
  white-space: normal;
  min-height: 2.35rem;
}
.btn-primary {
  background:
    linear-gradient(
      120deg,
      var(--teal-500),
      var(--teal-400));
  color: black;
  box-shadow: 0 10px 25px rgba(15, 159, 147, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(15, 159, 147, 0.35);
}
.btn-secondary {
  background:
    linear-gradient(
      120deg,
      rgba(27, 181, 168, 0.12),
      rgba(197, 122, 58, 0.06));
  color: var(--ink-900);
  border: 1px solid rgba(11, 18, 21, 0.06);
  box-shadow: 0 6px 18px rgba(15, 159, 147, 0.06);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 159, 147, 0.09);
  background:
    linear-gradient(
      120deg,
      rgba(27, 181, 168, 0.16),
      rgba(197, 122, 58, 0.08));
}
.btn-large {
  padding: 0.82rem 1.35rem;
  font-size: 0.98rem;
}
@media (max-width: 600px) {
  .btn {
    padding: 0.6rem 0.92rem;
    min-height: 2.2rem;
    width: auto;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
