﻿ 
.lk-plans-wrap:before{
  content:"";
  position:absolute;
  inset:-120px;
  z-index:0;
  pointer-events:none;


  background:
    radial-gradient(600px 260px at 10% 10%, rgba(243,255,71,.55), transparent 60%),
    radial-gradient(520px 260px at 90% 15%, rgba(58,160,255,.45), transparent 62%),
    radial-gradient(520px 300px at 20% 95%, rgba(118,255,106,.45), transparent 65%),
    radial-gradient(520px 320px at 90% 95%, rgba(255,140,100,.25), transparent 70%);


  filter: blur(18px) saturate(1.25);
  opacity: .85;
  transform: translate3d(0,0,0);
  animation: lkAuroraMove 10s ease-in-out infinite alternate;
}


@keyframes lkAuroraMove{
  0%   { transform: translate3d(-18px,-10px,0) rotate(-1deg); }
  50%  { transform: translate3d(16px,  6px,0) rotate( 1deg); }
  100% { transform: translate3d(-8px, 14px,0) rotate(-.5deg); }
}


.lk-plans-wrap:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:.18;


  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.06) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}


.lk-plans-wrap > *{
  position: relative;
  z-index: 2;
}


.lk-plans-header{ padding: 0 2px; }
.lk-plans-header h2{
  margin: 0 0 .25rem;
  font-size: 1.9rem;
  letter-spacing: .2px;
  color: #0d1720;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.lk-sub{ color: var(--muted); margin: .25rem 0 1rem; }


.lk-banner{
  border: 1px solid rgba(120,255,140,.25);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px 0 14px;
  background: linear-gradient(180deg, rgba(118,255,106,.12), rgba(243,255,71,.10));
  color:#0d1720;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}


.lk-hero-note{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 950;
  color:#0d1720;
  border:1px solid rgba(20,64,40,.18);
  border-radius:16px;
  padding:14px 16px;
  margin:6px 0 18px;


  background:
    linear-gradient(180deg, rgba(243,255,71,.20), rgba(118,255,106,.18)),
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));


  box-shadow: 0 10px 26px rgba(118,255,106,.18), inset 0 1px 0 rgba(255,255,255,.55);
  letter-spacing:.2px;


  transform: translateZ(0);
}
.lk-hero-note .spark{
  display:inline-grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--lemon), var(--lime));
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
  font-size:14px;
  line-height:1;
  transform-origin:center;
  animation: lkSpark 2.2s ease-in-out infinite;
}
@keyframes lkSpark{
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.07) rotate(7deg); }
}
.lk-hero-note .text{ font-size: 1.02rem; }
@media (min-width: 992px){
  .lk-hero-note .text{ font-size: 1.12rem; }
}


.lk-tools{
  display:flex;
  justify-content:flex-end;
  margin: 6px 0 8px;
}
.lk-toggle{
  border:1px solid rgba(0,0,0,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
  color: #0d1720;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.lk-toggle:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}


.lk-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  align-items: stretch;
}


.lk-card{
  position:relative;
  border-radius:18px;
  padding:18px;
  overflow:hidden;


  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.46));
  border: 1px solid rgba(255,255,255,.42);


  box-shadow:
    0 18px 60px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 0 0 1px rgba(0,0,0,.04);


  backdrop-filter: saturate(1.25) blur(14px);
  -webkit-backdrop-filter: saturate(1.25) blur(14px);


  transform: translateY(10px) perspective(900px) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;


  opacity: 0;
  animation: lkCardIn .55s var(--easeOut) forwards;
  will-change: transform, opacity;


  transition:
    transform .18s var(--easeOut),
    box-shadow .22s var(--easeOut),
    border-color .22s var(--easeOut);
}
.lk-card:nth-child(1){ animation-delay: .02s; }
.lk-card:nth-child(2){ animation-delay: .07s; }
.lk-card:nth-child(3){ animation-delay: .12s; }
.lk-card:nth-child(4){ animation-delay: .17s; }


@keyframes lkCardIn{
  to { transform: translateY(0) perspective(900px) rotateX(0deg) rotateY(0deg); opacity: 1; }
}


.lk-card:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:18px;
  background: conic-gradient(from 140deg, var(--lemon), var(--lime), var(--blue), var(--lemon));
  filter: blur(20px);
  opacity: .14;
  z-index: 0;
  pointer-events:none;
  animation: lkConicSpin 7s linear infinite;
}
@keyframes lkConicSpin{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


.lk-card:after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:18px;
  background: radial-gradient(140px 110px at var(--mx, 20%) var(--my, 0%), rgba(255,255,255,.70), transparent 62%);
  opacity: 0;
  transition: opacity .18s var(--easeOut);
  pointer-events:none;
  z-index: 1;
}
.lk-card:hover:after{ opacity: .9; }


.lk-card:hover{
  transform:
    translateY(-6px)
    perspective(900px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  box-shadow:
    0 26px 90px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.38) inset;
}


.lk-card .lk-title,
.lk-card .lk-price,
.lk-features,
.lk-cta{
  position: relative;
  z-index: 2;
}


.lk-card .lk-title{
  margin:0 0 .25rem;
  font-size:1.2rem;
  color:#0d1720;
}
.lk-card .lk-price{
  color:#35546d;
  margin-bottom:.6rem;
}


.lk-card.silver .lk-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.lk-card.silver .lk-title:after{
  content:"Best value";
  font-size:.72rem;
  font-weight:900;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: linear-gradient(180deg, rgba(200,223,255,.55), rgba(255,255,255,.45));
  color:#0d1720;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}


.lk-features{
  list-style:none;
  padding:0;
  margin:.6rem 0 1rem;
}
.lk-features li{
  position:relative;
  color:#1d2f3c;
  font-size:.96rem;
  line-height:1.35;


  border-radius:10px;
  padding: 8px 10px 8px 28px;
  margin: .45rem 0;


  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
}
.lk-features li:before{
  content:"";
  position:absolute;
  left:10px;
  top:.55rem;
  width:12px;
  height:12px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--lemon), var(--lime));
  box-shadow: 0 0 0 2px rgba(0,0,0,.08);
}


.lk-cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
}
.lk-cta form{
  margin:0;
}
.lk-cta button.btn{
  font:inherit;
  cursor:pointer;
}
.btn{
  display:inline-block;
  font-weight:700;
  text-decoration:none;
  border-radius:12px;
  padding:10px 14px;
  border:1px solid transparent;
  transition: transform .08s var(--easeOut), opacity .2s ease, box-shadow .18s var(--easeOut);
  user-select:none;
}
.btn:focus-visible{
  outline:none;
  box-shadow: var(--ring);
}
.btn:active{ transform: translateY(0); }


.btn.solid{
  position:relative;
  overflow:hidden;
  background: linear-gradient(90deg, var(--lemon), var(--lime));
  color:#0b1220;
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 10px 26px rgba(118,255,106,.28);
}
.btn.solid:before{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at var(--bx, 30%) var(--by, 30%), rgba(255,255,255,.65), transparent 45%);
  opacity:0;
  transition: opacity .18s var(--easeOut);
  pointer-events:none;
}
.btn.solid:hover{ transform: translateY(-1px); }
.btn.solid:hover:before{ opacity:.75; }


.btn.ghost{
  background: transparent;
  color: #4b6882;
  border-color: rgba(0,0,0,.08);
}
.btn.ghost:hover{
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}


.btn.disabled{
  opacity:.55;
  pointer-events:none;
  cursor:not-allowed;
}


.ribbon{
  position:absolute;
  right:-36px;
  top:14px;
  transform:rotate(35deg);
  background: linear-gradient(90deg, var(--lime), var(--lemon));
  color:#0a2a13;
  font-weight:800;
  font-size:.75rem;
  padding:.3rem 2.2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  z-index: 3;
  pointer-events:none;
}


.lk-card.gold{
  border-color: rgba(243,255,71,.35);
  box-shadow:
    0 30px 110px rgba(118,255,106,.20),
    0 18px 60px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.58);
}
.lk-card.gold .lk-price{ font-weight: 900; }


.lk-card.gold .lk-cta{ position: relative; }
.lk-card.gold .lk-cta:before{
  content:"";
  position:absolute;
  inset:-10px -8px -12px -8px;
  border-radius:16px;
  background:
    radial-gradient(circle at 50% 40%, rgba(243,255,71,.35), transparent 60%),
    radial-gradient(circle at 20% 60%, rgba(118,255,106,.25), transparent 62%);
  filter: blur(10px);
  opacity: .55;
  z-index: -1;
  animation: lkPulse 2.2s ease-in-out infinite;
}
@keyframes lkPulse{
  0%,100% { transform: scale(1); opacity:.50; }
  50%     { transform: scale(1.03); opacity:.75; }
}


.lk-card.silver{
  border-color: rgba(58,160,255,.22);
  box-shadow:
    0 26px 90px rgba(58,160,255,.10),
    0 18px 60px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.58);
}


.lk-plans-wrap.is-compare .lk-features li{
  margin: .22rem 0;
  font-size: .92rem;
  padding-top: 6px;
  padding-bottom: 6px;
  background: transparent;
}
.lk-plans-wrap.is-compare .lk-features{
  margin-bottom: .75rem;
}


.lk-notes{
  margin-top:18px;
  color:#4b6882;
  font-size:.95rem;
}


@media (max-width: 768px){
  .lk-plans-wrap{
    border-radius: 12px;
    padding-top: 12px;
    backdrop-filter: saturate(1.05) blur(4px);
    -webkit-backdrop-filter: saturate(1.05) blur(4px);
  }


  .lk-hero-note{
    margin: 8px 0 14px;
    padding: 12px;
  }
  .lk-hero-note .spark{ width: 22px; height: 22px; font-size: 12px; }
  .lk-hero-note .text{ font-size: 1rem; }


  .lk-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }


  .lk-card{
    padding: 14px;
    border-radius: 14px;
    contain: paint;
  }


  .ribbon{ display:none !important; }


  .lk-card .lk-title{ font-size: 1.06rem; }
  .lk-features li{ font-size: .95rem; }
  .lk-cta .btn{
    width: 100%;
    text-align:center;
    padding: 12px 14px;
  }
}


@media (max-width: 400px){
  .lk-plans-wrap{ border-radius: 8px; }
  .lk-hero-note{ padding: 10px; }
  .lk-card{ padding: 12px; }
}


.lk-plans-wrap{
  width: min(100%, calc(100vw - 32px));
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 24px;
  box-sizing: border-box;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,252,247,.84)),
    radial-gradient(620px 320px at 12% 0%, rgba(255,216,77,.22), transparent 65%),
    radial-gradient(520px 280px at 96% 18%, rgba(34,197,94,.18), transparent 64%);
}


.lk-plans-header{
  padding: 0;
}


.lk-subscribe-hero{
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
  margin-bottom: 16px;
}


.lk-subscribe-copy,
.lk-plan-spotlight{
  border: 1px solid rgba(12, 55, 35, .12);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 60px rgba(15, 42, 30, .08);
}


.lk-subscribe-copy{
  padding: clamp(22px, 4vw, 38px);
}


.lk-eyebrow{
  margin: 0 0 10px;
  color: #047857;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}


.lk-plans-header h2{
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: 0;
}


.lk-sub{
  max-width: 760px;
  margin: 16px 0 0;
  color: #506377;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5;
}


.lk-plan-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}


.lk-plan-chips span{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(12, 55, 35, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #123829;
  font-weight: 850;
}


.lk-plan-spotlight{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(8, 64, 44, .96), rgba(12, 89, 64, .88)),
    radial-gradient(240px 180px at 100% 0%, rgba(255,211,67,.5), transparent 70%);
  color: #fff;
}


.lk-plan-spotlight span{
  color: #f9d657;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.lk-plan-spotlight strong{
  display: block;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
}


.lk-plan-spotlight p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}


.lk-tools{
  justify-content: flex-start;
  margin: 0 0 14px;
}


.lk-toggle{
  min-height: 42px;
  border-radius: 999px;
  background: #fff;
}


.lk-banner,
.lk-hero-note{
  margin-bottom: 16px;
}


.lk-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}


.lk-card{
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,252,249,.84));
  border: 1px solid rgba(12, 55, 35, .12);
  box-shadow: 0 18px 45px rgba(15, 42, 30, .08);
}


.lk-card:before{
  opacity: .08;
}


.lk-card .lk-title{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 1.35rem;
  line-height: 1.15;
}


.lk-card.silver .lk-title:after{
  content: none;
  display: none;
}


.lk-plan-badge{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff4bf;
  color: #7a4d00;
  font-size: .72rem;
  font-weight: 950;
}


.lk-card .lk-price{
  color: #123829;
  font-size: 1.05rem;
  font-weight: 950;
}


.lk-plan-blurb{
  position: relative;
  z-index: 2;
  min-height: 64px;
  margin: 8px 0 14px;
  color: #5b6f82;
  line-height: 1.45;
}


.lk-plan-metric{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px;
  border: 1px solid rgba(14, 88, 58, .14);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(238,255,245,.95), rgba(255,248,217,.82));
}


.lk-plan-metric span{
  color: #315244;
  font-size: .9rem;
  font-weight: 900;
}


.lk-plan-metric strong{
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #083f2d;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px rgba(8,63,45,.18);
}


.lk-features{
  margin-top: 4px;
}


.lk-features li{
  color: #293b4d;
  background: transparent;
  border-bottom: 1px solid rgba(12,55,35,.08);
  border-radius: 0;
  padding-block: 9px;
}


.lk-features li:last-child{
  border-bottom: 0;
}


.lk-cta{
  margin-top: auto;
  padding-top: 10px;
}


.lk-plans-wrap .btn{
  border-radius: 999px;
  font-weight: 950;
}


.lk-plans-wrap .btn.solid{
  background: #083f2d;
  border-color: #083f2d;
  color: #fff;
  box-shadow: 0 14px 28px rgba(8,63,45,.18);
}


.lk-plans-wrap .btn.ghost{
  background: #fff;
  color: #111827;
  border-color: rgba(12,55,35,.14);
}


.lk-card.gold .lk-plan-metric strong{
  background: linear-gradient(135deg, #0b3f2e, #137a53);
  color: #fff;
}


.lk-notes{
  margin-top: 18px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(12,55,35,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.66);
}


.lk-notes ul{
  columns: 2;
  column-gap: 34px;
  padding-left: 20px;
}


.lk-notes li{
  break-inside: avoid;
  margin-bottom: 8px;
}


@media (max-width: 1100px){
  .lk-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 820px){
  .lk-plans-wrap{
    width: min(100%, calc(100vw - 20px));
    padding: 14px;
    border-radius: 18px;
  }


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


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


  .lk-plan-blurb{
    min-height: 0;
  }


  .lk-notes ul{
    columns: 1;
  }
}


.lk-plans-wrap{
  max-width: 1240px;
  padding: clamp(18px, 2.6vw, 30px);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,249,.92));
  box-shadow: 0 22px 70px rgba(20, 48, 36, .08);
}


.lk-plans-wrap:before,
.lk-plans-wrap:after{
  display: none;
}


.lk-subscribe-hero{
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}


.lk-subscribe-copy{
  padding: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,252,249,.96));
  box-shadow: none;
}


.lk-plans-header h2{
  max-width: 860px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.02;
}


.lk-sub{
  max-width: 820px;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}


.lk-plan-chips{
  margin-top: 18px;
}


.lk-plan-chips span{
  min-height: 34px;
  padding: 7px 12px;
  color: #244638;
  background: #fff;
}


.lk-plan-spotlight{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px 22px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8,63,45,.96), rgba(16,101,72,.94));
  box-shadow: 0 16px 38px rgba(8,63,45,.12);
}


.lk-plan-spotlight > span{
  white-space: nowrap;
  color: #f8d84f;
}


.lk-plan-spotlight p{
  grid-column: 2;
  max-width: none;
  justify-self: start;
  font-size: .95rem;
}


.lk-limit-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}


.lk-limit-row span{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  min-width: 136px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-weight: 900;
}


.lk-limit-row strong{
  color: #f8d84f;
  font-size: 1.25rem;
}


.lk-tools{
  justify-content: flex-end;
}


.lk-hero-note{
  display: none;
}


.lk-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}


.lk-card{
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15,42,30,.07);
}


.lk-card:hover{
  transform: translateY(-3px);
}


.lk-card:before,
.lk-card:after{
  display: none;
}


.lk-card .lk-title{
  font-size: 1.25rem;
}


.lk-plan-blurb{
  min-height: 76px;
  margin-bottom: 12px;
  font-size: .98rem;
}


.lk-plan-metric{
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4fbf6;
}


.lk-features li{
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
  color: #344557;
  line-height: 1.35;
}


.lk-features li:before{
  position: static;
  align-self: .25em;
  width: 9px;
  height: 9px;
  margin-top: 3px;
  background: #0f7a52;
  box-shadow: none;
}


.lk-notes{
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,42,30,.06);
}


@media (max-width: 1180px){
  .lk-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 900px){
  .lk-plan-spotlight{
    grid-template-columns: 1fr;
  }


  .lk-plan-spotlight > span,
  .lk-plan-spotlight p{
    grid-column: auto;
    justify-self: start;
  }


  .lk-limit-row{
    width: 100%;
  }
}


@media (max-width: 620px){
  .lk-plans-wrap{
    width: min(100%, calc(100vw - 20px));
    padding: 12px;
  }


  .lk-subscribe-copy{
    padding: 18px;
  }


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


  .lk-limit-row{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .lk-limit-row span{
    min-width: 0;
    padding-inline: 10px;
  }


  .lk-tools{
    justify-content: stretch;
  }


  .lk-toggle{
    width: 100%;
  }
}


@media (min-width: 921px){
  .header .only-mobile,
  .header #mobileToggle{
    display: none !important;
    visibility: hidden !important;
  }
}
@media (max-width: 920px){
  .header .only-mobile,
  .header #mobileToggle{
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
  }
}


@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}


.lk-plans-wrap,
.lk-plans-wrap *{
  box-sizing:border-box;
}


.text-bubble.lk-plans-wrap{
  width:min(100%, calc(100vw - 32px));
  max-width:1280px;
  min-width:0;
  margin:0 auto;
  padding:clamp(16px, 2vw, 26px);
  overflow:hidden;
  border:1px solid rgba(15, 42, 30, .12);
  border-radius:14px;
  background:#f7faf8;
  color:#102019;
  box-shadow:0 18px 50px rgba(15, 42, 30, .08);
}


.lk-plans-wrap:before,
.lk-plans-wrap:after,
.lk-card:before,
.lk-card:after,
.lk-card.gold .lk-cta:before{
  display:none !important;
}


.lk-subscribe-hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 430px);
  gap:16px;
  align-items:stretch;
  margin:0 0 14px;
}


.lk-subscribe-copy{
  min-width:0;
  padding:4px 0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}


.lk-eyebrow{
  margin:0 0 8px;
  color:#0b7a55;
  font-size:.76rem;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}


.lk-plans-header h2{
  max-width:760px;
  margin:0;
  color:#102019;
  font-size:clamp(2rem, 3.4vw, 3.55rem);
  line-height:1.03;
  letter-spacing:0;
  text-shadow:none;
}


.lk-sub{
  max-width:760px;
  margin:12px 0 0;
  color:#526272;
  font-size:clamp(1rem, 1.2vw, 1.13rem);
  line-height:1.45;
}


.lk-plan-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}


.lk-plan-chips span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:6px 10px;
  border:1px solid rgba(15, 42, 30, .12);
  border-radius:999px;
  background:#fff;
  color:#28483c;
  font-size:.88rem;
  font-weight:850;
}


.lk-plan-spotlight{
  display:flex;
  min-width:0;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  padding:16px;
  border:0;
  border-radius:10px;
  background:#123a34;
  color:#fff;
  box-shadow:none;
}


.lk-plan-spotlight > span{
  color:#ffdf60;
  font-size:.74rem;
  font-weight:950;
  letter-spacing:.1em;
  text-transform:uppercase;
}


.lk-limit-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px;
}


.lk-limit-row span{
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  min-height:40px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  background:rgba(255,255,255,.09);
  color:#eef8f3;
  font-size:.9rem;
  font-weight:850;
}


.lk-limit-row strong{
  color:#ffdf60;
  font-size:1.12rem;
}


.lk-plan-spotlight p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:.92rem;
  line-height:1.4;
}


.lk-tools{
  justify-content:flex-end;
  margin:0 0 12px;
}


.lk-toggle{
  min-height:38px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:#102019;
}


.lk-hero-note{
  display:none;
}


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


.lk-card{
  display:flex;
  min-width:0;
  min-height:100%;
  flex-direction:column;
  padding:16px;
  border:1px solid rgba(15, 42, 30, .12);
  border-radius:10px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15, 42, 30, .07);
  opacity:1;
  transform:none;
  animation:none;
  transition:border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}


.lk-card:hover{
  transform:translateY(-2px);
  border-color:rgba(15, 122, 82, .3);
  box-shadow:0 16px 34px rgba(15, 42, 30, .1);
}


.lk-card .lk-title{
  display:flex;
  min-height:30px;
  align-items:center;
  gap:8px;
  margin:0;
  color:#102019;
  font-size:1.2rem;
  line-height:1.2;
}


.lk-card .lk-price{
  margin:4px 0 0;
  color:#0f5138;
  font-size:1.02rem;
  font-weight:950;
}


.lk-plan-badge{
  min-height:23px;
  padding:3px 8px;
  border-radius:999px;
  background:#fff1b8;
  color:#6f4b00;
  font-size:.68rem;
  font-weight:950;
}


.lk-plan-blurb{
  min-height:56px;
  margin:10px 0 12px;
  color:#4f5f6d;
  font-size:.92rem;
  line-height:1.4;
}


.lk-plan-metrics{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px;
  margin:0 0 10px;
}


.lk-plan-metric{
  display:grid;
  min-width:0;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:8px;
  align-items:center;
  margin:0;
  padding:9px;
  border:1px solid rgba(15, 42, 30, .1);
  border-radius:8px;
  background:#f3f8f5;
}


.lk-plan-metric span{
  min-width:0;
  color:#355347;
  font-size:.78rem;
  font-weight:900;
  line-height:1.2;
}


.lk-plan-metric strong{
  display:inline-grid;
  place-items:center;
  min-width:32px;
  height:32px;
  border-radius:7px;
  background:#123a34;
  color:#fff;
  font-size:1rem;
}


.lk-features{
  display:grid;
  gap:0;
  margin:0 0 12px;
  padding:0;
  list-style:none;
}


.lk-features li{
  display:grid;
  grid-template-columns:12px minmax(0, 1fr);
  gap:8px;
  margin:0;
  padding:6px 0;
  border-bottom:1px solid rgba(15, 42, 30, .08);
  border-radius:0;
  background:transparent;
  color:#334155;
  font-size:.88rem;
  line-height:1.28;
}


.lk-features li:last-child{
  border-bottom:0;
}


.lk-features li:before{
  position:static;
  width:7px;
  height:7px;
  margin-top:.42em;
  border-radius:999px;
  background:#0f7a52;
  box-shadow:none;
}


.lk-cta{
  margin-top:auto;
  padding-top:8px;
}


.lk-plans-wrap .btn{
  border-radius:999px;
  padding:9px 12px;
  font-size:.9rem;
  font-weight:950;
}


.lk-plans-wrap .btn.solid{
  background:#123a34;
  border-color:#123a34;
  color:#fff;
  box-shadow:none;
}


.lk-plans-wrap .btn.ghost{
  background:#fff;
  border-color:rgba(15, 42, 30, .14);
  color:#102019;
}


.ribbon{
  top:12px;
  right:-42px;
  background:#ffdf60;
  color:#102019;
  box-shadow:none;
}


.lk-banner{
  margin:0 0 12px;
  padding:10px 12px;
  border:1px solid rgba(15, 122, 82, .2);
  border-radius:10px;
  background:#eefaf3;
}


.lk-notes{
  margin-top:12px;
  padding:16px;
  border:1px solid rgba(15, 42, 30, .1);
  border-radius:10px;
  background:#fff;
  box-shadow:none;
}


.lk-notes p{
  margin:0 0 10px;
  color:#102019;
}


.lk-notes ul{
  columns:3;
  column-gap:28px;
  margin:0;
  padding-left:18px;
}


.lk-notes li{
  break-inside:avoid;
  margin:0 0 7px;
  color:#4d5d6b;
  font-size:.9rem;
  line-height:1.35;
}


.lk-notes small{
  color:#627386;
}


.lk-cancel-note{
  margin:12px 0 0;
  text-align:center;
}


@media (max-width:1180px){
  .lk-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}


@media (max-width:900px){
  .text-bubble.lk-plans-wrap{
    width:min(100%, calc(100vw - 20px));
    padding:14px;
  }


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


  .lk-notes ul{
    columns:2;
  }
}


@media (max-width:620px){
  html,
  body,
  .site-wrap,
  .main,
  .main-inner{
    max-width:100%;
    overflow-x:hidden;
  }


  .text-bubble.lk-plans-wrap{
    width:min(100%, calc(100vw - 16px));
    padding:12px;
    border-radius:10px;
  }


  .lk-grid,
  .lk-limit-row,
  .lk-plan-metrics{
    grid-template-columns:1fr;
  }


  .lk-plan-blurb{
    min-height:0;
  }


  .lk-tools{
    justify-content:stretch;
  }


  .lk-toggle,
  .lk-cta .btn{
    width:100%;
    text-align:center;
  }


  .lk-notes ul{
    columns:1;
  }
}


.text-bubble.lk-plans-wrap{
  max-width:1220px;
  padding:clamp(18px, 2.4vw, 28px);
  background:#f8fbfa;
  border-color:#dce7e2;
  border-radius:12px;
  box-shadow:0 18px 44px rgba(21, 37, 31, .07);
  text-align:left;
}


.lk-subscribe-hero{
  grid-template-columns:minmax(0, 1fr);
  margin-bottom:12px;
}


.lk-subscribe-copy{
  max-width:900px;
}


.lk-plans-header h2{
  max-width:760px;
  font-size:clamp(2.05rem, 3vw, 3.2rem);
  line-height:1.06;
}


.lk-sub{
  max-width:760px;
  color:#435464;
}


.lk-plan-chips{
  gap:7px;
}


.lk-plan-chips span{
  min-height:30px;
  padding:5px 10px;
  background:#fff;
  border-color:#dce7e2;
  color:#17362b;
  font-size:.84rem;
}


.lk-currency-guide{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(190px, auto);
  align-items:center;
  gap:12px;
  max-width:760px;
  margin-top:14px;
  padding:12px 14px;
  border:1px solid #dce7e2;
  border-radius:10px;
  background:#fff;
}


.lk-currency-guide label{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:#17362b;
  font-weight:900;
}


.lk-currency-guide select{
  min-height:38px;
  max-width:100%;
  padding:7px 34px 7px 10px;
  border:1px solid #cfded7;
  border-radius:8px;
  background:#f8fbfa;
  color:#172033;
  font:inherit;
  font-weight:800;
}


.lk-currency-note{
  grid-column:1 / -1;
  margin:0;
  color:#52616d;
  font-size:.84rem;
  line-height:1.35;
}


.lk-currency-submit{
  justify-self:end;
}


.lk-plan-spotlight,
.lk-tools,
.lk-hero-note{
  display:none !important;
}


.lk-banner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
  margin:10px 0 14px;
  padding:12px 14px;
  border-color:#cae5d8;
  border-radius:10px;
  background:#f1faf6;
  color:#19332b;
  font-size:.96rem;
  line-height:1.35;
}


.lk-banner .btn.manage{
  white-space:nowrap;
  background:#fff;
  border-color:#d8e5df;
  color:#17362b;
}


.lk-banner-copy{
  min-width:0;
}


.lk-banner-copy p{
  margin:0;
}


.lk-banner-copy p + p{
  margin-top:4px;
  color:#526b60;
}


.lk-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  align-items:stretch;
}


.lk-card{
  position:relative;
  padding:18px;
  border-color:#dce4df;
  border-radius:10px;
  background:#fff;
  box-shadow:0 10px 24px rgba(21, 37, 31, .06);
  text-align:left;
}


.lk-card:hover{
  transform:translateY(-1px);
  border-color:#bdd6ca;
  box-shadow:0 14px 30px rgba(21, 37, 31, .08);
}


.lk-card.current{
  border-color:#b8dcca;
  box-shadow:0 0 0 1px rgba(15, 122, 82, .08), 0 14px 30px rgba(21, 37, 31, .08);
}


.lk-card.gold{
  border-color:#eadf98;
}


.ribbon{
  position:absolute;
  top:14px;
  right:14px;
  transform:none;
  padding:4px 9px;
  border-radius:999px;
  background:#fbf0b8;
  color:#5c4100;
  font-size:.68rem;
  letter-spacing:0;
}


.lk-card .lk-title{
  padding-right:72px;
  color:#13231c;
  font-size:1.22rem;
}


.lk-card .lk-price{
  margin-top:6px;
  color:#0f5138;
  font-size:1.08rem;
}


.lk-local-price{
  margin-top:3px;
  color:#596575;
  font-size:.84rem;
  font-weight:800;
}


.lk-plan-badge{
  background:#f7edbc;
  color:#705000;
}


.lk-plan-blurb{
  min-height:66px;
  margin:12px 0 14px;
  color:#4f5f6d;
  font-size:.94rem;
}


.lk-plan-metrics{
  grid-template-columns:1fr;
  gap:8px;
  margin-bottom:0;
}


.lk-plan-metric{
  min-height:44px;
  padding:8px 10px;
  border-radius:8px;
  background:#f6faf8;
  border-color:#dce7e2;
}


.lk-plan-metric span{
  color:#365349;
  font-size:.82rem;
}


.lk-plan-metric strong{
  min-width:34px;
  height:30px;
  border-radius:7px;
  background:#123f34;
  font-size:.98rem;
}


.lk-features{
  display:none;
}


.lk-plan-benefits{
  display:grid;
  gap:7px;
  margin:12px 0 0;
  padding:0;
  list-style:none;
}


.lk-plan-benefits li{
  display:flex;
  align-items:flex-start;
  gap:7px;
  color:#263d34;
  font-size:.88rem;
  line-height:1.3;
}


.lk-plan-benefits li::before{
  content:"";
  flex:0 0 7px;
  width:7px;
  height:7px;
  margin-top:.45em;
  border-radius:999px;
  background:#9fd060;
  box-shadow:0 0 0 3px rgba(159, 208, 96, .16);
}


.lk-cta{
  margin-top:16px;
  padding-top:0;
}


.lk-card.current .lk-cta,
.lk-card .lk-cta:has(.btn.disabled:only-child){
  display:none;
}


.lk-plans-wrap .btn{
  min-height:38px;
  padding:8px 12px;
  border-radius:8px;
}


.lk-plans-wrap .btn.disabled{
  background:#f5f7f6;
  border-color:#dce4df;
  color:#5f6f68;
}


.lk-plan-warning{
  margin:8px 0 0;
  color:#7a4b00;
  font-size:12px;
  line-height:1.4;
}


.lk-upgrade-panel{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:16px;
  margin-top:16px;
  padding:16px 18px;
  border:1px solid #dce4df;
  border-radius:10px;
  background:#fff;
  box-shadow:0 10px 24px rgba(21, 37, 31, .05);
}


.lk-upgrade-panel h3{
  margin:0 0 6px;
  color:#13231c;
  font-size:1.08rem;
}


.lk-upgrade-panel p{
  margin:0;
  color:#52616d;
  font-size:.92rem;
  line-height:1.45;
}


.lk-upgrade-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-content:flex-start;
  margin:0;
  padding:0;
  list-style:none;
}


.lk-upgrade-list li{
  padding:7px 10px;
  border:1px solid #dce7e2;
  border-radius:999px;
  background:#f6faf8;
  color:#234137;
  font-size:.84rem;
  font-weight:850;
}


.lk-compare-panel{
  margin-top:16px;
  border:1px solid #dce4df;
  border-radius:10px;
  background:#fff;
  box-shadow:0 10px 24px rgba(21, 37, 31, .05);
  overflow:hidden;
}


.lk-compare-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px 12px;
  border-bottom:1px solid #e7eee9;
}


.lk-compare-heading h3{
  margin:0;
  color:#13231c;
  font-size:1.08rem;
  line-height:1.2;
}


.lk-compare-heading p{
  max-width:520px;
  margin:0;
  color:#536271;
  font-size:.9rem;
  line-height:1.35;
}


.lk-compare-scroll{
  width:100%;
  max-width:100%;
  overflow-x:auto;
}


.lk-compare-table{
  width:100%;
  min-width:820px;
  border-collapse:separate;
  border-spacing:0;
  color:#253447;
  font-size:.92rem;
}


.lk-compare-table th,
.lk-compare-table td{
  padding:11px 14px;
  border-bottom:1px solid #edf2ef;
  text-align:left;
  vertical-align:middle;
}


.lk-compare-table thead th{
  position:sticky;
  top:0;
  z-index:1;
  background:#f6faf8;
  color:#17362b;
  font-size:.82rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}


.lk-compare-table tbody th{
  width:240px;
  color:#17362b;
  font-weight:900;
}


.lk-compare-table tbody tr:last-child th,
.lk-compare-table tbody tr:last-child td{
  border-bottom:0;
}


.lk-compare-table tbody tr:nth-child(even) th,
.lk-compare-table tbody tr:nth-child(even) td{
  background:#fbfdfc;
}


.lk-compare-table td:nth-child(4){
  background:rgba(239, 248, 244, .7);
}


.lk-compare-table td:nth-child(5){
  color:#0f5138;
  font-weight:800;
}


.lk-notes{
  padding:14px 16px;
  border-color:#dce4df;
  background:#fff;
}


.lk-notes ul{
  columns:2;
  column-gap:34px;
}


.lk-notes li{
  font-size:.88rem;
}


@media (max-width:1180px){
  .lk-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}


@media (max-width:760px){
  .text-bubble.lk-plans-wrap{
    width:min(100%, calc(100vw - 18px));
    padding:14px;
  }


  .lk-banner{
    grid-template-columns:1fr;
  }


  .lk-banner .btn.manage{
    width:100%;
    text-align:center;
    white-space:normal;
  }


  .lk-currency-guide{
    grid-template-columns:1fr;
  }


  .lk-currency-guide label{
    display:grid;
  }


  .lk-currency-submit{
    justify-self:stretch;
  }


  .lk-currency-guide select{
    width:100%;
  }


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


  .lk-card .lk-title{
    padding-right:0;
  }


  .ribbon{
    position:static;
    display:inline-flex;
    width:max-content;
    margin-bottom:8px;
  }


  .lk-plan-blurb{
    min-height:0;
  }


  .lk-compare-heading{
    display:block;
  }


  .lk-compare-heading p{
    margin-top:6px;
  }


  .lk-upgrade-panel{
    grid-template-columns:1fr;
  }


  .lk-notes ul{
    columns:1;
  }
}


.lk-plans-wrap,
.lk-plans-wrap *{
  box-sizing:border-box;
}


html,
body,
.site-wrap,
.main,
.main-inner{
  max-width:100%;
}


.text-bubble.lk-plans-wrap{
  width:min(100%, calc(100vw - 28px));
  max-width:1320px;
  margin-inline:auto;
  padding:clamp(16px, 2.6vw, 34px);
  overflow:hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,252,249,.96)),
    linear-gradient(90deg, rgba(159,208,96,.10), rgba(255,211,76,.08));
  border:1px solid rgba(198, 219, 209, .92);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(21, 37, 31, .09);
  color:#15251d;
  text-align:left;
}


.lk-plans-header{
  display:grid;
  gap:16px;
  margin-bottom:18px;
}


.lk-subscribe-hero{
  display:block;
  padding:clamp(18px, 3vw, 32px);
  border:1px solid rgba(204, 225, 214, .94);
  border-radius:16px;
  background:linear-gradient(135deg, #ffffff, #f5fbf8);
  box-shadow:0 18px 40px rgba(21, 37, 31, .055);
}


.lk-subscribe-copy{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(292px, 380px);
  gap:18px 28px;
  align-items:stretch;
  max-width:none;
}


.lk-eyebrow,
.lk-plans-header h2,
.lk-sub,
.lk-plan-chips{
  grid-column:1;
}


.lk-eyebrow{
  margin:0;
  color:#087c58;
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}


.lk-plans-header h2{
  max-width:780px;
  margin:0;
  color:#0d2219;
  font-size:clamp(2.18rem, 4vw, 4.25rem);
  line-height:1.02;
}


.lk-sub{
  max-width:740px;
  margin:0;
  color:#516273;
  font-size:clamp(1rem, 1.2vw, 1.13rem);
  line-height:1.55;
}


.lk-plan-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:2px;
}


.lk-plan-chips span{
  min-height:34px;
  padding:7px 12px;
  border:1px solid #d9e9e0;
  border-radius:999px;
  background:#fff;
  color:#214638;
  font-size:.84rem;
  font-weight:850;
  line-height:1.2;
  box-shadow:0 8px 18px rgba(21, 37, 31, .04);
}


.lk-currency-guide{
  grid-column:2;
  grid-row:1 / span 4;
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  max-width:none;
  min-width:0;
  margin:0;
  padding:18px;
  border:1px solid rgba(202, 226, 213, .95);
  border-radius:14px;
  background:linear-gradient(180deg, #ffffff, #f7fbf9);
  box-shadow:0 16px 34px rgba(21, 37, 31, .065);
}


.lk-currency-guide label{
  display:grid;
  gap:8px;
  color:#102d23;
  font-size:.94rem;
  font-weight:950;
}


.lk-currency-guide select{
  width:100%;
  min-height:46px;
  max-width:100%;
  border-color:#cadbd2;
  border-radius:10px;
  background:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(21,37,31,.04);
}


.lk-currency-submit{
  justify-self:auto;
  width:100%;
}


.lk-currency-note{
  grid-column:auto;
  margin:0;
  color:#647384;
  font-size:.86rem;
  line-height:1.45;
}


.lk-plan-spotlight,
.lk-tools,
.lk-hero-note{
  display:none !important;
}


.lk-banner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
  margin:0;
  padding:14px 16px;
  border:1px solid #cde8dc;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(241,250,246,.98), rgba(255,251,231,.80));
  color:#17362b;
}


.lk-banner-copy{
  min-width:0;
}


.lk-banner-copy p{
  margin:0;
}


.lk-banner-copy p + p{
  margin-top:5px;
}


.lk-banner .btn.manage{
  white-space:nowrap;
}


.lk-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap:16px;
  align-items:stretch;
  margin-top:0;
}


.lk-card{
  --tier-a:#0d6245;
  --tier-b:#9fd060;
  --tier-paper:#f7fbf9;
  --rx:0deg;
  --ry:0deg;
  --mx:50%;
  --my:0%;
  position:relative;
  isolation:isolate;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:100%;
  padding:20px;
  border:1px solid #dce8e2;
  border-radius:14px;
  background:linear-gradient(180deg, #ffffff, #fbfdfc);
  box-shadow:0 14px 34px rgba(21,37,31,.07);
  overflow:hidden;
  transform:perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}


.lk-card.bronze{
  --tier-a:#9a6415;
  --tier-b:#efb75a;
  --tier-paper:#fff8ec;
}


.lk-card.silver{
  --tier-a:#58707e;
  --tier-b:#9ed5ef;
  --tier-paper:#f3faff;
  border-color:#cbe4f4;
}


.lk-card.gold{
  --tier-a:#b77a00;
  --tier-b:#ffd34c;
  --tier-paper:#fff9dc;
  border-color:#eadf98;
}


.lk-card > *{
  position:relative;
  z-index:1;
}


.lk-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.70), transparent 24%),
    linear-gradient(180deg, var(--tier-paper), rgba(255,255,255,0) 150px);
  opacity:.9;
  pointer-events:none;
}


.lk-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  background:linear-gradient(90deg, var(--tier-a), var(--tier-b));
  pointer-events:none;
}


@media (hover:hover) and (pointer:fine){
  .lk-card:hover{
    border-color:#bddcca;
    box-shadow:0 22px 44px rgba(21,37,31,.11);
    transform:perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-3px);
  }
}


.lk-card.current{
  box-shadow:0 0 0 1px rgba(15, 122, 82, .09), 0 18px 42px rgba(21,37,31,.09);
}


.lk-card > .ribbon{
  position:absolute;
  top:16px;
  right:16px;
  left:auto;
  z-index:3;
}


.ribbon,
.lk-plan-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:calc(100% - 32px);
  min-height:28px;
  padding:6px 10px;
  border:1px solid rgba(211, 177, 50, .32);
  border-radius:999px;
  background:#fff3bd;
  color:#705000;
  font-size:.72rem;
  font-weight:950;
  line-height:1;
  white-space:nowrap;
  transform:none;
  box-shadow:0 6px 14px rgba(112,80,0,.08);
}


.lk-card .lk-title{
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  width:fit-content;
  max-width:calc(100% - 44px);
  min-height:54px;
  margin:0 0 14px;
  padding:12px 28px 12px 16px;
  border-radius:2px;
  background:linear-gradient(135deg, var(--tier-a), var(--tier-b));
  clip-path:polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%);
  color:#fff;
  font-size:1.26rem;
  font-weight:950;
  line-height:1;
  text-transform:none;
  box-shadow:10px 10px 0 rgba(16, 32, 25, .08);
}


.lk-card.current .lk-title{
  max-width:calc(100% - 96px);
}


.lk-card .lk-title .lk-plan-badge{
  position:static;
  flex:0 1 auto;
  max-width:calc(100% - 16px);
  min-height:22px;
  padding:4px 8px;
  color:#705000;
  background:#fff3bd;
  clip-path:none;
  font-size:.68rem;
  line-height:1.15;
  text-align:center;
  white-space:normal;
  overflow-wrap:break-word;
  box-shadow:none;
}


.lk-card .lk-price{
  margin-top:8px;
  color:#0d6245;
  font-size:1.18rem;
  font-weight:950;
}


.lk-local-price{
  margin-top:4px;
  color:#778394;
  font-size:.86rem;
  font-weight:850;
}


.lk-plan-blurb{
  min-height:84px;
  margin:14px 0 16px;
  color:#5c6d7d;
  font-size:.94rem;
  line-height:1.48;
}


.lk-plan-metrics{
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
  margin-bottom:0;
}


.lk-plan-metric{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:50px;
  min-width:0;
  padding:10px 12px;
  border:1px solid #dcebe3;
  border-radius:10px;
  background:#f8fcfa;
}


.lk-plan-metric span{
  min-width:0;
  color:#365349;
  font-size:.88rem;
  font-weight:900;
  line-height:1.2;
}


.lk-plan-metric strong{
  flex:0 0 auto;
  min-width:38px;
  height:34px;
  border-radius:9px;
  background:linear-gradient(135deg, #0d6245, #123f34);
  box-shadow:0 10px 18px rgba(13, 98, 69, .18);
  color:#fff;
}


.lk-plan-benefits{
  display:grid;
  gap:10px;
  margin:18px 0 0;
  padding:18px 0 0;
  border-top:1px solid #edf3ef;
  list-style:none;
}


.lk-plan-benefits li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#30483f;
  font-size:.92rem;
  line-height:1.35;
}


.lk-plan-benefits li::before{
  content:"";
  flex:0 0 8px;
  width:8px;
  height:8px;
  margin-top:.42em;
  border-radius:999px;
  background:#9fd060;
  box-shadow:0 0 0 4px rgba(159,208,96,.18);
}


.lk-cta{
  display:grid;
  gap:8px;
  margin-top:auto;
  padding-top:18px;
}


.lk-card.current .lk-cta,
.lk-card .lk-cta:has(.btn.disabled:only-child){
  display:none;
}


.lk-plans-wrap .btn{
  width:max-content;
  max-width:100%;
  min-height:40px;
  padding:9px 13px;
  border-radius:8px;
}


.lk-plans-wrap .btn.solid{
  background:#113f34;
}


.lk-plans-wrap .btn.disabled{
  background:#f5f7f6;
  border-color:#dce4df;
  color:#5f6f68;
}


.lk-plan-warning{
  margin:4px 0 0;
  color:#7a4b00;
  font-size:12px;
  line-height:1.4;
}


.lk-payment-choice{
  display:grid;
  gap:10px;
  width:100%;
  max-width:100%;
  min-width:0;
  padding:12px;
  border:1px solid #dce8e2;
  border-radius:8px;
  background:#fbfdfc;
  box-sizing:border-box;
  overflow:hidden;
}


.lk-payment-choice *,
.lk-payment-choice *::before,
.lk-payment-choice *::after{
  box-sizing:border-box;
}


.lk-payment-choice-head{
  display:grid;
  gap:2px;
  min-width:0;
}


.lk-payment-choice-title{
  color:#10241e;
  font-size:13px;
  font-weight:800;
  line-height:1.25;
}


.lk-payment-choice-note{
  color:#61746d;
  font-size:12px;
  line-height:1.35;
}


.lk-payment-option-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 155px), 1fr));
  gap:8px;
  min-width:0;
}


.lk-pay-option{
  width:100%;
  max-width:100%;
  min-width:0;
  margin:0;
}


.lk-pay-button,
.lk-pay-option.is-disabled{
  display:grid;
  grid-template-columns:64px minmax(0, 1fr) 16px;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:72px;
  padding:9px;
  border:1px solid #d9e4de;
  border-radius:8px;
  background:#fff;
  color:#10241e;
  text-align:left;
  overflow:hidden;
  box-sizing:border-box;
}


.lk-pay-button{
  font:inherit;
  cursor:pointer;
  transition:border-color .16s ease, box-shadow .16s ease, transform .08s ease, background .16s ease;
}


.lk-pay-button:hover{
  border-color:#9fd060;
  background:#fdfffb;
  box-shadow:0 10px 28px rgba(17,63,52,.10);
}


.lk-pay-button:focus-visible{
  outline:none;
  box-shadow:var(--ring);
}


.lk-pay-button:active{
  transform:translateY(1px);
}


.lk-pay-option.is-disabled{
  opacity:.58;
  background:#f6f8f7;
}


.lk-pay-media{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:42px;
  border-radius:8px;
  overflow:hidden;
  background:#eef5f1;
}


.lk-pay-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}


.lk-pay-copy{
  display:grid;
  gap:2px;
  min-width:0;
  max-width:100%;
}


.lk-pay-title{
  color:#0f211c;
  font-size:13px;
  font-weight:850;
  line-height:1.18;
  overflow-wrap:anywhere;
}


.lk-pay-subtitle{
  color:#64756e;
  font-size:11px;
  line-height:1.25;
  overflow-wrap:anywhere;
}


.lk-pay-arrow{
  color:#94a69e;
  font-weight:900;
  text-align:right;
}


@media (max-width: 430px){
  .lk-payment-choice{
    padding:10px;
  }


  .lk-payment-option-grid{
    grid-template-columns:minmax(0, 1fr);
  }


  .lk-pay-button,
  .lk-pay-option.is-disabled{
    grid-template-columns:54px minmax(0, 1fr) 12px;
    gap:8px;
    min-height:66px;
    padding:8px;
  }


  .lk-pay-media{
    width:54px;
    height:36px;
  }


  .lk-pay-title{
    font-size:12px;
  }
}


.lk-upgrade-panel,
.lk-compare-panel,
.lk-notes{
  border:1px solid #dce8e2;
  border-radius:14px;
  background:#fff;
  box-shadow:0 16px 38px rgba(21,37,31,.055);
}


.lk-upgrade-panel{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:16px;
  margin-top:16px;
  padding:20px;
  background:linear-gradient(135deg, #ffffff, #f8fcfa);
}


.lk-upgrade-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-content:flex-start;
  margin:0;
  padding:0;
  list-style:none;
}


.lk-upgrade-list li{
  padding:7px 10px;
  border:1px solid #d8e9df;
  border-radius:999px;
  background:#fff;
  color:#234137;
  font-size:.84rem;
  font-weight:850;
  box-shadow:0 8px 18px rgba(21,37,31,.04);
}


.lk-compare-panel{
  margin-top:16px;
  overflow:hidden;
}


.lk-compare-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px 14px;
  border-bottom:1px solid #e6eee9;
}


.lk-compare-heading h3{
  margin:0;
  color:#13231c;
  font-size:1.18rem;
  line-height:1.2;
}


.lk-compare-heading p{
  max-width:560px;
  margin:0;
  color:#536271;
  font-size:.92rem;
  line-height:1.4;
}


.lk-compare-scroll{
  width:100%;
  max-width:100%;
  overflow-x:auto;
  overscroll-behavior-x:contain;
}


.lk-compare-table{
  width:100%;
  min-width:900px;
  border-collapse:separate;
  border-spacing:0;
  color:#253447;
  font-size:.94rem;
}


.lk-compare-table th,
.lk-compare-table td{
  min-width:150px;
  padding:13px 16px;
  border-bottom:1px solid #edf2ef;
  text-align:left;
  vertical-align:middle;
}


.lk-compare-table thead th{
  position:sticky;
  top:0;
  z-index:2;
  background:#f5faf8;
  color:#17362b;
  font-size:.82rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}


.lk-compare-table thead th:not(:first-child)::before{
  content:"";
  display:block;
  width:74px;
  height:8px;
  margin:0 0 8px;
  background:linear-gradient(90deg, #0d6245, #9fd060);
  clip-path:polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  opacity:.85;
}


.lk-compare-table thead th:first-child,
.lk-compare-table tbody th{
  position:sticky;
  left:0;
  z-index:3;
  min-width:240px;
  background:#fff;
  color:#17362b;
  font-weight:950;
  box-shadow:1px 0 0 #edf2ef;
}


.lk-compare-table thead th:first-child{
  z-index:4;
  background:#f5faf8;
}


.lk-compare-table tbody tr:nth-child(even) th,
.lk-compare-table tbody tr:nth-child(even) td{
  background:#fbfdfc;
}


.lk-compare-table tbody tr:nth-child(even) th{
  background:#fbfdfc;
}


.lk-compare-table td:nth-child(4){
  background:rgba(239, 248, 244, .72);
}


.lk-compare-table td:last-child{
  color:#0f5138;
  font-weight:850;
}


.lk-compare-table tbody tr:last-child th,
.lk-compare-table tbody tr:last-child td{
  border-bottom:0;
}


.lk-compare-mobile{
  display:none;
}


.lk-compare-plan-tabs{
  display:flex;
  gap:8px;
  padding:14px;
  overflow-x:auto;
  border-bottom:1px solid #e6eee9;
}


.lk-compare-plan-tabs button{
  flex:0 0 auto;
  min-height:38px;
  padding:8px 12px;
  border:1px solid #d8e9df;
  border-radius:999px;
  background:#fff;
  color:#214638;
  font:inherit;
  font-size:.88rem;
  font-weight:900;
  cursor:pointer;
}


.lk-compare-plan-tabs button[aria-selected="true"]{
  border-color:#0d6245;
  background:#113f34;
  color:#fff;
}


.lk-compare-mobile-list{
  display:grid;
  gap:8px;
  padding:14px;
}


.lk-compare-mobile-row{
  display:grid;
  gap:6px;
  padding:12px;
  border:1px solid #e3eee8;
  border-radius:10px;
  background:#fff;
}


.lk-compare-mobile-feature{
  color:#17362b;
  font-size:.82rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.03em;
}


.lk-compare-mobile-value{
  color:#253447;
  font-size:.98rem;
  line-height:1.35;
}


.lk-notes{
  margin-top:16px;
  padding:16px;
}


.lk-notes ul{
  columns:2;
  column-gap:34px;
}


@media (max-width:1100px){
  .lk-subscribe-copy{
    grid-template-columns:1fr;
  }


  .lk-eyebrow,
  .lk-plans-header h2,
  .lk-sub,
  .lk-plan-chips,
  .lk-currency-guide{
    grid-column:1;
    grid-row:auto;
  }
}


@media (max-width:760px){
  html,
  body,
  .site-wrap,
  .main,
  .main-inner{
    overflow-x:hidden;
  }


  .text-bubble.lk-plans-wrap{
    width:min(100%, calc(100vw - 14px));
    padding:10px;
    border-radius:14px;
    box-shadow:0 14px 34px rgba(21,37,31,.08);
  }


  .lk-plans-header{
    gap:12px;
    margin-bottom:14px;
  }


  .lk-subscribe-hero{
    padding:16px;
    border-radius:14px;
  }


  .lk-plans-header h2{
    font-size:clamp(2rem, 11vw, 2.75rem);
  }


  .lk-plan-chips{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
  }


  .lk-plan-chips span{
    flex:0 0 auto;
  }


  .lk-currency-guide{
    padding:14px;
  }


  .lk-banner{
    grid-template-columns:1fr;
    padding:13px;
  }


  .lk-banner .btn.manage,
  .lk-plans-wrap .btn{
    width:100%;
    text-align:center;
    white-space:normal;
  }


  .lk-grid{
    grid-template-columns:1fr;
    gap:12px;
  }


  .lk-card{
    padding:18px 16px;
    border-radius:12px;
    transform:none !important;
    box-shadow:0 10px 24px rgba(21,37,31,.065);
  }


  .lk-card > .ribbon{
    top:14px;
    right:14px;
  }


  .lk-card .lk-title,
  .lk-card.current .lk-title{
    max-width:calc(100% - 44px);
    min-height:48px;
    padding:10px 24px 10px 14px;
    font-size:1.12rem;
  }


  .lk-card .lk-title .lk-plan-badge{
    min-height:21px;
  }


  .lk-plan-blurb{
    min-height:0;
  }


  .lk-upgrade-panel{
    grid-template-columns:1fr;
    padding:16px;
  }


  .lk-compare-heading{
    display:block;
    padding:16px;
  }


  .lk-compare-heading p{
    margin-top:6px;
  }


  .lk-compare-scroll{
    display:none;
  }


  .lk-compare-mobile{
    display:block;
  }


  .lk-notes{
    padding:14px;
  }


  .lk-notes ul{
    columns:1;
  }
}


@media (prefers-reduced-motion:reduce){
  .lk-card,
  .lk-card:hover{
    transition:none;
    transform:none !important;
  }
}
