:root {
  --ink: #f8f7f4;
  --muted: rgba(248, 247, 244, 0.68);
  --quiet: rgba(248, 247, 244, 0.48);
  --black: #090909;
  --surface: #111111;
  --surface-raised: #171717;
  --surface-soft: #1d1d1d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #f25656;
  --accent-hover: #ff6b6b;
  --accent-deep: #8c2929;
  --positive: #72d6a6;
  --warning: #ffd48a;
  --focus: #9dc5ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --page: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(var(--page), calc(100% - 48px));
  margin-inline: auto;
}

.narrow-shell {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.step-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tool-hero {
  position: relative;
  overflow: hidden;
  padding: 152px 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 24%, rgba(242, 86, 86, 0.22), transparent 30%),
    radial-gradient(circle at 15% 65%, rgba(242, 86, 86, 0.1), transparent 26%),
    linear-gradient(145deg, #150909 0%, #090909 53%, #101010 100%);
}

.tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease-out;
}

.hero-copy h1,
.section-intro h2,
.method-section h2,
.faq-section h2,
.related-section h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 72px);
}

.hero-lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.trust-row span::before {
  content: "✓";
  color: var(--positive);
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, color 160ms ease-out, transform 120ms ease-out, box-shadow 160ms ease-out;
}

.button:active,
.icon-button:active,
.text-button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 35px rgba(242, 86, 86, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
}

.hero-button {
  padding-inline: 22px;
}

.email-visual {
  position: relative;
  max-width: 500px;
  justify-self: end;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #f7f4ef;
  color: #181818;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.56), 0 0 0 9px rgba(255, 255, 255, 0.025);
  transform: rotate(1.5deg);
}

.visual-toolbar {
  display: flex;
  gap: 6px;
  padding: 16px 18px;
  border-bottom: 1px solid #dedad4;
}

.visual-toolbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5d0c8;
}

.visual-toolbar i:first-child { background: #f25656; }
.visual-toolbar i:nth-child(2) { background: #f4c363; }
.visual-toolbar i:nth-child(3) { background: #6dc69c; }

.visual-subject {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid #dedad4;
  font-size: 13px;
}

.visual-subject span { color: #77716a; }

.visual-body {
  display: grid;
  gap: 12px;
  padding: 28px 24px 34px;
}

.line {
  width: 78%;
  height: 9px;
  border-radius: 99px;
  background: #ddd7cf;
}

.line-short { width: 32%; }
.line-medium { width: 58%; }
.line-wide { width: 94%; }

.idea-card {
  display: grid;
  gap: 11px;
  margin: 10px 0;
  padding: 18px;
  border: 1px solid #f1caca;
  border-radius: 12px;
  background: #fff5f3;
}

.idea-card span {
  color: #b23e3e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-stack {
  position: absolute;
  right: 18px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #161616;
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.visual-stack span {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 9px;
  font-weight: 800;
}

.builder-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0c0c0c, #090909);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-intro h2,
.method-section h2,
.faq-section h2,
.related-section h2 {
  font-size: clamp(32px, 4.5vw, 50px);
}

.section-intro > p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 22px;
}

.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.16);
}

.builder-form,
.output-panel {
  padding: clamp(22px, 3.5vw, 36px);
}

.output-panel {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 118px);
  overflow: auto;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.output-panel[hidden] {
  display: none;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.panel-heading h3 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.15;
}

.optional-pill,
.readiness-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.readiness-badge.is-complete {
  border-color: rgba(114, 214, 166, 0.35);
  background: rgba(114, 214, 166, 0.1);
  color: var(--positive);
}

.readiness-badge.has-blanks {
  border-color: rgba(255, 212, 138, 0.35);
  background: rgba(255, 212, 138, 0.1);
  color: var(--warning);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset + fieldset,
fieldset + .details-card,
.details-card + fieldset,
.details-card + .details-card {
  margin-top: 32px;
}

legend {
  width: 100%;
  margin-bottom: 17px;
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field + .field {
  margin-top: 16px;
}

.field-grid .field + .field {
  margin-top: 0;
}

.field label,
.cadence-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 750;
}

.field-help {
  display: block;
  margin: -2px 0 9px;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.55;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  transition: background-color 160ms ease-out, border-color 160ms ease-out, box-shadow 160ms ease-out;
}

input,
select {
  padding: 11px 13px;
}

textarea {
  display: block;
  padding: 13px;
  line-height: 1.55;
  resize: vertical;
}

select {
  color-scheme: dark;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(242, 86, 86, 0.66);
  background: rgba(255, 255, 255, 0.068);
  box-shadow: 0 0 0 3px rgba(242, 86, 86, 0.1);
}

input[aria-invalid="true"] {
  border-color: var(--accent);
}

.details-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.details-card summary,
.followup-card summary,
.manual-copy summary,
.faq-list summary {
  cursor: pointer;
  list-style: none;
}

.details-card summary::-webkit-details-marker,
.followup-card summary::-webkit-details-marker,
.manual-copy summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.details-card > summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
}

.details-card summary strong,
.details-card summary small {
  display: block;
}

.details-card summary strong {
  font-size: 14px;
}

.details-card summary small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 11px;
}

.summary-icon {
  color: var(--muted);
  font-size: 22px;
  transition: transform 180ms ease-out;
}

.details-card[open] .summary-icon {
  transform: rotate(45deg);
}

.details-content {
  padding: 4px 16px 18px;
}

.cadence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cadence-grid input {
  text-align: center;
}

.field-error {
  margin: 11px 0 0;
  color: #ffaaaa;
  font-size: 13px;
  font-weight: 700;
}

.form-actions,
.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.text-button,
.icon-button {
  border: 0;
  cursor: pointer;
  color: var(--muted);
  transition: background-color 160ms ease-out, border-color 160ms ease-out, color 160ms ease-out, transform 120ms ease-out;
}

.text-button {
  min-height: 48px;
  padding: 9px 12px;
  background: transparent;
  font-weight: 750;
}

.form-status,
.copy-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.output-heading {
  margin-bottom: 14px;
}

.package-state-note {
  margin: 0 0 26px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
}

.draft-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.draft-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.draft-section-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.draft-number {
  color: var(--accent);
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.draft-section h4 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.edit-hint {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.subject-list,
.followup-list {
  display: grid;
  gap: 9px;
}

.subject-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.subject-row input {
  min-width: 0;
}

.icon-button {
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.icon-button.is-copied {
  border-color: rgba(114, 214, 166, 0.4);
  background: rgba(114, 214, 166, 0.1);
  color: var(--positive);
}

.draft-textarea,
.followup-content textarea {
  min-height: 220px;
  background: #f6f3ee;
  color: #181818;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.followup-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.followup-card summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.followup-card summary span:last-child {
  color: var(--muted);
  font-size: 20px;
  transition: transform 180ms ease-out;
}

.followup-card[open] summary span:last-child {
  transform: rotate(45deg);
}

.followup-content {
  display: grid;
  gap: 10px;
  padding: 0 12px 12px;
}

.followup-content .icon-button {
  justify-self: end;
}

.package-actions {
  margin-top: 22px;
}

.package-handoff-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.manual-copy {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.manual-copy > summary {
  min-height: 48px;
  padding: 15px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.manual-copy-body p {
  margin: 0 0 8px;
  color: var(--quiet);
  font-size: 11px;
}

#full-package-output {
  min-height: 340px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 28px auto 0;
  padding: 20px;
  border: 1px solid rgba(114, 214, 166, 0.18);
  border-radius: 16px;
  background: rgba(114, 214, 166, 0.055);
}

.privacy-note img {
  border-radius: 11px;
}

.privacy-note h3 {
  margin: 0 0 3px;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
}

.privacy-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.method-section,
.faq-section,
.related-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.method-section {
  background: #111;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(46px, 8vw, 110px);
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.method-list li:first-child { padding-top: 0; }

.method-list > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(242, 86, 86, 0.35);
  border-radius: 50%;
  background: rgba(242, 86, 86, 0.1);
  color: var(--accent);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.method-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.method-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: #0b0b0b;
}

.faq-section h2 {
  margin-bottom: 38px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 19px 54px 19px 20px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 850;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--accent);
  font-size: 24px;
  transform: translateY(-50%);
  transition: transform 180ms ease-out;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.related-section {
  background: linear-gradient(180deg, #0d0d0d, #080808);
}

.related-section h2 {
  max-width: 760px;
  margin-bottom: 36px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-grid a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 160ms ease-out, background-color 160ms ease-out, transform 160ms ease-out;
}

.related-grid a > span {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-grid strong {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.related-grid em {
  margin-top: auto;
  padding-top: 26px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .breadcrumb:hover { color: var(--ink); }
  .button-primary:hover { background: var(--accent-hover); box-shadow: 0 16px 42px rgba(242, 86, 86, 0.28); }
  .button-secondary:hover,
  .icon-button:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.09); color: var(--ink); }
  .text-button:hover { color: var(--ink); }
  .related-grid a:hover { border-color: rgba(242, 86, 86, 0.4); background: var(--surface-raised); transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .hero-grid,
  .builder-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .email-visual {
    max-width: 620px;
    justify-self: start;
  }

  .builder-grid {
    gap: 16px;
  }

  .output-panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .method-section h2 {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 32px, var(--page));
  }

  .tool-hero {
    padding: 124px 0 76px;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .builder-section,
  .method-section,
  .faq-section,
  .related-section {
    padding: 72px 0;
  }

  .builder-form,
  .output-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .field-grid-two,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .cadence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-grid a {
    min-height: 175px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 24px, var(--page));
  }

  .tool-hero {
    padding-top: 112px;
  }

  .breadcrumb {
    margin-bottom: 28px;
  }

  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-row span {
    width: fit-content;
  }

  .hero-button,
  .form-actions .button,
  .package-actions .button {
    width: 100%;
  }

  .email-visual {
    transform: none;
  }

  .visual-stack {
    right: 10px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    transform: none;
  }

  .visual-stack span:nth-child(3) {
    display: none;
  }

  .section-intro h2,
  .method-section h2,
  .faq-section h2,
  .related-section h2 {
    font-size: 34px;
  }

  .builder-form,
  .output-panel {
    padding: 18px;
  }

  .panel-heading {
    margin-bottom: 24px;
  }

  .panel-heading h3 {
    font-size: 24px;
  }

  .subject-row {
    grid-template-columns: 1fr;
  }

  .subject-row .icon-button {
    justify-self: end;
  }

  .draft-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .draft-section-heading .icon-button {
    align-self: flex-end;
  }

  .privacy-note {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 16px;
  }

  .privacy-note img {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
