/* [project]/src/styles/globals.scss.css [app-client] (css) */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-elevated: #ffffff08;
  --bg-surface: #ffffff0d;
  --text-primary: #fff;
  --text-secondary: #a0a0a0;
  --text-muted: #666;
  --accent: #ccc;
  --accent-hover: #fff;
  --accent-subtle: #cccccc14;
  --accent-border: #ccc3;
  --border: #ffffff1a;
  --border-subtle: #ffffff0f;
  --ornamental: #888;
  --ornamental-subtle: #8888881f;
  --shadow-sm: 0 1px 3px #0006;
  --shadow-md: 0 4px 12px #00000080;
  --shadow-lg: 0 8px 32px #0009;
  --overlay: #000000b3;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  min-height: 100vh;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-weight: 400;
  line-height: 1.65;
  transition: background-color .4s, color .4s;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
}

a:hover {
  color: var(--accent-hover);
}

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

button {
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ornamental);
}

h1 {
  letter-spacing: .02em;
  color: var(--text-primary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  letter-spacing: .02em;
  color: var(--text-primary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  letter-spacing: .02em;
  color: var(--text-primary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

h4 {
  letter-spacing: .02em;
  color: var(--text-primary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

h5 {
  letter-spacing: .02em;
  color: var(--text-primary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

h6 {
  letter-spacing: .02em;
  color: var(--text-primary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

small {
  color: var(--text-secondary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* [project]/src/components/Header.module.scss.module.css [app-client] (css) */
.Header-module-scss-module__t7BEda__header {
  z-index: 200;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
}

.Header-module-scss-module__t7BEda__inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .Header-module-scss-module__t7BEda__inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.Header-module-scss-module__t7BEda__inner {
  justify-content: space-between;
  align-items: center;
  height: 72px;
  display: flex;
}

.Header-module-scss-module__t7BEda__logoLink {
  color: var(--text-primary);
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  display: flex;
}

.Header-module-scss-module__t7BEda__logoText {
  letter-spacing: .02em;
  color: var(--text-primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 639px) {
  .Header-module-scss-module__t7BEda__logoText {
    display: none;
  }
}

.Header-module-scss-module__t7BEda__nav {
  align-items: center;
  gap: 24px;
  display: flex;
}

@media (max-width: 1023px) {
  .Header-module-scss-module__t7BEda__nav {
    z-index: 300;
    background: var(--bg-primary);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: opacity .25s;
    position: fixed;
    inset: 0;
  }

  .Header-module-scss-module__t7BEda__navOpen {
    opacity: 1;
    pointer-events: auto;
  }
}

.Header-module-scss-module__t7BEda__navLink {
  letter-spacing: .03em;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-secondary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color .15s;
  position: relative;
}

.Header-module-scss-module__t7BEda__navLink:hover {
  color: var(--text-primary);
}

@media (max-width: 1023px) {
  .Header-module-scss-module__t7BEda__navLink {
    letter-spacing: .15em;
    font-size: 1.5rem;
  }
}

.Header-module-scss-module__t7BEda__navLinkActive {
  color: var(--text-primary);
}

.Header-module-scss-module__t7BEda__navLinkActive:after {
  content: "";
  background: var(--accent);
  height: 1px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
}

.Header-module-scss-module__t7BEda__navCta {
  letter-spacing: .02em;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 8px 24px;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: all .15s;
}

.Header-module-scss-module__t7BEda__navCta:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

@media (max-width: 1023px) {
  .Header-module-scss-module__t7BEda__navCta {
    margin-top: 16px;
    padding: 16px 48px;
    font-size: .875rem;
  }
}

.Header-module-scss-module__t7BEda__actions {
  align-items: center;
  gap: 16px;
  display: flex;
}

.Header-module-scss-module__t7BEda__burger {
  z-index: 400;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  display: none;
}

@media (max-width: 1023px) {
  .Header-module-scss-module__t7BEda__burger {
    display: flex;
  }
}

.Header-module-scss-module__t7BEda__burger span {
  background: var(--text-primary);
  width: 22px;
  height: 1.5px;
  margin-left: auto;
  transition: all .15s;
  display: block;
}

.Header-module-scss-module__t7BEda__burgerOpen span:first-child {
  transform: translateY(6.5px)rotate(45deg);
}

.Header-module-scss-module__t7BEda__burgerOpen span:nth-child(2) {
  opacity: 0;
}

.Header-module-scss-module__t7BEda__burgerOpen span:nth-child(3) {
  transform: translateY(-6.5px)rotate(-45deg);
}

/* [project]/src/components/Footer.module.scss.module.css [app-client] (css) */
.Footer-module-scss-module__DkSkqG__footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.Footer-module-scss-module__DkSkqG__inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .Footer-module-scss-module__DkSkqG__inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.Footer-module-scss-module__DkSkqG__inner {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 96px;
  padding-bottom: 64px;
  display: grid;
}

@media (max-width: 1023px) {
  .Footer-module-scss-module__DkSkqG__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 639px) {
  .Footer-module-scss-module__DkSkqG__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.Footer-module-scss-module__DkSkqG__brand {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Footer-module-scss-module__DkSkqG__brandName {
  letter-spacing: .02em;
  color: var(--text-primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 16px;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.Footer-module-scss-module__DkSkqG__tagline {
  color: var(--text-muted);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.65;
}

.Footer-module-scss-module__DkSkqG__navLabel {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .75rem;
  font-weight: 700;
}

.Footer-module-scss-module__DkSkqG__nav {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Footer-module-scss-module__DkSkqG__navLink {
  color: var(--text-secondary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color .15s;
}

.Footer-module-scss-module__DkSkqG__navLink:hover {
  color: var(--text-primary);
}

.Footer-module-scss-module__DkSkqG__info {
  flex-direction: column;
  display: flex;
}

.Footer-module-scss-module__DkSkqG__infoText {
  color: var(--text-muted);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.65;
}

.Footer-module-scss-module__DkSkqG__social {
  flex-direction: column;
  display: flex;
}

.Footer-module-scss-module__DkSkqG__socialLink {
  color: var(--text-secondary);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color .15s;
}

.Footer-module-scss-module__DkSkqG__socialLink:hover {
  color: var(--text-primary);
}

.Footer-module-scss-module__DkSkqG__bottom {
  border-top: 1px solid var(--border);
}

.Footer-module-scss-module__DkSkqG__bottomInner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .Footer-module-scss-module__DkSkqG__bottomInner {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.Footer-module-scss-module__DkSkqG__bottomInner {
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.Footer-module-scss-module__DkSkqG__copy {
  color: var(--text-muted);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.65;
}

.Footer-module-scss-module__DkSkqG__styleguideLink {
  letter-spacing: .03em;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.Footer-module-scss-module__DkSkqG__styleguideLink:hover {
  color: var(--text-secondary);
}

/* [project]/src/components/ChatWidget.module.scss.module.css [app-client] (css) */
.ChatWidget-module-scss-module__MpAX8G__fab {
  z-index: 500;
  background: var(--accent);
  height: 56px;
  color: var(--bg-primary);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 32px 0 24px;
  transition: background .15s, transform .15s, padding .15s;
  display: flex;
  position: fixed;
  bottom: 32px;
  right: 32px;
}

.ChatWidget-module-scss-module__MpAX8G__fab:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.ChatWidget-module-scss-module__MpAX8G__fab.ChatWidget-module-scss-module__MpAX8G__fabOpen {
  border-radius: 9999px;
  width: 56px;
  padding: 0;
}

.ChatWidget-module-scss-module__MpAX8G__fabLabel {
  color: var(--bg-primary);
  white-space: nowrap;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 639px) {
  .ChatWidget-module-scss-module__MpAX8G__fabLabel {
    display: none;
  }
}

.ChatWidget-module-scss-module__MpAX8G__panel {
  z-index: 500;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  width: 400px;
  height: 560px;
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  flex-direction: column;
  display: flex;
  position: fixed;
  bottom: 104px;
  right: 32px;
  overflow: hidden;
}

@media (max-width: 639px) {
  .ChatWidget-module-scss-module__MpAX8G__panel {
    width: calc(100vw - 64px);
    height: calc(100vh - 140px);
    bottom: 96px;
    right: 16px;
  }
}

.ChatWidget-module-scss-module__MpAX8G__chatkit {
  width: 100%;
  height: 100%;
  display: block;
}

.ChatWidget-module-scss-module__MpAX8G__fallback {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
}

.ChatWidget-module-scss-module__MpAX8G__fallbackTitle {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: 1rem;
}

.ChatWidget-module-scss-module__MpAX8G__fallbackText {
  color: var(--text-muted);
  font-family: CourierNewPMST, Courier New, Courier, monospace;
  font-size: .875rem;
}

/*# sourceMappingURL=src_dbdbb1d2._.css.map*/