@font-face {
  font-family: Montserrat;
  src: url("/brand/assets/fonts/Montserrat-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --blue: #3d72de;
  --ink: #09101d;
  --paper: #f6f8fa;
  --line: #d8dce3;
  --muted: #515b6d;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    400 15px/1.65 Montserrat,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
::selection {
  color: white;
  background: var(--blue);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px 24px;
  background: var(--ink);
  color: white;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 102px;
  margin: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.home-link {
  display: flex;
  align-items: center;
  gap: 22px;
}
.home-link > span {
  border-left: 1px solid var(--line);
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
}
.site-header nav > a {
  padding: 12px 0;
}
.site-header nav > a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.site-header .header-download {
  border: 1px solid var(--ink);
  border-radius: 30px;
  padding: 12px 20px;
}
.header-download span {
  margin-left: 18px;
  font-size: 19px;
  line-height: 1;
}
.hero {
  max-width: 1600px;
  margin: auto;
  padding: 80px 5% 75px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(68px, 7.4vw, 116px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.075em;
}
.hero-copy h1 span {
  color: var(--blue);
}
.hero-copy > p {
  margin: 30px 0 34px;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.8;
  color: var(--muted);
}
.button {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 32px;
  font-size: 13px;
  font-weight: 500;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #243048;
}
.hero-art {
  position: relative;
  padding-bottom: 42px;
}
.photo-frame {
  height: 470px;
  border-radius: 140px 8px 8px 8px;
  overflow: hidden;
  position: relative;
  margin-left: 13%;
}
.photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.65);
}
.photo-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, #09101d9e);
}
.photo-note {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  right: 26px;
  color: #fff;
  font-size: 12px;
}
.brand-tile {
  position: absolute;
  left: 0;
  bottom: 58px;
  width: 216px;
  height: 252px;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  transform: rotate(-9deg);
  padding: 26px;
  box-shadow: 0 20px 35px #09101d1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-tile > img {
  width: 94px;
  height: 119px;
  object-fit: contain;
}
.brand-tile > span:not(.tile-arrow) {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.6px;
}
.tile-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 32px;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.04em;
  position: absolute;
  bottom: 0;
  left: 13%;
  right: 0;
}
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  overflow: hidden;
  background: var(--blue);
  color: white;
  padding: 23px 3%;
  font-size: clamp(17px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.brand-strip > span:nth-child(even) {
  font-size: 35px;
  line-height: 1;
}
.section {
  padding: 90px 5%;
  max-width: 1600px;
  margin: auto;
  scroll-margin-top: 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-bottom: 52px;
}
.section-heading h2 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.section-heading > span {
  font-size: 12px;
  color: var(--muted);
}
.mission-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 9%;
}
.mission-body h3 {
  font-size: clamp(35px, 4.2vw, 66px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.06em;
}
.mission-body h3 span {
  color: var(--blue);
}
.mission-copy {
  padding-top: 6px;
  max-width: 410px;
}
.mission-copy p {
  color: var(--muted);
  margin-bottom: 21px;
}
.text-link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
}
.text-link:hover {
  color: #2f61c5;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6%;
  margin-top: 70px;
}
.values article > span {
  display: inline-block;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 20px;
}
.values h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.values p {
  color: var(--muted);
  font-size: 13px;
  max-width: 290px;
  line-height: 1.8;
}
.identity {
  padding-top: 35px;
}
.identity-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: -15px;
  margin-bottom: 35px;
}
.identity-intro p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 510px;
  color: var(--muted);
}
.identity-intro a {
  white-space: nowrap;
}
.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 25px;
}
.logo-card {
  min-width: 0;
}
.logo-preview {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.logo-preview > img {
  width: 61%;
  height: auto;
}
.light-preview {
  background: #fff;
}
.dark-preview {
  background: var(--ink);
  border-color: var(--ink);
}
.asset-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 2px;
}
.asset-row h3 {
  font-size: 14px;
  font-weight: 500;
}
.asset-row > div > span {
  font-size: 11px;
  color: var(--muted);
}
.download-links {
  display: flex;
  gap: 8px;
}
.download-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 500;
  min-height: 40px;
}
.download-links a:hover {
  border-color: var(--ink);
  background: white;
}
.symbol-preview {
  background: #eaf0fc;
  justify-content: space-around;
  padding: 45px;
}
.symbol-preview > img {
  width: 100px;
  height: 130px;
  object-fit: contain;
}
.symbol-companions {
  display: flex;
  gap: 15px;
}
.symbol-companions > span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 100px;
  border: 1px solid #cad6ee;
  border-radius: 10px;
  background: var(--paper);
}
.symbol-companions > span:nth-child(2) {
  background: var(--ink);
  border-color: var(--ink);
}
.symbol-companions img {
  width: 37px;
  height: 47px;
  object-fit: contain;
}
.kit-card {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  background: var(--blue);
  border-radius: 7px;
  padding: 32px 38px;
  color: white;
  min-height: 360px;
  transition: background 0.2s;
}
.kit-card:hover {
  background: #2f61c5;
}
.kit-card:focus-visible {
  outline-color: var(--ink);
}
.kit-icon {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 45px;
  line-height: 1;
}
.kit-card h3 {
  font-size: 35px;
  letter-spacing: -1.8px;
  font-weight: 500;
  line-height: 1.15;
  margin: 10px 0 18px;
}
.kit-card p {
  font-size: 12px;
  line-height: 1.8;
}
.kit-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff66;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
}
.kit-cta > span {
  font-size: 23px;
}
.colors {
  padding-top: 25px;
}
.palette {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 12px;
}
.swatch {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  min-height: 245px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s;
}
.swatch:hover {
  transform: translateY(-5px);
}
.swatch > span:first-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  font-weight: 500;
}
.swatch > span:first-child > span {
  font-size: 19px;
  line-height: 1.2;
}
.swatch .color-code {
  font-size: 12px;
  letter-spacing: 0.04em;
}
.swatch-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.swatch-ink {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.swatch-white {
  background: #fff;
  color: var(--ink);
}
.swatch-mist {
  background: var(--paper);
  color: var(--ink);
}
.palette-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 24px;
}
.palette-footer p {
  font-size: 11px;
  color: var(--muted);
}
.palette-footer a {
  font-size: 11px;
}
.type-section {
  padding-top: 20px;
}
.type-specimen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.type-display {
  font-size: clamp(120px, 22vw, 300px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.09em;
  position: relative;
}
.type-display > span {
  font-size: clamp(50px, 8vw, 100px);
  position: absolute;
  color: var(--blue);
  right: 4%;
  top: 0;
  font-weight: 400;
}
.type-details h3 {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 500;
}
.type-details > p {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 20px;
}
.type-weights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  margin: 25px 0;
}
.type-weights > span:nth-child(2) {
  font-weight: 500;
}
.type-weights > span:nth-child(3) {
  font-weight: 600;
}
.type-weights > span:nth-child(4) {
  font-weight: 700;
}
.type-details .alphabet {
  line-height: 1.9;
  letter-spacing: 2px;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.guidelines {
  padding-top: 20px;
  padding-bottom: 110px;
}
.guideline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.clear-space {
  background: #eaf0fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 65px 50px;
  gap: 35px;
  border-radius: 6px;
  min-height: 320px;
}
.clear-space > div {
  padding: 40px 25px;
  border: 1px dashed #3d72de77;
  position: relative;
}
.clear-space > div:before,
.clear-space > div:after {
  content: "+";
  position: absolute;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}
.clear-space > div:before {
  top: -11px;
  left: -7px;
}
.clear-space > div:after {
  bottom: -11px;
  right: -7px;
}
.clear-space > span {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}
.guideline-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.guideline-list details:first-child {
  padding-top: 0;
}
.guideline-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
}
.guideline-list summary::-webkit-details-marker {
  display: none;
}
.guideline-list summary:after {
  content: "+";
  color: var(--blue);
  font-size: 21px;
  line-height: 1.1;
}
.guideline-list details[open] summary:after {
  content: "−";
}
.guideline-list details p {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 25px 7px 0;
  max-width: 440px;
}
.site-footer {
  background: var(--ink);
  color: white;
  padding: 70px 5% 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  max-width: 1440px;
  margin: auto;
}
.footer-top h2 {
  font-size: clamp(48px, 7vw, 105px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 500;
  position: relative;
  padding-right: 85px;
}
.footer-top h2 > span {
  color: #82aaff;
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 0.85em;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.button-white {
  background: white;
  color: var(--ink);
}
.footer-website {
  font-size: 11px;
  color: #c1c8d4;
}
.footer-website:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid #ffffff26;
  padding-top: 25px;
  margin: 65px auto 0;
  max-width: 1440px;
  font-size: 10px;
  color: #c1c8d4;
}
.footer-bottom > img {
  width: 95px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: white;
  box-shadow: 0 5px 30px #09101d30;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 12px;
  z-index: 30;
  transition:
    opacity 0.2s,
    transform 0.2s;
  max-width: 90vw;
  text-align: center;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1600px) {
  .site-header {
    max-width: 1440px;
    margin: auto;
  }
  .hero,
  .section {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1000px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 3%;
  }
  .photo-frame {
    height: 405px;
    border-top-left-radius: 100px;
  }
  .brand-tile {
    width: 172px;
    height: 216px;
    padding: 23px;
  }
  .brand-tile > img {
    width: 75px;
    height: 95px;
  }
  .brand-tile > span:not(.tile-arrow) {
    font-size: 18px;
  }
  .mission-body {
    gap: 5%;
    grid-template-columns: 1.1fr 1fr;
  }
  .logo-preview {
    height: 230px;
  }
  .symbol-preview {
    padding: 30px;
  }
  .symbol-companions > span {
    width: 66px;
    height: 80px;
  }
  .symbol-preview > img {
    width: 76px;
    height: 96px;
  }
  .asset-row {
    align-items: flex-start;
  }
  .download-links {
    gap: 6px;
  }
  .download-links a {
    gap: 7px;
    padding: 8px 10px;
  }
  .kit-card {
    padding: 30px;
    min-height: 315px;
  }
  .kit-card h3 {
    font-size: 30px;
  }
  .swatch {
    padding: 17px;
    min-height: 210px;
  }
  .palette {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
  .clear-space {
    padding: 45px 30px;
  }
  .footer-top h2 {
    padding-right: 55px;
  }
}
@media (max-width: 700px) {
  :root {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 82px;
    margin: 0 6%;
    gap: 12px;
  }
  .home-link {
    gap: 12px;
  }
  .home-link img {
    width: 91px;
  }
  .home-link > span {
    padding-left: 12px;
    font-size: 11px;
  }
  .site-header nav {
    gap: 0;
  }
  .site-header nav > a:not(.header-download) {
    display: none;
  }
  .site-header .header-download {
    font-size: 10px;
    padding: 10px 13px;
  }
  .header-download span {
    margin-left: 10px;
    font-size: 16px;
  }
  .hero {
    display: block;
    padding: 45px 6% 32px;
  }
  .hero-copy h1 {
    font-size: clamp(65px, 14vw, 94px);
    line-height: 1.03;
  }
  .hero-copy > p {
    font-size: 14px;
    margin: 22px 0 25px;
  }
  .button {
    padding: 13px 21px;
    min-height: 50px;
    font-size: 12px;
  }
  .hero-art {
    margin-top: 44px;
    padding-bottom: 34px;
  }
  .photo-frame {
    height: 380px;
    margin-left: 17%;
    border-top-left-radius: 105px;
  }
  .brand-tile {
    width: 176px;
    height: 218px;
    left: 4%;
    bottom: 49px;
  }
  .hero-caption {
    left: 17%;
    font-size: 9px;
  }
  .photo-note {
    font-size: 10px;
    bottom: 20px;
    right: 18px;
  }
  .brand-strip {
    gap: 22px;
    justify-content: flex-start;
    padding: 18px 6%;
    font-size: 20px;
  }
  .brand-strip > span:nth-child(even) {
    font-size: 25px;
  }
  .section {
    padding: 58px 6%;
  }
  .section-heading {
    padding-top: 20px;
    margin-bottom: 32px;
    gap: 20px;
  }
  .section-heading h2 {
    font-size: 17px;
    line-height: 1.5;
    max-width: 85%;
  }
  .section-heading > span {
    font-size: 10px;
    white-space: nowrap;
  }
  .mission-body {
    display: block;
  }
  .mission-body h3 {
    font-size: clamp(32px, 8vw, 52px);
  }
  .mission-copy {
    margin-top: 26px;
    max-width: 100%;
  }
  .mission-copy p {
    font-size: 14px;
  }
  .values {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .values article {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 6px 15px;
  }
  .values article > span {
    grid-row: 1/3;
    font-size: 29px;
    margin: 0;
  }
  .values h3 {
    margin: 0;
    font-size: 17px;
  }
  .values p {
    max-width: 100%;
    font-size: 12px;
  }
  .identity {
    padding-top: 15px;
  }
  .identity-intro {
    display: block;
    margin-top: 0;
  }
  .identity-intro p {
    font-size: 14px;
  }
  .identity-intro a {
    margin-top: 20px;
    font-size: 12px;
  }
  .logo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .logo-preview {
    height: 225px;
  }
  .asset-row {
    padding: 16px 1px;
    align-items: center;
  }
  .asset-row h3 {
    font-size: 13px;
  }
  .asset-row > div > span {
    font-size: 10px;
  }
  .download-links a {
    padding: 8px 12px;
    gap: 13px;
  }
  .symbol-preview {
    justify-content: space-evenly;
  }
  .symbol-companions > span {
    width: 70px;
    height: 85px;
  }
  .kit-card {
    min-height: 310px;
    padding: 28px;
  }
  .kit-card h3 {
    font-size: 36px;
  }
  .kit-card p {
    font-size: 12px;
  }
  .colors {
    padding-top: 8px;
  }
  .palette {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .swatch {
    min-height: 185px;
    padding: 18px;
  }
  .swatch > span:first-child {
    font-size: 12px;
  }
  .swatch .color-code {
    font-size: 11px;
  }
  .palette-footer {
    align-items: flex-start;
    gap: 15px;
  }
  .palette-footer p {
    font-size: 10px;
    max-width: 155px;
  }
  .palette-footer a {
    font-size: 10px;
    white-space: nowrap;
    gap: 8px;
  }
  .type-section {
    padding-top: 10px;
  }
  .type-specimen {
    display: block;
  }
  .type-display {
    font-size: 180px;
    max-width: 290px;
    line-height: 1;
    margin-bottom: 35px;
  }
  .type-display > span {
    font-size: 60px;
    right: 0;
    top: 8px;
  }
  .type-details h3 {
    font-size: 28px;
  }
  .type-details > p {
    font-size: 13px;
  }
  .type-details .alphabet {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .guidelines {
    padding-top: 10px;
    padding-bottom: 65px;
  }
  .guideline-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .clear-space {
    min-height: 230px;
    padding: 35px 30px;
    gap: 25px;
  }
  .clear-space > div {
    padding: 30px 20px;
  }
  .guideline-list summary {
    font-size: 15px;
  }
  .site-footer {
    padding: 50px 6% 25px;
  }
  .footer-top {
    display: block;
  }
  .footer-top h2 {
    font-size: 65px;
    max-width: 330px;
    padding-right: 40px;
  }
  .footer-top > div {
    margin-top: 35px;
    gap: 18px;
  }
  .footer-website {
    font-size: 10px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 45px;
    font-size: 9px;
  }
  .footer-bottom > span:last-child,
  .footer-bottom > span:nth-child(2) {
    text-align: right;
  }
  .footer-bottom > img {
    width: 85px;
  }
  .toast {
    font-size: 11px;
    width: max-content;
    max-width: 90vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover,
  .swatch:hover {
    transform: none;
  }
}

.guide-download {
  margin: -20px 0 30px;
}
