/*******************************************************************************
 * Uliaa Public Web Site - Global CSS
 *
 *   Copyright © 2023-2026 Uliaa Holdings Pty Ltd. All rights reserved.
 *   Created and maintained by Patryk Zadarnowski <pat@uliaa.com>.
 *
 * Global style applicable to the entire Uliaa public website.
 */


/**
 * Reset and global tokens
 */

:root {

  --bg: #090909;
  --panel: #11110f;
  --panel2: #171612;
  --text: #f7f3e9;
  --muted: #aaa59a;
  --gold: #c8a45d;
  --line: #2b2924;
  --max: 1180px;

  --uliaa-gold-channels: 209 158 29;
  --uliaa-gold: rgb(var(--uliaa-gold-channels));

  --uliaa-title-font: Georgia, Times, "Times New Roman", serif;
  --uliaa-text-font: Outfit, Helvetica, Arial, sans-serif;

  --uliaa-gold-gradient-channels: #b8860b 0%, #ffd86e 50%, #b8860b 100%;
  --uliaa-gold-gradient:
    linear-gradient(45deg, var(--uliaa-gold-gradient-channels));

  --background-logo-width: 130%;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--uliaa-text-font);
  line-height: 1.55;
}

main {
  min-height: 100vw;
}

svg.gradients {
  position: fixed;
  left: -2000px;
  top: -2000px;
}

a {
  color: inherit;
  text-decoration: none;
}

/**
 * Background
 */

.background {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;

  .outline {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: var(--background-logo-width);
    fill: #111;
    stroke: #333;
    stroke-width: 0.5px;
  }

}



/**
 * Shared layout
 */

.pagehero {
  max-width: 1000px;
  margin: auto;
  padding: 130px 24px 90px;
  text-align: center;
}

.pagehero .lead {
  margin: auto;
}

.error-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.error-tile {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.error-tile .lead {
  margin: 0 auto;
}

.error-tile .actions {
  justify-content: center;
  margin-top: 32px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 120px 24px;
}

.section.center {
  text-align: center;
}

.section.center .lead {
  margin-left: auto;
  margin-right: auto;
}

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

.tile {
  padding: 28px;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 24px;
}


/**
 * Typography
 */

.eyebrow {
  margin: 0 0 14px;
  color: var(--uliaa-gold);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--uliaa-gold);
}

h1,
h2 {
  font-family: var(--uliaa-title-font);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 600;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 600;
}

h3 {
  margin: 5px 0 10px 0px;
  font-size: 22px;
  line-height: 26px;
}

.lead {
  color: #cbc6bb;
  font-size: 19px;
}

.bigline {
  margin-top: 60px;
  font-family: var(--uliaa-title-font);
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.08;
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.productcard {
  position: relative;
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.legal .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.regulatory-page .features .feature {
  grid-column: 1 / -1;
}

.legal-document {
  max-width: 860px;
  margin: 0 auto;
  color: #cbc6bb;
  font-size: 17px;
  line-height: 1.65;
}

.privacy-page .legal-document {
  counter-reset: privacy-section;
}

.legal-document .byline,
.privacy-page .byline,
.terms-page .byline {
  color: var(--muted);
  font-size: 15px;
}

.legal-document h2,
.legal-document h3 {
  margin: 2.2em 0 -0.35em;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-title-font);
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.2;
}

.privacy-page .legal-document h2 {
  counter-increment: privacy-section;
  counter-reset: privacy-subsection;
}

.privacy-page .legal-document h2::before {
  content: counter(privacy-section) ". ";
}

.privacy-page .legal-document h3 {
  counter-increment: privacy-subsection;
  margin-bottom: -0.7em;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-text-font);
  font-size: 0.95em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-page .legal-document h3::before {
  content: counter(privacy-section) "." counter(privacy-subsection) " ";
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 24px;
  padding-left: 26px;
}

.legal-document li {
  margin: 6px 0;
}

.legal-document a {
  color: var(--uliaa-gold);
}

.security-source {
  margin: 0;
  color: #cbc6bb;
  font-family: var(--uliaa-body-font);
  font-size: 17px;
  line-height: 1.65;
  counter-reset: security-section;
}

.security-heading {
  display: block;
  margin: 2.2em 0 -0.35em;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-title-font);
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.2;
}

.security-source > .security-heading:first-child {
  margin-top: 0;
}

.security-source > h2 {
  counter-increment: security-section;
  counter-reset: security-subsection;
}

.security-source > h2::before {
  content: counter(security-section) ". ";
}

.security-source > h3 {
  counter-increment: security-subsection;
  margin-bottom: -0.7em;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-text-font);
  font-size: 0.95em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-source > h3::before {
  content: counter(security-section) "." counter(security-subsection) " ";
}

.security-source > .retention-heading {
  margin-bottom: 0.65em;
}

.security-classification {
  color: var(--uliaa-gold);
  font-weight: 400;
  text-transform: uppercase;
}

.security-read-more {
  margin-top: 8px;
}

.legal .feature {
  display: flex;
  flex-direction: column;
}

.legal .feature .about-text-link {
  margin-top: auto;
  padding-top: 28px;
}

.legal .feature h3 {
  min-height: 0;
  margin: 20px 0 8px;
  font-size: 26px;
  white-space: nowrap;
}

.legal .feature p + p {
  margin-top: 0;
}

.product-watermark {
  position: absolute;
  right: -12px;
  bottom: 12px;
  width: 170px;
  height: 170px;
  fill: none;
  stroke: var(--text);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.06;
  pointer-events: none;
}

.productcard > :not(.product-watermark) {
  position: relative;
  z-index: 1;
}

.product-watermark .phone-shell,
.product-watermark .phone-screen,
.product-watermark .phone-home {
  fill: none;
  stroke: currentColor;
}

.product-watermark.pro-watermark {
  right: 8px;
  bottom: -4px;
}

.product-watermark.tools-watermark {
  right: 12px;
  fill: var(--text);
  stroke: none;
}

.productcard .num {
  display: block;
  margin-bottom: 32px;
  color: var(--uliaa-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.productcard h3 {
  margin: 0;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-body-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.productcard:first-child h3 {
  margin-bottom: 0;
}

.products > .productcard:nth-child(2) h3 {
  margin-bottom: 0 !important;
}

.productcard p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-app-lead {
  margin: 60px 0 30px !important;
  color: var(--text) !important;
  font-size: 21px !important;
  line-height: 1.4 !important;
}

.product-features {
  display: grid;
  gap: 9px;
  margin: 20px 0 50px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 20px;
}

.product-features li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--uliaa-gold);
  content: "✓";
  font-size: 15px;
  font-weight: 700;
}

.productcard .btn {
  margin-top: auto;
  align-self: center;
  background: #000;
  width: 210px;
  justify-content: center;
}

.productcard .btn.secondary {
  background: #000;
}

.product-features + .btn {
  margin-top: auto;
}

.product-app-lead + .product-features {
  margin-top: 0;
}

.productcard:nth-child(2) .product-features {
  margin-top: 0;
}

.productcard:nth-child(n+3) .product-app-lead {
  font-size: 19px !important;
}

.productcard:nth-child(n+3) .product-features {
  margin-top: 0;
}

.support-beta-tile {
  min-height: 360px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.support-beta-section {
  padding-top: 72px;
  padding-bottom: 24px;
}

.support-beta-tile h2 {
  max-width: 760px;
  margin: 28px 0 20px;
  color: var(--text);
  font-family: var(--uliaa-title-font);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.support-beta-tile > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.support-beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 50px;
}

.support-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-link-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text);
  text-decoration: none;
}

.support-link-tile h3 {
  margin: 0;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-title-font);
  font-size: 26px;
}

.support-link-tile p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.support-link-tile span {
  margin-top: auto;
  padding-top: 28px;
  color: var(--uliaa-gold);
}

.support-faq h2 {
  max-width: 760px;
  margin: 28px 0 46px;
  font-size: clamp(34px, 4vw, 58px);
}

.support-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-faq-item {
  min-height: 220px;
  padding: 30px 34px;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.support-faq-item h3 {
  margin: 0 0 18px;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-body-font);
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.support-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.support-faq-item a {
  color: var(--uliaa-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-read-more {
  display: inline-block;
  margin-top: 20px;
}

@media (max-width: 760px) and (orientation: portrait) {
  .products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .support-beta-tile {
    min-height: 0;
    padding: 30px 24px;
  }

  .support-beta-actions {
    padding-top: 36px;
  }

  .support-faq-grid {
    grid-template-columns: 1fr;
  }
}

.kicker {
  color: var(--uliaa-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.note {
  color: #716e66;
  font-size: 12px;
}

.scroll-icon {
  position: absolute;
  left: calc(50% - 25px);
  bottom: 5px;
  width: 50px;
  height: 50px;
  fill: url(#uliaa-gold-gradient);
  opacity: 70%;
  transition: opacity 0.3s ease;
}

.scroll-icon.hidden {
  opacity: 0
}

.support-scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: -32px;
  padding: 0 0 8px;
}

.support-scroll-hint .scroll-icon {
  position: fixed;
  left: 50%;
  bottom: 5px;
  z-index: 10;
  transform: translateX(-50%);
}


/**
 * Buttons and actions
 */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--uliaa-gold-gradient);
  border: 1px solid var(--uliaa-gold);
  border-radius: 999px;
  color: #0a0a0a;
  font: 14px/16px var(--uliaa-text-font);
  font-weight: 800;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}


/**
 * Forms
 */

.form {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 34px auto 0;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  background: #0b0b0b;
  border: 1px solid #3a3730;
  border-radius: 12px;
  color: var(--text);
  font: 16px/18px var(--uliaa-text-font);
  appearance: none;
}

textarea {
  min-height: 130px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
}

select {
  padding-right: 30px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  position: absolute;
  top: 7px;
  right: 15px;
  content: "▾";
  font-size: 22px;
  color: var(--muted);
  pointer-events: none;
  z-index: 30;
}

.contact-select {
  position: relative;
}

.contact-select-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  background: #0b0b0b;
  border: 1px solid #3a3730;
  border-radius: 12px;
  color: var(--text);
  font: 16px/18px var(--uliaa-text-font);
  text-align: left;
}

.contact-select-button:focus {
  outline: 2px solid var(--gold);
}

.contact-select-button span {
  color: var(--muted);
  font-size: 20px;
}

.contact-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  display: none;
  padding: 6px;
  background: #11110f;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgb(0 0 0 / 35%);
}

.contact-select.open .contact-select-menu {
  display: grid;
}

.contact-select-menu button {
  padding: 11px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  font: 15px/18px var(--uliaa-text-font);
  text-align: left;
}

.contact-select-menu button:hover,
.contact-select-menu button:focus {
  background: rgb(255 255 255 / 6%);
  color: var(--uliaa-gold);
  outline: none;
}

/**
 * Header and navigation
 */

.header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 80px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0 20px;
  background: rgba(9, 9, 9, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
  z-index: 30;
}

.header > .brand {
  flex: 0 0 auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.header > .actions {
  flex: 0 0 auto;
  order: 2;
  align-self: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: end;
  margin: 0 0 0 auto;
  gap: 10px;
}

.header > .links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.menu-toggle {
  position: relative;
  display: none;
  order: 3;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-left: 10px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, -6px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:last-child {
  transform: translate(-50%, 5px);
}

.header.menu-open .menu-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header.menu-open .menu-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/**
 * Branding
 */

.brand .logo {
  width: 30px;
  height: 30px;
}

.brand .logo .a {
  fill: url(#uliaa-gold-gradient);
}

.brand .logo .b {
  fill: green;
}

.brand .logo .c {
  fill: red;
}

.brand .label {
  font-family: var(--uliaa-text-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--uliaa-gold);
  background: var(--uliaa-gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/**
 * Top Menu
 */

.links > a,
.dropbtn {
  padding: 10px 0;
}

.links a:hover,
.footer a:hover,
.dropbtn:hover {
  color: var(--text);
}

.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}

.dropmenu {
  position: absolute;
  top: 40px;
  right: 0;
  display: none;
  min-width: 210px;
  padding: 10px;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.dropdown:hover .dropmenu,
.dropdown:focus-within .dropmenu {
  display: block;
}

.dropmenu a {
  display: block;
  padding: 11px 12px;
  color: #c7c2b7;
  border-radius: 10px;
}

.dropmenu a:hover {
  background: #191815;
  color: #fff;
}


/**
 * Footer
 */

.footer {

  margin: auto;
  padding: 30px 24px 20px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);

  .bar {
    display: flex;
    flex-flow: row nowrap;
    align-items: first baseline;
  }

  .brand {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .brand > a {
    color: var(--uliaa-gold);
    padding-right: 10px;
  }

  .links {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: end;
    gap: 18px;
  }

  p {
    margin: 6px 0px;
    font-size: 14px;
    line-height: 18px;
  }

}

/**
 * Home - Hero
 */

.home > .hero .actions .btn:first-child {
  border-radius: 24px 12px 12px 24px;
  margin-right: -4px;
  padding-left: 14px;
  padding-right: 14px;
}

.home > .hero .actions .btn:nth-child(2) {
  border-radius: 12px 24px 24px 12px;
  padding-left: 14px;
  padding-right: 14px;
}

.home > .hero {

  --slide-width: clamp(220px, 22vw, 300px);
  --slide-gap: 15px;
  --step-time: 6s;
  --slide-count: 7;
  --cycle-time: calc(var(--slide-count) * var(--step-time));

  min-height: max(100vh, 760px);

  .container {
    display: grid;
    grid-template-columns: 1.05fr auto;
    align-items: center;
    gap: 72px;
    padding: 80px 30px 86px 30px;
  }

  .whatif {
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
    margin: -4px 0px 24px 0px;
    border-left: 3px solid var(--uliaa-gold);
    padding-left: 20px;
  }

  .carousel {
    position: relative;
    margin: 10px 50px;
    width: var(--slide-width);
    height: auto;
    aspect-ratio: 360 / 800;
    overflow: hidden;
  }

  .slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: home-hero-carousel var(--cycle-time) linear infinite;
  }

  .carousel:hover .slides {
    animation-play-state: paused;
  }

  .carousel:hover .slide {
    animation-play-state: paused;
  }

  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #888;
    border-radius: 46px;
    opacity: 0;
    animation: home-hero-fade var(--cycle-time) linear infinite;
  }

  .slide:nth-child(1) { animation-delay: calc(var(--step-time) * -0); }
  .slide:nth-child(2) { animation-delay: calc(var(--step-time) * -1); }
  .slide:nth-child(3) { animation-delay: calc(var(--step-time) * -2); }
  .slide:nth-child(4) { animation-delay: calc(var(--step-time) * -3); }
  .slide:nth-child(5) { animation-delay: calc(var(--step-time) * -4); }
  .slide:nth-child(6) { animation-delay: calc(var(--step-time) * -5); }
  .slide:nth-child(7) { animation-delay: calc(var(--step-time) * -6); }

  .slides {
    animation: none;
  }

}

@keyframes home-hero-fade {
  0%, 2% { opacity: 0; }
  6%, 14% { opacity: 1; }
  18%, 100% { opacity: 0; }
}

@media (min-width: 761px) {
  .home > .hero .container {
    min-height: 100vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home > .hero .slides {
    animation: none;
  }

  .home > .hero .slide {
    animation: none;
  }

  .home > .hero .slide:first-child {
    opacity: 1;
  }
}


/**
 * Home - The Gap
 */

.home > .the-gap {

  h2 {
    margin-bottom: 80px;
  }

  .problem-lines {
    max-width: 820px;
    margin: 36px auto 0;
    color: var(--muted);
    font-size: 18px;
  }

  .problem-lines strong {
    display: block;
    margin: 28px 0;
    color: var(--text);
    font-size: 24px;
  }

  .problem-lines strong.gold {
    color: var(--uliaa-gold);
  }

}


/**
 * Home - The Uliaa Way
 */

.home > .the-uliaa-way {

  .journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 54px;
  }

  .journey div,
  .step,
  .feature,
  .trust {
    padding: 28px;
    background: rgb(17 17 15 / 78%);
    border: 1px solid var(--line);
    border-radius: 24px;
  }

  .journey b {
    display: block;
    margin-bottom: 8px;
    color: var(--uliaa-gold);
    font-size: 12px;
    letter-spacing: 0.12em;
  }

}

/**
 * Home - Two Ways Into Uliaa
 */

.home > .two-ways-into-uliaa {

  .tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 46px;
  }

  .tile {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-flow: column nowrap;
    padding: 28px;
    background: rgb(17 17 15 / 78%);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
  }

  .tile > :not(.way-icon) {
    position: relative;
    z-index: 1;
  }

  .way-icon {
    position: absolute;
    right: -12px;
    bottom: -18px;
    width: 170px;
    height: 170px;
    fill: none;
    stroke: var(--text);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.06;
    pointer-events: none;
  }

  .way-icon.compass-icon {
    fill: var(--text);
    stroke: none;
  }

  h3 {
    min-height: 60px;
  }

  .actions {
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: end;
  }

  .actions .btn.secondary {
    background: #090909;
  }

}

/**
 * Home - Marketplace
 */

.home > .marketplace {

  .slider {
    height: 400px;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    overflow-x: scroll;
  }

  .slide {
    width: 180px;
    height: 400px;
    border: 1px solid #888;
    border-radius: 25px;
  }

  .actions {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
  }

}

/**
 * Home - What makes us different
 */

.home > .what-makes-us-different {

  .tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 46px;
  }

  .tile {
    display: block;
    flex-flow: column nowrap;
    background: rgb(17 17 15 / 78%);
  }

}


/**
 * Trust
 */

.home > .trust {

  h2 {
    max-width: 620px;
  }

  .trust-faq-link {
    margin: 20px 0 0;
    color: var(--muted);
  }

  .trust-faq-link .about-text-link {
    font-weight: 400;
  }

  .tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
  }

  .tile {
    display: flex;
    flex-flow: column nowrap;
    background: rgb(17 17 15 / 78%);
  }

  .icon {
    width: 75px;
    height: 75px;
    align-self: center;
    margin-bottom: 30px;
    fill: url(#uliaa-gold-gradient);
  }

}

/**
 * CTA
 */

.home > .cta {

  max-width: var(--max);
  margin: 80px 15px 180px;
  padding: 70px 40px;
  background: #15130e;
  border: 1px solid #5c4d2f;
  border-radius: 30px;
  text-align: center;

  .join {
    text-align: center;
    margin: 0px;
    max-width: auto;
  }

}

.home > .cta .cta-incentive,
.invest > .cta .cta-incentive,
.publish > .cta .cta-incentive {
  position: relative;
  top: 18px;
  margin: 48px 0 -36px;
  color: #9a9a9a;
  font-size: 15px;
}

/**
 * Discover - Marketplace
 */

.discover > .pagehero {
  max-width: none;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 110px 24px 70px;
}

.discover-scroll-icon {
  bottom: 8px;
}

.discover > .pagehero .lead {
  max-width: 1000px;
}

.discover > .pagehero .slider {
  width: min(var(--max), 100%);
  height: 400px;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  gap: 20px;
  margin-top: auto;
  margin-bottom: 24px;
  overflow-x: auto;
}

.discover > .pagehero .slide {
  flex: 0 0 180px;
  width: 180px;
  height: 400px;
  border: 1px solid #888;
  border-radius: 25px;
}

@media (min-width: 761px) and (min-height: 800px) {
  .discover > .pagehero {
    min-height: 100vh;
    padding-bottom: 0;
  }
}

@media (min-width: 761px) {
  .discover > .pagehero .discover-intro {
    margin: auto 0;
  }

  .discover > .pagehero h1 {
    margin-bottom: 10px;
  }

  .discover > .pagehero .lead {
    margin-top: 0;
  }

  .discover > .pagehero .slider {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .discover > .pagehero .slider {
    margin-top: 32px;
  }
}

.discover > .showcase {

  .slider {
    height: 400px;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    overflow-x: scroll;
  }

  .slide {
    width: 180px;
    height: 400px;
    border: 1px solid #888;
    border-radius: 25px;
  }

}

/**
 * Discover - Explore Deeper
 */

.discover > .explore-deeper,
.home > .explore-deeper {

  .slider {
    height: 400px;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    overflow-x: scroll;
  }

  .slide {
    width: 180px;
    height: 400px;
    border: 1px solid #888;
    border-radius: 25px;
  }

}

/**
 * Invest - journey
 */

.invest > .journey {

  .tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 46px;
  }

  .tile {
    background: rgb(17 17 15 / 78%);
  }

  .invest-icon {
    display: block;
    width: 66px;
    height: 66px;
    min-height: 94px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
    fill: none;
    stroke: url(#uliaa-gold-gradient);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .invest-icon.compass-icon {
    width: 94px;
    height: 94px;
    fill: url(#uliaa-gold-gradient);
    stroke: none;
  }

  .tiles .tile:nth-child(3) .invest-icon {
    transform: scale(3);
    transform-origin: center;
  }

  .invest-icon.settings-icon {
    fill: url(#uliaa-gold-gradient);
    stroke: none;
  }

  .invest-icon.security-icon {
    width: 66px;
    height: 66px;
    fill: url(#uliaa-gold-gradient);
    stroke: none;
  }

  .invest-icon .bubble-dot {
    fill: url(#uliaa-gold-gradient);
    stroke: none;
  }

}

@media (max-width: 760px) and (orientation: portrait) {
  .invest > .journey .tiles {
    grid-template-columns: 1fr;
  }
}

/**
 * Invest - CTA
 */

.invest > .cta {

  width: calc(100% - 96px);
  max-width: calc(var(--max) - 48px);
  margin: 80px auto 180px;
  padding: 70px 40px;
  background: #15130e;
  border: 1px solid #5c4d2f;
  border-radius: 30px;
  text-align: center;

  .join {
    text-align: center;
    margin: 0px;
    max-width: auto;
  }

}


/**
 * Publish - journey
 */

.publish > .journey {

  .tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 46px;
  }

  .publish-icon {
    display: block;
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    fill: none;
    stroke: url(#uliaa-gold-gradient);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .publish-icon.compliance-icon {
    fill: url(#uliaa-gold-gradient);
    stroke: none;
  }

  .publish-icon.diamond-icon {
    fill: url(#uliaa-gold-gradient);
    stroke: none;
  }

  .tile:nth-child(1) { order: 1; }
  .tile:nth-child(2) { order: 4; }
  .tile:nth-child(3) { order: 3; }
  .tile:nth-child(4) { order: 5; }
  .tile:nth-child(5) { order: 2; }
  .tile:nth-child(6) { order: 6; }

}

@media (max-width: 760px) and (orientation: portrait) {
  .publish > .journey .tiles {
    grid-template-columns: 1fr;
  }
}

/**
 * Publish - CTA
 */

.publish > .cta {

  width: calc(100% - 96px);
  max-width: calc(var(--max) - 48px);
  margin: 80px auto 180px;
  padding: 70px 40px;
  background: #15130e;
  border: 1px solid #5c4d2f;
  border-radius: 30px;
  text-align: center;

  .join {
    text-align: center;
    margin: 0px;
    max-width: auto;
  }

}

/**
 * How it Works
 */

.how-it-works > .steps {

  .tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 46px;
  }

  .tile {
    position: relative;
    min-height: 310px;
    padding: 34px;
    overflow: hidden;
    isolation: isolate;
  }

  .tile > :not(.how-icon) {
    position: relative;
    z-index: 1;
  }

  .how-icon {
    position: absolute;
    right: -12px;
    bottom: -18px;
    width: 170px;
    height: 170px;
    fill: none;
    stroke: var(--text);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.06;
    pointer-events: none;
  }

  .step {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 30px;
    padding-top: 2px;
    background-color: #222;
    border: 1px solid var(--line);
    border-radius: 15px 0px 15px 0px;
    color: var(--muted);
    text-align: center;
  }

  h3 {
    margin: 32px 0 16px;
    text-align: left;
    font-family: var(--uliaa-title-font);
    font-size: 30px;
    line-height: 1.12;
  }

  p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
  }

  .bigline {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(42px, 5vw, 72px);
  }

}

@media (max-width: 760px) and (orientation: portrait) {
  .how-it-works > .steps .tiles {
    grid-template-columns: 1fr;
  }
}


/**
 * About
 */

.about > .hero {
  min-height: 100vh;
  padding: 120px 24px 86px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: left;

}

.about > .hero .container {
  width: 100%;
}

.about > .hero h1 {
  max-width: 1180px;
}

.about > .hero .lead {
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
}

.about-narrow {
  max-width: 980px;
}

.about-prose {
  max-width: 790px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.about-prose p {
  margin: 0 0 24px;
}

.about-prose .about-highlight {
  margin: 42px 0;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-title-font);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.08;
}

.about-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-purpose-card {
  min-height: 470px;
  padding: 42px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.about-purpose-card h2 {
  margin: 72px 0 0;
  font-size: clamp(32px, 3.1vw, 50px);
}

.about-purpose-card .mission-keyword {
  color: var(--uliaa-gold);
}

.about-purpose-card.ambition {
  background: rgb(17 17 15 / 78%);
}

.about-purpose-card.ambition h2 {
  color: var(--text);
}

.about-signoff {
  margin: 24px 0 0;
  color: #cbc6bb;
  font-size: 20px;
}

.about-beliefs > .container > h2 {
  max-width: 760px;
}

.about-beliefs .belief-keyword {
  color: var(--uliaa-gold);
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.about-belief-grid .tile {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
}

.about-belief-grid .tile > :not(.belief-icon) {
  position: relative;
  z-index: 1;
}

.about-belief-grid .belief-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 170px;
  color: var(--text);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.06;
  pointer-events: none;
}

.about-belief-grid .tile:nth-child(-n + 2) .belief-icon {
  bottom: -18px;
}

.about-belief-grid .tile:nth-child(n + 3) .belief-icon {
  right: -12px;
}

.about-belief-grid h3 {
  max-width: 440px;
  margin: 32px 0 16px;
  font-family: var(--uliaa-title-font);
  font-size: 30px;
  line-height: 1.12;
}

.about-belief-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-number {
  color: var(--uliaa-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.about-section-heading .lead {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.55;
}

.about-tech-lead {
  max-width: 900px;
  margin: 48px 0 0;
  color: #cbc6bb;
  font-size: 20px;
  line-height: 1.65;
}

.about-audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 64px;
}

.about-audience {
  min-height: 390px;
  padding: 38px;
  display: flex;
  flex-flow: column nowrap;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.about-audience h3 {
  min-height: 4.5em;
  margin: 28px 0 16px;
  font-family: var(--uliaa-title-font);
  font-size: 34px;
  line-height: 1.12;
}

.about-audience p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-text-link {
  margin-top: auto;
  padding-top: 28px;
  color: var(--uliaa-gold);
  font-weight: 600;
  text-decoration: none;
}

.about-text-link:hover {
  color: var(--text);
}

.about-founders > .container > h2 {
  max-width: 760px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.founder-card {
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  background: rgb(17 17 15 / 78%);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.founder-photo {
  display: block;
  width: 220px;
  aspect-ratio: 1;
  margin: 40px auto 0;
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.founder-details {
  flex: 1 1 auto;
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-flow: column nowrap;
}

.founder-details h3 {
  min-height: 3.36em;
  margin: 24px 0 18px;
  font-family: var(--uliaa-title-font);
  font-size: 34px;
  line-height: 1.12;
}

.founder-details > p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.founder-details .about-text-link {
  margin-top: auto;
}

.about-today .actions,
.about-cta .actions {
  margin-top: 42px;
}

.about-cta .lead {
  max-width: 760px;
}

.about-cta .actions {
  justify-content: center;
}

.about-cta {
  width: calc(100% - 96px);
  max-width: calc(var(--max) - 48px);
  margin: 80px auto 180px;
  padding: 70px 40px;
  background: #15130e;
  border: 1px solid #5c4d2f;
  border-radius: 30px;
}

.about-cta > .container {
  max-width: none;
  padding: 0;
}

.about-cta .cta-incentive {
  position: relative;
  top: 18px;
  margin: 48px 0 -36px;
  color: #9a9a9a;
  font-size: 15px;
}


/**
 * Our Journey
 */

.journey > .hero {

  min-height: 100vw;
  padding: 200px 24px 86px;

  .eyebrow {
    font-size: 30px;
  }

  .byline {
    margin-top: -20px;
    margin-bottom: 100px;
    padding-top: 0px;
    font-family: var(--uliaa-title-font);
    font-style: italic;
  }

  .inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
  }

  h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(60px, 7vw, 112px);
    line-height: 0.98;
  }

  .intro {
    margin: 28px 0 0;
    color: #cbc6bb;
    font-family: var(--uliaa-title-font);
    font-size: clamp(26px, 3vw, 38px);
    font-style: italic;
  }

}

.journey > .story {
  padding: 0 24px 120px;
}

.journey-story-inner {
  max-width: 880px;
  margin: 0 auto;
}

.journey-chapter {
  position: relative;
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.journey-chapter:first-child {
  padding-top: 90px;
  border-top: 0;
}

.journey-chapter p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #bdb8ad;
  font-size: 20px;
  line-height: 1.8;
}

.journey-chapter h2 {
  max-width: 760px;
  margin-bottom: 38px;
  font-size: clamp(40px, 5vw, 64px);
}

.chapter-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--uliaa-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.journey-chapter blockquote {
  margin: 42px 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--uliaa-gold);
  color: var(--text);
  font-family: var(--uliaa-title-font);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.22;
}

.journey-chapter .gold-quote {
  color: var(--uliaa-gold);
}

.journey .emphasis {
  color: var(--uliaa-gold);
  font-family: var(--uliaa-title-font);
  font-size: 25px;
  line-height: 1.35;
  font-style: italic;
}

.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 52px;
}

.founder-split p {
  margin: 0;
  padding: 28px;
  background: #11110f;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  font-family: var(--uliaa-title-font);
  font-size: 24px;
  line-height: 1.35;
}

.journey-gap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 46px 0;
  padding: 34px;
  background: #11110f;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--text);
  font-family: var(--uliaa-title-font);
  font-size: 24px;
  line-height: 1.35;
}

.journey-people .journey-gap {
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: center;
}

.journey-people .gap-arrow {
  justify-self: center;
  transform: rotate(90deg);
}

.gap-arrow {
  color: var(--uliaa-gold);
  font-size: 30px;
}

.journey-final {
  padding-bottom: 60px;
  border-bottom: 0;
}

.journey-signoff {
  margin-top: 70px;
  color: var(--uliaa-gold);
  font-family: var(--uliaa-title-font);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

@media (max-width: 760px) {
  .journey-hero {
    min-height: 58vh;
    padding-top: 90px;
  }

  .journey-story {
    padding-left: 18px;
    padding-right: 18px;
  }

  .journey-chapter {
    padding: 80px 0;
  }

  .journey-chapter p {
    font-size: 18px;
  }

  .founder-split,
  .journey-gap {
    grid-template-columns: 1fr;
  }

  .gap-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}

/**
 * Responsive - tablet
 */

@media (min-width: 901px) and (max-width: 1000px) {
  .header > .links {
    top: auto;
    width: auto;
    transform: translateX(-50%);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .header > .links {
    top: 50%;
    width: 300px;
    column-gap: 16px;
    row-gap: 2px;
    transform: translate(-50%, -50%);
    line-height: 1.2;
  }

  .header > .links > a,
  .header > .links .dropbtn {
    padding: 4px 0;
  }

  .header > .actions .btn {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .home > .hero {
    --slide-width: min(220px, calc(100vw - 48px));

    .container {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 76px 18px 70px;
    }

    .carousel {
      width: var(--slide-width);
      height: auto;
      aspect-ratio: 360 / 800;
      margin: 0 auto;
    }

    .blurb .actions {
      justify-content: center;
    }

    .slides,
    .slide {
      width: 100%;
      height: 100%;
    }
  }

  .home > .the-uliaa-way .journey {
    grid-template-columns: 1fr;
  }

  .home > .two-ways-into-uliaa .tiles {
    grid-template-columns: 1fr;
  }

  .home > .what-makes-us-different .tiles {
    grid-template-columns: 1fr;
  }

  .home > .trust .tiles {
    grid-template-columns: 1fr;
  }

  .footer .bar {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 8px;
  }

  .footer .links {
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 8px 18px;
    margin-bottom: 8px;
  }

  .header > .links {
    display: none;
  }

  .header {
    padding: 0 16px;
  }

  .header > .actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header.menu-open > .links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    transform: none;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(17, 17, 15, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .header.menu-open > .links > a,
  .header.menu-open .dropbtn {
    padding: 12px 14px;
    text-align: left;
  }

  .header.menu-open .dropdown {
    width: 100%;
  }

  .header.menu-open .dropmenu {
    position: static;
    min-width: 0;
    padding: 0 0 6px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .hero,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .journey,
  .market,
  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .trustgrid {
    grid-template-columns: 1fr;
  }

  .features,
  .split {
    grid-template-columns: 1fr;
  }
}


/**
 * Responsive - mobile
 */

@media (max-width: 620px) {
  .header {
    padding: 0 12px;
  }

  .header > .actions {
    gap: 6px;
  }

  .header > .actions .btn {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 60px;
  }

  .legal .features {
    grid-template-columns: 1fr;
  }

  .support-links-grid {
    grid-template-columns: 1fr;
  }

  .journey,
  .market,
  .steps,
  .products {
    grid-template-columns: 1fr;
  }

  .phone {
    width: min(360px, 100%);
  }

  h1 {
    font-size: 50px;
  }

  .section {
    padding: 85px 18px;
  }

  .nav {
    padding: 16px 18px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer small {
    grid-column: 1;
  }

  .cta {
    margin-left: 18px;
    margin-right: 18px;
    padding: 50px 22px;
  }
}

@media (max-width: 760px) {
  .about > .hero {
    min-height: 100vh;
    padding: 100px 18px 70px;
    text-align: center;
  }

  .about > .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .about > .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .about-purpose-grid,
  .about-belief-grid,
  .about-section-heading,
  .about-audiences,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose-card {
    min-height: 390px;
    padding: 30px;
  }

  .about-belief-grid,
  .about-audiences {
    margin-top: 42px;
  }

  .about-belief-grid .tile,
  .about-audience {
    min-height: 0;
    padding: 28px;
  }

  .about-belief-grid h3,
  .about-audience h3 {
    font-size: 28px;
  }

  .about-audience h3 {
    min-height: 0;
  }

  .founder-details {
    min-height: 0;
    padding: 28px;
  }

  .founder-photo {
    width: 190px;
    margin-top: 28px;
  }

  .founder-details h3 {
    min-height: 0;
    font-size: 30px;
  }

  .about-section-heading {
    gap: 12px;
  }

  .about-prose {
    font-size: 18px;
  }

  .about-tech-lead {
    margin-top: 36px;
    font-size: 18px;
  }
}
