:root {
  --bg: #f4efe4;
  --bg-deep: #123227;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: #fffdf8;
  --surface-dark: rgba(18, 50, 39, 0.9);
  --text: #122118;
  --text-soft: #506056;
  --line: rgba(18, 33, 24, 0.12);
  --accent: #ff7a1a;
  --accent-deep: #e35e00;
  --accent-soft: rgba(255, 122, 26, 0.14);
  --mint: #5bc59b;
  --shadow: 0 24px 60px rgba(14, 30, 23, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 163, 97, 0.28), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(91, 197, 155, 0.25), transparent 18%),
    linear-gradient(180deg, #f8f5ee 0%, var(--bg) 36%, #f1ead9 100%);
}

body.modal-open {
  overflow: hidden;
}

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

button,
.button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.site-header,
.section,
.proof-strip,
.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-deep), #1f5b46);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions,
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(18, 33, 24, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-soft);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 33, 24, 0.18);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff9250);
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(18, 33, 24, 0.08);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border-color: rgba(18, 33, 24, 0.14);
  color: var(--text);
}

.full-width {
  width: 100%;
}

.section {
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2a6b53;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.95;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.05;
}

p {
  margin: 0;
  line-height: 1.65;
}

.hero-text,
.section-heading p {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 33, 24, 0.08);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.dashboard-card,
.info-card,
.feature-card,
.cta-card,
.vision-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.dashboard-card::before,
.feature-card::before,
.cta-card::before,
.vision-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
}

.primary-card {
  padding: 28px;
}

.secondary-card {
  padding: 24px;
}

.card-head,
.stats-row,
.metric-grid {
  display: grid;
  gap: 14px;
}

.card-head {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
}

.muted,
.metric-label {
  color: var(--text-soft);
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.offer-amount {
  margin: 20px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0;
}

.metric-grid > div,
.stats-row > div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.mini-chart {
  height: 160px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 50, 39, 0.96), rgba(26, 78, 60, 0.92));
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 100%;
}

.chart-bars span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #9bf0cb, #49b484);
}

.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(18, 50, 39, 0.95);
  color: rgba(255, 255, 255, 0.78);
}

.proof-strip strong {
  color: #fff;
}

.section-heading {
  display: grid;
  gap: 10px;
}

.problem-grid,
.steps-grid,
.trust-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

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

.how-flow {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  margin-top: 30px;
  align-items: start;
}

.diagram-steps {
  display: grid;
  gap: 12px;
}

.diagram-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(18, 33, 24, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 36px rgba(18, 50, 39, 0.08);
  animation: riseIn 700ms ease both;
}

.diagram-step:nth-child(2) {
  animation-delay: 80ms;
}

.diagram-step:nth-child(3) {
  animation-delay: 160ms;
}

.diagram-step:nth-child(4) {
  animation-delay: 240ms;
}

.diagram-step:nth-child(5) {
  animation-delay: 320ms;
}

.diagram-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(91, 197, 155, 0.2));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.problem-card,
.step-card,
.trust-card {
  padding: 24px;
}

.diagram-step p {
  margin-top: 8px;
  color: var(--text-soft);
}

.solution-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 30px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 33, 24, 0.08);
  box-shadow: var(--shadow);
}

.timeline-step span,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.18), rgba(91, 197, 155, 0.24));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.highlight-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 239, 0.92));
}

.architecture-card {
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(91, 197, 155, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 250, 246, 0.96));
}

.architecture-diagram {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin-top: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.4)),
    linear-gradient(90deg, rgba(18, 33, 24, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(18, 33, 24, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    40px 40px,
    40px 40px;
  --left-x: 7%;
  --right-x: 57%;
  --node-w: 36%;
  --node-h: 56px;
  --row-1: 40px;
  --row-2: 142px;
  --row-3: 244px;
  --row-4: 346px;
  --center-y: 28px;
}

.diagram-node-css {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(18, 33, 24, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(18, 50, 39, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  z-index: 2;
  animation: floatCard 3.6s ease-in-out infinite;
}

.css-link {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.62), rgba(91, 197, 155, 0.54));
  opacity: 0.92;
  z-index: 1;
}

.h-link {
  height: 2px;
  border-radius: 999px;
}

.v-link {
  width: 2px;
  border-radius: 999px;
}

.node-signup {
  top: var(--row-1);
  left: var(--left-x);
  width: var(--node-w);
}

.node-business {
  top: var(--row-1);
  left: var(--right-x);
  width: var(--node-w);
  animation-delay: 0.25s;
}

.node-plan {
  top: var(--row-2);
  left: var(--right-x);
  width: var(--node-w);
  animation-delay: 0.5s;
}

.node-clients {
  top: var(--row-2);
  left: var(--left-x);
  width: var(--node-w);
  animation-delay: 0.75s;
}

.node-invoice {
  top: var(--row-3);
  left: var(--left-x);
  width: var(--node-w);
  animation-delay: 1s;
}

.node-risk {
  top: var(--row-3);
  left: var(--right-x);
  width: var(--node-w);
  animation-delay: 1.25s;
}

.node-funded {
  top: var(--row-4);
  left: var(--right-x);
  width: var(--node-w);
  animation-delay: 1.5s;
}

.node-repay {
  top: var(--row-4);
  left: var(--left-x);
  width: var(--node-w);
  animation-delay: 1.75s;
}

.link-top-1 {
  top: calc(var(--row-1) + var(--center-y));
  left: calc(var(--left-x) + var(--node-w));
  width: calc(var(--right-x) - (var(--left-x) + var(--node-w)));
}

.link-top-2 {
  top: calc(var(--row-1) + var(--node-h));
  left: calc(var(--right-x) + (var(--node-w) / 2));
  height: calc(var(--row-4) - (var(--row-3) + var(--node-h)));
  width: 2px;
}

.link-drop-1 {
  top: calc(var(--row-2) + var(--node-h));
    left: calc(var(--left-x) + (var(--node-w) / 2));
    height: calc(var(--row-4) - (var(--row-3) + var(--node-h)));
    width: 2px;
}

.link-mid-1 {
  top: calc(var(--row-2) + var(--center-y));
  left: calc(var(--left-x) + var(--node-w));
  width: calc(var(--right-x) - (var(--left-x) + var(--node-w)));
}

.link-mid-2 {
  top: calc(var(--row-3) + var(--center-y));
  left: calc(var(--left-x) + var(--node-w));
  width: calc(var(--right-x) - (var(--left-x) + var(--node-w)));
}

.link-drop-2 {
  top: calc(var(--row-3) + var(--node-h));
  left: calc(var(--right-x) + (var(--node-w) / 2));
  height: calc(var(--row-4) - (var(--row-3) + var(--node-h)));
}

.link-bottom-1 {
  top: calc(var(--row-4) + var(--center-y));
  left: calc(var(--left-x) + var(--node-w));
  width: calc(var(--right-x) - (var(--left-x) + var(--node-w)));
}

.signal-pill {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 122, 26, 0.10);
  z-index: 3;
}

.signal-top {
  top: calc(var(--row-1) + 22px);
  left: calc(var(--left-x) + var(--node-w) - 4px);
  animation: travelAcross 4s linear infinite;
}

.signal-mid {
  top: calc(var(--row-2) + 22px);
  left: calc(var(--left-x) + var(--node-w) - 4px);
  animation: travelAcross 4.8s linear infinite;
}

.signal-mid-2 {
  top: calc(var(--row-3) + 22px);
  left: calc(var(--left-x) + var(--node-w) - 4px);
  animation: travelAcross 4.8s linear infinite;
}

.signal-bottom {
  top: calc(var(--row-4) + 22px);
  left: calc(var(--left-x) + var(--node-w) - 4px);
  animation: travelAcross 4.4s linear infinite;
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.bullet-list li + li {
  margin-top: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 242, 0.9));
}

.feature-card p,
.problem-card p,
.step-card p,
.trust-card p,
.timeline-step p,
.highlight-card p,
.vision-panel p {
  margin-top: 14px;
  color: var(--text-soft);
}

.vision-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(18, 50, 39, 0.96), rgba(32, 88, 69, 0.95));
  color: #fff;
}

.vision-panel .eyebrow,
.vision-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-card {
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 122, 26, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 242, 0.96));
}

.cta-card h2,
.cta-card p {
  margin-left: auto;
  margin-right: auto;
}

.cta-card h2 {
  max-width: 11ch;
}

.cta-card p {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--text-soft);
}

.cta-card .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 36px;
  color: var(--text-soft);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 18, 13, 0.46);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  z-index: 20;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: min(100%, 540px);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 122, 26, 0.12), transparent 34%),
    rgba(255, 252, 246, 0.96);
  box-shadow: 0 30px 80px rgba(10, 24, 17, 0.22);
}

.modal-copy {
  margin-top: 16px;
  color: var(--text-soft);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 33, 24, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 8px;
  text-align: center;
}

.form-success p {
  max-width: 32ch;
  color: var(--text-soft);
}

.success-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(91, 197, 155, 0.22), rgba(18, 50, 39, 0.14));
  color: #1d7a57;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.success-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-field {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.form-field span {
  font-size: 0.95rem;
}

.form-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(18, 33, 24, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
}

.form-field input:focus {
  outline: 2px solid rgba(255, 122, 26, 0.28);
  outline-offset: 2px;
  border-color: rgba(255, 122, 26, 0.4);
}

.form-message {
  min-height: 1.5em;
  color: #a24b08;
  font-size: 0.94rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes travelAcross {
  0%,
  100% {
    transform: translateX(0);
  }

  12%,
  82% {
    opacity: 1;
  }

  50% {
    transform: translateX(80px);
  }
}

@media (max-width: 1100px) {
  .hero,
  .solution-layout,
  .vision-panel,
  .problem-grid,
  .features-grid,
  .steps-grid,
  .trust-grid,
  .how-flow,
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }

  .problem-grid article:last-child,
  .features-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 18px;
  }

  .site-header,
  .site-nav,
  .hero,
  .proof-strip,
  .problem-grid,
  .features-grid,
  .steps-grid,
  .trust-grid,
  .solution-layout,
  .vision-panel,
  .stats-row,
  .how-flow {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions,
  .footer-brand-block {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-cta {
    width: 100%;
  }

  .social-links-header {
    justify-content: center;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  h2 {
    max-width: 100%;
  }

  .primary-card,
  .secondary-card,
  .problem-card,
  .feature-card,
  .step-card,
  .trust-card,
  .highlight-card,
  .cta-card,
  .vision-panel {
    padding: 22px;
  }

  .timeline-step {
    grid-template-columns: 56px 1fr;
    padding: 20px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .architecture-diagram {
    min-height: 440px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.4)),
      linear-gradient(90deg, rgba(18, 33, 24, 0.04) 1px, transparent 1px),
      linear-gradient(rgba(18, 33, 24, 0.04) 1px, transparent 1px);
    background-size:
      auto,
      32px 32px,
      32px 32px;
    --left-x: 8%;
    --right-x: 56%;
    --node-w: 36%;
  }

  .diagram-node-css {
    font-size: 0.92rem;
    min-height: 52px;
    padding: 0 14px;
  }

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

  .modal-card {
    padding: 24px;
  }
}
