@charset "UTF-8";

/* src/styles.scss */
:root {
  --beige-1: #f4f1ec;
  --beige-2: #faf8f4;
  --beige-3: #ede9e3;
  --aqua-1: #9fe0d0;
  --aqua-2: #38e6d2;
  --aqua-3: #0aaea2;
  --lila-1: #cbb7f5;
  --lila-2: #b79cff;
  --lila-3: #7c4dff;
  --text-primary: #5a5247;
  --text-secondary: #8b7f6f;
  --text-muted: #a69d92;
  --glass: rgba(244,241,236,.65);
  --glass-2: rgba(244,241,236,.75);
  --stroke: rgba(138,127,111,.18);
  --shadow: 0 18px 50px rgba(90,82,71,.15);
  --radius: 22px;
  --radius-sm: 16px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Manrope,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text-primary);
  background: var(--beige-1);
  overflow-x: hidden;
}
::selection {
  background: rgba(159, 224, 208, 0.25);
  color: var(--text-primary);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.container {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}
.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.kb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(
      135deg,
      rgba(203, 183, 245, 0.15),
      rgba(159, 224, 208, 0.12));
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    border-color 0.15s ease;
}
.kb-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(159, 224, 208, 0.38);
}
.kb-btn:active {
  transform: translateY(0px) scale(0.99);
}
.kb-btn--ghost {
  background: var(--glass-2);
}
.kb-btn--gold {
  background:
    linear-gradient(
      135deg,
      #f5d06a,
      #d4a73b,
      #fff2b2);
  border: 1px solid rgba(245, 208, 106, 0.55);
  color: #5a4a2a;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(245, 208, 106, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: visible;
  transition: all 0.2s ease;
}
.kb-btn--gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.6s ease;
  z-index: 1;
}
.kb-btn--gold:hover::before {
  left: 100%;
}
.kb-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(245, 208, 106, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 208, 106, 0.7);
  filter: brightness(1.1);
}
.kb-btn--gold:active {
  transform: translateY(0px) scale(0.98);
}
.hero__cta {
  position: relative;
  overflow: visible !important;
}
@keyframes goldPulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(245, 208, 106, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(245, 208, 106, 0.5));
  }
}
@media (prefers-reduced-motion: no-preference) {
  .kb-btn--gold {
    animation: goldPulse 2.5s ease-in-out infinite;
  }
}
.kb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass-2);
  color: var(--text-secondary);
  font-size: 13px;
}
.kb-h {
  font-family:
    "Space Grotesk",
    Manrope,
    system-ui,
    sans-serif;
  letter-spacing: -0.02em;
}
.kb-muted {
  color: var(--text-muted);
}
.kb-grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("./media/noise.svg");
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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