/* imgus — landing page (light theme)
 * Layout/aesthetic modeled on altinkesem.com vendor cards: rounded card with
 * banner + overlapping circle + italic-serif title + caps gold subtitle +
 * italic description + bold CTA. Brand is imgus-native (vivid electric
 * blue + sparkle). Light page, dark text.
 */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,500;1,700;1,800&display=swap');

:root {
  /* Surfaces */
  --paper:        #fafbff;
  --paper-2:      #ffffff;
  --paper-tint:   #eff2fc;

  /* Body type */
  --ink:          #0a1230;
  --ink-2:        #4a527a;
  --ink-3:        #8a91b3;

  /* Brand — sampled from the imgus logo */
  --brand:        #1f3df5;
  --brand-deep:   #1530c8;
  --brand-soft:   #d6deff;

  /* Altinkesem-style gold subtitle accent */
  --gold:         #b89866;
  --gold-soft:    #d4b88e;

  /* Banner gradient — deep purple/violet, mirroring the imgus screenshots */
  --grad-banner:  linear-gradient(125deg, #1a0a2e 0%, #3a1456 30%, #5b1f7a 55%, #7a2596 75%, #9a36b8 100%);
  /* Tile gradient — soft periwinkle → near-white, mirroring the imgus icon */
  --grad-tile:    linear-gradient(135deg, #b3c2f6 0%, #d8e1fb 60%, #e8eefd 100%);

  --line:         rgba(10, 18, 48, .08);
  --line-2:       rgba(10, 18, 48, .14);

  --display: "Playfair Display", "Times New Roman", serif;
  --sans:    "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --maxw: 1080px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============= Brand mark (small, in nav/footer) ============= */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-tile {
  width: 36px;
  height: 36px;
  border-radius: 25%;
  background: var(--grad-tile);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 0.5px rgba(255, 255, 255, .9),
    0 2px 6px rgba(31, 61, 245, .12);
}
.brand-tile svg { width: 16px; height: 16px; color: var(--brand); }
.brand-word {
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--brand);
}

/* ============= Header ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  background: var(--brand);
  color: #fff;
  border: 0;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-deep);
  box-shadow: 0 10px 24px -8px rgba(31, 61, 245, .45);
}
@media (max-width: 720px) { .nav-links { display: none; } }

/* ============= Profile card (hero, altinkesem-style) ============= */
.hero { padding: 36px 0 24px; }

.profile-card {
  background: var(--paper-2);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(31, 61, 245, .18);
}

/* Banner image area at top of the card */
.profile-banner {
  height: clamp(220px, 32vw, 360px);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), transparent 40%),
    var(--grad-banner);
  position: relative;
  overflow: hidden;
}
/* Sparkles scattered across the banner */
.banner-spark {
  position: absolute;
  color: rgba(255, 255, 255, .85);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, .35));
  pointer-events: none;
}
.banner-spark svg { width: 100%; height: 100%; }
.banner-spark.s1 { top: 22%;  left: 12%; width: 28px; height: 28px; }
.banner-spark.s2 { top: 38%;  right: 18%; width: 42px; height: 42px; opacity: .9; }
.banner-spark.s3 { top: 64%;  left: 28%; width: 18px; height: 18px; opacity: .65; }
.banner-spark.s4 { top: 14%;  right: 36%; width: 22px; height: 22px; opacity: .7; }
.banner-spark.s5 { top: 70%;  right: 12%; width: 32px; height: 32px; opacity: .9; color: #d4d8ff; }
.banner-spark.s6 { top: 50%;  left: 56%; width: 14px; height: 14px; opacity: .55; }

.banner-tagline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: rgba(255, 255, 255, .92);
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
  pointer-events: none;
}
.banner-tagline em {
  font-style: italic;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .35));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Profile body (below banner) */
.profile-body {
  padding: 0 clamp(24px, 4vw, 56px) clamp(40px, 5vw, 64px);
  margin-top: -64px;
  position: relative;
  text-align: center;
}

/* The avatar tile — overlaps the banner.
   Layout: word "imgus" centered; sparkle absolutely positioned
   above the first letter "i", matching the actual logo. */
.profile-avatar {
  width: 132px;
  height: 132px;
  border-radius: 30%;
  background: var(--grad-tile);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid var(--paper-2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .8),
    inset 0 -20px 40px rgba(120, 140, 220, .15),
    0 20px 50px -10px rgba(80, 100, 220, .35);
}
.avatar-mark {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.avatar-mark .word {
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--brand);
  font-size: 38px;
  line-height: 1;
  display: block;
}
.avatar-mark .spark {
  position: absolute;
  top: -16px;
  left: -1px;
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.avatar-mark .spark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
}
.profile-sub {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.profile-sub .dot { margin: 0 8px; opacity: .55; }
.profile-desc {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.profile-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.profile-cta:hover {
  transform: translateY(-1px);
  background: var(--brand-deep);
  box-shadow: 0 14px 30px -10px rgba(31, 61, 245, .45);
}
.profile-cta svg { width: 22px; height: 22px; }

/* App Store badge variant for the final card */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px 11px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  transition: transform .2s, box-shadow .2s;
}
.appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(10, 18, 48, .35);
}
.appstore svg { width: 28px; height: 28px; flex-shrink: 0; }
.appstore .small { font-size: 11px; line-height: 1; opacity: .85; }
.appstore .big { font-size: 19px; font-weight: 700; line-height: 1.1; margin-top: 2px; letter-spacing: -0.02em; }

/* Facts row across the bottom of the profile card */
.profile-facts {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
  background: var(--paper-tint);
}
@media (max-width: 880px) { .profile-facts { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .profile-facts { grid-template-columns: repeat(2, 1fr); } }
.profile-fact {
  padding: 22px 12px;
  border-right: 1px solid var(--line);
}
.profile-fact:last-child { border-right: 0; }
@media (max-width: 880px) {
  .profile-fact:nth-child(3n) { border-right: 0; }
  .profile-fact:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .profile-fact { border-right: 0; }
  .profile-fact:nth-child(odd) { border-right: 1px solid var(--line); }
  .profile-fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}
.profile-fact dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.profile-fact dd {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.profile-fact dd small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0;
}

/* ============= Section heads ============= */
.section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-head h2 em {
  font-style: italic;
  color: var(--brand);
}
.section-head p {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
}

/* ============= Screenshot showcase ============= */
.shots { padding: 80px 0; }
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .shots-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .shots-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

.shot-card {
  border-radius: 24px;
  overflow: hidden;
  background: #1a0a2c;
  box-shadow: 0 20px 50px -25px rgba(60, 20, 100, .35);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
}
.shot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(60, 20, 100, .45);
}
.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============= Tools ============= */
.tools {
  padding: 80px 0;
  background: var(--paper-tint);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr; } }

.tool {
  background: var(--paper-2);
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.tool:hover {
  transform: translateY(-4px);
  border-color: var(--brand-soft);
  box-shadow: 0 20px 40px -20px rgba(31, 61, 245, .18);
}
.tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: var(--grad-tile);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
}
.tool h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.tool p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 36ch;
  margin: 0 auto;
}

/* ============= Pricing ============= */
.pricing { padding: 80px 0; }
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  position: relative;
}
.plan.featured {
  background: linear-gradient(160deg, #f4f6ff 0%, #e6ebff 100%);
  border-color: var(--brand);
  box-shadow: 0 30px 60px -30px rgba(31, 61, 245, .25);
}
.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.plan-price {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.plan-price small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0;
}
.plan p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.plan ul { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); }
.plan li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.coins-card {
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.coins-card-text strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.coins-card-text p { font-size: 14px; color: var(--ink-2); }
.coins-list { display: flex; gap: 8px; flex-wrap: wrap; }
.coin-chip {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.coin-chip strong { font-weight: 800; color: var(--brand); }
.coin-chip span { color: var(--ink-2); margin-left: 4px; }

/* ============= Final CTA ============= */
.final { padding: 0 0 60px; }
.final-card {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 61, 245, .4), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(154, 54, 184, .25), transparent 50%);
  pointer-events: none;
}
.final-card > * { position: relative; }
.final-card h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
}
.final-card h2 em { font-style: italic; color: var(--gold-soft); }
.final-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 36px;
  max-width: 540px;
  margin-inline: auto;
}
.final-card .appstore { background: #fff; color: var(--ink); }

/* ============= Footer ============= */
.foot {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 14px;
  max-width: 320px;
}
.foot-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color .2s;
}
.foot-col a:hover { color: var(--brand); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ============= Legal pages ============= */
.legal { padding: 56px 0 80px; }
.legal-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 72px);
  box-shadow: 0 20px 60px -30px rgba(31, 61, 245, .12);
}
.legal-hero {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--ink);
}
.legal-hero h1 em { font-style: italic; color: var(--brand); }
.legal-hero p {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.legal-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .legal-body { grid-template-columns: 1fr; gap: 32px; } }

.legal-toc {
  position: sticky;
  top: 96px;
  font-size: 13px;
}
@media (max-width: 880px) { .legal-toc { position: static; } }
.legal-toc h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 8px;
}
.legal-toc li::before {
  content: counter(toc, decimal-leading-zero);
  counter-increment: toc;
  color: var(--ink-3);
  margin-right: 8px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.legal-toc a {
  color: var(--ink-2);
  transition: color .2s;
}
.legal-toc a:hover { color: var(--brand); }

.legal-prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink);
}
.legal-prose > p:first-of-type {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
}
.legal-prose h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 56px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.legal-prose h2 .num {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.legal-prose h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal-prose p { margin-bottom: 16px; color: var(--ink); }
.legal-prose ul { list-style: none; margin-bottom: 18px; padding: 0; }
.legal-prose li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.legal-prose strong { font-weight: 700; color: var(--ink); }
.legal-prose a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.legal-prose a:hover { opacity: .7; }
.legal-prose .callout {
  background: rgba(184, 152, 102, .08);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  font-family: var(--display);
  font-style: italic;
}
.legal-prose .callout strong {
  font-family: var(--sans);
  font-style: normal;
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.001s !important; animation-duration: 0.001s !important; }
}
