:root {
  --cream: #f7f5ee;
  --paper: #fffdf8;
  --ink: #172522;
  --muted: #68736f;
  --green: #153d36;
  --mint: #bdebd7;
  --lime: #dff279;
  --line: #dcded7;
  --orange: #ff8b5d;
  --purple: #b9a5ff;
  --max: 1200px;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
}
.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(var(--max), calc(100% - 40px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 14px 12px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: 0.2s;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px #183b3220;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 800 1.25rem Manrope;
}
.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.site-nav,
.nav-actions,
.button-row,
.hero-notes,
.tag-row {
  display: flex;
  align-items: center;
}
.site-nav {
  gap: 34px;
  margin-left: auto;
}
.site-nav a,
.text-link {
  font-size: 0.92rem;
  font-weight: 600;
}
.nav-actions {
  gap: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.18s;
  border: 1px solid transparent;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #173b3326;
}
.button:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.button-small {
  min-height: 44px;
  padding: 0 18px;
}
.button-primary {
  background: var(--green);
  color: white;
}
.button-secondary {
  background: transparent;
  border-color: #aab1ac;
}
.menu-button,
.mobile-nav {
  display: none;
}
.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0 95px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3a665c;
}
.kicker i {
  width: 24px;
  height: 2px;
  background: var(--orange);
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 0;
}
h1 {
  font-size: clamp(4rem, 7.3vw, 7.1rem);
}
h1 em,
h2 em {
  font-style: normal;
  color: #397467;
}
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 580px;
  color: var(--muted);
  margin: 27px 0;
}
.button-row {
  gap: 12px;
}
.hero-notes {
  gap: 24px;
  margin-top: 28px;
  color: #61706b;
  font-size: 0.85rem;
}
.hero-notes span:before {
  content: "✓";
  color: #2c8269;
  margin-right: 7px;
}
.hero-stage {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
}
.stage-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, #c5efdca8, transparent 65%);
  right: -80px;
}
.dashboard-card {
  position: relative;
  width: 100%;
  padding: 28px;
  background: var(--paper);
  border: 1px solid #d8ddd7;
  border-radius: 28px;
  box-shadow: 0 35px 80px #21413824;
  transform: rotate(1.5deg);
}
.dash-top {
  display: flex;
  justify-content: space-between;
}
.dash-top small,
.dash-top strong {
  display: block;
}
.dash-top small {
  color: var(--muted);
}
.dash-top strong {
  font: 700 2rem Manrope;
  margin-top: 5px;
}
.status {
  font-size: 0.78rem;
  padding: 8px 10px;
  background: #e3f4eb;
  border-radius: 20px;
  height: max-content;
}
.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #2c9d72;
  border-radius: 50%;
  margin-right: 5px;
}
.dash-chart {
  height: 125px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 22px 0;
}
.dash-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(#64aa92, #d5eddd);
  border-radius: 5px 5px 0 0;
}
.dash-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  font-size: 0.74rem;
  color: #7b8581;
}
.dash-tabs b {
  color: var(--ink);
}
.transaction {
  display: grid;
  grid-template-columns: 38px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #ebece7;
  font-size: 0.78rem;
}
.transaction > i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffd29f;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 700;
}
.transaction > i.violet {
  background: #d9cffd;
}
.transaction > i.blue {
  background: #c9e4fb;
}
.transaction div b,
.transaction div small {
  display: block;
}
.transaction div small {
  color: #89918e;
  margin-top: 3px;
}
.transaction > span {
  background: #e2f4eb;
  color: #287057;
  padding: 6px 8px;
  border-radius: 12px;
}
.transaction > span.waiting {
  background: #fff0ce;
  color: #936a1f;
}
.route-card,
.reconcile-card {
  position: absolute;
  background: #163c35;
  color: white;
  border-radius: 18px;
  box-shadow: 0 18px 40px #173b3335;
}
.route-card {
  right: -38px;
  top: 40px;
  width: 195px;
  padding: 18px;
  transform: rotate(-2deg);
}
.route-card small,
.route-card p {
  color: #b9d0c8;
}
.route-card div {
  margin: 14px 0 0;
}
.route-card div i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 7px;
}
.route-card p {
  margin: 5px 0 0;
  font-size: 0.7rem;
}
.reconcile-card {
  left: -28px;
  bottom: 25px;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.reconcile-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}
.reconcile-card small,
.reconcile-card b {
  display: block;
}
.reconcile-card small {
  color: #a7c3bb;
  font-size: 0.7rem;
}
.quiet-proof {
  padding: 27px 20px;
  background: #e9e9e1;
  text-align: center;
  border-block: 1px solid #dedfd8;
}
.quiet-proof p {
  font-size: 0.75rem;
  color: #78807d;
}
.quiet-proof div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font: 700 0.78rem Manrope;
  letter-spacing: 0.13em;
}
.quiet-proof i {
  width: 4px;
  height: 4px;
  background: #9da5a1;
  border-radius: 50%;
}
.platform {
  padding: 130px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading .kicker {
  grid-column: 1/-1;
}
.section-heading h2,
.operator-copy h2,
.developer-copy h2,
.trust h2,
.final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}
.section-heading > p:last-child {
  color: var(--muted);
  line-height: 1.65;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 370px;
  overflow: hidden;
}
.feature-wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.feature-number {
  display: block;
  color: #498173;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  margin-bottom: 60px;
}
.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.6;
}
.feature-card a {
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
  color: #376f62;
}
.checklist {
  background: #f2f2ec;
  border-radius: 17px;
  padding: 22px;
}
.checklist > div {
  display: flex;
  justify-content: space-between;
}
.checklist progress {
  width: 100%;
  height: 7px;
  accent-color: #3c8873;
}
.checklist p {
  border-top: 1px solid #daddd5;
  padding: 13px 0;
  margin: 0;
}
.checklist p b {
  float: right;
  font-size: 0.75rem;
  color: #397a68;
}
.flow-icon {
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #48917c;
  margin: 30px 0 75px;
}
.tag-row {
  gap: 7px;
}
.tag-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.72rem;
}
.dark-card {
  background: #163c35;
  color: white;
}
.dark-card .feature-number,
.dark-card p {
  color: #b9cec8;
}
.route-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 55px 0 85px;
}
.route-visual span {
  font-size: 0.7rem;
  padding: 8px;
  background: #295249;
  border-radius: 7px;
}
.route-visual i {
  height: 1px;
  background: #82a89e;
  flex: 1;
}
.route-visual b {
  font-size: 0.7rem;
  background: var(--lime);
  color: #17332d;
  padding: 10px;
  border-radius: 9px;
}
.mini-ledger {
  background: #f0f1ea;
  border-radius: 18px;
  padding: 22px;
}
.mini-ledger div {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #d6dad2;
}
.operators {
  background: #153d36;
  color: white;
  padding: 130px 0;
}
.operator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.kicker.light {
  color: #b5d2c9;
}
.operator-copy > p {
  color: #bad0c9;
  line-height: 1.7;
}
.operator-copy h2 em {
  color: var(--lime);
}
.role-switch {
  display: flex;
  gap: 7px;
  margin-top: 35px;
}
.role-switch button {
  border: 1px solid #51736b;
  background: transparent;
  color: #bad0c9;
  padding: 11px 15px;
  border-radius: 9px;
  cursor: pointer;
}
.role-switch button.active {
  background: var(--lime);
  color: #17332d;
  border-color: var(--lime);
}
.role-panel {
  background: #f8f7f1;
  color: var(--ink);
  border-radius: 24px;
  padding: 40px;
}
.role-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #3f7c6d;
}
.role-panel h3 {
  font-size: 2.2rem;
}
.role-panel ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
}
.role-panel li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.role-panel li span {
  color: #559081;
  margin-right: 18px;
}
.developer {
  padding: 130px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.code-window {
  background: #142823;
  border-radius: 24px;
  color: white;
  overflow: hidden;
  box-shadow: 0 30px 70px #203c3420;
}
.code-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 20px;
  background: #203a34;
  color: #809d95;
}
.code-bar small {
  text-align: center;
}
.code-bar b {
  text-align: right;
  color: var(--lime);
}
pre {
  padding: 35px;
  margin: 0;
  font: 500 1rem/1.9 monospace;
}
code em {
  color: #c0a9ff;
}
code b {
  color: #aee6c4;
}
code strong {
  color: #ffbd84;
}
.code-result {
  display: flex;
  gap: 20px;
  padding: 18px 22px;
  background: #1e3933;
  font-size: 0.75rem;
}
.code-result span {
  color: #8ce0b4;
}
.code-result strong {
  margin-left: auto;
  color: var(--lime);
}
.developer-copy p,
.developer-copy li,
.trust p {
  color: var(--muted);
  line-height: 1.7;
}
.developer-copy ul {
  list-style: "✓  ";
  padding-left: 22px;
  margin: 25px 0;
}
.developer-copy li {
  padding: 5px;
}
.trust {
  padding: 30px 0 130px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.trust-list > div {
  display: grid;
  grid-template-columns: 40px 180px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.trust-list span {
  color: #4e8174;
}
.trust-list b {
  font-size: 1.05rem;
}
.trust-list p {
  margin: 0;
}
.final-cta {
  background: #153d36;
  color: white;
  border-radius: 30px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 100px;
}
.final-cta h2 em {
  color: var(--lime);
}
.final-cta p {
  color: #b8cec7;
}
.button-light {
  background: var(--lime);
  color: #19362f;
}
.button-outline {
  color: white;
  border-color: #55766e;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}
.site-footer p {
  color: var(--muted);
}
.site-footer > div {
  display: flex;
  gap: 20px;
}
.site-footer small {
  grid-column: 1/-1;
  color: #8b918f;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.signup-body {
  background: #f7f5ee;
}
.signup-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.signup-story {
  background: #153d36;
  color: white;
  padding: 45px clamp(30px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand.light {
  color: white;
}
.signup-story h1 {
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}
.signup-story h1 em {
  color: var(--lime);
}
.signup-story > div > p {
  max-width: 600px;
  color: #bdd0ca;
  line-height: 1.7;
}
.signup-story ul {
  list-style: none;
  padding: 20px 0;
}
.signup-story li {
  padding: 8px 0;
}
.signup-story li span {
  color: var(--lime);
  margin-right: 10px;
}
.signup-story blockquote {
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--lime);
  color: #adc6bf;
}
.signup-action {
  padding: 45px clamp(30px, 7vw, 100px);
  display: flex;
  flex-direction: column;
}
.back-link {
  font-weight: 600;
  color: #58716b;
}
.signup-card {
  max-width: 570px;
  margin: auto 0;
}
.step-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: #44806f;
  font-weight: 700;
}
.signup-card h2 {
  font-size: 2.8rem;
  margin: 12px 0;
}
.signup-card > p {
  color: var(--muted);
  line-height: 1.6;
}
.account-options {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}
.account-option {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  text-align: left;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}
.account-option.active {
  border: 2px solid #2b6b5a;
  background: #f4faf6;
}
.account-option i {
  font-style: normal;
  color: #6f7b77;
}
.account-option span b,
.account-option span small {
  display: block;
}
.account-option span small {
  color: var(--muted);
  margin-top: 4px;
}
.account-option strong {
  display: none;
}
.account-option.active strong {
  display: block;
  color: #2d8168;
}
.signup-continue {
  width: 100%;
}
.signup-safe {
  font-size: 0.78rem;
  text-align: center;
}
.sign-in-line {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 24px;
  color: var(--muted);
}
.sign-in-line a {
  color: #2e7160;
  font-weight: 700;
}
@media (max-width: 900px) {
  .site-nav,
  .nav-actions {
    display: none;
  }
  .menu-button {
    display: block;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 9px 12px;
  }
  .mobile-nav.open {
    display: flex;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    flex-direction: column;
    gap: 16px;
  }
  .hero,
  .developer,
  .operator-grid,
  .trust {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  .hero-stage {
    min-height: 500px;
  }
  .section-heading {
    display: block;
  }
  .feature-wide {
    grid-template-columns: 1fr;
  }
  .operator-grid,
  .developer,
  .trust {
    gap: 55px;
  }
  .final-cta {
    display: block;
    padding: 45px;
  }
  .final-cta .button-row {
    margin-top: 30px;
  }
  .signup-shell {
    grid-template-columns: 1fr;
  }
  .signup-story {
    min-height: 0;
    padding-block: 24px;
  }
  .signup-story > div {
    margin-top: 24px;
  }
  .signup-story h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }
  .signup-story > div > p,
  .signup-story blockquote {
    display: none;
  }
  .signup-story ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 8px 0 0;
    padding: 0;
    font-size: 0.76rem;
  }
  .signup-action {
    min-height: 0;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer small {
    grid-column: 1;
  }
}
@media (max-width: 600px) {
  .section-shell,
  .site-header {
    width: calc(100% - 24px);
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 3.65rem;
  }
  .hero-stage {
    min-height: 430px;
  }
  .dashboard-card {
    padding: 18px;
  }
  .route-card {
    right: -4px;
  }
  .reconcile-card {
    left: -4px;
  }
  .transaction {
    grid-template-columns: 34px 1fr auto;
  }
  .transaction > span {
    display: none;
  }
  .quiet-proof div {
    gap: 10px;
    font-size: 0.6rem;
  }
  .platform,
  .operators,
  .developer {
    padding: 90px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-wide {
    grid-column: auto;
  }
  .feature-number {
    margin-bottom: 35px;
  }
  .role-switch {
    flex-wrap: wrap;
  }
  .trust-list > div {
    grid-template-columns: 35px 1fr;
  }
  .trust-list p {
    grid-column: 2;
  }
  .final-cta {
    border-radius: 20px;
  }
  .final-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  .site-footer > div {
    flex-wrap: wrap;
  }
  .signup-story,
  .signup-action {
    padding: 30px 22px;
  }
  .signup-story h1 {
    font-size: 3.25rem;
  }
}

/* Brand photography and motion */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 30px;
  color: white;
  box-shadow: 0 35px 90px #0b292248;
}
.hero-background,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-background {
  z-index: -2;
  object-fit: cover;
}
.hero-scrim {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(7, 28, 23, 0.96) 0%,
    rgba(10, 37, 30, 0.84) 43%,
    rgba(8, 29, 24, 0.42) 74%,
    rgba(8, 29, 24, 0.2) 100%
  );
}
.hero-copy {
  padding-left: 56px;
}
.hero .kicker,
.hero h1 em {
  color: var(--lime);
}
.hero .hero-lede,
.hero .hero-notes {
  color: #d7e2de;
}
.hero .button-primary {
  background: var(--lime);
  color: var(--ink);
}
.hero .button-secondary {
  color: white;
  border-color: #ffffff80;
}
.merchant-showcase {
  position: relative;
  min-height: 590px;
  margin-top: 45px;
  overflow: hidden;
  border-radius: 28px;
  color: white;
  box-shadow: 0 30px 70px #173b332c;
}
.merchant-showcase picture,
.merchant-showcase picture::after {
  position: absolute;
  inset: 0;
}
.merchant-showcase picture::after {
  content: "";
  background: linear-gradient(
    90deg,
    #09271fdb 0%,
    #09271f70 52%,
    transparent 82%
  );
}
.merchant-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merchant-showcase-copy {
  position: relative;
  z-index: 1;
  max-width: 570px;
  padding: 86px 70px;
}
.merchant-showcase-copy h2 {
  margin: 22px 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
}
.merchant-showcase-copy > p:last-of-type {
  margin-bottom: 30px;
  color: #dce9e4;
}
@media (max-width: 900px) {
  .hero {
    margin-top: 30px;
    padding-inline: 30px;
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(7, 28, 23, 0.94) 0%,
      rgba(7, 28, 23, 0.85) 58%,
      rgba(7, 28, 23, 0.72) 100%
    );
  }
}
@media (max-width: 600px) {
  .hero,
  .merchant-showcase {
    width: calc(100% - 24px);
    border-radius: 22px;
  }
  .hero {
    padding-inline: 22px;
  }
  .merchant-showcase {
    min-height: 520px;
  }
  .merchant-showcase-copy {
    padding: 52px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-background {
    display: none;
  }
  .hero {
    background:
      linear-gradient(90deg, #08231dce, #08231d78),
      url("./assets/media/hexapay-cafe-hero.webp") center / cover;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.legal-body {
  background: var(--cream);
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-header > a:last-child {
  color: #2e7160;
  font-weight: 700;
}
.legal-page {
  max-width: 820px;
  padding-block: 90px 120px;
}
.legal-page h1 {
  margin-top: 20px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}
.legal-updated {
  color: var(--muted);
}
.legal-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.legal-page section:first-of-type {
  margin-top: 45px;
}
.legal-page h2 {
  font-size: 1.45rem;
}
.legal-page section p {
  color: #586762;
  line-height: 1.75;
}
.legal-page section a {
  color: #2e7160;
  font-weight: 700;
}
