:root {
  --page: #F1F1EF;
  --white: #FFFFFF;
  --gray: #F5F5F3;
  --ink: #101010;
  --mute: #6C6C70;
  --accent: #5B6CFF;
  --pale: #EDF2FF;
  --lilac: #F3EFFF;
  --sand: #FBF3E8;
  --ok: #34A56F;
  --soft: #E9ECFF;
  --line: #E6E6E3;
  --sans: "Geist", "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --r: 22px;
  --btn-r: 12px;
  --shadow: 0 20px 60px rgba(40, 50, 90, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.page { padding: 18px 18px 48px; }
.shell {
  width: min(1480px, 100%);
  margin-inline: auto;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 36px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--mute); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--btn-r);
  text-decoration: none;
}
.btn:hover { filter: brightness(1.06); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 8px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 40px;
  align-items: center;
  padding: 24px 36px 56px;
  min-height: 720px;
}
.hero-copy { min-width: 0; }
.hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  overflow-wrap: break-word;
}
.lede { margin-top: 18px; color: var(--mute); max-width: 38em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; align-items: center; }
.micro { margin-top: 16px; font-size: 14px; color: var(--mute); }

.hero-viz { min-height: 620px; }
.canvas {
  position: relative;
  height: 640px;
  background: linear-gradient(160deg, #EEF3FF, #F7F0FF);
  border-radius: 28px;
  overflow: hidden;
}
.canvas::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -40px; top: -60px;
  background: radial-gradient(circle, rgba(91,108,255,.28), transparent 68%);
  pointer-events: none;
}
.canvas::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  left: 8%; bottom: -80px;
  background: radial-gradient(circle, rgba(167,120,255,.18), transparent 70%);
  pointer-events: none;
}
.panel {
  position: absolute;
  left: 5%;
  top: 8%;
  width: 76%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 26px 20px;
  box-shadow: var(--shadow);
  z-index: 1;
}
.panel header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3ccb7f;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(60,203,127,.5);
  animation: ping 1.8s ease infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(60,203,127,0); } }

.metrics { list-style: none; padding: 0; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 10px 16px; }
.metrics li {
  padding: 12px 14px;
  background: #fafafa;
  border-radius: 14px;
  font-size: 13px;
  color: var(--mute);
  border: 1px solid transparent;
}
.metrics b { display: block; font-size: 32px; color: var(--ink); letter-spacing: -0.03em; }
.metrics li.on {
  background: var(--pale);
  border-color: #cfd5ff;
}
.metrics li.on b { color: var(--accent); }

.feed { margin-top: 16px; }
.feed p {
  font-size: 13px;
  color: var(--mute);
  padding: 8px 0;
  border-top: 1px solid var(--line);
  opacity: .35;
  transition: opacity .35s;
}
.feed p.on { opacity: 1; }
.feed strong { display: block; color: var(--ink); font-weight: 600; font-size: 13px; }

.badge-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 16px 14px;
}
.badge-card .hole {
  display: block;
  width: 12px; height: 12px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #ecece8;
  box-shadow: inset 0 0 0 2px #d8d8d2;
}
.stamp {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--pale);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.stamp.ok { color: var(--ok); background: #e8f7ef; }
.stamp.skip { color: var(--mute); background: var(--gray); }

.float {
  position: absolute;
  z-index: 2;
  width: 228px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition: opacity .45s ease, transform .45s ease;
}
.float.on { opacity: 1; transform: none; }
.f-maya { right: 3%; top: 10%; }
.f-chat {
  right: 5%;
  top: 48%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
}
.f-meet { right: 16%; bottom: 6%; }
.fname { font-weight: 600; }
.fmeta { font-size: 13px; color: var(--mute); margin-top: 2px; }
.fpills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.fpills span {
  font-size: 11px;
  background: var(--pale);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
}
.quote { font-size: 15px; }

/* Proof strip */
.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  align-items: baseline;
  padding: 22px 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--mute);
}
.strip strong { display: block; color: var(--ink); font-size: 15px; }

/* Problem */
.problem {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: auto auto;
  gap: 16px 48px;
  padding: 88px 36px 40px;
  align-items: start;
}
.problem > div { grid-column: 1; grid-row: 1 / span 2; }
.problem h2, .how h2, .portal-sec h2, .use h2, .intel h2, .results h2, .price h2, .faq h2, .final h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.subh { font-size: 24px; margin: 10px 0 18px; }
.problem p + p { margin-top: 12px; color: var(--mute); }
.problem .subh { color: var(--ink); }
.punch { font-weight: 600; color: var(--ink) !important; }
.funnel {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.caption { grid-column: 1 / -1; font-size: 16px; color: var(--ink); margin-top: 8px; max-width: 36em; }
.funnel li {
  padding: 18px 12px;
  border-radius: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--mute);
}
.funnel li:nth-child(1) { background: #eef0ff; }
.funnel li:nth-child(2) { background: #e0e4ff; }
.funnel li:nth-child(3) { background: #cfd6ff; }
.funnel li:nth-child(4) { background: var(--accent); color: #fff; }
.funnel b { display: block; font-size: 28px; color: inherit; letter-spacing: -0.03em; }

.center-lede { color: var(--mute); max-width: 40em; margin: 14px auto 0; }

/* How it works */
.how {
  margin: 12px 36px 56px;
  padding: 64px 48px 72px;
  background: var(--pale);
  border-radius: 28px;
}
.how .eyebrow { margin-bottom: 28px; }
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.steps h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
.steps p { color: var(--mute); font-size: 16px; }
.pipe {
  margin-top: 36px;
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.thats {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Portal */
.portal-sec { padding: 72px 36px 80px; text-align: center; }
.portal-wrap { max-width: 1240px; margin: 48px auto 0; }
.annos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.annos span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--pale);
  padding: 6px 12px;
  border-radius: 999px;
}
.portal {
  display: grid;
  grid-template-columns: 180px 1fr;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 24px 80px rgba(40, 50, 90, .12);
}
.p-nav {
  background: #f7f7f5;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--mute);
  border-right: 1px solid var(--line);
}
.p-nav strong { color: var(--ink); margin-bottom: 12px; }
.p-brand { display: inline-flex; align-items: center; gap: 8px; }
.p-brand img { height: 22px; width: auto; }
.p-nav .on { color: var(--accent); font-weight: 600; }
.p-main { padding: 22px 24px; }
.p-main header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.live { font-size: 13px; color: #2f9e62; }
.p-metrics {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.p-metrics li {
  background: var(--pale);
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  color: var(--mute);
}
.p-metrics b { display: block; font-size: 28px; color: var(--ink); }
.p-split { display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; margin-top: 22px; }
.p-split h3 { font-size: 13px; color: var(--mute); font-weight: 500; margin-bottom: 10px; }
.activity, .cal { list-style: none; padding: 0; font-size: 14px; }
.activity li, .cal li { padding: 8px 0; border-top: 1px solid var(--line); }
.activity time {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
}
.cal b { color: var(--accent); margin-right: 8px; }
.portal-note { margin-top: 28px; }

/* Use cases */
.use { padding: 48px 36px 80px; background: var(--lilac); }
.use-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.use-tabs button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
}
.use-tabs button.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.use-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}
.use-row img { width: 100%; height: 440px; object-fit: cover; border-radius: 24px; }
.use-copy { display: none; }
.use-copy.on { display: block; }
.use-copy h3 { font-size: 32px; letter-spacing: -0.03em; margin-bottom: 10px; }
.use-copy p { color: var(--mute); }
.use-stats {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.use-stats li {
  background: var(--white);
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  color: var(--mute);
}
.use-stats b { display: block; font-size: 28px; color: var(--ink); letter-spacing: -0.03em; }
.use-note { margin-top: 16px; color: var(--mute); }

/* Intelligence */
.intel { padding: 80px 36px; text-align: center; }
.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 36px auto 0;
  text-align: left;
}
.intel-grid article {
  border: 1px solid var(--line);
  padding: 28px 22px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.intel-grid ul, .intel-grid h3, .intel-grid > p { text-align: left; }
.intel-grid h3 { font-size: 22px; }
.intel-grid p { color: var(--mute); font-size: 15px; }
.intel-grid ul { list-style: none; padding: 14px 0; }
.intel-grid li { padding: 6px 0; font-size: 15px; }
.yes li::before { content: "✓  "; color: var(--accent); }
.no li::before { content: "×  "; color: var(--mute); }
.tag-yes, .tag-no { font-size: 13px; font-weight: 600; }
.tag-yes { color: var(--ok); }
.bottom-line { margin-top: 28px; font-size: 22px; font-weight: 600; }

/* Channels */
.channels {
  margin: 0 36px 48px;
  padding: 56px 48px;
  max-width: none;
  background: var(--sand);
  border-radius: 28px;
}
.channels p { color: var(--mute); margin-top: 12px; max-width: 40em; }
.channels ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  max-width: 820px;
}
.channels li {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  color: var(--mute);
  box-shadow: var(--shadow);
}
.channels strong { display: block; color: var(--ink); margin-bottom: 4px; }

/* Results */
.results { padding: 72px 36px 80px; background: var(--white); }
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.cases article {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cases.denver, .cases article.denver { border-color: #d5ddff; }
.cases article.cancun { border-color: #e4d9ff; }
.cases img { width: 100%; height: 160px; object-fit: cover; }
.cases article > div { padding: 22px 24px 28px; }
.during { font-size: 20px; font-weight: 600; margin-top: 10px; }
.plus { color: var(--accent); font-weight: 600; margin-top: 6px; }
.approx {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 10px;
}
.denver .approx { color: var(--accent); }
.cancun .approx { color: #6b4ecf; }
.chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.denver .chip { background: var(--pale); color: var(--accent); }
.cancun .chip { background: var(--lilac); color: #6b4ecf; }
.kicker { font-size: 13px; color: var(--mute); }

/* Price */
.price {
  padding: 72px 36px 80px;
  text-align: center;
}
.amt-hero {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.amt-hero span { font-size: 22px; color: var(--mute); font-weight: 500; }
.price .subh { max-width: 22em; margin: 8px auto 0; color: var(--mute); font-size: 20px; }
.price-card {
  max-width: 440px;
  margin: 32px auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 28px 32px;
  text-align: left;
}
.price-card ul { list-style: none; padding: 0 0 18px; }
.price-card li { padding: 6px 0; }
.price-card li::before { content: "–  "; color: var(--accent); }
.price-card .btn { width: 100%; }

/* FAQ */
.faq { padding: 48px 36px 64px; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-top: 24px;
}
.faq details { padding: 16px 0; border-top: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 8px; color: var(--mute); font-size: 16px; }

/* Final */
.final {
  margin: 0 36px 48px;
  padding: 72px 40px;
  background: linear-gradient(160deg, #E7EEFF, #EDE8FF);
  border-radius: 28px;
  text-align: center;
}
.final p { color: var(--mute); max-width: 32em; margin: 14px auto 24px; }

footer.dark {
  width: min(1480px, 100%);
  margin: 8px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 14px;
  color: #c8c8c4;
  background: #101010;
  border-radius: 20px;
}
footer a { color: inherit; }
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.foot-brand img { height: 40px; width: auto; }
.foot-brand strong { display: block; font-size: 16px; }
.foot-brand small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9aa0b5;
}

.modal {
  border: 0;
  padding: 32px;
  width: min(440px, calc(100% - 32px));
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
}
.modal::backdrop { background: rgba(16,16,16,.45); }
.modal h2 { font-size: 24px; margin-bottom: 16px; letter-spacing: -0.02em; }
.modal label, .modal-h { display: block; font-size: 13px; color: var(--mute); margin-top: 10px; }
.modal input:not([type="radio"]), .modal select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 6px;
}
.opts { display: grid; gap: 8px; margin: 10px 0 12px; }
.opts label { display: flex; gap: 8px; color: var(--ink); font-size: 15px; }
.modal .btn { width: 100%; margin-top: 12px; }
.modal-x { display: block; margin: 14px auto 0; background: none; border: 0; color: var(--mute); }
.form-status { font-size: 14px; margin-top: 10px; }
.form-status.ok { color: #2f9e62; }
.form-status.err { color: #b42318; }

@media (max-width: 980px) {
  .page { padding: 10px 10px 32px; }
  .shell, .hero, .hero-copy, .hero-viz, .canvas { min-width: 0; max-width: 100%; }
  .shell { border-radius: 20px; }
  .nav { padding: 16px 18px; }
  .nav .btn { display: none; }
  .nav-links { display: none; }
  .hero, .problem, .use-row, .intel-grid, .cases, .faq-grid, .p-split, .p-metrics, .steps, .funnel, .portal {
    grid-template-columns: 1fr;
  }
  .hero { padding: 8px 18px 32px; min-height: 0; overflow: hidden; }
  .hero-copy h1 { max-width: none; font-size: 26px; }
  .lede, .micro { overflow-wrap: anywhere; word-break: break-word; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-viz, .canvas { height: auto; min-height: 420px; }
  .canvas { height: 500px; }
  .panel { left: 14px; width: calc(100% - 28px); right: auto; top: 20px; padding: 16px; }
  .metrics b { font-size: 22px; }
  .float { display: none; }
  .how, .final { margin: 12px 14px 28px; padding: 36px 20px; }
  .steps::before { display: none; }
  .use-row img { height: 240px; }
  .annos { flex-wrap: wrap; }
  .caption { grid-column: 1; }
  .problem, .portal-sec, .use, .intel, .channels, .results, .price, .faq { padding-left: 18px; padding-right: 18px; }
  .portal { display: block; }
  .p-nav { display: none; }
  .use-row img { height: 240px; }
  .caption { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .dot, .float { animation: none; }
  .float { opacity: 1; transform: none; }
}

/* --- 2026-09-19: answer-first block, facts page, footer links --- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.define { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 40px 44px; margin: 48px 0; }
.define h2 { font-size: 28px; margin-bottom: 14px; }
.define .bluf { font-size: 19px; line-height: 1.55; max-width: 62ch; }
.define .facts { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; }
.define .facts li { font-size: 15px; line-height: 1.5; color: var(--ink); }
.define .facts b { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--mute); margin-bottom: 4px; }
.define .updated { margin-top: 22px; font-size: 13px; color: var(--mute); }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; margin: 10px 0; }
.foot-links a { font-size: 14px; }
.facts-page { max-width: 820px; margin: 40px auto 80px; }
.facts-page h1 { font-size: 40px; line-height: 1.1; margin-bottom: 14px; }
.facts-page h2 { font-size: 24px; margin: 40px 0 10px; }
.facts-page p, .facts-page li { font-size: 17px; line-height: 1.6; }
.facts-page ul { padding-left: 22px; }
.facts-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.facts-page th, .facts-page td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.facts-page th { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--mute); }
.facts-page .updated { font-size: 13px; color: var(--mute); }
@media (max-width: 720px) { .define { padding: 28px 22px; } .define .facts { grid-template-columns: 1fr; } .facts-page h1 { font-size: 30px; } }
