@font-face {
  font-family: BrownProLight;
  src: url("../fonts/BrownPro/IntuitiveBrownProWeb-Light.woff2");
}

@font-face {
  font-family: InterUI;
  src: url("../fonts/InterUI/Inter-VariableFont_slnt\,wght.ttf");
}

body {
  margin: 0;
  font-family: InterUI;
}

.utility-bar {
  width: 100%;
  display: grid;
  background-color: #f2f3f5;
}

.nav-bar {
  width: 100%;
  display: grid;
}

.section.registration {
  background: linear-gradient(135deg, #030a46 0%, #01030e 100%);
}

.section.disclosures {
  background-color: #f2f3f5;
}

.footer {
  background: #000;
  color: #f2f3f5;
  overflow: hidden;
}

.footer-main {
  padding-top: 104px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}

.footer-logo {
  min-width: 160px;
  max-width: 216px;
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.intuitive-logo {
  fill: #ffffff;
  width: 110px;
  height: 30px;
}

.footer-columns {
  display: flex;
  flex: 5 1 0;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-header {
  background: none;
  border: none;
  outline: none;
  color: #f2f3f5;
  font-size: 12.64px;
  font-weight: 400;
  text-align: left;
  line-height: 20.6px;
  cursor: default; /* becomes pointer in mobile for accordion */
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.footer-header .icon {
  fill: #a1a2a8;
}

.footer-header .icon {
  display: none;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.footer-list li a {
  color: #a1a2a8;
  font-size: 12.64px;
  font-weight: 400;
  text-decoration: none;
  line-height: 20.6px;
  display: block;
}

.footer-bottom {
  padding: 64px 0 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;

  > hr {
    border-color: #a1a2a8;
    border-width: 0;
    border-bottom-width: thin;
    margin: 0;
  }
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-icon {
  width: 24px;
  height: 24px;
  fill: #a1a2a8;
  display: flex;
  border-radius: 4px;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #a1a2a8;
  font-size: 12.64px;
  font-weight: 400;
  line-height: 20.6px;
  a {
    color: #a1a2a8;
    text-decoration: none;
  }
}

.divider {
  width: 1px;
  height: 16px;
  background: #a1a2a8;
  display: inline-block;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  padding-top: 24px;
}

.footer-right-icon {
  width: 16px;
  height: 16px;
  background: #a1a2a8;
  display: inline-block;
  border-radius: 3px;
}

/* Responsive styles */
@media (max-width: 899px) {
  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-main {
    gap: 24px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 899px) {
  .footer {
    font-size: 14px;
  }
  .footer-main {
    flex-direction: column;
    padding-top: 64px;
    gap: 46px;
  }

  .footer-columns {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;

    padding-top: 24px;
    align-items: flex-start;
    border-top: none;

    > hr {
      display: none;
    }
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 24px;
  }
  /* Accordion styles for mobile */
  .footer-header {
    cursor: pointer;
    background: none;
    padding: 16px 8px;
    border-top: 1px solid #6a6b70;
    color: #f2f3f5;
  }

  .footer-column:last-child {
    border-bottom: 1px solid #6a6b70;
  }

  .footer-header .icon {
    display: flex;
  }

  .footer-header .icon.close {
    display: none;
  }

  .footer-list {
    display: none;
  }

  .footer-list li {
    padding: 8px;
  }
  .footer-column.active .footer-list {
    display: block;
  }

  .footer-column.active .footer-header {
    padding: 16px 8px 8px;
  }

  .footer-column.active .footer-list li:last-child {
    padding: 8px 8px 16px;
  }

  .footer-column {
    gap: 0;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    .divider {
      display: none;
    }
  }
}

.footer-copyright {
  width: 100%;
  background: #000;
  color: #a1a2a8;
  font-family: InterUI;
  font-size: 12.5px;
  line-height: 1.6;
  padding-top: 32px;
}

.footer-copyright-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  align-items: flex-start;
}

.footer-copyright-text {
  flex: 1 1 0;
  min-width: 160px;
}

.footer-copyright-mat {
  color: #a1a2a8;
  white-space: nowrap;
  flex-shrink: 0;
}

.copyright-link {
  color: #bcbdc2;
  text-decoration: underline;
  &:hover {
    color: inherit;
  }
}

@media (max-width: 899px) {
  .footer-copyright-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copyright-mat {
    padding-left: 0;
  }
}

#onetrust-banner-sdk div[role="alertdialog"] {
  display: flex;
  justify-content: center;
}

body *:focus {
  outline: revert !important;
}

/* === Container === */
.disclosure-section {
  width: 100%;
  background: #f2f3f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* === Header Row === */
.disclosure-title-row {
  width: 100%;
  max-width: 1410px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f3f5;
  box-sizing: border-box;
}

.disclosure-title-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclosure-title-icon-inner {
  width: 100%;
  height: 100%;
  fill: #1c23ba;
}

/* === Title Text === */
.disclosure-title-text {
  color: #202124;
  font-size: 18px;
  font-family: InterUI;
  font-weight: 600;
  line-height: 26px;
  word-break: break-word;
}

/* === Divider Line === */
.disclosure-divider {
  width: 100%;
  height: 1px;
  max-width: 1410px;
  background: #bcbdc2;
}

/* === Disclosure Content === */
.disclosure-content-row {
  width: 100%;
  max-width: 1410px;
  padding: 40px 0 56px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  background: #f2f3f5;
  box-sizing: border-box;
}

.disclosure-content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.disclosure-content-title {
  color: #202124;
  font-size: 15px;
  font-family: InterUI;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 0;
}

.disclosure-content-text {
  color: #202124;
  font-size: 15px;
  font-family: InterUI;
  font-weight: 400;
  line-height: 23px;
}

.disclosure-content-link {
  color: #1e32e6;
  text-decoration: underline;
}

/* === Responsive for under 899px === */
@media (max-width: 899px) {
  .disclosure-title-row,
  .disclosure-content-row {
    max-width: 100%;
  }

  .disclosure-title-row {
    gap: 8px;
  }

  .disclosure-title-text {
    font-size: 16px;
    line-height: 22px;
  }

  .disclosure-content-row {
    gap: 8px;
  }

  .disclosure-content-title {
    font-size: 14px;
    line-height: 20px;
  }

  .disclosure-content-text {
    font-size: 14px;
    line-height: 20px;
  }

  .disclosure-divider {
    max-width: 100%;
  }
}

.section,
footer,
.utility-bar,
.nav-bar {
  display: grid;
  width: 100%;
  > div,
  > nav {
    grid-column: 2 / -2;
  }
}

@media (min-width: 0px) {
  .section,
  footer,
  .utility-bar,
  .nav-bar {
    grid-template-columns: 16px 1fr 16px;
  }
}

@media (min-width: 600px) {
  .section,
  footer,
  .utility-bar,
  .nav-bar {
    grid-template-columns: minmax(32px, auto) 1fr minmax(32px, auto);
  }
}

@media (min-width: 900px) {
  .section,
  footer,
  .utility-bar,
  .nav-bar {
    grid-template-columns: minmax(32px, auto) minmax(calc(900px - 64px), 838px) minmax(
        32px,
        auto
      );
  }
}

@media (min-width: 1200px) {
  .section,
  footer,
  .utility-bar,
  .nav-bar {
    grid-template-columns: minmax(72px, auto) max(1056px) minmax(72px, auto);
  }
}

a {
  word-break: break-word;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 120px;
}
.header {
  width: 100%;
  padding: 72px 0;
  text-align: center;
  color: #f2f3f5;
  font-size: 48px;
  font-family: BrownProLight;
  font-weight: 300;
  line-height: 1.16;
}
.cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
.card-link {
  text-decoration: none;
  color: inherit;
  flex: 1 1 0;
  display: flex;
}
.card {
  background: black;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: box-shadow 0.25s;
  aspect-ratio: 5 / 4;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0.8;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 90%);
  padding: 80px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
.card-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.card-desc {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}
.card-action {
  display: inline-flex;
  padding: 8px 16px;
  background: #f2f3f5;
  border-radius: 24px;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}
.card-action-text {
  color: #202124;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
}

/* HOVER EFFECT: on card hover, style the button */
.card-link:hover .card {
  box-shadow: 0 8px 32px rgba(50, 80, 200, 0.16);
}
.card-link:hover .card-action {
  background: #0052cc;
}
.card-link:hover .card-action-text {
  color: #f2f3f5;
}

/* Mobile Responsive Styles */
@media (max-width: 900px) {
  .header {
    font-size: 32px;
    line-height: 1.2;
    padding: 32px 0;
    text-align: left;
  }

  .container {
    padding-bottom: 72px;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    width: 100%;
  }
  .card-link {
    width: 100%;
    min-width: unset;
  }
  .card {
    width: 100%;
    min-width: unset;
    margin-bottom: 0;
  }

  .card-content {
    padding: 40px 16px 16px 16px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-desc {
    font-size: 14px;
  }
  .card-action {
    padding: 8px 12px;
  }
}

/* Optional: focus visual for accessibility */
.card-link:focus .card {
  box-shadow: 0 0 0 2px #0052cc;
}

/* body {
  margin: 0;
  background: #fff;
  font-family: InterUI;
  color: #242740;
} */

.hero {
  display: block;
  > div {
    grid-column: 1 / -1;
  }
}

.gradient-bg {
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    linear-gradient(180deg, #a9b6da 0%, #ede9e8 92%, #eeeae8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-section {
  width: 100%;
  /* max-width: 1728px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 2vw;
  display: grid;
  grid-template-areas: "text image";
  grid-template-columns: 50% 50%;
}

.text-group {
  max-width: 848px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 16px 257px 32px;
  gap: 40px;
  box-sizing: border-box;
  grid-area: text;
  z-index: 1;
  justify-self: flex-end;
}

.text-group h1 {
  font-family: BrownProLight;
  font-weight: 300;
  font-size: 56px;
  line-height: 68px;
  margin: 0;
  color: #242740;
}

.text-group p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #242740;
}

.login-btn {
  padding: 8px 24px;
  background: #1c23ba;
  color: #f2f3f5;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.login-btn:hover,
.login-btn:focus {
  background: #3541e1;
}

.visual-section {
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: image;
  aspect-ratio: 1 / 1;
}

.visual-section img {
  min-width: 1021px;
  min-height: 1021px;
  object-fit: cover;
  margin-top: -97px;
}

@media (max-width: 899px) {
  .content-section {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    grid-template-areas:
      "image"
      "text";
    grid-template-rows: 50% 50%;
    grid-template-columns: none;
  }
  .text-group {
    padding: 32px;
    gap: 28px;
  }
  .text-group h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .text-group p {
    font-size: 16px;
    line-height: 22px;
  }
  .login-btn {
    font-size: 14px;
    padding: 7px 16px;
  }
  .visual-section {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visual-section img {
    width: 100%;
    height: 100%;
    min-width: auto;
    min-height: auto;
    margin-top: 0;
  }
}

/* --- Navigation menu styles --- */
header {
  position: fixed;
  width: 100%;
  display: flex;
  z-index: 5;
  top: 0;
  left: 0;
  display: grid;
  background-color: white;
  > div {
    grid-column: 1 / -1;
  }
}

.nav {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 200;
  display: grid;
}

.nav .intuitive-logo {
  fill: #000;
  width: 110px;
  height: 30px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  padding: 0;
}
.nav-toggle:focus {
  outline: 2px solid #3541e1;
}
.nav-toggle-bar {
  background: #242740;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

/* Hide menu on mobile by default */
body.no-scroll {
  overflow: hidden;
}

.nav-menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 60px;
  background: #fff;
  flex-direction: column;
  gap: 8px;
  z-index: 200;
  list-style: none;
}
.nav-menu .nav-item {
  padding: 0;
  margin: 0;
}
.nav-item svg.icon {
  fill: #87888f;
}

nav.open svg.menu.icon {
  display: none;
}

nav svg.menu-close.icon {
  display: none;
}

nav.open svg.menu-close.icon {
  display: flex;
}

.nav-menu .nav-item a {
  display: block;
  padding: 12px 0;
  color: #87888f;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s;
}
.nav-menu .nav-item a:hover,
.nav-menu .nav-item a:focus {
  background: #f2f3f5;
}
/* Show menu when active */
.nav.open .nav-menu {
  display: flex;
  height: 100dvh;
  position: static;
}
.nav {
  grid-template-columns: max-content;
  > div {
    display: grid;
    grid-column: 2 / 2;
  }
}

.dt-logo.hide,
.nav-item.hide,
.mb-logo.hide {
  display: none;
}

.mb-logo {
  display: flex;
  align-self: center;
  width: 100%;
  justify-content: center;
  height: 60px;
  align-items: center;
}

hr.nav-divider {
  margin: 0px;
  flex-shrink: 0;
  border-width: 0px 0px thin;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 1px;
}

.icon {
  width: 24px;
  height: 24px;
}

.nav-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12.64px;
}

hr.nav-divider.mb.hide {
  display: none;
}

.top-bar-content {
  display: none;
  justify-content: flex-end;
}

.top-bar-link-content svg.icon {
  width: 16px;
  height: 16px;
  fill: #55575c;
}

.nav-app-bar {
  display: flex;
}

/* Desktop styles: horizontal nav */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-app-bar {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 32px;
    justify-content: space-between;
    flex-direction: row;
    height: 60px;
  }
  .nav-menu .nav-item a {
    padding: 16px 0;
    font-size: 16px;
    border-radius: 0;
    background: none;
    color: #242740;
    transition: color 0.2s;
    border-bottom: 2.5px solid transparent;
  }
  .nav-menu .nav-item a:hover,
  .nav-menu .nav-item a:focus {
    background: none;
    border-bottom: 2.5px solid rgb(28, 35, 186);
  }
  header {
    > div {
      grid-column: 2 / -2;
    }
  }

  .nav-item-group {
    display: flex;
    gap: 0 3.2ch;
    flex-direction: row;
    align-items: center;
    height: 100%;
  }

  .top-bar {
    display: flex;
    justify-content: flex-end;
    background-color: #f2f3f5;
    height: 40px;
  }

  .top-bar-content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .top-bar-item a {
    text-decoration: none;
    color: #55575c;
  }

  .top-bar .header-icon {
    width: 16px;
    height: 16px;
  }

  .top-bar-link-content {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
  }

  .nav-item.hide {
    display: none;
  }

  .mb-logo {
    display: none;
  }
}
