/* landing-new — Figma Version 2 (1:1139): tokens, DaisyUI alignment, hero/simulate/CTA layers */

.ln2-body.ln2-landing {
  --ln2-page-bg: #5f933a;
  --ln2-surface-cream: #eff3e4;
  --ln2-surface-pale: #f9f9ef;
  --ln2-forest: #1d3915;
  --ln2-lime: #b4df43;
  --ln2-lime-bright: #7ac71f;
  --ln2-muted: #5d645b;
  --ln2-tab-active: #5f933a;
  --ln2-font-sans: "Sora", "Inter", system-ui, sans-serif;
  --ln2-font-mono: "Geist Mono", "DM Mono", ui-monospace, monospace;
  background-color: var(--ln2-page-bg) !important;
  font-family: var(--ln2-font-sans);
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--ln2-tab-active) var(--ln2-surface-cream);
}

/* 100vw full-bleed is wider than the layout viewport when a vertical scrollbar is present */
html:has(body.ln2-body.ln2-landing) {
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  /* literals: html does not inherit --ln2-* from body */
  scrollbar-color: #486f2c #eff3e4;
}

html:has(body.ln2-body.ln2-landing)::-webkit-scrollbar {
  width: 10px;
}

html:has(body.ln2-body.ln2-landing)::-webkit-scrollbar-track {
  background: #eff3e4;
  border-radius: 999px;
}

html:has(body.ln2-body.ln2-landing)::-webkit-scrollbar-thumb {
  background: #486f2c;
  border-radius: 999px;
  border: 2px solid #eff3e4;
}

html:has(body.ln2-body.ln2-landing)::-webkit-scrollbar-thumb:hover {
  background: #5a8640;
}

html:has(body.ln2-body.ln2-landing)::-webkit-scrollbar-thumb:active {
  background: #1d3915;
}

/* Some engines attach the scrollbar to `body` */
body.ln2-body.ln2-landing::-webkit-scrollbar {
  width: 10px;
}

body.ln2-body.ln2-landing::-webkit-scrollbar-track {
  background: var(--ln2-surface-cream);
  border-radius: 999px;
}

body.ln2-body.ln2-landing::-webkit-scrollbar-thumb {
  background: var(--ln2-tab-active);
  border-radius: 999px;
  border: 2px solid var(--ln2-surface-cream);
}

body.ln2-body.ln2-landing::-webkit-scrollbar-thumb:hover {
  background: #5a8640;
}

body.ln2-body.ln2-landing::-webkit-scrollbar-thumb:active {
  background: var(--ln2-forest);
}

.ln2-font-body {
  font-family: var(--ln2-font-sans);
}

.ln2-landing-page {
  overflow-x: clip;
}

.ln2-shell {
  min-width: 0;
  overflow-x: clip;
}

.ln2-font-mono {
  font-family: var(--ln2-font-mono);
  letter-spacing: 0.05em;
}

/* Landing header: primary nav active = dark + square (inactive = muted) */
header#top nav[aria-label="Primary"] .ln2-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5d645b;
  text-decoration: none;
}

header#top nav[aria-label="Primary"] .ln2-nav-link:hover {
  color: #1d3915;
}

header#top nav[aria-label="Primary"] .ln2-nav-link--active {
  color: #1d3915;
}

header#top nav[aria-label="Primary"] .ln2-nav-link__mark {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  background-color: #1d3915;
  opacity: 0;
  transition: opacity 0.15s ease;
}

header#top nav[aria-label="Primary"] .ln2-nav-link--active .ln2-nav-link__mark {
  opacity: 1;
}

.ln2-analytics-card{
  height: 100%;
}

/* Tablet Layout Refinement: Hide Login and Get Started in the 640px-1123px range */
@media (min-width: 640px) and (max-width: 1123px) {

  header#top .flex.items-center.justify-end a,
  header#top .flex.items-center.justify-end img {
    display: none !important;
  }
}

.ln2-sim-connector {
  position: absolute;
  width: 1px;
  border-left: 2px dashed #1d3915;
  opacity: 0.3;
  pointer-events: none;
}

.ln2-compare-tab[aria-selected="true"] .ln2-compare-tab__icon {
  animation: rotateIcon 2s linear infinite;
  /* animation: rotateOnce 0.6s ease; */
}

/* Custom Responsive logic for 1124px threshold (handling Tailwind lg: gap) */
@media (max-width: 1123px) {
  #ln2-nav-toggle {
    display: flex !important;
    /* Force hamburger visible */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #1d3915 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    width: auto !important;
  }

  #ln2-nav-toggle:hover,
  #ln2-nav-toggle:active,
  #ln2-nav-toggle:focus {
    background: transparent !important;
    box-shadow: none !important;
  }

  header#top nav[aria-label="Primary"] {
    display: none !important;
    /* Force desktop links hidden */
  }
}

@media (min-width: 1124px) {
  #ln2-nav-toggle {
    display: none !important;
  }

  header#top nav[aria-label="Primary"] {
    display: flex !important;
  }
}


/* ── Mobile Sidebar Drawer ───────────────────────────────────── */
#ln2-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#ln2-nav-overlay.ln2-overlay--visible {
  display: block;
}

#ln2-nav-overlay.ln2-overlay--active {
  opacity: 1;
}

#ln2-nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 100dvh;
  z-index: 1001;
  background-color: #eff3e4;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  display: flex !important;
  /* Force flex for internal layout */
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

#ln2-nav-mobile.ln2-nav-mobile--open {
  transform: translateX(0);
}

#ln2-nav-mobile .ln2-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1d3915;
  text-decoration: none;
  font-size: 1.125rem;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

#ln2-nav-mobile .ln2-nav-link:hover {
  color: #1d3915;
  transform: translateX(4px);
}

#ln2-nav-mobile .ln2-nav-link--active {
  color: #1d3915;
  font-weight: 600;
}

#ln2-nav-mobile .ln2-nav-link__mark {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  background-color: #1d3915;
  opacity: 0;
  transition: opacity 0.15s ease;
}

#ln2-nav-mobile .ln2-nav-link--active .ln2-nav-link__mark {
  opacity: 1;
}

.ln2-card-shell {
  width: 100%;
  max-width: 104.875rem;
  margin-left: auto;
  margin-right: auto;
}

.ln2-inner {
  width: 100%;
  max-width: 104.875rem;
  margin-left: auto;
  margin-right: auto;
}

/* Feature tab strip (Figma: flex row, opacity inactive, no Daisy tab chrome) */
.ln2-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ln2-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.125rem;
  padding: 0 0.25rem;
  border: 1px solid transparent;
  background: transparent;
  vertical-align: middle;
}

.ln2-tab--inactive {
  opacity: 0.4;
}

.ln2-tab--active {
  opacity: 1;
}

.ln2-tab--active .ln2-tab__label {
  color: var(--ln2-tab-active);
  font-weight: 500;
}

.ln2-tab__icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 3.125rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
}

.ln2-tab__icon>img:only-child {
  max-height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ln2-tab__icon--stack .ln2-tab__vec {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66%;
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
}

.ln2-tab__icon--stack .ln2-tab__svg {
  position: relative;
  z-index: 1;
  max-height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Full-bleed: break out of max-width parent */
.ln2-full-bleed {
  width: 100vw;
  width: 100dvw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-left: -50dvw;
}

/* Compare section: tabbed component */
.ln2-compare-inner {
  width: 100%;
  padding: 3rem 2rem;
}

/* Tab row — Figma 1:1368: 247/221/230 tab widths with 8px gaps */
.ln2-compare-tabs {
  display: flex;
  width: auto;
  max-width: 100%;
  align-items: center;
  gap: 32px;
  margin-bottom: 2rem;
}

@media (max-width: 1123px) {
  .ln2-compare-tabs {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ln2-compare-tabs::-webkit-scrollbar {
    display: none;
  }
}

.ln2-compare-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ln2-compare-tab__icon-wrap {
  position: relative;
  width: 64px;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ln2-compare-tab__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.ln2-compare-tab[aria-selected="false"] .ln2-compare-tab__icon {
  filter: grayscale(1);
  opacity: 0.4;
}

.ln2-compare-tab__icon--inner {
  transform: scale(0.7);
  transform-origin: center;
}

.ln2-dashed-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1.5px dashed #5f933a;
  border-radius: 50%;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.ln2-compare-tab[aria-selected="false"] .ln2-dashed-circle {
  border-color: #8c8c8c;
  opacity: 0.4;
}

.ln2-compare-tab__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5f933a;
  transition: color 0.3s ease;
}

.ln2-compare-tab[aria-selected="false"] .ln2-compare-tab__badge {
  color: #8c8c8c;
}

.ln2-compare-tab__label {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #8c8c8c;
  white-space: nowrap;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.ln2-compare-tab[aria-selected="true"] .ln2-compare-tab__label {
  color: #5f933a;
  font-weight: 600;
}

@media (max-width: 639px) {
  .ln2-compare-tab__icon-wrap {
    width: 48px;
    height: 3rem;
  }

  .ln2-compare-tab__badge {
    font-size: 0.75rem;
  }

  .ln2-compare-tab__label {
    display: none;
    font-size: 1rem;
  }

  .ln2-compare-tab[aria-selected="true"] .ln2-compare-tab__label {
    display: block;
  }
}


/* Active icon: slow continuous rotation */
@keyframes ln2-icon-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ln2-compare-tab .ln2-tab__icon,
.ln2-compare-tab .ln2-tab__icon--stack {
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.ln2-compare-tab[aria-selected="true"] .ln2-tab__icon>img:not(.ln2-compare-tab__badge),
.ln2-compare-tab[aria-selected="true"] .ln2-tab__icon--stack>img.ln2-tab__svg {
  animation: ln2-icon-spin 12s linear infinite;
}

.ln2-compare-tab[aria-selected="false"] .ln2-tab__icon>img:not(.ln2-compare-tab__badge),
.ln2-compare-tab[aria-selected="false"] .ln2-tab__icon--stack>img.ln2-tab__svg {
  animation: none;
}

.ln2-compare-tab[aria-selected="true"] .ln2-tab__icon,
.ln2-compare-tab[aria-selected="true"] .ln2-tab__icon--stack {
  opacity: 1;
  filter: none;
}

.ln2-compare-tab[aria-selected="false"] .ln2-tab__icon,
.ln2-compare-tab[aria-selected="false"] .ln2-tab__icon--stack {
  opacity: 0.5;
  filter: saturate(0);
}

@media (prefers-reduced-motion: reduce) {

  .ln2-compare-tab[aria-selected="true"] .ln2-tab__icon>img:not(.ln2-compare-tab__badge),
  .ln2-compare-tab[aria-selected="true"] .ln2-tab__icon--stack>img.ln2-tab__svg {
    animation: none;
  }
}

/* Inter 14 semibold; Figma places numbers around x=16/15.5 and y=22/23 inside the icon block */
.ln2-compare-tab__badge {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
  pointer-events: none;
  transition: color 0.25s ease;
}



.ln2-compare-tab[aria-selected="true"] .ln2-compare-tab__badge {
  color: #b4df43;
}

.ln2-compare-tab[aria-selected="false"] .ln2-compare-tab__badge {
  color: #464c47;
}

/* Active tab: bold green label to match screenshot */
.ln2-compare-tab[aria-selected="true"] {
  color: #5f933a;
}

.ln2-compare-tab[aria-selected="true"] .ln2-compare-tab__label {
  color: #5f933a;
  font-weight: 600;
}

.ln2-compare-tab[aria-selected="false"] .ln2-compare-tab__label {
  color: #a0a8a0;
  font-weight: 400;
}

.ln2-compare-panels {
  position: relative;
  margin-top: 2.5rem;
}

.ln2-compare-grid {
  display: grid;
  align-items: start;
  gap: 2.5rem;
}

.ln2-compare-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.ln2-compare-title-wrap {
  max-width: 519px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ln2-compare-title-wrap h2 {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.004em;
  color: #292827;
}

/* Step circles: dark-forest bg with lime numbers */
.ln2-compare-left ul li>span:first-child {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  background-color: #1d3915 !important;
  color: #b4df43 !important;
}

.ln2-compare-desc {
  max-width: 470px;
  line-height: 1.625rem;
}

.ln2-compare-figure {
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1d3915 0%, #2d5222 60%, #3d6b30 100%);
  box-shadow: 0 25px 40px -8px rgba(29, 57, 21, 0.35), 0 8px 16px -4px rgba(0, 0, 0, 0.15);
}

.ln2-compare-figure img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}

.ln2-compare-panel {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ln2-compare-panel[aria-hidden="true"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 1124px) {
  #compare {
    /* Tall scroll track: equal tab zones + extra runway before the following section */
    height: 480vh;
  }

  .ln2-compare-inner {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 4.75rem;
    /* Align left edge with page shell: (viewport - 1710px) / 2 + 76px minimum */
    padding-left: max(4.75rem, calc((100vw - 1710px) / 2 + 4.75rem));
  }

  .ln2-compare-panels {
    margin-top: 100px;
  }

  .ln2-compare-grid {
    /* Slightly more width for the figure column vs copy (was 625px / 4rem gap) */
    grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
    gap: 3rem;
  }

  .ln2-compare-left {
    padding-top: 2.5rem;
    gap: 0;
    justify-content: space-between;
    min-height: 36.25rem;
  }

  .ln2-compare-figure {
    margin-right: -6rem;
  }
}

@media (max-width: 767px) {
  .ln2-compare-inner {
    padding: 1.75rem 1rem;
    margin-top: 1rem;
  }

  .ln2-compare-panels {
    margin-top: 1.5rem;
  }

  .ln2-compare-grid {
    gap: 1.25rem;
  }

  .ln2-compare-left {
    gap: 1.25rem;
  }

  .ln2-compare-title-wrap h2 {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .ln2-compare-desc {
    line-height: 1.55;
  }

  .ln2-compare-tab {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 3.5rem;
    column-gap: 0.625rem;
  }

  .ln2-compare-tab[data-ctab="2"] {
    grid-template-columns: 43px minmax(0, 1fr);
  }

  /* Mobile icon container — strict square so SVG circles stay round */
  .ln2-compare-tab .ln2-tab__icon,
  .ln2-compare-tab .ln2-tab__icon--stack {
    width: 48px;
    height: 3rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }

  .ln2-compare-tab[data-ctab="2"] .ln2-tab__icon--stack {
    width: 48px;
  }

  /* Tab 01 & 02: single image — fill the square exactly */
  .ln2-compare-tab .ln2-tab__icon>img:not(.ln2-compare-tab__badge) {
    display: block;
    width: 48px;
    height: 3rem;
    object-fit: fill;
    /* SVG vector fills box cleanly = round */
  }

  /* Tab 03 outer dashed circle SVG */
  .ln2-compare-tab .ln2-tab__icon--stack>img.ln2-tab__svg {
    display: block;
    width: 48px;
    height: 3rem;
    object-fit: fill;
  }

  /* Tab 03 inner static circle — slightly smaller, re-centered */
  .ln2-compare-tab .ln2-tab__icon--stack>img.ln2-tab__vec {
    width: 32px;
    height: 2rem;
  }

  .ln2-compare-tab__badge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    line-height: 1;
  }

  .ln2-cta-figma-layout {
    min-height: 0;
    padding: 1.75rem 1rem;
    gap: 1.5rem;
  }

  .ln2-cta-figma-copy {
    gap: 1.5rem;
  }

  .ln2-cta-figma-textblock {
    gap: 0.75rem;
  }

  .ln2-cta-figma-lede {
    font-size: 1rem;
    line-height: 1.5;
  }

  .ln2-cta-btn-group--figma {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .ln2-cta-btn--dark,
  .ln2-cta-btn--light {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1124px) and (max-width: 1279px) {
  .ln2-compare-grid {
    gap: 2rem;
  }

  .ln2-compare-figure {
    margin-right: 0;
  }
}

/* Analytics / Improvement section (node 1:1482) */
.ln2-analytics-body {
  padding: 2.5rem 1.5rem;
}

.ln2-analytics-heading {
  max-width: 946px;
  margin-bottom: 2.5rem;
}

.ln2-analytics-card {
  border-radius: 1.5rem;
  border: 0;
  box-shadow: none;
}

.ln2-analytics-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ln2-analytics-card .ln2-a-text {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.ln2-analytics-card .ln2-a-text h3 {
  margin: 0;
}

.ln2-analytics-card .ln2-a-text hr {
  margin: 0;
}

.ln2-analytics-card .ln2-a-text p {
  margin: 0;
}

.ln2-analytics-center {
  border-radius: 2rem;
  border: 0;
}

.ln2-analytics-center .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.ln2-gauge-wrap {
  position: relative;
  width: 100%;
  max-width: 376px;
  margin-left: auto;
  margin-right: auto;
}

.ln2-gauge-wrap img.ln2-gauge-arc {
  display: block;
  width: 100%;
}

.ln2-gauge-stats {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.ln2-gauge-pct {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.74px;
  color: #041717;
}

.ln2-gauge-badge {
  font-size: 0.9rem;
  line-height: 1.1;
  letter-spacing: 0.14px;
}

.ln2-gauge-arrow {
  position: absolute;
  left: 75%;
  top: 22%;
  width: 28px;
  height: 1.5625rem;
  transform: rotate(-8.09deg);
  pointer-events: none;
}

.ln2-gauge-header {
  display: flex;
  align-items: center;
  gap: 14.4px;
}

.ln2-gauge-header-icon {
  width: 46px;
  height: 2.875rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12.7px;
  background: #b4df43;
}

.ln2-gauge-title {
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.37px;
  color: #041717;
}

.ln2-gauge-subtitle {
  font-size: 1.08125rem;
  line-height: 1;
  letter-spacing: 0.28px;
  color: #545b55;
}

.ln2-gauge-header-text {
  display: flex;
  flex-direction: column;
  gap: 11.5px;
}

.ln2-gauge-legend {
  font-size: 1.08125rem;
  letter-spacing: 0.17px;
  color: #596767;
}

.ln2-gauge-legend i {
  width: 12px;
  height: 1.0625rem;
  border-radius: 3px;
}

.ln2-gauge-cta {
  max-width: 376px;
  font-size: 1.08125rem;
  letter-spacing: 0.28px;
  line-height: 1.1;
}

@media (min-width: 1124px) {
  .ln2-analytics-center .card-body {
    padding: 88px 2rem 56px;
    gap: 0;
  }

  .ln2-gauge-header {
    margin-bottom: 43px;
  }

  .ln2-gauge-wrap {
    margin-bottom: 20px;
  }

  .ln2-gauge-legend {
    margin-bottom: 41px;
  }
}

@media (min-width: 640px) {
  .ln2-analytics-body {
    padding: 3.75rem;
  }
}

@media (min-width: 1124px) {
  .ln2-analytics-body {
    padding: 3.75rem 3.75rem 4.5rem;
  }

  .ln2-analytics-heading {
    margin-bottom: 3.25rem;
  }

  .ln2-analytics-card .card-body {
    min-height: 16.5rem;
  }
}

/* ── Analytics section: Mobile overrides ──────────────────────────── */
@media (max-width: 1123px) {

  /* Hide the center gauge/chart card on mobile — Figma shows only the 4 feature cards */
  .ln2-analytics-center {
    display: none;
  }

  .ln2-analytics-body {
    padding: 1.75rem 1.25rem;
  }

  /* Heading: match Figma large bold text ~28px */
  .ln2-analytics-heading {
    font-size: 1.75rem !important;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  /* Card title: match Figma ~18px */
  .ln2-analytics-card .ln2-a-text h3 {
    font-size: 1.125rem !important;
    font-weight: 500;
    line-height: 1.3;
  }

  /* Card body text: match Figma ~14px */
  .ln2-analytics-card .ln2-a-text p {
    font-size: 0.875rem !important;
    line-height: 1.55;
  }

  /* Card padding: tighter on mobile */
  .ln2-analytics-card .card-body {
    padding: 1.25rem;
    gap: 1rem;
    min-height: 0;
  }

  /* Gap between feature cards */
  .ln2-analytics-body>.grid {
    gap: 0.75rem;
  }
}

/* Simulate: scaled canvas matching Figma node 1:1288 (1678×810) */
.ln2-sim {
  height: auto;
  container-type: inline-size;
  overflow: hidden;
}

.ln2-sim-canvas {
  position: relative;
  /* width: 1678px;
  height: 810px; */
  transform-origin: top left;
}

@media (min-width: 1124px) {
  .ln2-sim {
    aspect-ratio: 1678 / 840; /* Increased buffer for 1273px viewports */
  }

  .ln2-sim-canvas {
    position: absolute;
    top: 0;
    left: 0;
    /* transform: scale(calc(100cqi / 1678px)); */
  }
}


/* Hero: scaled canvas matching Figma node 1:1158 (1678×812) */
.ln2-hero {
  height: auto;
  container-type: inline-size;
  overflow: hidden;
}

.ln2-hero-canvas {
  position: relative;
  width: 1678px;
  height: 812px;
  transform-origin: top left;
}

@media (min-width: 1124px) {
  .ln2-hero {
    aspect-ratio: 1678 / 830; /* Increased buffer */
  }

  .ln2-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(calc(100cqi / 1678px));
  }
}

/* ── CTA section (Figma 148:251) — background: cta-figma/cta-background.svg ── */
.ln2-cta-band {
  background-color: var(--ln2-surface-pale);
  overflow: clip;
}

/* Figma artboard 1678×432 — map SVG 1:1 to the section (avoids cover/center crop) */
.ln2-cta-section--figma {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #5f933a;
  background-image: url('/images/landing-new/cta-figma/cta-background.svg');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
  /* aspect-ratio: 1678 / 432; */
  min-height: 42.5rem;
  width: 100%;
  padding: 0;
}

@media (max-width: 1123px) {
  .ln2-cta-section--figma {
    aspect-ratio: unset;
    min-height: 32.5rem;
    /* Tall enough for text + buttons + logo area below */
    height: auto;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}

.ln2-cta-figma-layout {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 610px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 1.25rem) clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 5vw, 3.75rem);
}

@media (min-width: 1124px) {
  .ln2-cta-figma-layout {
    padding: 0 1.25rem 0 3.75rem;
  }
}

.ln2-cta-figma-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
}

@media (min-width: 1124px) {
  .ln2-cta-figma-copy {
    gap: 3rem;
  }
}

.ln2-cta-figma-textblock {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.ln2-cta-figma-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.024em;
  color: #f9f9ef;
}

@media (min-width: 1124px) {
  .ln2-cta-figma-title {
    font-size: 3rem;
    letter-spacing: -1.152px;
  }
}

.ln2-cta-figma-lede {
  margin: 0;
  max-width: 32.875rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.ln2-cta-btn-group--figma {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid #3c782b;
  padding: 4px;
}

.ln2-cta-btn--dark,
.ln2-cta-btn--light {
  min-height: 3.375rem;
  width: 215px;
  max-width: min(215px, 100%);
  border: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
}

.ln2-cta-btn--dark {
  background-color: #1d3915;
  color: #fff;
}

.ln2-cta-btn--dark:hover {
  background-color: #254f1c;
  color: #fff;
}

.ln2-cta-btn--light {
  background-color: #fff;
  color: #1d3915;
}

.ln2-cta-btn--light:hover {
  background-color: #eff3e4;
  color: #1d3915;
}

/* ── CTA Section: Mobile overrides ── */
@media (max-width: 1123px) {
  .ln2-cta-section--figma {
    aspect-ratio: unset;
    min-height: 42.5rem;
    /* Increased to fit logos below text */
    height: auto;
    /* background-color: #5f933a; */
    background-image: url('/images/landing-new/cta-figma/cta-logos-mobile.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .ln2-cta-figma-layout {
    align-items: center;
    /* center everything on mobile */
    padding: 4rem 1.25rem 280px;
    /* Large bottom padding for logos */
    gap: 1.5rem;
    max-width: 100%;
    z-index: 2;
  }

  .ln2-cta-figma-copy {
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
  }

  .ln2-cta-figma-title {
    font-size: 2rem !important;
    /* Larger to match Figma */
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 600;
  }

  .ln2-cta-figma-lede {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    max-width: 320px;
    margin: 0 auto;
  }

  /* Button group: stack vertically, full-width */
  .ln2-cta-btn-group--figma {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 18px;
    padding: 6px;
    gap: 8px;
    border: 1px solid rgba(60, 120, 43, 0.5);
    margin-top: 0.5rem;
  }

  /* Dark Button (Primary: Start your first interview) — show FIRST on mobile */
  .ln2-cta-btn--dark {
    order: -1;
    width: 100%;
    max-width: 100%;
    min-height: 3.5rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  /* Light Button (Secondary: See how it works) — show SECOND on mobile */
  .ln2-cta-btn--light {
    order: 0;
    width: 100%;
    max-width: 100%;
    min-height: 3.5rem;
    font-size: 1rem;
    border-radius: 12px;
  }
}

/* ── Footer ── */
/* Cream band only above footer (does not change body bg) */
.ln2-footer-pale-spacer {
  width: 100%;
  min-height: clamp(1.25rem, 2.5vw, 2.5rem);
  flex-shrink: 0;
  background-color: var(--ln2-surface-pale);
}

/* Full-bleed dark bar; content constrained in .ln2-footer-inner */
.ln2-footer.ln2-footer--full {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Figma 98:6611: stack gap 48px; beat DaisyUI `.footer > * { display: grid }` */
.ln2-body.ln2-landing footer.ln2-footer>.ln2-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2.5rem;
  padding-bottom: max(3.5rem, calc(2.75rem + env(safe-area-inset-bottom, 0px)));
}

@media (min-width: 640px) {
  .ln2-body.ln2-landing footer.ln2-footer>.ln2-footer-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 3rem;
    padding-bottom: max(5rem, calc(4rem + env(safe-area-inset-bottom, 0px)));
  }
}

/* Artboard inset ~76px / ~80px (node 98:6612) */
@media (min-width: 1280px) {
  .ln2-body.ln2-landing footer.ln2-footer>.ln2-footer-inner {
    padding-left: 76px;
    padding-right: 76px;
    padding-top: 80px;
  }
}

.ln2-footer {
  box-sizing: border-box;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #1d3915;
  color: #eff3e4;
}

.ln2-footer-label {
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  /* -0.308px at 14px — Figma 98:6611 */
  color: rgba(255, 255, 255, 0.5);
}

/* Match Figma 98:6614: fixed artboard 620×168; width:auto so row flex doesn’t stretch the mark */
.ln2-footer-logo {
  display: block;
  width: auto;
  max-width: min(620px, 100%);
  height: auto;
  flex-shrink: 0;
}

/* Figma 98:6614: label→links 20px; link rows gap 40px, 18px type, tracking ~-0.396px */
.ln2-footer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.ln2-footer-link-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  column-gap: 2.5rem;
  row-gap: 0.5rem;
  letter-spacing: -0.022em;
}

.ln2-footer-link-row>a {
  flex: 0 0 auto;
}

.ln2-footer-divider {
  height: 0.0625rem;
  width: 100%;
  background-color: #7c8579;
  border: 0;
  margin: 0;
  flex-shrink: 0;
}

/* Figma 98:6639 — legal + copyright: space-between, 40px between legal links, 18px / tracking */
.ln2-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: #eff3e4;
}

.ln2-footer-bottom__legal {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1 1 auto;
}

/* ── Footer: Responsive Overrides ────────────────────────────── */

/* 1. Desktop Layout (>= 1124px) */
@media (min-width: 1124px) {
  .ln2-footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .ln2-footer-bottom {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}

/* 2. Mobile & Tablet Layout (< 1124px) */
@media (max-width: 1123px) {
  .ln2-footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 48px !important;
    /* Unified mobile/tablet gap */
    padding: 2.5rem 1rem max(3.5rem, calc(2.75rem + env(safe-area-inset-bottom, 0px))) !important;
  }

  /* Precise Order for stacked mobile/tablet view */
  .ln2-footer-logo {
    max-width: 100% !important;
    order: 10 !important;
    margin-top: 20px !important;
    align-self: flex-start !important;
  }

  .ln2-footer-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    order: 5 !important;
    width: 100% !important;
  }

  .ln2-footer-divider {
    order: 6 !important;
  }

  .ln2-footer-bottom__legal {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 3rem !important;
    width: 100% !important;
    order: 7 !important;
  }

  .ln2-footer-bottom__copy {
    order: 8 !important;
    text-align: left !important;
    font-size: 0.875rem !important;
    opacity: 0.8;
  }

  /* Re-target classes since parent divs are display:contents */
  .ln2-footer-top,
  .ln2-footer-bottom {
    display: contents !important;
  }

  .ln2-footer-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    width: 100% !important;
    order: 5 !important;
  }

  .ln2-footer-label {
    margin-bottom: -12px !important;
  }

  .ln2-footer-link-row {
    font-size: 1rem !important;
    column-gap: 2.5rem !important;
    row-gap: 0.75rem !important;
    margin-top: 1.25rem;
  }

  /* Logo refined layout */
  .ln2-footer-logo {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .ln2-footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .ln2-footer-bottom__legal {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 3rem !important;
    width: 100% !important;
  }

  .ln2-footer-bottom__copy {
    order: 8 !important;
    text-align: left !important;
    font-size: 0.875rem !important;
    opacity: 0.8;
  }

  /* Specific Mobile Handling (Center Text) */
  @media (max-width: 767px) {
    .ln2-footer-inner {
      text-align: center !important;
    }

    .ln2-footer-block {
      align-items: flex-start !important;
      text-align: left !important;
    }

    .ln2-footer-link-row {
      justify-content: flex-start !important;
    }

    .ln2-footer-bottom__legal {
      justify-content: center !important;
    }

    .ln2-footer-bottom__copy {
      text-align: center !important;
    }
  }

  /* Specific Tablet Row Layout */
  @media (min-width: 768px) {
    .ln2-footer.ln2-footer--full .ln2-footer-inner {
      flex-direction: row !important;
      flex-wrap: wrap !important;
      justify-content: space-between !important;
      align-items: center !important;
      gap: 32px 48px !important;
    }

    .ln2-footer-logo {
      order: 10 !important;
      width: auto !important;
      max-width: 280px !important;
    }

    .ln2-footer-bottom__legal {
      order: 11 !important;
      width: auto !important;
      margin-left: 0 !important;
      gap: 3rem !important;
    }

    .ln2-footer-bottom__copy {
      order: 12 !important;
      width: 100% !important;
      margin-top: 8px !important;
    }

    /* Keep right side and divider full width to force them into their own rows */
    .ln2-footer-right,
    .ln2-footer-divider {
      width: 100% !important;
    }
  }
}



/* Carousel: scroll-driven sticky vertical carousel */
.ln2-carousel-wrap {
  position: relative;
}

@media (min-width: 1124px) {
  .ln2-carousel-wrap {
    height: 480vh;
    margin-top: 4rem;
    margin-bottom: 5rem;
  }

  /* Sticky track sits below .ln2-nav (min-h 78px, z-50), not under it */
  .ln2-carousel-sticky {
    position: sticky;
    top: calc(4.875rem + 1.5rem);
    z-index: 40;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    box-sizing: border-box;
    height: calc(100vh - 8.6875rem - 1.5rem);
    min-height: 0;
  }

  .ln2-carousel-card {
    height: calc(100vh - 4rem);
    max-height: 51rem;
  }

  /* Explicit grid — long Tailwind arbitrary minmax() tracks can fail to compile and collapse to one full-width column */
  .ln2-carousel-desktop-grid {
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: 0.375rem;
    align-items: stretch;
    width: 100%;
    min-height: 0;
  }

  /* Right column: smaller inset = larger viewport; keep ~14px from rounded card edge */
  .ln2-carousel-image-col {
    box-sizing: border-box;
    display: flex;
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0.875rem 0.75rem 0;
  }
}

/* Carousel image column: use padding on .ln2-carousel-image-col, not margin on .ln2-carousel-viewport — width:100% + margin-right overflows the grid cell. */

/* Viewport: matches carousel SVG artboard (1111×768); slides are <img> children (no extra wrapper) */
.ln2-carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1111 / 768;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 1124px) {
  .ln2-carousel-viewport {
    /* Room to grow with column width; card max-height 816px leaves margin */
    max-height: min(94vh, 51.25rem);
  }
}

.ln2-carousel-viewport>.ln2-carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
  z-index: 0;
  will-change: opacity;
}

.ln2-carousel-viewport>.ln2-carousel-slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.ln2-carousel-dot {
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: top, opacity;
  z-index: 2;
}

.ln2-carousel-label {
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  will-change: top;
}

.ln2-carousel-label .ln2-label-text {
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    font-weight 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ln2-carousel-label[data-active="true"] .ln2-label-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #292827;
}

.ln2-carousel-label[data-active="true"] {
  left: 164px !important;
}

#ln2-stem-top {
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* DaisyUI: landing-specific resets */
.ln2-body.ln2-landing .navbar {
  box-shadow: none;
}

.ln2-body.ln2-landing .card.shadow-none,
.ln2-body.ln2-landing .card[class*="shadow-none"] {
  box-shadow: none;
}

.ln2-body.ln2-landing .footer.footer-horizontal {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}

.ln2-footer-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}

/* Side-by-side only when viewport fits ~620px logo + gap + ~610px column (avoids crushed ~80px column + vertical link stacks) */
@media (min-width: 1360px) {
  .ln2-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.ln2-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.75rem;
  /* 60px — Figma gap between Socials block and Pages block */
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1360px) {
  .ln2-footer-right {
    flex: 0 1 610px;
    max-width: 610px;
    min-width: 0;
    align-self: center;
  }
}

/* =====================================================================
   MOBILE UI — Hero + Accordion Carousel
   ===================================================================== */

/* ── Mobile Hero ─────────────────────────────────────────────────── */
@media (max-width: 1123px) {
  .ln2-mob-hero {
    padding: 2rem 1.25rem 0;
  }

  .ln2-mob-hero-h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.08;
  }

  /* Pipe/banner section: centre-align text on mobile */
  #product .relative h2 {
    text-align: center;
  }
}

/* ── Mobile Accordion ────────────────────────────────────────────── */
@media (max-width: 1123px) {
  .ln2-carousel-card {
    background-color: #5f933a !important;
    /* padding-top: 20px; */
  }

  .ln2-mob-accordion {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }

  .ln2-mob-acc-item {
    background: #eff3e4;
    border-radius: 16px;
    border-bottom: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .ln2-mob-acc-item:last-child {
    border-bottom: none;
  }

  /* Trigger row */
  .ln2-mob-acc-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    height: auto;
  }

  /* Small square icon box */
  .ln2-mob-acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 2.25rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .ln2-mob-acc-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Label text */
  .ln2-mob-acc-label {
    flex: 1;
    font-family: 'Sora', 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #292827;
    line-height: 1.3;
  }

  /* Chevron */
  .ln2-mob-acc-chevron {
    flex-shrink: 0;
    color: #8a9485;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ln2-mob-acc-item--open .ln2-mob-acc-chevron {
    transform: rotate(180deg);
  }

  /* Collapsible body */
  .ln2-mob-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .ln2-mob-acc-body>* {
    overflow: hidden;
  }

  .ln2-mob-acc-item--open .ln2-mob-acc-body {
    grid-template-rows: 1fr;
  }

  /* Inner body wrapper */
  .ln2-mob-acc-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #464c47;
    padding: 0 16px 14px;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .ln2-mob-acc-img {
    border-radius: 14px;
    overflow: hidden;
    background: #1d3915;
    margin: 0 12px 16px;
  }

  .ln2-mob-acc-img img {
    width: 100%;
    display: block;
    border-radius: 14px;
  }
}

/* ── Pricing Section ────────────────────────────────── */
.ln2-pricing-section {
  box-sizing: border-box;
}

.ln2-pricing-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #464c47;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ln2-pricing-toggle-btn.active,
.ln2-pricing-toggle-btn.is-active {
  background: #b4df43;
  color: #1d3915;
  box-shadow: 0 4px 12px rgba(180, 223, 67, 0.2);
}


.sim-height{
    height: 100%;
  }

@media (max-width: 1123px) {
  .ln2-pricing-section h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .ln2-pricing-toggle-wrap {
    max-width: 100% !important;
  }
  .turn-every{
    grid-template-columns:50% 50%
  }
}


/* Base (mobile first) */
.ln2-hero-title {
  font-size: 60px;
}


/* md (≥768px) */
@media (min-width: 768px) {
  /* .ln2-hero-title {
    font-size: 65px;
  } */
   .practice{
    max-width: 70%;
   }
   .ln2-carousel-wrap{
    padding-bottom: 1rem;
   }
}

@media (max-width: 768px) {
    .turn-every{
    grid-template-columns:100%
  }
}

/* lg (≥1024px) */
/* @media (min-width: 1024px) {
  .ln2-hero-title {
    font-size: 70px;
  }
} */

/* xl (≥1280px) */
@media (min-width: 1280px) {
  .ln2-hero-title {
    font-size: 65px;
  }
  .ln2-cta-section--figma{
    background-color: transparent !important;
    min-height:24.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media (max-aspect-ratio: 1/1) {
      background-size: contain;
    }
  }
  .ln2-footer-top{
    flex-direction:row;
    gap:10rem
  }
  .ln2-footer-logo{
    max-height:6rem;
    max-width:30rem
  }
}

@media (min-width: 1500px) {
  .ln2-hero-title {
    font-size: 80px;
  }
  .sim-height{
    height: 100%;
  }
   .ln2-cta-section--figma{
    background-color: transparent !important;
    min-height: 27.5rem;
  }
}


@media (min-width: 1128px) and (max-width:1265px) {
  .ln2-hero-title{
    font-size: 52px;
  }
  .ln2-nav{
    padding-inline: 1.75rem;
  }
  .nav_options{
    gap: 41px;
  }
  .header-home{
    padding: 0px 32px;
  }
  .next-round{
    top:2rem;
    left:-6rem
  }
  .event-py{
left:-3rem
  }
  .train-across{
    font-size: 34px;
  }
    .ln2-cta-section--figma {
    aspect-ratio: unset;
    min-height: 32.5rem;
    /* Tall enough for text + buttons + logo area below */
    height: auto;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center
  }
    .ln2-footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .ln2-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
    .ln2-footer-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
  .turn-every{
    grid-template-columns:25% 50% 25%
  }
}



@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Default (mobile + tablet) */
.home-card-web {
  display: none;
}

.home-card-mobile {
  display: block;
}

.home-bg-img-desktop{
   display: none;
}

.home-bg-img-mobile{
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  text-align: center;    /* center all text */

}
.ln2-carousel-image-col{
  display: none;
}

/* Desktop (1024px and above) */
@media (min-width: 1025px) {
  .home-card-web {
    display: block;
  }

  .home-card-mobile {
    display: none;
  }

  .home-bg-img-desktop {
    display: block;
  }

  .home-bg-img-mobile {
    display: none;
  }

  .ln2-carousel-image-col {
    display: block;
  }
}