/* ============================================================================
   Linkart marketing landing — neo-brutalist skin.
   Scoped entirely under .lk-land so it never bleeds into the signed-in app
   design system (which lives in application.css). Ported from the
   "Linkart Landing" Claude Design comp: cream canvas, ink borders, hard
   offset shadows, green/yellow accents, Hanken Grotesk.
   ========================================================================= */

/* Landing renders full-bleed — drop the app's centered .main box.
   Doubled class so it beats application.css `.main` regardless of the
   stylesheet load order (landing.css is injected via yield :head, which
   the layout emits before application.css). */
.main.main--bare { max-width: none; margin: 0; padding: 0; }

.lk-land {
  --ink: #16181D;
  --ink-soft: #2B2E35;
  --muted: #3A3D45;
  --cream: #F6F4EC;
  --green: #16C46A;
  --yellow: #F4D35E;
  --card: #FFFFFF;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px; /* standard base (matches html { font-size: 16px }) */
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

/* Zero-specificity reset via :where() so component classes (e.g.
   .lk-hero__note margin-top) always win over it. A plain `.lk-land p`
   reset would be (0,1,1) and silently beat single-class rules. */
.lk-land :where(h1, h2, h3, h4, p) { margin: 0; }

.lk-land a { color: var(--ink); text-decoration: none; }
.lk-land a:hover { color: var(--green); }

.lk-wrap { max-width: 1240px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }

/* Neo-brutalist button: white face, ink border, hard offset shadow. */
.lk-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 2px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 18px 30px; font-size: 17px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.lk-btn:hover { color: var(--ink); transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.lk-btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
.lk-btn--lg { padding: 20px 34px; font-size: 18px; }
.lk-btn--block { width: 100%; justify-content: center; }
.lk-btn--green { background: var(--green); color: #08301c; }
.lk-btn--green:hover { color: #08301c; }

/* Google sign-in button (button_to wraps it in a form) */
.button_to { width: 100%; margin: 0; }
.lk-btn--google { background: #fff; }
.lk-btn--google:hover { background: #fff; }
.lk-google-g { flex-shrink: 0; }

/* "or" divider between OAuth and the email form */
.lk-or { display: flex; align-items: center; gap: 12px; margin: 18px 0;
  color: #6c6858; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.lk-or::before, .lk-or::after { content: ""; flex: 1; height: 2px; background: rgba(20, 19, 16, .14); }

/* ---- NAV ---------------------------------------------------------------- */
.lk-nav {
  max-width: 1240px; margin: 0 auto; padding: 26px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(22, 24, 29, .12);
}
.lk-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 30px; font-weight: 900; letter-spacing: -.06em; color: var(--ink); }
.lk-logo__mark { width: 34px; height: 34px; display: block; }
.lk-nav__links { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 600; }
.lk-nav__links a { display: flex; align-items: center; gap: 6px; }
.lk-nav__cta { border: 2px solid var(--ink); border-radius: 2px; box-shadow: 4px 4px 0 var(--ink); padding: 10px 18px; background: var(--yellow); }
.lk-nav__cta:hover { color: var(--ink); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }

/* ---- HERO --------------------------------------------------------------- */
.lk-hero {
  max-width: 1240px; margin: 0 auto; padding: 20px 40px 60px;
  min-height: calc(100dvh - 96px); /* fill viewport below the ~96px nav */
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  position: relative;
}
.lk-hero h1 { font-size: 82px; line-height: 1.1; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.lk-hero h1 .lk-mark { color: var(--green); }
.lk-hero__sub { margin-top: 30px; font-size: 19px; line-height: 1.55; max-width: 520px; color: var(--muted); }
.lk-hero__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.lk-hero__note { margin-top: 28px; font-size: 14px; color: var(--muted); }
.lk-hero__stage { position: relative; display: flex; justify-content: center; align-items: center; }
.lk-phonewrap { position: relative; width: 330px; }

/* two-tone starburst — green blades with a navy duplicate offset behind.
   Centred on the phone's right edge so the left half hides behind it. */
.lk-burst {
  position: absolute; z-index: 0; left: 100%; top: 34%;
  width: 420px; height: 420px; border-radius: 50%;
  transform: translate(-50%, -50%);
  /* keep only the right half — flat edge sits against the phone */
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  background: repeating-conic-gradient(from 4deg, var(--green) 0deg 7deg, transparent 7deg 20deg);
  -webkit-mask: radial-gradient(circle, transparent 7%, #000 8%);
          mask: radial-gradient(circle, transparent 7%, #000 8%);
}
.lk-burst::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transform: translate(8px, 10px); border-radius: 50%;
  background: repeating-conic-gradient(from 4deg, #16181D 0deg 7deg, transparent 7deg 20deg);
  -webkit-mask: radial-gradient(circle, transparent 7%, #000 8%);
          mask: radial-gradient(circle, transparent 7%, #000 8%);
}

/* navy plus grid, lower-left of the phone */
.lk-plusgrid {
  position: absolute; z-index: 1; left: -76px; top: 300px;
  color: #1B2A4E; font-weight: 800; font-size: 30px; line-height: 1.05;
  letter-spacing: .16em; white-space: pre;
}

/* floating circular badge chips (black ring, white fill) */
.lk-fab {
  position: absolute; z-index: 5; width: 62px; height: 62px; border-radius: 50%;
  background: #fff; border: 4px solid var(--ink); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}
.lk-fab--ig   { top: 74px;  left: -54px; }
.lk-fab--tt   { top: 372px; left: -60px; width: 54px; height: 54px; font-size: 22px; }
.lk-fab--play { top: 452px; right: -52px; width: 58px; height: 58px; font-size: 22px; }

/* phone mock — black bezel, light-blue screen */
.lk-phone {
  position: relative; z-index: 2; width: 330px;
  background: var(--ink); border-radius: 46px; padding: 10px;
  box-shadow: 0 34px 70px rgba(0,0,0,.28);
}
.lk-phone__screen {
  background: linear-gradient(#E9F1FB, #DCE9FA);
  border-radius: 38px; padding: 26px 18px 30px;
}
/* Force the OS color-emoji font so glyphs don't fall back to a flat set. */
.lk-phone__ava, .lk-phone__thumb, .lk-gphone__ava {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.lk-phone__ava { position: relative; overflow: hidden; width: 96px; height: 96px; border-radius: 50%; margin: 8px auto 0;
  background: linear-gradient(135deg, #C8B8A8, #9c8a78); border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center; font-size: 46px; }
.lk-phone__ava img, .lk-tphone__ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-phone__name, .lk-phone__bio, .lk-phone__label { font-family: "Fredoka", "Google Sans", sans-serif; }
.lk-phone__name { text-align: center; font-weight: 700; font-size: 27px; color: var(--ink); margin-top: 14px; letter-spacing: .2px; }
.lk-phone__bio { text-align: center; font-size: 16px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.lk-phone__demo { text-align: center; font-style: italic; font-size: 11px; font-weight: 400; color: var(--muted); margin-top: 14px; letter-spacing: .2px; }
.lk-phone__socials { display: flex; justify-content: center; gap: 12px; margin: 14px 0 4px; color: var(--ink); font-size: 16px; }
.lk-phone__links { display: flex; flex-direction: column; gap: 9px; margin-top: 12px; }
.lk-phone__row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #d8e0ea; border-radius: 10px; padding: 9px 11px; }
.lk-phone__thumb { width: 38px; height: 38px; border-radius: 8px; flex: none;
  display: flex; align-items: center; justify-content: center; font-size: 18px; }
.lk-phone__label { font-size: 17px; font-weight: 600; flex: 1; text-align: center; }
.lk-phone__price { background: var(--yellow); color: var(--ink); font-weight: 800; font-size: 11px; padding: 3px 8px; border-radius: 20px; }
.lk-phone__row > i { font-size: 13px; color: var(--ink); }
.lk-phone__thumb i { font-size: 19px; color: #fff; }

/* ---- SECTION SCAFFOLD --------------------------------------------------- */
.lk-sec { padding: 90px 0; }
.lk-sec--white { background: var(--card); }
.lk-sec--cream { background: var(--cream); }
.lk-sec__head { max-width: 960px; margin: 0 auto; padding: 0 40px; text-align: center; }
.lk-sec__head h2 { font-size: 44px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); }
.lk-sec__head--narrow { max-width: 900px; }

/* ---- STATS -------------------------------------------------------------- */
.lk-stats { max-width: 1240px; margin: 56px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.lk-stat { display: flex; gap: 16px; }
.lk-stat > i { font-size: 34px; color: var(--green); flex: none; line-height: 1.2; }
.lk-stat h3 { font-size: 24px; font-weight: 800; color: var(--ink); }
.lk-stat p { margin-top: 6px; font-size: 16px; line-height: 1.5; color: var(--muted); }

/* ---- SPLIT (customize / traffic) --------------------------------------- */
.lk-split { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lk-split__copy h2 { font-size: 56px; font-weight: 800; letter-spacing: -.02em; line-height: 1.02; color: var(--ink); }
.lk-split__copy p { margin-top: 26px; font-size: 18px; line-height: 1.55; max-width: 500px; color: var(--muted); }
.lk-split__copy .lk-btn { margin-top: 34px; }
.lk-stage { position: relative; display: flex; justify-content: center; }

/* green phone */
.lk-gphone { position: relative; z-index: 2; width: 320px; background: #5FD9B0; border: 3px solid var(--ink); border-radius: 30px; padding: 26px 20px 30px; box-shadow: 10px 12px 0 var(--ink); }
.lk-gphone__ava { width: 74px; height: 74px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--ink); margin: 6px auto 0; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.lk-gphone__name { text-align: center; font-weight: 800; font-size: 16px; color: var(--ink); margin-top: 10px; }
.lk-gphone__bio { text-align: center; font-size: 11.5px; color: var(--ink); margin-top: 3px; }
.lk-gphone__socials { display: flex; justify-content: center; gap: 12px; margin: 12px 0; color: var(--ink); font-size: 14px; }
.lk-gphone__btn { display: flex; align-items: center; gap: 8px; background: #F4EFA0; border: 2px solid var(--ink); border-radius: 22px; padding: 8px 12px; font-size: 12px; font-weight: 700; color: var(--ink); }
.lk-gphone__btn i { font-size: 13px; }
.lk-gphone__btn span { flex: 1; text-align: center; }
.lk-gphone__stack { display: flex; flex-direction: column; gap: 8px; }

/* floating decor for customize */
.lk-wheel { position: absolute; left: -6px; top: 70px; z-index: 3; width: 130px; height: 130px; border-radius: 50%; background: conic-gradient(red, orange, yellow, lime, cyan, blue, magenta, red); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.lk-toggles { position: absolute; left: 14px; top: 210px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.lk-toggle { width: 52px; height: 32px; border-radius: 20px; border: 2px solid var(--ink); background: #fff; display: flex; align-items: center; padding: 0 3px; }
.lk-toggle span { width: 24px; height: 24px; border-radius: 50%; }
.lk-toggle--on { justify-content: flex-end; }
.lk-blocks { position: absolute; left: 0; top: 300px; z-index: 3; width: 110px; background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.lk-blocks > div { height: 16px; border-radius: 6px; background: var(--yellow); }
.lk-blocks > div:first-child { border-radius: 12px; border: 2px solid var(--ink); }
.lk-iconpill { position: absolute; right: -6px; top: 44px; z-index: 4; display: flex; gap: 6px; background: #fff; border: 2px solid var(--ink); border-radius: 40px; padding: 8px; }
.lk-iconpill > div { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; color: var(--ink); }

/* traffic stage */
.lk-traffic-stage { position: relative; min-height: 520px; }
.lk-badge-save { position: absolute; left: 8px; top: -10px; z-index: 5; background: #E60023; color: #fff; font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 20px; display: flex; align-items: center; gap: 6px; }
.lk-badge-round { position: absolute; z-index: 6; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; color: #fff; }
.lk-card-growth { position: absolute; left: 0; top: 30px; z-index: 3; width: 280px; background: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 16px 40px rgba(0,0,0,.10); }
.lk-card-growth h4 { font-weight: 700; font-size: 15px; color: var(--ink); }
.lk-bars { display: flex; align-items: flex-end; gap: 8px; height: 130px; margin-top: 14px; padding-left: 22px; position: relative; }
.lk-bars__axis { position: absolute; left: 0; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-between; font-size: 9px; color: #9098A8; }
.lk-bars span.bar { width: 12px; border-radius: 4px; display: block; }
.lk-card-donut { position: absolute; left: 20px; top: 290px; z-index: 3; width: 210px; background: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 16px 40px rgba(0,0,0,.10); }
.lk-card-donut h4 { text-align: center; font-weight: 700; font-size: 15px; color: var(--ink); }
.lk-donut { width: 120px; height: 120px; margin: 14px auto 8px; border-radius: 50%;
  background: conic-gradient(#F6A93C 0 30%, #2F6BFF 30% 68%, #EF3E52 68% 100%);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 53%); mask: radial-gradient(circle, transparent 52%, #000 53%); }
.lk-legend { display: flex; justify-content: center; gap: 10px; font-size: 9px; color: var(--muted); }
.lk-legend span { display: flex; align-items: center; gap: 3px; }
.lk-legend i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.lk-tphone { position: absolute; right: 0; top: 70px; z-index: 4; width: 300px; background: linear-gradient(#F4E9DE, #EFE0D2); border: 3px solid var(--ink); border-radius: 28px; padding: 22px 18px; box-shadow: 8px 10px 0 var(--ink); font-family: "Courier New", monospace; }
.lk-tphone__ava { position: relative; overflow: hidden; width: 80px; height: 80px; border-radius: 50%; margin: 0 auto; background: linear-gradient(135deg, #b9a58f, #8a7660); border: 3px solid #fff; }
.lk-tphone__name { text-align: center; font-weight: 700; font-size: 17px; color: var(--ink); margin-top: 10px; }
.lk-tphone__bio { text-align: center; font-size: 11px; color: var(--ink); margin-top: 6px; text-decoration: underline; line-height: 1.4; }
.lk-tphone__stack { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.lk-tphone__btn { background: #22242C; color: #fff; border-radius: 22px; padding: 9px; text-align: center; font-size: 11px; }
.lk-tphone__btn--ghost { background: #fff; border: 1px solid #cbb; color: var(--ink); display: flex; align-items: center; justify-content: center; gap: 6px; }
.lk-tphone__socials { display: flex; justify-content: center; gap: 12px; margin-top: 12px; color: var(--ink); font-size: 14px; }

/* ---- MARQUEE ------------------------------------------------------------ */
.lk-marquee { background: var(--ink); overflow: hidden; padding: 22px 0; }
.lk-marquee__track { display: flex; width: max-content; animation: lk-marquee 26s linear infinite; }
.lk-marquee__group { display: flex; align-items: center; gap: 40px; padding-right: 40px; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: .03em; white-space: nowrap; }
.lk-marquee__group i { color: var(--yellow); }
@keyframes lk-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .lk-marquee__track { animation: none; } }

/* ---- FEATURE GRID ------------------------------------------------------- */
.lk-features { max-width: 1240px; margin: 56px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.lk-fcard { background: #fff; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 5px 6px 0 var(--ink); padding: 34px 22px; text-align: center; transition: transform .12s ease, box-shadow .12s ease; }
.lk-fcard:hover { transform: translate(2px, 2px); box-shadow: 2px 3px 0 var(--ink); }
.lk-fcard > i { font-size: 36px; color: var(--green); }
.lk-fcard h3 { margin-top: 20px; font-size: 22px; font-weight: 800; color: var(--ink); }
.lk-fcard p { margin-top: 12px; font-size: 15px; line-height: 1.5; color: var(--muted); }
.lk-features__note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 44px; font-size: 18px; font-weight: 600; color: var(--ink); }
.lk-features__note i { color: var(--green); font-size: 22px; }

/* ---- TESTIMONIAL -------------------------------------------------------- */
.lk-testi { max-width: 1140px; margin: 56px auto 0; padding: 0 40px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.lk-testi__photo { position: relative; z-index: 1; height: 420px; border-radius: 8px; border: 2px solid var(--ink); box-shadow: 8px 10px 0 var(--ink); background: linear-gradient(135deg, #d8d3c6, #cfc9ba); overflow: hidden; }
.lk-testi__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-testi__quote-mark { font-size: 64px; color: var(--green); font-weight: 800; line-height: .6; }
.lk-testi__quote { margin-top: 10px; font-size: 22px; font-weight: 600; line-height: 1.5; color: var(--ink); }
.lk-testi__name { margin-top: 26px; font-size: 22px; font-weight: 800; color: var(--ink); }
.lk-testi__role { margin-top: 4px; font-size: 16px; color: #6a6d75; }
.lk-testi .lk-btn { margin-top: 28px; }

/* ---- PRICING ------------------------------------------------------------ */
.lk-prices { max-width: 1180px; margin: 56px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.lk-price { background: #1B1D24; border-radius: 26px; box-shadow: 8px 10px 0 rgba(0,0,0,.25); padding: 36px 32px 30px; color: #fff; position: relative; }
.lk-price__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #0b2a1a; font-weight: 800; font-size: 12px; letter-spacing: .05em; padding: 6px 16px; border-radius: 20px; white-space: nowrap; }
.lk-price__name { text-align: center; font-weight: 800; font-size: 18px; letter-spacing: .06em; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.18); }
.lk-price__amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.lk-price__cur { font-size: 26px; font-weight: 700; align-self: flex-start; margin-top: 8px; }
.lk-price__num { font-size: 58px; font-weight: 800; letter-spacing: -.02em; }
.lk-price__per { font-size: 20px; font-weight: 700; color: #c9ccd4; align-self: flex-end; margin-bottom: 12px; }
.lk-price__feats { display: flex; flex-direction: column; gap: 16px; padding: 28px 0 6px; }
.lk-price__feat { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.lk-price__feat i { color: var(--green); font-size: 18px; }
.lk-price .lk-btn { margin-top: 26px; }
.lk-prices__note { text-align: center; margin-top: 44px; font-size: 17px; font-weight: 600; color: var(--muted); }
.lk-price__tagline { text-align: center; color: #c9ccd4; font-size: 14px; margin: 4px 0 -8px; }
.lk-price-eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 13px; color: var(--green); margin-bottom: 10px; }
.lk-price-lead { max-width: 560px; margin: 22px auto 0; font-size: 19px; line-height: 1.55; color: var(--muted); }

/* ---- FAQ ---------------------------------------------------------------- */
.lk-faq { max-width: 1180px; margin: 0 auto; padding: 0 40px; position: relative; }
.lk-faq__deco { position: absolute; left: 0; top: -6px; color: #1B2A4E; font-weight: 800; font-size: 24px; line-height: 1.1; letter-spacing: .14em; white-space: pre; z-index: 0; }
.lk-faq h2 { text-align: center; font-size: 52px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.lk-faq__list { max-width: 900px; margin: 50px auto 0; background: #fff; border: 2px solid var(--ink); border-radius: 8px; box-shadow: 8px 10px 0 var(--ink); overflow: hidden; position: relative; z-index: 1; }
.lk-faq__item { border-bottom: 1px solid #ECEAE1; }
.lk-faq__item:last-child { border-bottom: none; }
.lk-faq__item > summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 30px; cursor: pointer; list-style: none; font-size: 21px; font-weight: 800; color: var(--ink); }
.lk-faq__item > summary::-webkit-details-marker { display: none; }
.lk-faq__item > summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 15px; color: var(--ink); transition: transform .18s ease; }
.lk-faq__item[open] > summary::after { transform: rotate(180deg); }
.lk-faq__item p { padding: 0 30px 28px; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 760px; }

/* ---- FOOTER ------------------------------------------------------------- */
.lk-foot { background: var(--ink); color: #cfd2da; padding: 54px 0 40px; }
.lk-foot__inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.lk-foot__logo { display: inline-flex; align-items: center; gap: 9px; font-size: 26px; font-weight: 900; letter-spacing: -.06em; color: #fff; }
.lk-foot__mark { width: 30px; height: 30px; display: block; }
.lk-foot__tag { margin-top: 10px; font-size: 14px; max-width: 320px; line-height: 1.5; }
.lk-foot__social { display: flex; gap: 10px; margin-top: 20px; }
.lk-foot__social a {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.18); border-radius: 10px;
  color: #cfd2da; font-size: 18px;
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
}
.lk-foot__social a:hover { color: var(--ink); background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.lk-foot__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.lk-foot__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #8a8f9c; }
.lk-foot__col ul { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lk-foot__col a { color: #cfd2da; font-size: 15px; font-weight: 600; }
.lk-foot__col a:hover { color: var(--green); }
.lk-foot__bottom { max-width: 1240px; margin: 40px auto 0; padding: 22px 40px 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: #8a8f9c; flex-wrap: wrap; }
.lk-foot__bottom a { color: #cfd2da; }

/* ---- AUTH (Devise) ------------------------------------------------------ */
/* Full-height column so the footer pins to the viewport bottom no matter
   how short the form is; the card area flexes to fill the gap. */
.lk-land--auth { min-height: 100dvh; display: flex; flex-direction: column; }
.lk-land--auth > * { width: 100%; } /* stop flex+margin-auto shrinking nav/footer to content */
.lk-land--auth .lk-auth { flex: 1 1 auto; }

.lk-auth {
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 40px;
  display: flex; align-items: center; justify-content: center;
}
.lk-auth__card {
  width: 100%; max-width: 440px;
  background: #fff; border: 2px solid var(--ink); border-radius: 18px;
  box-shadow: 8px 10px 0 var(--ink); padding: 40px 36px;
}
.lk-auth__card h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.lk-auth__card .auth-sub { margin-top: 8px; font-size: 15px; color: var(--muted); }

/* neo-brutalist form fields, scoped so they beat application.css .field input */
.lk-land .field { margin-top: 20px; }
.lk-land .field > label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 700; color: var(--ink); }
.lk-land .field input[type=email],
.lk-land .field input[type=password],
.lk-land .field input[type=text] {
  width: 100%; padding: 13px 14px; font-family: inherit; font-size: 16px;
  color: var(--ink); background: #fff;
  border: 2px solid var(--ink); border-radius: 8px; box-shadow: none;
}
.lk-land .field input:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 196, 106, .22);
}
.lk-land .field .hint { margin-top: 6px; font-size: 12.5px; color: var(--muted); }

.lk-auth__check { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--ink); }
.lk-auth__check input { width: 17px; height: 17px; accent-color: var(--green); }

.lk-land .field ~ .lk-btn,
.lk-auth__card .lk-btn { margin-top: 26px; }

.lk-auth__links { margin-top: 22px; font-size: 14px; color: var(--muted); text-align: center; line-height: 2; }
.lk-auth__links a { font-weight: 700; color: var(--ink); }
.lk-auth__links a:hover { color: var(--green); }

.lk-land .errors {
  margin-top: 4px; padding: 14px 16px; border: 2px solid #E60023; border-radius: 10px;
  background: #FDECEE; color: #9b0f22; font-size: 14px;
}
.lk-land .errors ul { margin: 6px 0 0; padding-left: 18px; }

.lk-foot--slim { padding: 22px 0; }
.lk-foot--slim .lk-foot__bottom { margin-top: 0; border-top: none; padding-top: 0; }

/* ---- RESPONSIVE --------------------------------------------------------- */
@media (max-width: 1080px) {
  .lk-hero h1 { font-size: 64px; }
  .lk-split__copy h2 { font-size: 44px; }
}
@media (max-width: 900px) {
  .lk-nav__links { display: none; }
  .lk-nav__links--min { display: flex; gap: 18px; }
  .lk-hero { grid-template-columns: 1fr; padding-bottom: 60px; min-height: 0; }
  .lk-hero h1 { font-size: 52px; }
  .lk-hero__stage { margin-top: 30px; }
  .lk-stats { grid-template-columns: 1fr; gap: 32px; }
  .lk-split { grid-template-columns: 1fr; gap: 48px; }
  .lk-split__copy { order: -1; }
  .lk-split__copy h2 { font-size: 38px; }
  .lk-features { grid-template-columns: repeat(2, 1fr); }
  .lk-testi { grid-template-columns: 1fr; }
  .lk-testi__photo { height: 260px; }
  .lk-prices { grid-template-columns: 1fr; gap: 44px; }
  .lk-sec__head h2 { font-size: 34px; }
  .lk-faq h2 { font-size: 38px; }
  .lk-traffic-stage { min-height: 560px; transform: scale(.92); transform-origin: top center; }
}
@media (max-width: 560px) {
  .lk-wrap, .lk-nav, .lk-hero, .lk-split, .lk-stats, .lk-features, .lk-testi, .lk-prices, .lk-faq { padding-left: 22px; padding-right: 22px; }
  .lk-hero h1 { font-size: 42px; }
  .lk-features { grid-template-columns: 1fr; }
  .lk-foot__inner { flex-direction: column; }
  .lk-legal { padding-left: 22px; padding-right: 22px; }
  .lk-legal__head h1 { font-size: 42px; }
}

/* ── Legal pages (Terms, Privacy) ─────────────────────────────────── */
.lk-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 40px 96px;
}
.lk-legal__head {
  border-bottom: 3px solid var(--ink);
  padding-bottom: 28px;
  margin-bottom: 40px;
}
.lk-legal__eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.lk-legal__head h1 {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.lk-legal__updated {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.lk-legal__body { color: var(--ink-soft); }
.lk-legal__body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 40px 0 14px;
}
.lk-legal__body p { font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.lk-legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.lk-legal__body li { font-size: 17px; line-height: 1.7; margin-bottom: 8px; }
.lk-legal__body strong { color: var(--ink); font-weight: 700; }
.lk-legal__code {
  font-family: var(--mono);
  font-size: 14px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 2px;
  padding: 1px 6px;
}
.lk-legal__see {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 3px solid var(--ink);
  font-weight: 700;
}
.lk-legal__see a { color: var(--ink); }
.lk-legal__see a:hover { color: var(--green); }
