/* This file is for your main application CSS */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Source+Serif+4:opsz,wght@8..60,400&display=swap");

:root {
  --cobble-bg: #f4f6fb;
  --cobble-ink: #00061b;
  --cobble-muted: #4e4f56;
  --cobble-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --cobble-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--cobble-bg);
  font-family: var(--cobble-sans);
}

.cobble-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 20vh 24px 80px;
}

@media (max-width: 1000px) {
  .cobble-page {
    padding-top: 40px;
  }
}

.bottom-vector {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1193px;
  max-width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* Aurora ambient canvas background, anchored to the bottom of the page. */
.content--canvas {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 45%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 45%);
}

.cobble-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  width: 520px;
  max-width: 100%;
}

.cobble-logo {
  width: 73.291px;
  height: 18px;
  display: block;
}

.cobble-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.cobble-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  word-break: break-word;
}

.cobble-heading {
  margin: 0;
  font-family: var(--cobble-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: var(--cobble-ink);
  width: 100%;
}

.cobble-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.cobble-body p {
  margin: 0;
  font-family: var(--cobble-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.07px;
  color: var(--cobble-muted);
  max-width: 460px;
  text-wrap: balance;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cobble-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cobble-input {
  height: 36px;
  width: 313px;
  max-width: 100%;
  padding: 8px 16px 8px 12px;
  border: none;
  border-radius: 10px;
  background-color: #ffffff;
  font-family: var(--cobble-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.21px;
  color: var(--cobble-ink);
  box-shadow:
    inset 0px 0px 0px 1px rgba(255, 255, 255, 0.5),
    0px 0px 0px 1px rgba(17, 26, 74, 0.05),
    0px 1px 2px 0px rgba(0, 6, 27, 0.1);
}

.cobble-input::placeholder {
  color: #74757e;
}

.cobble-input:focus {
  outline: none;
  box-shadow:
    inset 0px 0px 0px 1px rgba(255, 255, 255, 0.5),
    0px 0px 0px 1px rgba(17, 26, 74, 0.15),
    0px 1px 2px 0px rgba(0, 6, 27, 0.1);
}

.cobble-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  background-color: var(--cobble-ink);
  font-family: var(--cobble-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.21px;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0px 0px 0px 1px rgba(17, 26, 74, 0.05),
    0px 1px 2px 0px rgba(0, 6, 27, 0.1);
  transition: background-color 0.2s ease;
}

.cobble-cta:hover {
  cursor: pointer;
  background-color: hsl(227, 10%, 20%);
}
