@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  /* EsaMobile brand palette */
  --brand-950: #3f0818;
  --brand-900: #5a0d22;
  --brand-800: #73112c;
  --brand-700: #8d1738;
  --brand-600: #a52046;
  --brand-500: #bd3157;
  --brand-400: #d45b78;
  --brand-100: #f8e9ee;
  --brand-50: #fcf5f7;

  /* Compatibility aliases used by the homepage */
  --navy-950: var(--brand-950);
  --navy-900: var(--brand-900);
  --navy-800: var(--brand-800);
  --blue-600: var(--brand-600);
  --blue-500: var(--brand-500);
  --cyan-400: #e2a2b4;

  /* Neutral palette */
  --white: #ffffff;
  --gray-50: #faf8f9;
  --gray-100: #f3edef;
  --gray-200: #e6d9dd;
  --gray-500: #74656a;
  --gray-700: #493d41;
  --gray-900: #231b1e;
  --success: #26735b;

  /* Shared UI tokens */
  --text: var(--gray-900);
  --text-muted: var(--gray-500);
  --surface: var(--white);
  --surface-soft: var(--brand-50);
  --border: var(--gray-200);
  --focus-ring: rgba(189, 49, 87, 0.35);
  --shadow-sm: 0 10px 30px rgba(7, 23, 44, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 23, 44, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

p {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 105, 224, 0.25);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 105, 224, 0.32);
}

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.feature-card a:focus-visible {
  outline: 3px solid rgba(71, 201, 216, 0.55);
  outline-offset: 4px;
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 23, 44, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 190px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.main-nav .nav-login {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 85% 12%, rgba(212, 91, 120, 0.18), transparent 28%),
    radial-gradient(circle at 10% 70%, rgba(165, 32, 70, 0.10), transparent 31%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 35, 65, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 35, 65, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 90%);
}

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

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--gray-700);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  color: var(--gray-700);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 25px;
  font-size: 0.93rem;
  font-weight: 700;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.hero-media {
  position: relative;
}

.dashboard-card {
  overflow: hidden;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.dashboard-card img {
  width: 100%;
  border-radius: 18px;
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: -24px;
  display: grid;
  min-width: 210px;
  padding: 18px 20px;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.floating-note strong {
  color: var(--white);
  font-size: 0.95rem;
}

.floating-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.proof-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

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

.proof-grid > div {
  display: grid;
  gap: 3px;
  padding: 27px 24px;
  border-right: 1px solid var(--gray-100);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--gray-100);
}

.proof-grid strong {
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
}

.proof-grid span {
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section {
  padding: 105px 0;
}

.section-soft {
  background: var(--gray-50);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 91, 120, 0.18), transparent 28%),
    var(--navy-950);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading > p:last-child {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(7, 23, 44, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(23, 105, 224, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card p {
  color: var(--gray-500);
}

.feature-card > a:not(.button) {
  margin-top: auto;
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: none;
}

.feature-card > a:not(.button)::after {
  content: " →";
}

.feature-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  color: var(--blue-600);
  background: rgba(23, 105, 224, 0.08);
  border-radius: 12px;
  font-weight: 800;
}

.feature-card-accent {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(226, 162, 180, 0.30), transparent 35%),
    var(--brand-700);
  border-color: transparent;
}

.feature-card-accent h3,
.feature-card-accent .eyebrow {
  color: var(--white);
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card-accent .button {
  align-self: flex-start;
  margin-top: auto;
}

.split {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1.1fr 0.9fr;
}

.split-copy > p:not(.eyebrow) {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--gray-700);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-size: 0.73rem;
  font-weight: 900;
}

.support-panel {
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(165, 32, 70, 0.98), rgba(63, 8, 24, 0.99));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.support-panel h3 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.support-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.support-panel .eyebrow {
  color: #93ecf5;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--white);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.support-tags span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.use-grid article {
  position: relative;
  padding: 32px 32px 32px 74px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.use-grid article::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 30px;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(23, 105, 224, 0.2);
}

.use-grid p {
  margin-bottom: 0;
  color: var(--gray-500);
}

.process .section-heading {
  margin-bottom: 46px;
}

.process-grid {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
}

.process-grid li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-section {
  padding: 78px 0;
  background: var(--gray-50);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 54px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cta-box h2 {
  max-width: 730px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-box p:last-child {
  margin-bottom: 0;
  color: var(--gray-500);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid p {
  max-width: 480px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid a:not(.brand) {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.73);
  text-decoration: none;
}

.footer-grid a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-note {
  text-align: right;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.86rem;
  }

  .hero-grid {
    gap: 44px;
    grid-template-columns: 1fr 1fr;
  }

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

  .proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--gray-100);
  }

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 165px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    display: none;
    width: 100%;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .main-nav > a:not(.button) {
    padding: 12px 4px;
    font-size: 0.95rem;
  }

  .main-nav .nav-login {
    padding-left: 4px;
    border-left: 0;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 72px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    max-width: 720px;
  }

  .dashboard-card {
    transform: none;
  }

  .split {
    gap: 44px;
    grid-template-columns: 1fr;
  }

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

  .process-grid li > span {
    margin-bottom: 22px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    flex-direction: row;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.8rem);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

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

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

  .floating-note {
    position: static;
    margin-top: 12px;
  }

  .proof-grid,
  .card-grid,
  .use-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:nth-child(3) {
    border-right: 1px solid var(--gray-100);
    border-left: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
  }

  .feature-card {
    min-height: auto;
  }

  .feature-index {
    margin-bottom: 30px;
  }

  .support-panel {
    padding: 31px;
  }

  .use-grid article {
    padding: 28px 25px 28px 64px;
  }

  .use-grid article::before {
    top: 31px;
    left: 24px;
  }

  .cta-box {
    padding: 34px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* =========================================================
   EsaMobile reusable design-system components
   Use these classes progressively on internal pages.
   ========================================================= */

.esm-page {
  color: var(--text);
  background: var(--surface);
}

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

.esm-section {
  padding: 88px 0;
}

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

.esm-section--dark {
  color: var(--white);
  background: var(--brand-950);
}

.esm-kicker {
  margin: 0 0 10px;
  color: var(--brand-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.esm-title {
  margin: 0 0 18px;
  color: var(--brand-950);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.esm-lead {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.esm-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(141, 23, 56, 0.22);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.esm-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(141, 23, 56, 0.3);
}

.esm-button--outline {
  color: var(--brand-800);
  background: transparent;
  border-color: var(--brand-300, #de8298);
  box-shadow: none;
}

.esm-button--light {
  color: var(--brand-900);
  background: var(--white);
  box-shadow: none;
}

.esm-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(63, 8, 24, 0.04);
}

.esm-card h2,
.esm-card h3 {
  color: var(--brand-950);
}

.esm-grid {
  display: grid;
  gap: 20px;
}

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

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

.esm-alert {
  padding: 18px 20px;
  color: var(--brand-950);
  background: var(--brand-100);
  border-left: 4px solid var(--brand-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.esm-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: var(--brand-800);
  background: var(--brand-100);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.esm-input,
.esm-select,
.esm-textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

.esm-textarea {
  min-height: 130px;
  resize: vertical;
}

.esm-input:focus,
.esm-select:focus,
.esm-textarea:focus {
  border-color: var(--brand-500);
  outline: 3px solid var(--focus-ring);
}

.esm-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.esm-table {
  width: 100%;
  border-collapse: collapse;
}

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

.esm-table th {
  color: var(--brand-950);
  background: var(--brand-50);
}

.esm-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .esm-grid--2,
  .esm-grid--3 {
    grid-template-columns: 1fr;
  }

  .esm-section {
    padding: 68px 0;
  }
}

.footer-note a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:color .2s ease;
}

.footer-note a:hover{
    color:#ffffff;
    text-decoration:underline;
}