@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --blue: #147cff;
  --ui-blue: #0f6fff;
  --navy: #003c8f;
  --ink: #071d45;
  --copy: #42526d;
  --muted: #69717b;
  --line: #e3eaf3;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.brand-name .blue {
  color: var(--blue);
}

.brand-name .deck {
  color: var(--navy);
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.header-nav a {
  color: #142746;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--ui-blue);
}

.beta-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 21px;
  border: 1.5px solid var(--ui-blue);
  border-radius: 7px;
  color: #0066ec;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 72px 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(20, 124, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  text-align: center;
}

.placeholder {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 17px;
  color: #006cf0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -3px;
}

.placeholder-copy {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.65;
}

.home-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--ui-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: calc(100% - 48px);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.copyright {
  margin: 0;
  color: #8a98ac;
  font-size: 11px;
}

@media (max-width: 780px) {
  .header-inner {
    width: calc(100% - 30px);
    grid-template-columns: 1fr auto;
    min-height: 80px;
    padding: 10px 0 14px;
  }

  .header-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 34px;
    width: 100%;
    padding-top: 9px;
    border-top: 1px solid var(--line);
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-name {
    font-size: 30px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .beta-link {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
  }

  .footer-inner {
    width: calc(100% - 30px);
  }
}

@media (max-width: 520px) {
  .brand-subtitle {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 20px;
  }

  h1 {
    letter-spacing: -2px;
  }
}
