/* Landing page redesign */

:root {
  --lp-bg: #f6f8ff;
  --lp-surface: rgba(255, 255, 255, 0.82);
  --lp-surface-solid: #ffffff;
  --lp-text: #1c2554;
  --lp-text-soft: #5f688d;
  --lp-primary: #2563eb;
  --lp-primary-strong: #2563eb;
  --lp-primary-soft: rgba(102, 124, 246, 0.14);
  --lp-border: rgba(128, 147, 255, 0.18);
  --lp-shadow:
    0 20px 60px rgba(110, 124, 199, 0.12),
    0 8px 20px rgba(110, 124, 199, 0.08);
  --lp-shadow-soft:
    0 14px 32px rgba(110, 124, 199, 0.08),
    0 4px 12px rgba(110, 124, 199, 0.06);
  --lp-radius: 28px;
  --lp-container: 1180px;
  --lp-header-height: 88px;
}

html {
  scroll-padding-top: 110px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--lp-text);
  background:
    radial-gradient(circle at top left, rgba(146, 173, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7ff 42%, #ffffff 100%);
}

.lp-page {
  min-height: 100vh;
}

.lp-skip-link {
  position: absolute;
  left: 20px;
  top: -48px;
  z-index: 1001;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lp-primary);
  color: #fff;
}

.lp-skip-link:focus {
  top: 20px;
}

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

.lp-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.lp-navbar.scrolled {
  background: rgba(248, 250, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(102, 124, 246, 0.08);
  border-bottom: 1px solid rgba(123, 142, 255, 0.12);
}

.lp-navbar-shell {
  width: min(calc(100% - 40px), var(--lp-container));
  min-height: var(--lp-header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.lp-navbar-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.lp-navbar-logo img {
  width: 170px;
  height: auto;
}

.lp-navbar-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0 auto;
  border: 1px solid rgba(124, 142, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(102, 124, 246, 0.08);
}

.lp-navbar-links a,
.lp-mobile-nav a,
.lp-footer-links a {
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.lp-navbar-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.lp-nav-dropdown {
  position: relative;
}

.lp-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-text);
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.lp-navbar-links a:hover,
.lp-navbar-links a:focus-visible,
.lp-nav-dropdown-trigger:hover,
.lp-nav-dropdown-trigger:focus-visible {
  color: var(--lp-primary-strong);
  background: rgba(102, 124, 246, 0.08);
}

.lp-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(102, 124, 246, 0.16);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--lp-shadow-soft);
  display: none;
  z-index: 4;
}

.lp-nav-dropdown.open .lp-nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.lp-nav-dropdown-menu a {
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lp-nav-coming-item,
.lp-mobile-coming-item {
  cursor: not-allowed;
  opacity: 0.92;
}

.lp-nav-coming-badge {
  font-size: 8px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  white-space: nowrap;
}

.lp-navbar-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-search-trigger,
.lp-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(102, 124, 246, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--lp-shadow-soft);
  color: var(--lp-text);
  font-weight: 600;
}

.lp-search-trigger {
  min-width: 218px;
  justify-content: flex-start;
}

.lp-search-trigger span:first-of-type {
  color: var(--lp-text-soft);
}

.lp-search-kbd {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(102, 124, 246, 0.08);
  color: var(--lp-primary-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.lp-dropdown {
  position: relative;
}

.lp-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(102, 124, 246, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--lp-shadow-soft);
  display: none;
}

.lp-dropdown.open .lp-dropdown-menu {
  display: grid;
  gap: 4px;
}

.lp-dropdown-item {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: left;
  color: var(--lp-text);
}

.lp-dropdown-item:hover,
.lp-dropdown-item.active {
  background: rgba(102, 124, 246, 0.08);
  color: var(--lp-primary-strong);
}

.lp-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  padding: 96px 20px 20px;
  background: rgba(18, 27, 56, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lp-search-modal.open {
  display: block;
}

.lp-search-modal-content {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(102, 124, 246, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lp-shadow);
}

.lp-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(246, 248, 255, 0.9);
  border: 1px solid rgba(102, 124, 246, 0.1);
}

.lp-search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.lp-search-esc {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(102, 124, 246, 0.08);
  color: var(--lp-primary-strong);
  font-weight: 700;
}

.lp-search-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.lp-search-result-item,
.lp-search-empty {
  padding: 16px;
  border-radius: 18px;
  background: rgba(246, 248, 255, 0.76);
  color: var(--lp-text-soft);
}

.lp-search-result-item {
  cursor: pointer;
}

.lp-search-result-item:hover {
  background: rgba(102, 124, 246, 0.08);
}

.result-title {
  color: var(--color-primary);
  font-weight: 700;
}

.result-desc {
  margin-top: 6px;
}

.lp-nav-cta,
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.lp-nav-cta,
.lp-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #7d90ff 100%);
  box-shadow: 0 16px 30px rgba(102, 124, 246, 0.26);
}

.lp-nav-cta:hover,
.lp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(102, 124, 246, 0.32);
}

.lp-btn-secondary {
  color: var(--lp-primary-strong);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(102, 124, 246, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.lp-btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
}

.lp-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(102, 124, 246, 0.18);
  box-shadow: var(--lp-shadow-soft);
  color: var(--lp-text);
}

.lp-mobile-nav {
  display: none;
  width: min(calc(100% - 40px), var(--lp-container));
  margin: 12px auto 0;
  padding: 14px;
  border: 1px solid rgba(102, 124, 246, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--lp-shadow-soft);
}

.lp-mobile-nav.open {
  display: grid;
  gap: 6px;
}

.lp-mobile-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.lp-mobile-nav a:hover {
  background: rgba(102, 124, 246, 0.08);
  color: var(--lp-primary-strong);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
}

.lp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.lp-hero-copy,
.lp-hero-panel,
.lp-section,
.lp-metrics,
.lp-footer {
  position: relative;
  z-index: 1;
}

.lp-eyebrow,
.lp-section-tag,
.lp-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(102, 124, 246, 0.14);
  color: var(--lp-primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-hero-copy h1,
.lp-section-heading h2,
.lp-section-copy h2,
.lp-cta-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  color: #2563eb;
}

.lp-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.96;
}

.lp-hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--lp-text-soft);
}

.lp-hero-copy {
  min-width: 0;
}

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

.lp-hero-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.lp-hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lp-text);
  font-weight: 600;
}

.lp-hero-points i {
  color: var(--lp-primary);
}

.lp-hero-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.lp-glass-card,
.lp-card,
.lp-process-card,
.lp-cta-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lp-glass-card {
  border-radius: 32px;
}

.lp-hero-card-main {
  width: min(100%, 470px);
  padding: 34px;
}

.lp-hero-card-main h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--lp-text);
}

.lp-hero-card-main p,
.lp-card p,
.lp-process-card p,
.lp-cta-card p,
.lp-section-copy p,
.lp-section-heading p {
  color: var(--lp-text-soft);
  line-height: 1.85;
}

.lp-hero-card-mini {
  position: absolute;
  left: 0;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(300px, 72%);
  padding: 18px 20px;
}

.lp-hero-card-mini i {
  font-size: 1.1rem;
  color: var(--lp-primary);
}

.lp-hero-card-mini strong,
.lp-card h3,
.lp-process-card h3 {
  display: block;
  margin-bottom: 6px;
  color: var(--lp-text);
  font-size: 1.03rem;
}

.lp-hero-card-mini span {
  color: var(--lp-text-soft);
  font-size: 0.92rem;
}

.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  background: radial-gradient(circle, rgba(152, 166, 255, 0.48), rgba(152, 166, 255, 0.08) 72%, transparent 100%);
}

.lp-hero-orb-one {
  top: 70px;
  right: 30%;
  width: 250px;
  height: 250px;
}

.lp-hero-orb-two {
  top: 130px;
  right: 18%;
  width: 150px;
  height: 150px;
}

.lp-hero-orb-three {
  right: 5%;
  top: 150px;
  width: 360px;
  height: 360px;
}

.lp-section {
  padding: 110px 0;
}

.lp-section-soft {
  background: linear-gradient(180deg, rgba(245, 247, 255, 0.82), rgba(255, 255, 255, 0.94));
}

.lp-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.lp-section-copy h2,
.lp-section-heading h2,
.lp-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  margin-bottom: 20px;
}

.lp-section-copy p + p,
.lp-section-heading p + p {
  margin-top: 18px;
}

.lp-section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

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

.lp-centered-heading .lp-section-tag {
  justify-content: center;
}

.lp-feature-grid,
.lp-benefit-grid,
.lp-vision-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.lp-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--lp-radius);
}

.lp-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.lp-card-accent {
  box-shadow:
    inset 4px 0 0 var(--lp-primary),
    var(--lp-shadow-soft);
}

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

.lp-process-card {
  padding: 26px 22px;
  border-radius: var(--lp-radius);
  text-align: center;
}

.lp-process-number {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #7d90ff 100%);
  box-shadow: 0 14px 28px rgba(102, 124, 246, 0.22);
}

.lp-vision-heading {
  max-width: 920px;
}

.lp-metrics {
  padding: 54px 0;
  background: #2563eb;
}

.lp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lp-metric {
  padding: 18px 12px;
  text-align: center;
  color: #fff;
}

.lp-metric strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.7rem);
  line-height: 1;
}

.lp-metric span {
  display: block;
  margin-top: 12px;
  opacity: 0.96;
  font-weight: 600;
}

.lp-cta-section {
  padding-top: 100px;
}

.lp-cta-card {
  padding: 54px 28px;
  border-radius: 36px;
  text-align: center;
}

.lp-cta-card p {
  max-width: 740px;
  margin: 18px auto 0;
}

.lp-cta-actions {
  justify-content: center;
}

.lp-footer {
  padding: 72px 0 34px;
  background: #121b38;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 30px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-brand img {
  width: 146px;
  margin-bottom: 18px;
  filter: brightness(1.05);
}

.lp-footer-brand p,
.lp-footer-col a,
.lp-footer-inner {
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.lp-footer-brand p {
  max-width: 320px;
  line-height: 1.9;
}

.lp-footer-col h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.lp-footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.lp-footer-col a {
  width: fit-content;
}

.lp-footer-col a:hover,
.lp-footer-links a:hover {
  color: #ffffff;
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lp-footer-links a:hover {
  color: #ffffff;
}

.lp-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #7d90ff 100%);
  box-shadow: 0 18px 36px rgba(102, 124, 246, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.lp-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 9999;
}

.lp-scroll-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .lp-navbar-shell {
    grid-template-columns: 1fr auto;
  }

  .lp-navbar-links,
  .lp-search-trigger,
  .lp-desktop-only {
    display: none;
  }

  .lp-hamburger {
    display: inline-grid;
    place-items: center;
  }

  .lp-hero-grid,
  .lp-split-layout,
  .lp-benefit-grid,
  .lp-process-grid,
  .lp-vision-grid {
    grid-template-columns: 1fr;
  }

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

  .lp-hero {
    padding: 28px 0 56px;
  }

  .lp-hero-panel {
    min-height: auto;
    justify-content: flex-start;
  }

  .lp-hero-card-main {
    width: 100%;
    max-width: 560px;
  }

  .lp-hero-card-mini {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .lp-hero-orb-one {
    right: 14%;
    width: 180px;
    height: 180px;
  }

  .lp-hero-orb-two {
    right: 4%;
    width: 112px;
    height: 112px;
  }

  .lp-hero-orb-three {
    right: -4%;
    top: 220px;
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 720px) {
  .lp-container,
  .lp-navbar-shell,
  .lp-mobile-nav {
    width: min(calc(100% - 24px), var(--lp-container));
  }

  .lp-search-modal {
    padding: 80px 12px 12px;
  }

  .lp-navbar {
    padding: 10px 0;
  }

  .lp-navbar-shell {
    min-height: 72px;
  }

  .lp-navbar-logo img {
    width: 170x;
  }

  .lp-hero {
    padding: 18px 0 42px;
  }

  .lp-hero-grid {
    min-height: auto;
    gap: 24px;
  }

  .lp-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 14vw, 4rem);
    line-height: 1.02;
  }

  .lp-hero-copy p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .lp-hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .lp-btn {
    width: 100%;
  }

  .lp-hero-points {
    margin-top: 24px;
  }

  .lp-hero-points li {
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .lp-hero-panel {
    margin-top: 2px;
  }

  .lp-hero-card-main {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .lp-hero-card-main h2 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .lp-hero-card-mini {
    padding: 16px 18px;
    border-radius: 22px;
  }

  .lp-section {
    padding: 78px 0;
  }

  .lp-feature-grid,
  .lp-metrics-grid,
  .lp-footer-inner {
    grid-template-columns: 1fr;
  }

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

  .lp-feature-grid,
  .lp-benefit-grid,
  .lp-vision-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer-inner {
    display: grid;
    justify-content: stretch;
    text-align: center;
  }

  .lp-footer-links {
    justify-content: center;
  }

  .lp-hero-orb-one {
    top: 8px;
    right: -36px;
    width: 120px;
    height: 120px;
    opacity: 0.65;
  }

  .lp-hero-orb-two {
    display: none;
  }

  .lp-hero-orb-three {
    top: auto;
    bottom: 8px;
    right: -72px;
    width: 150px;
    height: 150px;
    opacity: 0.45;
  }
}

@media (max-width: 480px) {
  .lp-hero-grid {
    gap: 20px;
  }

  .lp-eyebrow {
    font-size: 0.78rem;
    padding: 7px 12px;
  }

  .lp-hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
  }

  .lp-hero-copy p {
    font-size: 0.94rem;
  }

  .lp-hero-card-main {
    padding: 22px 18px;
  }

  .lp-hero-card-main h2 {
    font-size: 1.28rem;
  }

  .lp-hero-card-mini {
    width: 100%;
    padding: 14px 16px;
  }
}
