:root {
  color-scheme: light;
  --page: #f5f7fb;
  --page-alt: #edf1f8;
  --surface: #ffffff;
  --surface-soft: #f8f9fd;
  --ink: #171b2b;
  --muted: #61697b;
  --faint: #8b93a5;
  --line: #dde2ec;
  --line-strong: #cbd2df;
  --brand: #5b55e7;
  --brand-strong: #4540cc;
  --brand-soft: #eeedff;
  --blue: #1769e0;
  --blue-soft: #eaf3ff;
  --mint: #077b68;
  --success: #0c8b67;
  --shadow: 0 24px 70px rgba(42, 48, 80, .13);
  --shadow-soft: 0 12px 34px rgba(42, 48, 80, .08);
  --header: rgba(245, 247, 251, .86);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #0e1119;
  --page-alt: #121722;
  --surface: #171c27;
  --surface-soft: #1b2130;
  --ink: #f1f3f8;
  --muted: #aab2c2;
  --faint: #858fa2;
  --line: #2a3242;
  --line-strong: #3a4559;
  --brand: #928cff;
  --brand-strong: #aaa5ff;
  --brand-soft: #242245;
  --blue: #64a4ff;
  --blue-soft: #172b48;
  --mint: #55d5bd;
  --success: #52d7ad;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, .24);
  --header: rgba(14, 17, 25, .86);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--page);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(91, 85, 231, .2);
}

.brand span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand strong {
  overflow: hidden;
  font-size: .94rem;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--faint);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
}

.top-nav a:hover {
  color: var(--ink);
}

.theme-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 82px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
}

.theme-button:hover {
  border-color: var(--brand);
}

.theme-button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 30%, transparent);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -250px;
  right: 0;
  background: radial-gradient(circle, rgba(91, 85, 231, .18), transparent 68%);
}

.hero-glow-two {
  width: 440px;
  height: 440px;
  left: -230px;
  bottom: -270px;
  background: radial-gradient(circle, rgba(23, 105, 224, .12), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--brand);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 25%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-soft) 72%, transparent);
  letter-spacing: .04em;
  text-transform: none;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 15%, transparent);
}

.hero h1 {
  margin: 24px 0 23px;
  font-size: clamp(2.65rem, 5.1vw, 4.65rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--brand), var(--blue));
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.82;
  word-break: keep-all;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 750;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(100deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 12px 30px rgba(91, 85, 231, .24);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--brand);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 650;
  list-style: none;
}

.hero-facts span {
  color: var(--success);
}

.hero-visual {
  position: relative;
}

.window-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d9e1;
}

.window-dot:first-child {
  background: #ff7e73;
}

.window-dot:nth-child(2) {
  background: #f3c950;
}

.window-dot:nth-child(3) {
  background: #54c883;
}

.window-title {
  margin-left: 7px;
  color: var(--faint);
  font-size: .68rem;
}

.window-shell img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 74%, transparent);
  border-radius: 13px;
  padding: 10px 13px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: .73rem;
  backdrop-filter: blur(14px);
}

.floating-card strong {
  color: var(--ink);
}

.floating-card-top {
  top: 58px;
  right: -28px;
}

.floating-card-bottom {
  bottom: 36px;
  left: -33px;
}

.floating-icon {
  color: #f35f68;
}

.floating-icon-play {
  color: var(--brand);
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 22px 24px;
  border-left: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 3px;
  font-size: .9rem;
}

.proof-grid span {
  color: var(--faint);
  font-size: .73rem;
}

.section {
  padding: 116px 0;
}

.section-intro {
  padding-bottom: 92px;
}

.section-heading {
  max-width: 570px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.trust-copy h2,
.final-card h2 {
  margin: 13px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -.045em;
  word-break: keep-all;
}

.section-heading > p:last-child,
.trust-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  word-break: keep-all;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.use-card {
  min-height: 228px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.use-number {
  display: inline-flex;
  width: 39px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
}

.use-card h3,
.feature-card h3,
.workflow-list h3 {
  margin: 0 0 9px;
  font-size: 1.14rem;
  letter-spacing: -.025em;
}

.use-card p,
.feature-card > p,
.feature-copy > p,
.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  word-break: keep-all;
}

.features-section {
  background: var(--page-alt);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  overflow: hidden;
  min-height: 340px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(42, 48, 80, .04);
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.feature-card-purple {
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 48px;
  background:
    radial-gradient(circle at 85% 10%, rgba(91, 85, 231, .14), transparent 35%),
    var(--surface);
}

.feature-card-blue {
  background:
    radial-gradient(circle at 100% 0, rgba(23, 105, 224, .13), transparent 44%),
    var(--surface);
}

.feature-label {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .82rem;
  list-style: none;
}

.mini-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--success);
  font-weight: 800;
}

.step-demo {
  display: grid;
  gap: 8px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.step-demo div {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
}

.step-demo span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .7rem;
  font-weight: 800;
}

.step-demo b {
  font-size: .8rem;
}

.step-demo em {
  color: var(--faint);
  font-size: .7rem;
  font-style: normal;
}

.logic-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 34px;
}

.logic-map span {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
}

.logic-map span:first-child {
  grid-column: 1 / -1;
  border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
  color: var(--brand);
}

.logic-map .logic-success {
  color: var(--success);
}

.logic-map .logic-fallback {
  color: var(--blue);
}

.logic-map i {
  position: absolute;
  top: 43px;
  left: 50%;
  width: 1px;
  height: 13px;
  background: var(--line-strong);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.chip-row span {
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--blue) 20%, var(--line));
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .73rem;
  font-weight: 700;
}

.media-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 42px;
  min-height: 400px;
}

.media-card-reverse {
  grid-template-columns: .88fr 1.12fr;
}

.media-image {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.media-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.feature-note {
  margin-top: 13px !important;
  color: var(--faint) !important;
  font-size: .74rem !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 21px;
  color: var(--brand);
  font-size: .83rem;
  font-weight: 750;
}

.text-link:hover {
  gap: 10px;
}

.monitor-demo {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
}

.monitor-demo span {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .73rem;
}

.monitor-demo span:first-child {
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.monitor-demo i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 14%, transparent);
}

.monitor-demo b {
  color: var(--ink);
}

.monitor-demo .monitor-ok {
  color: var(--success);
}

.dot-grid {
  display: grid;
  grid-template-columns: repeat(4, 16px);
  gap: 18px 23px;
  margin-top: 40px;
}

.dot-grid i {
  width: 16px;
  height: 16px;
  border: 4px solid color-mix(in srgb, var(--blue) 25%, transparent);
  border-radius: 50%;
  background: var(--blue);
}

.dot-grid i:nth-child(5),
.dot-grid i:nth-child(6),
.dot-grid i:nth-child(7),
.dot-grid i:nth-child(8) {
  opacity: .68;
}

.dot-grid i:nth-child(n+9) {
  opacity: .36;
}

.workflow-section {
  background: var(--surface);
}

.workflow-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.sticky-heading .button {
  margin-top: 28px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  min-height: 174px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list li:first-child {
  padding-top: 4px;
}

.workflow-list > li > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--page);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 850;
}

.workflow-list h3 {
  font-size: 1.24rem;
}

.trust-section {
  background:
    radial-gradient(circle at 20% 0, rgba(91, 85, 231, .12), transparent 38%),
    var(--page-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.trust-copy h2 {
  max-width: 520px;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.trust-list > div > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--success) 13%, transparent);
  color: var(--success);
  font-weight: 900;
}

.trust-list p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.trust-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: .92rem;
}

.final-cta {
  padding: 92px 0;
}

.final-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 48px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 100% 0, rgba(92, 191, 255, .24), transparent 34%),
    linear-gradient(120deg, #4f48d7, #665ee7 58%, #2f73d8);
  color: #fff;
  box-shadow: 0 28px 70px rgba(69, 64, 204, .26);
}

.final-card img {
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(19, 20, 70, .2);
}

.final-card .kicker {
  color: rgba(255, 255, 255, .7);
}

.final-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.final-actions {
  max-width: 226px;
  flex-direction: column;
  margin-top: 0;
}

.button-light {
  background: #fff;
  color: #3d37bb;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .42);
  color: #fff;
}

.site-footer {
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
  background: var(--page-alt);
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  font-weight: 850;
  letter-spacing: -.02em;
}

.site-footer p {
  margin: 5px 0 0;
  color: var(--faint);
  font-size: .76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--ink);
}

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

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions,
  .hero-facts {
    justify-content: center;
  }

  .hero-visual {
    width: min(760px, 94%);
    margin: 0 auto;
  }

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

  .proof-grid div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-grid div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .feature-card-purple,
  .media-card,
  .media-card-reverse {
    grid-template-columns: 1fr;
  }

  .media-card-reverse .media-image {
    grid-row: 1;
  }

  .workflow-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .sticky-heading {
    position: static;
  }

  .final-card {
    grid-template-columns: auto 1fr;
  }

  .final-actions {
    grid-column: 1 / -1;
    max-width: none;
    flex-direction: row;
  }
}

@media (max-width: 740px) {
  .shell {
    width: min(100% - 30px, 1160px);
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand strong {
    max-width: 185px;
  }

  .top-nav {
    display: none;
  }

  .theme-button {
    margin-left: auto;
    min-width: 42px;
    padding: 8px 10px;
  }

  .theme-button #themeLabel {
    display: none;
  }

  .hero {
    padding: 64px 0 62px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .hero-lead {
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .floating-card {
    display: none;
  }

  .window-shell {
    border-radius: 14px;
    transform: none;
  }

  .proof-grid {
    width: 100%;
  }

  .proof-grid div {
    padding: 17px 15px;
  }

  .proof-grid div:first-child,
  .proof-grid div:nth-child(3) {
    border-left: 0;
  }

  .proof-grid div:nth-child(2),
  .proof-grid div:last-child {
    border-right: 0;
  }

  .section {
    padding: 84px 0;
  }

  .section-intro {
    padding-bottom: 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .use-case-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 0;
  }

  .use-number {
    margin-bottom: 22px;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 0;
    padding: 24px;
    border-radius: 18px;
  }

  .feature-card-purple {
    gap: 32px;
  }

  .media-card {
    gap: 28px;
  }

  .step-demo div {
    grid-template-columns: 26px 1fr;
  }

  .step-demo em {
    display: none;
  }

  .workflow-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .workflow-list > li > span {
    width: 42px;
    height: 42px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    text-align: center;
  }

  .final-card img {
    margin: 0 auto;
  }

  .final-actions {
    display: grid;
    grid-column: auto;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
