:root {
  --paper: #f7f4ee;
  --paper-2: #fffdf8;
  --paper-3: #eee8dd;
  --ink: #171513;
  --ink-2: #3d3934;
  --muted: #625c55;
  --line: #d8cebf;
  --line-strong: #bcae9b;
  --sumi: #22201d;
  --vermilion: #b6422c;
  --vermilion-dark: #8d2f22;
  --sage: #596653;
  --sage-soft: #e7eadf;
  --white: #fff;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --max: 1160px;
  --shadow: 0 18px 48px rgba(34, 32, 29, 0.11);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 21, 19, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 19, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  opacity: 0.26;
  pointer-events: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--vermilion);
  outline-offset: 3px;
}

.security :focus-visible,
.footer :focus-visible {
  outline-color: #ef9c89;
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition-property: opacity, transform;
  transition-duration: 560ms;
  transition-timing-function: ease-out;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 12px;
  min-height: 44px;
  padding: 9px 14px;
  background: var(--sumi);
  color: var(--paper-2);
  font-weight: 800;
  transform: translateY(-160%);
  transition-property: transform;
  transition-duration: 160ms;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(188, 174, 155, 0.78);
  background: rgba(247, 244, 238, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--sumi);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid var(--sumi);
  border-left-color: var(--vermilion);
  transform: rotate(45deg);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 2px;
}

.button,
.nav-links a,
.mobile-cta a {
  min-height: 44px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover,
.industry-card a:hover,
.trust-links a:hover,
.breadcrumbs a:hover {
  color: var(--vermilion-dark);
}

.nav-toggle,
.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sumi);
  border-radius: 3px;
  padding: 9px 15px;
  background: var(--sumi);
  color: var(--paper-2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  transition-property: background-color, border-color, box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--sumi);
}

.header-cta:hover,
.button:hover {
  border-color: var(--vermilion);
  background: var(--vermilion);
  box-shadow: 0 10px 22px rgba(182, 66, 44, 0.16);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--sumi);
}

.button.secondary:hover {
  border-color: var(--vermilion-dark);
  background: var(--paper-2);
  color: var(--vermilion-dark);
}

.mobile-cta {
  display: none;
}

main:focus {
  outline: none;
}

section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 86px;
}

.hero {
  padding: 76px 0 66px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
}

.kicker,
.eyebrow {
  color: var(--vermilion-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kicker {
  display: grid;
  grid-template-columns: 52px auto;
  align-items: center;
  gap: 13px;
}

.kicker::before {
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 13em;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.3;
}

.hero-lede {
  max-width: 43em;
  margin-top: 24px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.hero-note,
.table-note,
.card-note,
.status-note,
.screenshot-frame figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.hero-note {
  max-width: 58em;
  margin-top: 26px;
  padding-left: 14px;
  border-left: 3px solid var(--line-strong);
}

.hero-summary,
.boundary-note {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.hero-summary > p:first-child,
.boundary-note h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
}

.hero-summary ul {
  display: grid;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.hero-summary li {
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 700;
}

.hero-summary li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 14px 1px -22px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.industry-hero .hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
}

.industry-hero h1 {
  font-size: clamp(36px, 4.4vw, 52px);
}

.boundary-note h2 {
  margin-bottom: 14px;
}

.boundary-note p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.95;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.section-head {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
  margin-bottom: 36px;
}

.section-number {
  padding-top: 11px;
  border-top: 2px solid currentColor;
  color: var(--vermilion-dark);
  font-family: var(--serif);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.section-head h2,
.split-panel h2,
.cta-panel h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.48;
}

.section-head > p:not(.section-number),
.section-head > h2 + p {
  grid-column: 2;
  max-width: 52em;
  margin-top: -22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.product-proof,
.industry-setup,
.quote,
.faq {
  background: var(--paper-2);
}

.proof-layout {
  display: grid;
  gap: 18px;
}

.screenshot-frame {
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  padding: 12px;
  background: var(--paper-3);
  box-shadow: var(--shadow);
}

.screenshot-frame img {
  width: 100%;
  aspect-ratio: 1440 / 920;
  border: 1px solid rgba(23, 21, 19, 0.18);
  border-radius: 5px;
  outline: 1px solid rgba(255, 255, 255, 0.82);
  outline-offset: -2px;
  background: #eef0f5;
  object-fit: cover;
  object-position: left top;
}

.screenshot-frame figcaption {
  padding: 12px 3px 1px;
}

.card-grid,
.industry-grid,
.step-grid {
  display: grid;
  gap: 16px;
}

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

.card-grid.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plain-card,
.industry-card,
.step-grid li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper-2);
}

.plain-card h3,
.industry-card h3,
.step-grid h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.plain-card p,
.industry-card > p:not(.eyebrow),
.step-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.plain-card ul {
  margin: 18px 0 0;
  padding-left: 1.25em;
  color: var(--ink-2);
}

.plain-card li + li {
  margin-top: 7px;
}

.safe-card {
  border-top: 4px solid var(--sage);
}

.human-card {
  border-top: 4px solid var(--vermilion-dark);
}

.channel-guidance {
  padding: 0 !important;
  list-style: none;
}

.channel-guidance li {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 0.65fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.channel-guidance strong {
  color: var(--ink);
}

.channel-guidance span {
  color: var(--muted);
  font-size: 13px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper-2);
  -webkit-overflow-scrolling: touch;
}

.channel-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.6;
}

.channel-table th,
.channel-table td {
  padding: 16px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.channel-table tr > :last-child {
  border-right: 0;
}

.channel-table tbody tr:last-child > * {
  border-bottom: 0;
}

.channel-table thead th {
  background: var(--sumi);
  color: var(--paper-2);
  font-weight: 800;
}

.channel-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.channel-table tbody tr:nth-child(even) {
  background: rgba(238, 232, 221, 0.48);
}

.table-note {
  margin-top: 17px;
}

.safety {
  background: var(--sage-soft);
}

.tier-list {
  display: grid;
  gap: 11px;
}

.tier {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  border: 1px solid rgba(89, 102, 83, 0.42);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.84);
}

.tier > b {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.tier.green > b {
  color: #315e35;
}

.tier.amber > b {
  color: #765013;
}

.tier.red > b {
  color: #84271c;
}

.tier h3 {
  font-size: 17px;
  font-weight: 900;
}

.tier p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.industry-card {
  grid-column: span 2;
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.industry-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.industry-card h3 {
  margin-top: 14px;
}

.industry-card .card-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.industry-card a {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  align-items: center;
  padding-top: 18px;
  color: var(--vermilion-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.step-grid li {
  min-height: 220px;
}

.step-grid b {
  display: block;
  margin-bottom: 26px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.split-panel,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.split-panel > div:last-child > p,
.cta-panel > div:first-child > p:not(.section-number) {
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.95;
}

.security {
  background: var(--sumi);
  color: var(--paper-2);
}

.security .section-number {
  color: #ef9c89;
}

.security .section-head > p:not(.section-number) {
  color: #ded6ca;
}

.trust-links {
  display: flex;
  margin-left: 202px;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.trust-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid #9f968a;
  color: var(--paper-2);
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 4px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--vermilion-dark);
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 64em;
  padding: 0 42px 22px 4px;
  color: var(--muted);
}

.cta-panel {
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  padding: 42px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.footer {
  padding: 44px 0;
  background: #171614;
  color: #ded6ca;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--paper-2);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
}

.footer p {
  color: #bfb6a9;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 18px;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links a {
    padding-inline: 7px;
  }

  .hero-grid,
  .industry-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-summary,
  .boundary-note {
    max-width: 720px;
  }

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

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

  .industry-card,
  .industry-card:nth-child(4) {
    grid-column: auto;
  }

  .industry-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  body:has(.mobile-cta) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    position: sticky;
  }

  .nav {
    position: relative;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .brand {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    max-width: 88px;
    padding-inline: 9px;
    font-size: 12px;
    text-align: center;
  }

  .nav-links {
    order: 4;
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    overflow-x: visible;
    border-top: 1px solid var(--line);
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .js .nav {
    flex-wrap: nowrap;
  }

  .js .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    padding-inline: 10px;
    background: transparent;
    color: var(--sumi);
    font-size: 12px;
  }

  .js .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    display: none;
    width: min(310px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 0 0 8px 8px;
    padding: 8px;
    background: var(--paper-2);
    box-shadow: var(--shadow);
  }

  .js .nav-links.is-open {
    display: grid;
  }

  .js .nav-links a {
    width: 100%;
    padding-inline: 12px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-strong);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 -8px 24px rgba(34, 32, 29, 0.12);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sumi);
    border-radius: 3px;
    padding: 8px;
    background: var(--sumi);
    color: var(--paper-2);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-cta a:first-child {
    background: var(--paper-2);
    color: var(--sumi);
  }

  section {
    padding: 60px 0;
    scroll-margin-top: 72px;
  }

  .hero {
    padding: 50px 0 48px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1,
  .industry-hero h1 {
    margin-top: 22px;
    font-size: clamp(30px, 9.3vw, 38px);
    line-height: 1.42;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.95;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-summary,
  .boundary-note {
    padding: 23px 20px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-head > p:not(.section-number),
  .section-head > h2 + p {
    grid-column: 1;
    margin-top: 0;
  }

  .section-head h2,
  .split-panel h2,
  .cta-panel h2 {
    font-size: 27px;
    line-height: 1.52;
  }

  .screenshot-frame {
    padding: 7px;
  }

  .card-grid.two-columns,
  .card-grid.three-columns,
  .card-grid.four-columns,
  .industry-grid,
  .step-grid,
  .split-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .industry-card:last-child,
  .step-grid li {
    grid-column: auto;
    min-height: 0;
  }

  .plain-card,
  .industry-card,
  .step-grid li {
    padding: 21px;
  }

  .channel-guidance li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .table-scroll {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .channel-table,
  .channel-table tbody,
  .channel-table tr,
  .channel-table th,
  .channel-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .channel-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .channel-table tbody tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--paper-2);
  }

  .channel-table tbody th,
  .channel-table tbody td {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }

  .channel-table tbody th {
    background: var(--sumi);
    color: var(--paper-2);
    font-size: 15px;
  }

  .channel-table tbody td {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 0.58fr);
    gap: 10px;
  }

  .channel-table tbody td::before {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
  }

  .channel-table tbody td:nth-child(2)::before {
    content: "受信";
  }

  .channel-table tbody td:nth-child(3)::before {
    content: "AI返信案";
  }

  .channel-table tbody td:nth-child(4)::before {
    content: "有人送信";
  }

  .channel-table tbody td:nth-child(5)::before {
    content: "自動処理";
  }

  .channel-table tbody td:nth-child(6)::before {
    content: "提供状況";
  }

  .channel-table tbody tr > :last-child {
    border-bottom: 0;
  }

  .tier {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tier > b {
    width: fit-content;
  }

  .trust-links {
    margin-left: 0;
  }

  .cta-panel {
    gap: 10px;
    padding: 26px 21px;
  }

  .cta-actions .button {
    width: 100%;
    text-align: center;
  }

  .footer-inner,
  .footer-links {
    justify-content: flex-start;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 390px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav-toggle,
  .header-cta {
    padding-inline: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 19px;
    height: 19px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
