@font-face {
  font-family: "Uto";
  src: url("Uto-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "UtoBold";
  src: url("Uto-Bold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "UtoItalic";
  src: url("Uto-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "UtoBoldItalic";
  src: url("Uto-BoldItalic.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: rgb(242, 242, 242);
  --text: #181818;
  --muted: #5b5b5b;
  --line: #d5d5d5;
  --surface: #f8f8f8;
  --surface-hover: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Uto", serif;
  font-size: 20px;
  line-height: 1.6;
  font-synthesis: none;
}

.page-shell {
  width: min(100% - 2.5rem, 800px);
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
  text-align: left;
}

.eyebrow {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-hero {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1rem;
}

.suite-logo {
  width: clamp(92px, 14vw, 132px);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.075);
  display: block;
}

.page-hero-copy h1 {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  font-family: "UtoBold", serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-top: 0.35rem;
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  margin-top: 2.1rem;
}

h3 {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
}

.page-header p:last-child,
section p:last-child {
  margin-bottom: 0;
}

.note {
  color: #333;
}

.palette {
  margin-top: -0.2rem;
  color: var(--muted);
  font-size: 1.5srem;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0 1.2rem;
}

em {
  font-family: "UtoItalic", serif;
  font-weight: normal;
  font-style: normal;
}

strong em,
b em {
  font-family: "UtoBoldItalic", serif;
  font-weight: normal;
  font-style: normal;
}

strong,
b {
  font-family: "UtoBold", serif;
  font-weight: normal;
  font-style: normal;
}

.faq {
  margin-bottom: 0.5rem;
}

.faq-item {
  margin-bottom: 0.85rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-family: "UtoBold", serif;
  font-weight: normal;
  font-style: normal;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-trigger::after {
  content: "+";
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: #404040;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  background: var(--surface-hover);
}

.faq-panel {
  padding: 0 1rem 1rem;
}

.faq-panel p {
  margin-top: 0.75rem;
}

a {
  color: #203c8c;
}

a:hover {
  color: #1a2f6d;
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .page-shell {
    width: min(100% - 1.4rem, 800px);
    padding-top: 1.7rem;
  }

  .page-hero {
    gap: 0.9rem;
  }

  .suite-logo {
    width: clamp(78px, 25vw, 108px);
  }

  .faq-trigger {
    padding: 0.78rem 0.8rem;
  }

  .faq-panel {
    padding: 0 0.8rem 0.85rem;
  }
}
