:root{
  --bg-dark: #0f0f12;
  --bg-dark-2: #14141a;
  --bg-light: #f6f6f4;
  --text-dark: #0f0f12;
  --text-light: #ffffff;
  --muted-dark: rgba(255,255,255,.72);
  --muted-light: rgba(15,15,18,.72);
  --border-dark: rgba(255,255,255,.12);
  --border-light: rgba(15,15,18,.12);
  --accent: #c19a5b;
  --radius: 10px;
  --pad: clamp(1rem, 4vw, 3.5rem);
  --gap: clamp(.75rem, 2vw, 1.5rem);
  --h1: clamp(2.6rem, 5.5vw, 5rem);
  --h2: clamp(1.8rem, 3.2vw, 2.75rem);
  --h3: clamp(1.05rem, 1.6vw, 1.2rem);
  --p: clamp(1rem, 1.3vw, 1.15rem);
  --small: clamp(.9rem, 1.1vw, 1rem);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: 'PolySans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  background: var(--bg-light);
  color: var(--text-dark);
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }

/* Accent Italic */
.italic-accent{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--accent);
}

/* Skip link */
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 12px; top: 12px; width:auto; height:auto;
  background:#fff; color:#000; padding:10px 12px; border-radius:8px; z-index:9999;
}

/* Layout */
.container{ max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); }
.narrow{ max-width: 760px; }
.center{ text-align: center; }

.section{ padding: clamp(4rem, 8vw, 7rem) 0; }
.light + .light{ padding-top: clamp(1rem, 2vw, 1.5rem); }
.dark{ background: var(--bg-dark); color: var(--text-light); }
.light{ background: var(--bg-light); color: var(--text-dark); }

h1{ font-size: var(--h1); line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
h2{ font-size: var(--h2); line-height: 1.15; margin: 0 0 .75rem 0; letter-spacing: -0.01em; }
h3{ font-size: var(--h3); margin: 0 0 .4rem 0; }

p{ font-size: var(--p); margin: 0 0 1rem 0; color: var(--muted-light); }
.dark p{ color: var(--muted-dark); }

.lead{ margin-top: .25rem; }
.note{ margin-top: 1rem; }
.micro{ font-size: var(--small); margin-top: 1rem; color: var(--muted-dark); }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246,246,244,.85);
  border-bottom: 1px solid var(--border-light);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: .9rem 0;
  gap: 1rem;
}
.brand{ display:flex; flex-direction:column; gap:.1rem; }
.brand-mark{ font-weight: 800; letter-spacing: -0.02em; }
.brand-tag{ font-size: .9rem; opacity: .75; }

.site-nav{
  display:flex; align-items:center; gap: .75rem;
}
.site-nav a{
  padding: .55rem .6rem;
  border-radius: 10px;
  font-weight: 600;
  opacity: .9;
}
.site-nav a.active{
  background: rgba(15,15,18,.06);
}
.nav-toggle{
  display:none;
  width: 44px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span{
  display:block;
  width: 18px; height: 2px;
  background: rgba(15,15,18,.8);
  margin: 4px auto;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn.primary{ background: #fff; color: #0f0f12; }
.btn.secondary{ background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.light .btn.secondary{ border-color: rgba(15,15,18,.35); color: #0f0f12; }
.btn.small{ padding: 10px 14px; border-radius: 10px; }

.cta-group{ display:flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem; }
.cta-group.center{ justify-content: center; }

/* Hero */
.hero{
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.subline{
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--muted-dark);
}
/* Hero panel card (storyspin, platform) */
.panel-card{
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
}
.panel-kicker{
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: .38;
  margin-bottom: 1.4rem;
}
.panel-list{
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.panel-item{
  font-size: var(--small);
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: baseline;
  gap: .6rem;
  line-height: 1.45;
}
.panel-item span{
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  opacity: .4;
  flex-shrink: 0;
}
.panel-item strong{
  font-weight: 700;
  color: rgba(255,255,255,.95);
}

@keyframes dot-pulse{
  0%   { box-shadow: 0 0 0 0 rgba(193,154,91,.65); }
  70%  { box-shadow: 0 0 0 9px rgba(193,154,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,154,91,0); }
}

/* System panel — architectural timeline */
.system-panel{
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  overflow: hidden;
}
.system-panel-title{
  padding: 1.25rem 2rem 1.1rem;
  font-size: var(--small);
  font-weight: 600;
  color: var(--text-light);
  opacity: .35;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
/* Spine */
.system-nodes{
  position: relative;
  padding: 1.25rem 0;
}
.system-nodes::before{
  content: '';
  position: absolute;
  left: calc(2rem + 1px); /* pad-left + half of 4px dot */
  top: 2.25rem;
  bottom: 2.25rem;
  width: 1px;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.system-node{ position: relative; }
/* Spine dot — very small, very quiet */
.spine-dot{
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  position: relative;
  z-index: 1;
  transition: background .2s ease, border-color .2s ease;
}
.node-btn[aria-expanded="true"] .spine-dot{
  background: var(--accent);
  border-color: var(--accent);
  animation: dot-pulse 2.2s ease-out infinite;
}
.spine-dot::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, rgba(193,154,91,.65), transparent);
  opacity: 0;
  transition: height .4s ease, opacity .4s ease;
  pointer-events: none;
}
.node-btn[aria-expanded="true"] .spine-dot::after{
  height: 30px;
  opacity: 1;
}
.node-btn:hover .spine-dot{ border-color: rgba(255,255,255,.38); }
.node-btn{
  width: 100%;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  text-align: left;
  opacity: .35;
  transition: opacity .15s ease;
}
.node-btn:hover{ opacity: .65; }
.node-btn[aria-expanded="true"]{ opacity: 1; }
.node-btn:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 6px;
}
.node-label{
  font-size: var(--small);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.node-btn[aria-expanded="true"] .node-label{ color: var(--accent); }
.node-connector{
  flex: 1;
  height: 1px;
  position: relative;
  background: rgba(255,255,255,.07);
  overflow: hidden;
  align-self: center;
}
.node-connector::after{
  content: '';
  position: absolute;
  top: -1px;
  left: -50%;
  width: 50%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, rgba(193,154,91,.9) 50%, transparent);
  opacity: 0;
}
.node-btn[aria-expanded="true"] .node-connector::after{
  animation: h-pulse 2.2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes h-pulse{
  0%   { left: -50%; opacity: 0; }
  8%   { opacity: 1; }
  42%  { left: 100%; opacity: 1; }
  50%  { opacity: 0; }
  100% { left: -50%; opacity: 0; }
}
.node-badge{
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 100px;
  background: rgba(193,154,91,.11);
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .2s ease;
}
.node-btn[aria-expanded="true"] .node-badge{ opacity: 1; }
/* Accordion */
.node-body-wrap{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}
.node-body-wrap.open{ grid-template-rows: 1fr; }
.node-body-inner{ overflow: hidden; }
.node-desc{
  padding: .35rem 2rem 2rem calc(2rem + .6rem + 4px);
  font-size: var(--small);
  color: var(--muted-dark);
  line-height: 1.7;
  margin: 0;
}

/* Statement section */
.statement-section{ padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.statement{
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0 0 .65rem 0;
  font-weight: 400;
}
.statement:last-child{ margin-bottom: 0; }

/* Section head */
.section-head{ margin-bottom: 2rem; }
.section-head .lead{ max-width: 52rem; }
.light .section-head h2::after{
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-top: .75rem;
  opacity: .7;
}

/* Flow */
.flow{
  margin-top: 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  background: rgba(255,255,255,.6);
}
.flow-step{ font-weight: 800; letter-spacing: -0.01em; }
.flow-arrow{ opacity: .6; margin: .35rem 0; }

/* Horizontal scroll row */
.scroll-row{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  padding: .75rem 0 .25rem 0;
  scroll-snap-type: x mandatory;
}
.scroll-row::-webkit-scrollbar{ height: 10px; }
.scroll-row::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius: 12px; }
.light .scroll-row::-webkit-scrollbar-thumb{ background: rgba(15,15,18,.12); }

.tile{
  scroll-snap-align: start;
  min-width: min(320px, 86vw);
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-top: 2px solid rgba(193,154,91,.35);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  color: #ffffff;
}
.tile h3{ color: #ffffff; }
.tile p{ margin: .35rem 0 0 0; color: rgba(255,255,255,.72); }
.results-note{
  margin: 1.5rem 0 0 0;
  font-size: var(--small);
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.results-note::before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: .65;
  flex-shrink: 0;
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  background: rgba(255,255,255,.65);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover{
  box-shadow: 0 4px 24px rgba(15,15,18,.08);
  transform: translateY(-2px);
}
.card p{ margin: .35rem 0 0 0; color: var(--muted-light); }

/* Lists */
.bullets{
  padding-left: 1.1rem;
  margin: .8rem 0 1rem 0;
}
.bullets li{ margin: .35rem 0; font-size: var(--p); color: var(--muted-light); }
.dark .bullets li{ color: var(--muted-dark); }
.steps{ padding-left: 1.2rem; margin: .8rem 0 0 0; }
.steps li{ margin: .6rem 0; color: var(--muted-light); }
.steps strong{ color: var(--text-dark); }
.dark .steps strong{ color: var(--text-light); }

/* Forms */
.form{
  display:flex; flex-direction:column; gap: .9rem;
  margin-top: 1rem;
}
label{ display:flex; flex-direction:column; gap: .4rem; font-weight: 700; }
input, textarea{
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}
textarea{ resize: vertical; }
.form-note{ font-size: var(--small); opacity: .8; }
.label-optional{ font-weight: 400; opacity: .55; }
.field-error{ font-size: var(--small); color: #c0392b; font-weight: 400; margin-top: .25rem; }

.divider{
  height: 1px;
  background: var(--border-light);
  margin: 2.25rem 0;
}

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 1.75rem;
}
.testimonial{
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.testimonial:hover{
  border-color: rgba(193,154,91,.55);
  box-shadow: 0 0 0 3px rgba(193,154,91,.1), 0 2px 14px rgba(193,154,91,.08);
}
.testimonial::before{
  content: '\201C';
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 3.25rem;
  line-height: .85;
  color: rgba(0,0,0,.12);
  margin-bottom: -.5rem;
}
.testimonial-quote{
  font-size: var(--p);
  color: var(--muted-light);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.testimonial-source{ margin: 0; font-size: var(--small); padding-top: .75rem; border-top: 1px solid rgba(0,0,0,.06); }
.testimonial-name{ display: block; font-weight: 700; color: var(--text-dark); letter-spacing: -.01em; }
.testimonial-role{ display: block; opacity: .5; margin-top: .15rem; }

/* Shared node-card number label (matches StoryWorks visual language) */
.card-num{
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-size: .68rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  color: rgba(0,0,0,.18);
  font-family: ui-monospace, 'SF Mono', monospace;
}

@keyframes node-breathe{
  0%, 100% { box-shadow: 0 0 0 3px rgba(193,154,91,.15), 0 2px 14px rgba(193,154,91,.08); }
  50%       { box-shadow: 0 0 0 6px rgba(193,154,91,.07), 0 2px 22px rgba(193,154,91,.17); }
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 1.75rem;
  align-items: start;
}
.pricing-card{
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,.65);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured{
  background: #fff;
  border-color: rgba(15,15,18,.22);
  box-shadow: 0 4px 32px rgba(15,15,18,.1);
}
.pricing-card.dark-card{
  background: var(--bg-dark-2);
  border-color: var(--border-dark);
  color: var(--text-light);
}
.pricing-kicker{
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: .6rem;
}
.pricing-name{
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 .5rem 0;
  line-height: 1.15;
}
.pricing-desc{
  margin: 0 0 1.5rem 0;
  font-size: var(--p);
  color: var(--muted-light);
  line-height: 1.5;
}
.dark-card .pricing-desc{ color: var(--muted-dark); }
.pricing-includes{
  margin: 0 0 2rem 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.pricing-includes li{
  font-size: var(--small);
  color: var(--muted-light);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.pricing-includes li::before{
  content: '—';
  position: absolute;
  left: 0;
  opacity: .4;
}
.dark-card .pricing-includes li{ color: var(--muted-dark); }
.pricing-card .btn{ align-self: flex-start; }
.pricing-note{
  margin-top: .75rem;
  font-size: var(--small);
  opacity: .6;
}

/* Footer */
.site-footer {
  background: #0f0f12;
  color: #fff;
  padding: 2.5rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-brand { font-weight: 800; }
.footer-note { opacity: .7; margin-top: .35rem; font-size: .875rem; }
.footer-col-head {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .4;
  margin-bottom: .75rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  opacity: .85;
}
.footer-links a { padding: .25rem .4rem; border-radius: 6px; font-size: .875rem; }
.footer-links a:hover { background: rgba(255,255,255,.06); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  opacity: .75;
  color: #fff;
  text-decoration: none;
}
a.footer-contact-item:hover { opacity: 1; }
.footer-contact-item svg { flex-shrink: 0; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 1.5rem;
  padding-top: .75rem;
  font-size: var(--small);
  opacity: .4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-copy-links { display: flex; gap: 1.5rem; }
.footer-copy-links a { color: inherit; text-decoration: none; }
.footer-copy-links a:hover { opacity: 1; }
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-copy { flex-direction: column; text-align: center; }
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .site-nav{
    position: absolute;
    right: var(--pad);
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(246,246,244,.98);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: .6rem;
    display: none;
    min-width: min(320px, 86vw);
  }
  .site-nav.open{ display:flex; }
  .nav-toggle{ display:block; }
  .grid{ grid-template-columns: 1fr; }
  .brand-tag{ display:none; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
}

/* ============================================
   Manifesto page (platform.html)
   ============================================ */

.manifesto-container{
  max-width: 900px;
}

.manifesto-hero{
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--bg-light);
}

.manifesto-h1{
  font-size: var(--h1);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
}

.manifesto-subline{
  margin-top: 2.75rem;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 2.15;
  color: var(--muted-light);
  letter-spacing: -0.005em;
  margin-bottom: 0;
}

.manifesto-section{
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-light);
}

.manifesto-section--final{
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.manifesto-label{
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: .32;
  margin-bottom: 2.75rem;
}

.manifesto-lines{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifesto-lines p{
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 400;
}

/* Hero split panel */
.manifesto-panel{
  padding-top: .6rem;
}

.manifesto-built-list{
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: .5rem;
}

.manifesto-built-list p{
  font-size: var(--small);
  color: var(--muted-light);
  margin: 0;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.manifesto-built-list strong{
  color: var(--text-dark);
  font-weight: 700;
}

/* Sequence: How this begins */
.manifesto-sequence{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.manifesto-step-name{
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin: 0 0 .45rem 0;
  line-height: 1.2;
}

.manifesto-step-desc{
  font-size: var(--p);
  color: var(--muted-light);
  margin: 0;
  max-width: 44rem;
  line-height: 1.65;
}
