/* ===========================================================================
   KloxVPN landing — hand-written CSS (no Tailwind, no build step).

   A faithful port of the Bolt design's compiled utilities into a single
   authored stylesheet. It is loaded ONLY by app/View/views/klox/layout.php, so
   it never collides with the neutral base app.css that the checkout skeleton
   uses. Every class is prefixed `k-` for the same reason.

   Brand tokens are the exact KloxVPN values (from klox.app). The page commits
   to its own dark theme — there is no prefers-color-scheme switch, because a
   buyer arriving from an ad must see the colours the ad showed them.
   =========================================================================== */

:root {
  --k-blue: #0959cd;
  --k-light: #3d7ce6;
  --k-navy: #18398c;
  --k-dark: #071c56;

  --k-ink: #0a1628; /* page background */
  --k-ink2: #0d2147; /* card fill */
  --k-ink3: #122c5c; /* elevated fill */
  --k-muted: #8ba5cc;
  --k-muted2: #5a7ba8;
  --k-line: #1e3a6e;
  --k-line2: #2a4f8f;

  --k-white: #ffffff;
  --k-success: #10b981;
  --k-error: #ef4444;
  --k-warning: #f59e0b;

  --k-r: 3px; /* signature sharp corner */
  --k-r-lg: 6px;
  --k-r-xl: 10px;

  --k-grad: linear-gradient(135deg, #0959cd 0%, #3d7ce6 100%);
  --k-navy-grad: linear-gradient(160deg, #18398c 0%, #071c56 100%);
  --k-mesh:
    radial-gradient(at 20% 20%, rgba(9, 89, 205, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(61, 124, 230, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(7, 28, 86, 0.4) 0px, transparent 50%);

  --k-sh-card: 0 1px 3px rgba(7, 28, 86, 0.3), 0 4px 16px rgba(9, 89, 205, 0.1);
  --k-sh-cardh:
    0 2px 8px rgba(7, 28, 86, 0.4), 0 12px 40px rgba(9, 89, 205, 0.2);
  --k-sh-glow:
    0 0 40px rgba(9, 89, 205, 0.35), 0 0 80px rgba(61, 124, 230, 0.15);
  --k-sh-cta: 0 4px 20px rgba(9, 89, 205, 0.45);
  --k-sh-ctah: 0 6px 28px rgba(9, 89, 205, 0.6);

  --k-font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

/* --- reset ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.k-body {
  margin: 0;
  font-family: var(--k-font);
  background: var(--k-ink);
  color: var(--k-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5; /* match Tailwind Preflight base; Bolt sets no body line-height */
}

.k-body h1,
.k-body h2,
.k-body h3,
.k-body h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
/* Element-level (specificity 0,0,1) so authored single-class spacing rules
   (.k-campaign__eyebrow etc., 0,1,0) win. A .k-body-scoped reset here would
   silently zero every <p>/<ul> top-margin and compress the whole page. */
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Element-level (0,0,1) so single-class sizing rules (.k-paymethod__logo,
   .k-mark__img etc., 0,1,0) win. A .k-body-scoped reset (0,1,1) here would
   silently force height:auto on those logos and blow them up to max-width. */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Element-level (0,0,1) so button color utilities (.k-btn--white etc., 0,1,0)
   win. A .k-body a reset (0,1,1) would force every button-anchor to inherit its
   parent's color — e.g. the white order-card CTA rendered white-on-white. */
a {
  color: inherit;
  text-decoration: none;
}
.k-body button {
  font-family: inherit;
  cursor: pointer;
}
.k-body [hidden] {
  display: none !important;
}

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

/* Focus ring — the whole page must be keyboard-operable. */
.k-body :focus-visible {
  outline: 2px solid var(--k-light);
  outline-offset: 2px;
}
.k-body :focus:not(:focus-visible) {
  outline: none;
}

/* --- layout primitives ---------------------------------------------------- */
.k-wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.k-wrap--lg {
  max-width: 80rem;
}
.k-wrap--narrow {
  max-width: 48rem;
}
.k-wrap--5xl {
  max-width: 64rem;
}
@media (min-width: 640px) {
  .k-wrap {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-wrap {
    padding: 0 2rem;
  }
}

.k-section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .k-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .k-section {
    padding: 6rem 0;
  }
}

/* The "mt-12 border-t pt-10" divider the hero repeats between showcases. */
.k-block {
  margin-top: 3rem;
  border-top: 1px solid rgba(30, 58, 110, 0.3);
  padding-top: 2.5rem;
}

.k-center {
  text-align: center;
}
.k-muted {
  color: var(--k-muted);
}

/* --- decorative fills ----------------------------------------------------- */
.k-grid-pattern {
  background-image:
    linear-gradient(rgba(61, 124, 230, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 124, 230, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.k-navy-grad {
  background-image: var(--k-navy-grad);
}
.k-mesh {
  background-image: var(--k-mesh);
}
.k-glass {
  background: rgba(13, 33, 71, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.text-gradient {
  background: linear-gradient(90deg, #3d7ce6 0%, #6ba4f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.k-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

/* --- eyebrow / headings --------------------------------------------------- */
.k-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--k-light);
  margin: 0;
}
.k-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--k-muted);
  margin: 0;
}
.k-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) {
  .k-h2 {
    font-size: 1.875rem;
  }
}
.k-h2--lg {
  font-size: 1.875rem;
}
@media (min-width: 640px) {
  .k-h2--lg {
    font-size: 2.25rem;
  }
}
/* Default lede = Tailwind text-sm/sm:text-base (locations, comparison, protocols,
   platforms, devices, faq). The --lg modifier = text-base/sm:text-lg (features,
   platform-compat). */
.k-lede {
  color: var(--k-muted);
  font-size: 0.875rem;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .k-lede {
    font-size: 1rem;
  }
}
.k-lede--lg {
  font-size: 1rem;
}
@media (min-width: 640px) {
  .k-lede--lg {
    font-size: 1.125rem;
  }
}
.k-sec-head {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* --- buttons -------------------------------------------------------------- */
.k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  font-weight: 700;
  border: 2px solid transparent;
  text-align: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  padding: 0 1.5rem;
  height: 3rem;
  font-size: 1rem;
}
.k-btn:active {
  transform: scale(0.98);
}
.k-btn--primary {
  background-image: var(--k-grad);
  border-color: var(--k-blue);
  color: #fff;
  box-shadow: var(--k-sh-cta);
}
.k-btn--primary:hover {
  box-shadow: var(--k-sh-ctah);
}
.k-btn--lg {
  height: 3.375rem;
  padding: 0 2rem;
  width: 100%;
  max-width: 24rem;
}
@media (min-width: 640px) {
  .k-btn--lg {
    width: auto;
    max-width: none;
  }
}
.k-btn--full {
  width: 100%;
}
.k-btn--white {
  background: #fff;
  border-color: #fff;
  color: var(--k-ink);
  height: 3.5rem;
  box-shadow: var(--k-sh-cta);
}
.k-btn--white:hover {
  background-image: var(--k-grad);
  border-color: var(--k-light);
  color: #fff;
}
.k-btn__ico {
  flex: none;
}
.k-btn .k-btn__ico svg {
  width: 1.125rem;
  height: 1.125rem;
}

.k-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--k-light);
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
  border: 0;
  padding: 0;
  transition: color 0.2s ease;
}
.k-link:hover {
  color: #fff;
}
.k-link svg {
  width: 1rem;
  height: 1rem;
}

/* --- badges --------------------------------------------------------------- */
.k-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: var(--k-r);
  padding: 0.125rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.k-badge--grad {
  background-image: var(--k-grad);
  color: #fff;
}
.k-badge--soft {
  background: rgba(9, 89, 205, 0.2);
  color: var(--k-light);
}
.k-badge--success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--k-success);
}

/* --- generic card --------------------------------------------------------- */
.k-card {
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(13, 33, 71, 0.8);
  box-shadow: var(--k-sh-cardh);
}

/* --- icons default sizing ------------------------------------------------- */
.k-ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}

/* ===========================================================================
   HEADER
   =========================================================================== */
.k-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(30, 58, 110, 0.6);
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.k-header__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 4rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .k-header__bar {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-header__bar {
    padding: 0 2rem;
  }
}
.k-logo {
  display: inline-flex;
  align-items: center;
  flex: none;
  border-radius: var(--k-r);
}
.k-logo img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.k-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
}
@media (min-width: 768px) {
  .k-nav {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .k-nav {
    gap: 0.5rem;
    margin-left: 1rem;
  }
}
.k-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--k-muted);
  padding: 0.5rem 0.625rem;
  border-radius: var(--k-r);
  transition: color 0.2s ease;
}
.k-nav a:hover {
  color: #fff;
}
.k-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .k-header__right {
    gap: 0.75rem;
  }
}
.k-header__secure {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.k-header__secure svg {
  width: 14px;
  height: 14px;
  color: var(--k-light);
}
@media (min-width: 1024px) {
  .k-header__secure {
    display: inline-flex;
  }
}
.k-header__help {
  display: none;
  align-items: center;
  gap: 0.375rem;
  border-radius: var(--k-r);
  border: 1px solid transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--k-muted);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.k-header__help:hover {
  color: #fff;
  border-color: rgba(42, 79, 143, 0.4);
}
.k-header__help svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 640px) {
  .k-header__help {
    display: inline-flex;
  }
}
.k-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.5);
  color: #fff;
  background: transparent;
}
@media (min-width: 768px) {
  .k-burger {
    display: none;
  }
}
.k-burger svg {
  width: 20px;
  height: 20px;
}
.k-burger__x {
  display: none;
}
.k-burger[aria-expanded="true"] .k-burger__menu {
  display: none;
}
.k-burger[aria-expanded="true"] .k-burger__x {
  display: block;
}
.k-mobilenav {
  border-top: 1px solid rgba(30, 58, 110, 0.5);
  background: rgba(10, 22, 40, 0.95);
}
@media (min-width: 768px) {
  .k-mobilenav {
    display: none !important;
  }
}
.k-mobilenav__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
}
.k-mobilenav a {
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--k-muted);
  border-radius: var(--k-r);
}
.k-mobilenav a:hover {
  color: #fff;
}
.k-mobilenav__help {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(42, 79, 143, 0.4);
  color: var(--k-light) !important;
}
.k-mobilenav__help svg {
  width: 16px;
  height: 16px;
}

/* ===========================================================================
   HERO SHELL
   =========================================================================== */
.k-hero {
  position: relative;
  overflow: hidden;
  background-image: var(--k-navy-grad);
}
.k-hero__atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.k-hero__atmos .k-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.k-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1rem;
}
@media (min-width: 640px) {
  .k-hero__inner {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-hero__inner {
    padding: 5rem 2rem;
  }
}

/* --- campaign hero -------------------------------------------------------- */
.k-campaign {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.k-campaign__brand {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--k-light);
}
@media (min-width: 640px) {
  .k-campaign__brand {
    font-size: 1rem;
  }
}
.k-campaign__eyebrow {
  margin-top: 1rem;
}
.k-campaign h1 {
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) {
  .k-campaign h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .k-campaign h1 {
    font-size: 3.5rem;
  }
}
.k-campaign__lede {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--k-muted);
}
@media (min-width: 640px) {
  .k-campaign__lede {
    font-size: 1.125rem;
  }
}
.k-campaign__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .k-campaign__cta {
    flex-direction: row;
    justify-content: center;
  }
}
.k-campaign__note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--k-muted);
}
.k-campaign__benefits {
  margin: 2.5rem auto 0;
  max-width: 42rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
}
@media (min-width: 640px) {
  .k-campaign__benefits {
    grid-template-columns: 1fr 1fr;
  }
}
.k-campaign__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
.k-campaign__benefits svg {
  flex: none;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  color: var(--k-success);
}

/* ===========================================================================
   PLATFORM SHOWCASE (hero)
   =========================================================================== */
.k-plat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .k-plat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}
.k-plat {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--k-r-xl);
  border: 2px solid;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  --k-acc: var(--k-light);
  --k-fill: var(--k-light);
  border-color: color-mix(in srgb, var(--k-fill) 38%, transparent);
  background: color-mix(in srgb, var(--k-fill) 13%, transparent);
  color: var(--k-acc);
}
@media (min-width: 640px) {
  .k-plat {
    padding: 1.75rem 1rem;
    gap: 0.875rem;
  }
}
.k-plat:hover {
  border-color: color-mix(in srgb, var(--k-acc) 70%, transparent);
  background: color-mix(in srgb, var(--k-fill) 20%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--k-acc) 32%, transparent);
}
.k-plat__corner {
  position: absolute;
  right: -1rem;
  top: -1rem;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  background: currentColor;
  opacity: 0.12;
  transition: transform 0.3s ease;
}
.k-plat:hover .k-plat__corner {
  transform: scale(1.5);
}
.k-plat__glyph {
  position: relative;
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.k-plat:hover .k-plat__glyph {
  transform: translateY(-2px) scale(1.1);
}
.k-plat__glyph svg {
  width: 3.5rem;
  height: 3.5rem;
}
@media (min-width: 640px) {
  .k-plat__glyph {
    height: 5rem;
    width: 5rem;
  }
  .k-plat__glyph svg {
    width: 4rem;
    height: 4rem;
  }
}
.k-plat__name {
  position: relative;
  font-weight: 700;
  color: #fff;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .k-plat__name {
    font-size: 1rem;
  }
}
.k-plat__tag {
  position: relative;
  display: none;
  font-size: 0.75rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 640px) {
  .k-plat__tag {
    display: block;
  }
}

/* ===========================================================================
   DEVICES HIGHLIGHT
   =========================================================================== */
.k-devices {
  position: relative;
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(9, 89, 205, 0.4);
  background-image: var(--k-navy-grad);
  box-shadow: var(--k-sh-cardh);
}
.k-devices__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .k-devices__grid {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .k-devices__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
}
.k-devices__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .k-devices__left {
    align-items: flex-start;
    text-align: left;
  }
}
.k-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(61, 124, 230, 0.35);
  background: rgba(61, 124, 230, 0.1);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--k-light);
}
.k-dot {
  height: 6px;
  width: 6px;
  border-radius: 9999px;
  background: var(--k-light);
}
.k-devices__count {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .k-devices__count {
    justify-content: flex-start;
  }
}
.k-devices__num {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) {
  .k-devices__num {
    font-size: 7rem;
  }
}
.k-devices__unit {
  margin-bottom: 0.75rem;
  text-align: left;
}
.k-devices__unit b {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--k-light);
}
@media (min-width: 640px) {
  .k-devices__unit b {
    font-size: 1.875rem;
  }
}
.k-devices__unit span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--k-muted);
}
.k-devices h2 {
  margin-top: 1rem;
  max-width: 28rem;
}
.k-devices__row {
  margin-top: 1.75rem;
  display: flex;
  width: 100%;
  max-width: 28rem;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .k-devices__row {
    gap: 0.75rem;
  }
}
.k-devslot {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}
.k-devslot__box {
  position: relative;
  display: flex;
  height: 3.5rem;
  width: 100%;
  max-width: 4.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r-lg);
  border: 2px solid rgba(42, 79, 143, 0.5);
  background: rgba(10, 22, 40, 0.5);
  color: var(--k-light);
  transition: transform 0.2s ease;
}
@media (min-width: 640px) {
  .k-devslot__box {
    height: 4rem;
  }
}
.k-devslot__box:hover {
  transform: translateY(-4px);
}
.k-devslot--first .k-devslot__box {
  border-color: var(--k-blue);
  background-image: var(--k-grad);
  color: #fff;
  box-shadow: var(--k-sh-cta);
}
.k-devslot__box svg {
  width: 22px;
  height: 22px;
}
.k-devslot--first .k-devslot__box svg {
  width: 26px;
  height: 26px;
}
.k-devslot__tick {
  position: absolute;
  right: -6px;
  top: -6px;
  display: flex;
  height: 20px;
  width: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--k-success);
  color: #fff;
}
.k-devslot__tick svg {
  width: 11px;
  height: 11px;
}
.k-devslot__label {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--k-muted);
}
.k-devices__facts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.k-fact {
  display: flex;
  gap: 1rem;
  border-radius: var(--k-r-lg);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(10, 22, 40, 0.45);
  padding: 1rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.k-fact:hover {
  border-color: rgba(9, 89, 205, 0.5);
  background: rgba(10, 22, 40, 0.65);
}
/* Transparent box to match Bolt (bg-klox-gradient/20 is a no-op there). */
.k-fact__ico {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  background: transparent;
  color: var(--k-light);
}
.k-fact__ico svg {
  width: 20px;
  height: 20px;
}
.k-fact h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.k-fact p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--k-muted);
}
.k-devices__note {
  margin-top: 0.25rem;
  border-radius: var(--k-r);
  background: rgba(9, 89, 205, 0.15);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (min-width: 640px) {
  .k-devices__note {
    text-align: left;
  }
}

/* ===========================================================================
   PROTOCOLS
   =========================================================================== */
.k-proto-head {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(9, 89, 205, 0.35);
  background: rgba(13, 33, 71, 0.7);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .k-proto-head {
    padding: 1.75rem 2rem;
  }
}
.k-proto-head__mesh {
  position: absolute;
  inset: 0;
  background-image: var(--k-mesh);
  opacity: 0.8;
}
.k-proto-head__mesh::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 1px;
  width: 66%;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    transparent,
    var(--k-light),
    transparent
  );
}
.k-proto-head > div {
  position: relative;
}
.k-proto-head h2 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-proto-head h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .k-proto-head h2 {
    font-size: 2.25rem;
  }
}
.k-proto-head p {
  margin: 0.5rem auto 0;
  max-width: 42rem;
}
.k-proto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .k-proto-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.k-proto {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: var(--k-r-xl);
  border: 2px solid;
  padding: 1rem;
  transition: all 0.3s ease;
  --k-acc: var(--k-light);
  --k-frame: var(--k-light);
  border-color: color-mix(in srgb, var(--k-frame) 48%, transparent);
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--k-frame) 22%, transparent),
    rgba(10, 22, 40, 0.8)
  );
}
@media (min-width: 640px) {
  .k-proto {
    padding: 1.25rem;
  }
}
.k-proto:hover {
  border-color: color-mix(in srgb, var(--k-acc) 72%, transparent);
  box-shadow: 0 0 32px color-mix(in srgb, var(--k-acc) 37%, transparent);
}
.k-proto__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.k-proto__logo {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--k-sh-card);
}
@media (min-width: 640px) {
  .k-proto__logo {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.k-proto__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.k-proto__badge {
  border-radius: var(--k-r);
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}
.k-proto__badge--grad {
  background-image: var(--k-grad);
}
.k-proto h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-proto h3 {
    font-size: 1.25rem;
  }
}
.k-proto__blurb {
  margin-top: 0.375rem;
  flex: 1;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--k-muted);
}
@media (min-width: 640px) {
  .k-proto__blurb {
    font-size: 0.875rem;
  }
}
.k-proto__foot {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
}
.k-proto__foot .k-dot {
  background: var(--k-success);
}
.k-proto__foot span:last-child {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================================================================
   SCREENSHOTS
   =========================================================================== */
.k-shots-title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-shots-title {
    font-size: 1.5rem;
  }
}
.k-shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .k-shots {
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .k-shots {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.k-shot figure {
  display: flex;
  height: 100%;
  flex-direction: column;
  margin: 0;
}
.k-shot__frame {
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(13, 33, 71, 0.8);
  box-shadow: var(--k-sh-cardh);
}
.k-shot__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}
.k-shot figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--k-muted);
}

/* ===========================================================================
   SERVER LOCATIONS
   =========================================================================== */
.k-loc-tabs {
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.k-loc-tab {
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--k-muted);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
@media (min-width: 640px) {
  .k-loc-tab {
    font-size: 0.875rem;
  }
}
.k-loc-tab:hover {
  color: #fff;
  border-color: rgba(42, 79, 143, 0.7);
}
.k-loc-tab[aria-selected="true"] {
  border-color: rgba(61, 124, 230, 0.6);
  background: rgba(9, 89, 205, 0.2);
  color: #fff;
}
.k-loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .k-loc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
}
@media (min-width: 768px) {
  .k-loc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .k-loc-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.k-loc {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(13, 33, 71, 0.5);
  padding: 0.625rem 0.75rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.k-loc:hover {
  border-color: rgba(9, 89, 205, 0.45);
  background: rgba(13, 33, 71, 0.8);
}
.k-loc img {
  height: 1.5rem;
  width: 2rem;
  flex: none;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}
.k-loc__txt {
  min-width: 0;
  text-align: left;
}
.k-loc__country {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.k-loc__region {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-loc-count {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--k-muted);
}

/* ===========================================================================
   PAYMENT BADGES
   =========================================================================== */
.k-pay {
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(13, 33, 71, 0.7);
  padding: 1.5rem 1.25rem;
}
@media (min-width: 640px) {
  .k-pay {
    padding: 1.75rem 2rem;
  }
}
.k-pay__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .k-pay__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.k-pay__lead {
  max-width: 28rem;
}
.k-pay__lead h2 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-pay__lead h2 {
    font-size: 1.5rem;
  }
}
.k-pay__lead p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-pay__marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media (min-width: 1024px) {
  .k-pay__marks {
    justify-content: flex-end;
  }
}
.k-mark {
  display: inline-flex;
  height: 2.75rem;
  min-width: 4.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.k-mark--visa {
  background: #1a1f71;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
}
.k-mark--mastercard {
  background: #fff;
}
.k-mark--mastercard .k-mc {
  position: relative;
  display: inline-flex;
  height: 1.25rem;
  width: 2rem;
}
.k-mark--mastercard .k-mc span {
  position: absolute;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
  top: 0;
}
.k-mark--mastercard .k-mc span:first-child {
  left: 0;
  background: #eb001b;
}
.k-mark--mastercard .k-mc span:last-child {
  left: 0.75rem;
  background: #f79e1b;
  mix-blend-mode: multiply;
}
.k-mark--amex {
  background: #006fcf;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.k-mark--applepay {
  background: #000;
  color: #fff;
  font-weight: 600;
  gap: 0.25rem;
}
.k-mark--applepay svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}
.k-mark--googlepay {
  background: #fff;
  color: var(--k-ink);
  border: 1px solid var(--k-line2);
  font-weight: 600;
  gap: 0.25rem;
}
.k-mark--googlepay .k-g {
  color: #4285f4;
}
.k-pay__note {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.75rem;
  border-top: 1px solid rgba(42, 79, 143, 0.3);
  padding-top: 1rem;
  font-size: 0.75rem;
  color: var(--k-muted);
}
@media (min-width: 1024px) {
  .k-pay__note {
    justify-content: flex-start;
  }
}
.k-pay__note svg {
  width: 13px;
  height: 13px;
  color: var(--k-light);
  vertical-align: -2px;
}
.k-pay__note-sep {
  display: none;
}
@media (min-width: 640px) {
  .k-pay__note-sep {
    display: inline;
  }
}

/* ===========================================================================
   COMPARISON TABLES
   =========================================================================== */
.k-table-wrap {
  overflow-x: auto;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
}
.k-table-wrap + .k-table-wrap {
  margin-top: 2rem;
}
.k-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}
.k-table--plans {
  min-width: 36rem;
}
.k-table--vs {
  min-width: 28rem;
}
.k-table thead tr {
  border-bottom: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(13, 33, 71, 0.8);
}
.k-table th,
.k-table td {
  padding: 0.875rem 1rem;
}
@media (min-width: 640px) {
  .k-table th,
  .k-table td {
    padding: 0.875rem 1.25rem;
  }
}
.k-table thead th {
  font-weight: 600;
  color: var(--k-muted);
}
.k-table thead th.k-col-hot {
  position: relative;
  color: #fff;
}
.k-table thead th.k-col-white {
  color: #fff;
}
.k-col-hot__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background-image: var(--k-grad);
}
.k-table tbody {
  background: rgba(13, 33, 71, 0.4);
}
.k-table tbody tr {
  border-bottom: 1px solid rgba(42, 79, 143, 0.3);
}
.k-table tbody tr:last-child {
  border-bottom: 0;
}
.k-table th[scope="row"] {
  font-weight: 500;
  color: var(--k-muted);
}
.k-table td {
  color: #fff;
}
.k-cell-hot {
  background: rgba(9, 89, 205, 0.1);
}
.k-cell-muted {
  color: var(--k-muted);
}
.k-cell-ok {
  color: var(--k-success);
  font-weight: 600;
}
.k-vs-yes {
  color: var(--k-success);
}
.k-vs-no {
  color: rgba(139, 165, 204, 0.5);
}
.k-vs-yes svg,
.k-vs-no svg {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  display: block;
}
.k-vs-note {
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-table--vs td {
  text-align: center;
}
.k-table--vs tbody th,
.k-table--vs tbody td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.k-table--vs th[scope="row"] {
  color: #fff;
}
.k-compare-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
/* Original compare/guarantee buttons are font-semibold with no hover-shadow bump. */
.k-compare-cta .k-btn--primary,
.k-guarantee__actions .k-btn--primary {
  font-weight: 600;
}
.k-compare-cta .k-btn--primary:hover,
.k-guarantee__actions .k-btn--primary:hover {
  box-shadow: var(--k-sh-cta);
}

/* ===========================================================================
   CHECKOUT MODULE  (plan selector + order summary)
   =========================================================================== */
.k-checkout {
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(13, 33, 71, 0.8);
  box-shadow: var(--k-sh-cardh);
}
.k-checkout__head {
  border-bottom: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
}
@media (min-width: 640px) {
  .k-checkout__head {
    padding: 1rem 1.5rem;
  }
}
.k-checkout__head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.k-checkout__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-checkout__title {
    font-size: 1.25rem;
  }
}
.k-checkout__title svg {
  width: 18px;
  height: 18px;
  color: var(--k-light);
}
.k-checkout__hint {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--k-muted);
}
@media (min-width: 640px) {
  .k-checkout__hint {
    font-size: 0.875rem;
  }
}
.k-checkout__body {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .k-checkout__body {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
  }
}
.k-checkout__plans {
  border-bottom: 1px solid rgba(42, 79, 143, 0.3);
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .k-checkout__plans {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-checkout__plans {
    border-bottom: 0;
    border-right: 1px solid rgba(42, 79, 143, 0.3);
  }
}
.k-checkout__summary {
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .k-checkout__summary {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-checkout__summary {
    position: sticky;
    top: 5rem;
  }
}
.k-fieldlabel {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

/* plan options */
.k-plans {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.k-plan {
  position: relative;
  display: flex;
  height: 100%;
  cursor: pointer;
  gap: 0.75rem;
  align-items: flex-start;
  border-radius: var(--k-r);
  border: 2px solid rgba(42, 79, 143, 0.5);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  transition: all 0.2s ease;
}
@media (min-width: 640px) {
  .k-plan {
    align-items: center;
  }
}
.k-plan:hover {
  border-color: rgba(9, 89, 205, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.k-plan:not(.is-selected):hover .k-plan__radio {
  border-color: rgba(9, 89, 205, 0.6);
}
.k-plan input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.k-plan__radio {
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--k-line2);
  background: transparent;
  margin-top: 2px;
  transition: all 0.2s ease;
}
.k-plan__radio svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
}
.k-plan__main {
  min-width: 0;
  flex: 1;
}
.k-plan__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}
.k-plan__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.k-plan__price {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.5rem;
}
.k-plan__mo {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.k-plan__today {
  font-size: 0.875rem;
  color: var(--k-muted);
}
.k-plan__value {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--k-muted);
}
/* selected state (driven by JS toggling .is-selected on the label) */
.k-plan.is-selected {
  border-color: var(--k-blue);
  background: rgba(9, 89, 205, 0.1);
  box-shadow: 0 0 24px rgba(9, 89, 205, 0.25);
}
.k-plan.is-selected .k-plan__radio {
  border-color: var(--k-blue);
  background-image: var(--k-grad);
}
.k-plan.is-selected .k-plan__radio svg {
  opacity: 1;
}
.k-plan.is-selected .k-plan__badge {
  background-image: var(--k-grad);
  color: #fff;
}

/* shorter-plan disclosure */
.k-short {
  margin-top: 0.75rem;
}
.k-short__list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.k-short-opt {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: var(--k-r);
  border: 2px solid rgba(42, 79, 143, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.875rem 1rem;
  transition: all 0.2s ease;
}
.k-short-opt:hover {
  border-color: rgba(42, 79, 143, 0.7);
}
.k-short-opt input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.k-short-opt.is-selected {
  border-color: var(--k-blue);
  background: rgba(9, 89, 205, 0.15);
  box-shadow: 0 0 0 1px rgba(61, 124, 230, 0.35);
}
.k-short-opt__main {
  min-width: 0;
}
.k-short-opt__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.k-short-opt__name {
  font-weight: 600;
  color: #fff;
}
.k-short-opt__tag {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-short-opt__compare {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-short-opt__compare .k-strike {
  text-decoration: line-through;
}
.k-short-opt__compare b {
  font-weight: 500;
  color: #fff;
}
.k-short-opt__right {
  flex: none;
  text-align: right;
}
.k-short-opt__mo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.k-short-opt__mo span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--k-muted);
}
.k-short-opt__today {
  font-size: 0.7rem;
  color: var(--k-muted);
}
.k-short__fine {
  padding: 0.25rem 0.25rem 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--k-muted);
}

/* order summary */
.k-os__recap {
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(9, 89, 205, 0.08);
  padding: 1rem;
}
.k-os__recap-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.k-os__name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.k-os__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.k-os__mo {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: var(--k-muted);
}
.k-os__price {
  text-align: right;
}
.k-os__price b {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.k-os__price span {
  display: block;
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-os__dl {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  border-top: 1px solid rgba(42, 79, 143, 0.3);
  padding-top: 0.75rem;
  font-size: 0.875rem;
}
.k-os__dl > div {
  display: flex;
  justify-content: space-between;
}
.k-os__dl dt {
  color: var(--k-muted);
}
.k-os__dl dd {
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.k-os__dl dd.k-ok {
  color: var(--k-success);
}
.k-promo {
  margin-top: 1rem;
}
.k-promo__box {
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(10, 22, 40, 0.4);
  padding: 0.75rem;
}
.k-promo__row {
  display: flex;
  gap: 0.5rem;
}
.k-promo__row input {
  height: 2.75rem;
  flex: 1;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.6);
  background: var(--k-ink);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
.k-promo__row input::placeholder {
  text-transform: none;
  letter-spacing: normal;
  color: var(--k-muted);
}
.k-promo__apply {
  height: 2.75rem;
  border-radius: var(--k-r);
  border: 1px solid var(--k-line2);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.k-promo__apply:hover {
  background: rgba(255, 255, 255, 0.12);
}
.k-promo__msg {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--k-warning);
}
.k-promo__msg svg {
  width: 13px;
  height: 13px;
}
.k-os__cta {
  margin-top: 1.25rem;
}
.k-cta-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 54px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  border: 2px solid var(--k-blue);
  background-image: var(--k-grad);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--k-sh-cta);
  transition:
    box-shadow 0.2s ease,
    transform 0.1s ease;
}
.k-cta-btn:hover {
  box-shadow: var(--k-sh-ctah);
}
.k-cta-btn:active {
  transform: scale(0.99);
}
.k-cta-btn svg {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}
.k-cta-btn svg[width="20"] {
  width: 20px;
  height: 20px;
}
.k-cta-btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  opacity: 0.6;
  animation: k-shimmer 3s linear infinite;
}
.k-cta-sub {
  margin-top: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 0.375rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--k-muted);
}
.k-cta-sub svg {
  width: 13px;
  height: 13px;
  color: var(--k-success);
  vertical-align: -2px;
}
.k-os__billing {
  margin-top: 0.75rem;
  border-radius: var(--k-r);
  background: rgba(9, 89, 205, 0.06);
  padding: 0.625rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-os__billing b {
  color: #fff;
  font-weight: 600;
}
.k-os__methods {
  margin-top: 1rem;
}
.k-os__methods-t {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--k-muted);
}
.k-os__methods-row {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.k-chip {
  display: inline-flex;
  height: 1.75rem;
  align-items: center;
  border-radius: var(--k-r);
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.k-chip--visa {
  background: #1a1f71;
  color: #fff;
  font-style: italic;
}
.k-chip--amex {
  background: #006fcf;
  color: #fff;
  font-size: 0.6rem;
}
.k-chip--applepay {
  background: #000;
  color: #fff;
}
.k-chip--googlepay {
  background: #fff;
  color: var(--k-ink);
  border: 1px solid var(--k-line2);
}
.k-chip--mastercard {
  width: 2.75rem;
  justify-content: center;
  background: #fff;
}
.k-chip--mastercard .k-mc {
  position: relative;
  height: 1.25rem;
  width: 2rem;
  display: inline-flex;
}
.k-chip--mastercard .k-mc span {
  position: absolute;
  top: 0;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
}
.k-chip--mastercard .k-mc span:first-child {
  left: 0;
  background: #eb001b;
}
.k-chip--mastercard .k-mc span:last-child {
  left: 0.75rem;
  background: #f79e1b;
  mix-blend-mode: multiply;
}

/* ===========================================================================
   TRUST STRIP
   =========================================================================== */
.k-trust {
  border-top: 1px solid rgba(30, 58, 110, 0.4);
  border-bottom: 1px solid rgba(30, 58, 110, 0.4);
  background: rgba(7, 28, 86, 0.4);
}
.k-trust__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}
@media (min-width: 640px) {
  .k-trust__inner {
    padding: 1.25rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-trust__inner {
    padding: 1.25rem 2rem;
  }
}
.k-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .k-trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.k-trust__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.3);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.625rem 0.75rem;
}
.k-trust__ico {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  background: rgba(9, 89, 205, 0.15);
  color: var(--k-light);
}
.k-trust__ico svg {
  width: 18px;
  height: 18px;
}
.k-trust__item span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================================================================
   FEATURE GRID
   =========================================================================== */
.k-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .k-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .k-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.k-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(13, 33, 71, 0.6);
  padding: 1.5rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.k-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 89, 205, 0.5);
  box-shadow: var(--k-sh-cardh);
}
/* Resting box is transparent to match Bolt: its bg-klox-gradient/15 is a no-op
   (Tailwind can't apply an opacity slash to a background-image utility). Only
   the hover state paints the gradient. */
.k-feature__ico {
  position: relative;
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r-lg);
  background: transparent;
  color: var(--k-light);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.k-feature:hover .k-feature__ico {
  background-image: var(--k-grad);
  color: #fff;
}
.k-feature__ico svg {
  width: 22px;
  height: 22px;
}
.k-feature__glow {
  position: absolute;
  right: -2rem;
  top: -2rem;
  height: 6rem;
  width: 6rem;
  border-radius: 9999px;
  background: rgba(9, 89, 205, 0);
  filter: blur(40px);
  pointer-events: none;
  transition: background 0.2s ease;
}
.k-feature:hover .k-feature__glow {
  background: rgba(9, 89, 205, 0.2);
}
.k-feature h3 {
  position: relative;
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.k-feature p {
  position: relative;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}

/* ===========================================================================
   PLATFORM COMPATIBILITY
   =========================================================================== */
.k-compat {
  border-top: 1px solid rgba(30, 58, 110, 0.4);
  border-bottom: 1px solid rgba(30, 58, 110, 0.4);
  background-image: var(--k-mesh);
}
/* Original compat section is py-16 sm:py-20 with no lg step. */
@media (min-width: 1024px) {
  .k-section.k-compat {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.k-compat__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .k-compat__list {
    gap: 1rem;
  }
}
.k-compat__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--k-r);
  border: 2px solid rgba(42, 79, 143, 0.5);
  background: rgba(13, 33, 71, 0.6);
  padding: 0.875rem 1.25rem;
  transition: border-color 0.2s ease;
}
.k-compat__item:hover {
  border-color: rgba(9, 89, 205, 0.6);
}
.k-compat__item svg {
  width: 22px;
  height: 22px;
  color: var(--k-light);
}
.k-compat__item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.k-compat__more {
  margin-top: 2rem;
  text-align: center;
}

/* modal */
.k-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(10, 22, 40, 0.7);
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .k-modal {
    align-items: center;
  }
}
.k-modal__panel {
  width: 100%;
  max-width: 28rem;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: var(--k-ink2);
  padding: 1.5rem;
  box-shadow: var(--k-sh-cardh);
}
@media (min-width: 640px) {
  .k-modal__panel {
    max-width: 32rem;
  }
}
.k-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.k-modal__head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.k-modal__close {
  border: 0;
  background: none;
  color: var(--k-muted);
  padding: 0.5rem;
  margin: -0.25rem -0.5rem 0 0;
  border-radius: var(--k-r);
}
.k-modal__close:hover {
  color: #fff;
}
.k-modal__close svg {
  width: 20px;
  height: 20px;
}
.k-modal__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .k-modal__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.k-modal__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.625rem 0.875rem;
}
.k-modal__item svg {
  width: 18px;
  height: 18px;
  color: var(--k-light);
}
.k-modal__item span:nth-child(2) {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.k-modal__item .k-modal__state {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--k-success);
}
.k-modal__fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--k-muted);
}

/* ===========================================================================
   HOW IT WORKS
   =========================================================================== */
.k-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .k-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.k-step {
  position: relative;
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(13, 33, 71, 0.6);
  padding: 1.5rem;
}
.k-step__n {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgb(255 255 255 / 30%);
  line-height: 1;
}
.k-step__ico {
  position: relative;
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r-lg);
  background-image: var(--k-grad);
  color: #fff;
  box-shadow: var(--k-sh-cta);
}
.k-step__ico svg {
  width: 22px;
  height: 22px;
}
.k-step h3 {
  position: relative;
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.k-step p {
  position: relative;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-step__line {
  display: none;
}
@media (min-width: 640px) {
  .k-step:not(:last-child) .k-step__line {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    height: 1px;
    width: 3rem;
    transform: translateX(100%);
    pointer-events: none;
    background: linear-gradient(to right, var(--k-blue), transparent);
  }
}
.k-steps__note {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}

/* ===========================================================================
   GUARANTEE
   =========================================================================== */
.k-guarantee {
  position: relative;
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(9, 89, 205, 0.3);
  background-image: var(--k-navy-grad);
  padding: 1.5rem;
  box-shadow: var(--k-sh-cardh);
}
@media (min-width: 640px) {
  .k-guarantee {
    padding: 2.5rem;
  }
}
.k-guarantee__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .k-guarantee__grid {
    grid-template-columns: auto 1fr;
  }
}
.k-guarantee__seal {
  display: flex;
  justify-content: center;
}
.k-seal {
  position: relative;
  display: inline-flex;
  height: 7rem;
  width: 7rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px dashed rgba(61, 124, 230, 0.4);
  background: rgba(9, 89, 205, 0.1);
  color: var(--k-light);
}
.k-seal svg {
  width: 48px;
  height: 48px;
}
.k-seal__ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border-top: 2px solid rgba(61, 124, 230, 0.6);
  animation: k-spin 20s linear infinite;
}
.k-seal__days {
  position: absolute;
  bottom: -0.25rem;
  border-radius: var(--k-r);
  background: var(--k-ink);
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--k-light);
  box-shadow: var(--k-sh-card);
}
.k-guarantee h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-guarantee h2 {
    font-size: 2.25rem;
  }
}
.k-guarantee__lede {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--k-muted);
}
@media (min-width: 640px) {
  .k-guarantee__lede {
    font-size: 1.125rem;
  }
}
.k-guarantee__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .k-guarantee__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.k-guarantee__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.k-guarantee__list svg {
  width: 16px;
  height: 16px;
  color: var(--k-success);
  flex: none;
}
.k-guarantee__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.k-guarantee__fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--k-muted);
}

/* ===========================================================================
   FAQ
   =========================================================================== */
.k-faq__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.k-faq__item {
  overflow: hidden;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(13, 33, 71, 0.4);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.k-faq__item.is-open {
  border-color: rgba(9, 89, 205, 0.5);
  background: rgba(13, 33, 71, 0.8);
}
.k-faq__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: none;
  padding: 1rem 1.25rem;
  text-align: left;
}
.k-faq__q span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 640px) {
  .k-faq__q span {
    font-size: 1rem;
  }
}
.k-faq__q svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--k-light);
  transition: transform 0.2s ease;
}
.k-faq__item.is-open .k-faq__q svg {
  transform: rotate(180deg);
}
.k-faq__a {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-faq__a p + p {
  margin-top: 0.75rem;
}
.k-faq__a ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.k-faq__a b {
  color: #fff;
}
.k-faq__plans {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.k-faq__plan {
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.3);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 0.875rem;
}
.k-faq__plan p {
  margin: 0;
}
.k-faq__plan p + p {
  margin-top: 0.25rem;
}
.k-faq__plan p:first-child {
  font-weight: 600;
  color: #fff;
}
.k-faq__plan p:nth-child(2) {
  color: rgba(255, 255, 255, 0.9);
}
.k-faq__plan .k-faq__plan-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--k-light);
}

/* ===========================================================================
   FINAL CTA
   =========================================================================== */
.k-final {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .k-final {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.k-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.k-final__bg .k-mesh-layer {
  position: absolute;
  inset: 0;
  background-image: var(--k-mesh);
  opacity: 0.6;
}
.k-final__topline {
  position: absolute;
  left: 50%;
  top: 0;
  height: 1px;
  width: 75%;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    transparent,
    rgba(61, 124, 230, 0.5),
    transparent
  );
}
.k-final__shimmer {
  position: absolute;
  inset: 0;
  border-radius: var(--k-r-xl);
  opacity: 0.4;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(61, 124, 230, 0.35) 50%,
    transparent 60%
  );
  background-size: 200% 200%;
  animation: k-shimmer 4s linear infinite;
}
.k-final__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(9, 89, 205, 0.35);
  background-image: var(--k-navy-grad);
  box-shadow: var(--k-sh-cardh);
}
.k-final__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .k-final__grid {
    padding: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .k-final__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    padding: 3rem;
  }
}
.k-final__left {
  text-align: center;
}
@media (min-width: 1024px) {
  .k-final__left {
    text-align: left;
  }
}
.k-final__live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--k-success);
}
.k-final__live-dot {
  position: relative;
  display: inline-flex;
  height: 8px;
  width: 8px;
}
.k-final__live-dot span:first-child {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--k-success);
  animation: k-ping 2.5s ease-out infinite;
}
.k-final__live-dot span:last-child {
  position: relative;
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: var(--k-success);
}
.k-final h2 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
@media (min-width: 640px) {
  .k-final h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .k-final h2 {
    font-size: 2.75rem;
  }
}
.k-final__lede {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--k-muted);
}
@media (min-width: 640px) {
  .k-final__lede {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .k-final__lede {
    margin-left: 0;
  }
}
.k-final__points {
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  max-width: 28rem;
}
@media (min-width: 640px) {
  .k-final__points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .k-final__points {
    margin-left: 0;
    max-width: none;
  }
}
.k-final__point {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(10, 22, 40, 0.4);
  padding: 0.625rem 0.875rem;
  text-align: left;
}
/* Transparent box to match Bolt (bg-klox-gradient/20 is a no-op there). */
.k-final__point-ico {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  background: transparent;
  color: var(--k-light);
}
.k-final__point-ico svg {
  width: 16px;
  height: 16px;
}
.k-final__point span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.k-final__risk {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(61, 124, 230, 0.3);
  background: rgba(9, 89, 205, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--k-light);
}
.k-final__risk svg {
  width: 15px;
  height: 15px;
}
/* order card */
.k-ordercard {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 28rem;
}
@media (min-width: 1024px) {
  .k-ordercard {
    margin: 0;
    max-width: none;
  }
}
.k-ordercard__orbit {
  position: absolute;
  inset: -1rem;
  opacity: 0.3;
  pointer-events: none;
  animation: k-spin 20s linear infinite;
}
.k-ordercard__orbit svg {
  width: 100%;
  height: 100%;
  display: block;
}
.k-ordercard__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--k-r-xl);
  border: 2px solid rgba(61, 124, 230, 0.4);
  background: rgba(10, 22, 40, 0.9);
  box-shadow: var(--k-sh-glow);
}
.k-ordercard__head {
  border-bottom: 1px solid rgba(42, 79, 143, 0.4);
  background-image: var(--k-grad);
  padding: 1rem 1.25rem;
}
.k-ordercard__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.k-ordercard__badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.k-ordercard__spark {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.k-ordercard__spark svg {
  width: 20px;
  height: 20px;
}
.k-ordercard__kick {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}
.k-ordercard__plan {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.k-ordercard__body {
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .k-ordercard__body {
    padding: 1.5rem;
  }
}
.k-ordercard__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(42, 79, 143, 0.3);
  padding-bottom: 1.25rem;
}
.k-ordercard__price-k {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--k-muted);
}
.k-ordercard__price {
  margin-top: 0.25rem;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.k-ordercard__mo {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--k-light);
}
.k-ordercard__save {
  border-radius: var(--k-r-lg);
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem 0.75rem;
  text-align: center;
}
.k-ordercard__save-k {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--k-success);
}
.k-ordercard__save-v {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--k-success);
}
.k-ordercard__dl {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.k-ordercard__dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.k-ordercard__dl dt {
  color: var(--k-muted);
}
.k-ordercard__dl dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
}
.k-ordercard__cta {
  margin-top: 1.5rem;
}
.k-ordercard__sub {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-ordercard__sub svg {
  width: 13px;
  height: 13px;
  color: var(--k-success);
  vertical-align: -2px;
}

/* ===========================================================================
   EMAIL CAPTURE
   =========================================================================== */
.k-email {
  border-top: 1px solid rgba(30, 58, 110, 0.4);
  background: rgba(7, 28, 86, 0.5);
  padding: 3.5rem 0;
}
@media (min-width: 640px) {
  .k-email {
    padding: 4rem 0;
  }
}
.k-email__card {
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(13, 33, 71, 0.6);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .k-email__card {
    padding: 2rem;
  }
}
.k-email__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .k-email__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
}
.k-email__ico {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  border: 1px solid rgba(61, 124, 230, 0.3);
  background: rgba(9, 89, 205, 0.15);
  color: var(--k-light);
}
.k-email__ico svg {
  width: 20px;
  height: 20px;
}
.k-email__body {
  flex: 1;
}
.k-email__body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .k-email__body h2 {
    font-size: 1.5rem;
  }
}
.k-email__body p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}
@media (min-width: 640px) {
  .k-email__body p {
    font-size: 1rem;
  }
}
.k-email__form {
  margin-top: 1.25rem;
}
.k-email__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .k-email__fields {
    flex-direction: row;
  }
}
.k-email__input {
  height: 3rem;
  flex: 1;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(10, 22, 40, 0.6);
  padding: 0 1rem;
  font-size: 0.875rem;
  color: #fff;
}
.k-email__input::placeholder {
  color: rgba(139, 165, 204, 0.7);
}
.k-email__submit {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--k-r);
  border: 2px solid var(--k-blue);
  background-image: var(--k-grad);
  padding: 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--k-sh-cta);
}
.k-email__submit svg {
  width: 16px;
  height: 16px;
}
.k-email__fine {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-email__reach {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--k-light);
}
.k-email__reach-ico {
  flex: none;
  margin-top: 0.125rem;
  color: #25d366;
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.k-footer {
  position: relative;
  border-top: 1px solid rgba(30, 58, 110, 0.4);
  background: #111827;
}
.k-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}
@media (min-width: 640px) {
  .k-footer__inner {
    padding: 2.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .k-footer__inner {
    padding: 3rem 2rem;
  }
}
.k-footer__essential {
  margin-bottom: 2.5rem;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .k-footer__essential {
    padding: 1.25rem;
  }
}
.k-footer__essential-t {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--k-muted);
}
.k-footer__essential-t svg {
  width: 16px;
  height: 16px;
}
.k-footer__essential ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.25rem;
}
.k-footer__essential li {
  display: inline-flex;
  align-items: center;
}
.k-footer__essential li + li::before {
  content: "·";
  margin: 0 0.5rem;
  color: var(--k-line2);
}
.k-footer__essential a {
  font-size: 0.875rem;
  color: var(--k-muted);
  transition: color 0.2s ease;
}
.k-footer__essential a:hover {
  color: #fff;
}
.k-footer__essential svg.k-ext {
  width: 12px;
  height: 12px;
  margin-left: 0.25rem;
  color: var(--k-muted);
  vertical-align: -1px;
}
.k-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .k-footer__top {
    grid-template-columns: 1.15fr 2.85fr;
    gap: 3rem;
  }
}
.k-footer__brand p {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-footer__contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--k-muted);
}
.k-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.k-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--k-muted);
}
.k-footer__contact a:hover {
  color: #fff;
}
.k-footer__contact svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--k-light);
  margin-top: 2px;
}
.k-footer__social {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.k-footer__social a {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--k-r);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(255, 255, 255, 0.04);
  color: var(--k-muted);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.k-footer__social a:hover {
  color: #fff;
  border-color: rgba(9, 89, 205, 0.5);
}
.k-footer__social svg {
  width: 16px;
  height: 16px;
}
.k-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) {
  .k-footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .k-footer__cols {
    grid-template-columns: repeat(5, 1fr);
  }
}
.k-footer__col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
.k-footer__col ul {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.k-footer__col a {
  font-size: 0.875rem;
  color: var(--k-muted);
  transition: color 0.2s ease;
}
.k-footer__col a:hover {
  color: #fff;
}
.k-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.k-footer__bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .k-footer__bottom-inner {
    padding: 1.5rem;
  }
}
.k-footer__copy {
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-footer__copy a {
  color: var(--k-muted);
  transition: color 0.2s ease;
}
.k-footer__copy a:hover {
  color: #fff;
}
.k-footer__legal {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.25rem;
}
.k-footer__legal li {
  display: inline-flex;
  align-items: center;
}
.k-footer__legal li + li::before {
  content: "·";
  margin: 0 0.5rem;
  color: var(--k-line2);
}
.k-footer__legal a {
  font-size: 0.75rem;
  color: var(--k-muted);
  transition: color 0.2s ease;
}
.k-footer__legal a:hover {
  color: #fff;
}

/* ===========================================================================
   MOBILE STICKY CHECKOUT BAR
   =========================================================================== */
.k-sticky {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid rgba(42, 79, 143, 0.5);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.k-sticky.is-visible {
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .k-sticky {
    display: none;
  }
}
.k-sticky__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}
.k-sticky__info {
  min-width: 0;
  flex: 1;
}
.k-sticky__name {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--k-muted);
}
.k-sticky__name svg {
  width: 12px;
  height: 12px;
  color: var(--k-success);
}
.k-sticky__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.k-sticky__price b {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.k-sticky__price span {
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-sticky__btn {
  display: inline-flex;
  height: 3rem;
  flex: none;
  align-items: center;
  gap: 0.375rem;
  border-radius: var(--k-r);
  background-image: var(--k-grad);
  padding: 0 1.25rem;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--k-sh-cta);
  border: 0;
}
.k-sticky__btn svg {
  width: 18px;
  height: 18px;
}
.k-spacer-lg {
  height: 5rem;
}
@media (min-width: 1024px) {
  .k-spacer-lg {
    display: none;
  }
}

/* ===========================================================================
   MOTION
   =========================================================================== */
@keyframes k-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes k-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes k-ping {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes k-pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes k-fade-up {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes k-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.k-anim-fade-up {
  animation: k-fade-up 0.6s ease-out both;
}
.k-anim-fade-in {
  animation: k-fade-in 0.5s ease-out both;
}
.k-dot {
  animation: k-pulse-dot 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .k-body *,
  .k-body *::before,
  .k-body *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================================================
   PAYMENT PROVIDER MARKS & CHIPS (Stripe / Crypto / SSLCommerz)
   Text pills — no third-party logo files, matching the card-mark approach.
   =========================================================================== */
/* provider marks hold a real brand logo on a white pill */
.k-mark--logo {
  background: #fff;
  padding: 0 0.875rem;
}
.k-mark__img {
  display: block;
  width: auto;
  height: 1.4rem;
  max-width: 5.5rem;
  object-fit: contain;
}
.k-mark__img--crypto {
  height: 1.6rem;
}
.k-mark__img--sslcommerz {
  height: 1rem;
}
.k-chip--stripe {
  background: #635bff;
  color: #fff;
}
.k-chip--crypto {
  background: #f7931a;
  color: #1a1200;
}
.k-chip--sslcommerz {
  background: #0b8a43;
  color: #fff;
  font-size: 0.625rem;
}

/* ===========================================================================
   CHECKOUT MODAL (email verify → payment method)
   Same visual language as .k-modal, but the backdrop never dismisses it
   (klox.js) — only the cross, the footer Close button and Escape do.
   =========================================================================== */
.k-cmodal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(10, 22, 40, 0.7);
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 640px) {
  .k-cmodal {
    align-items: center;
  }
}
.k-cmodal__panel {
  width: 100%;
  max-width: 30rem;
  margin: auto;
  border-radius: var(--k-r-xl);
  border: 1px solid rgba(42, 79, 143, 0.5);
  background: var(--k-ink2);
  padding: 1.5rem;
  box-shadow: var(--k-sh-cardh);
  animation: k-cmodal-in 0.2s ease-out both;
}
@keyframes k-cmodal-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}
/* fade + slide out — JS adds .is-closing, then unmounts on animationend */
.k-cmodal.is-closing {
  animation: k-cmodal-overlay-out 0.2s ease forwards;
}
.k-cmodal.is-closing .k-cmodal__panel {
  animation: k-cmodal-panel-out 0.2s ease forwards;
}
@keyframes k-cmodal-overlay-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes k-cmodal-panel-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}
.k-cmodal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.k-cmodal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--k-light);
}
.k-cmodal__title {
  margin-top: 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.k-cmodal__close {
  flex: none;
  border: 0;
  background: none;
  color: var(--k-muted);
  padding: 0.5rem;
  margin: -0.25rem -0.5rem 0 0;
  border-radius: var(--k-r);
  cursor: pointer;
}
.k-cmodal__close:hover {
  color: #fff;
}
.k-cmodal__recap {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  border-radius: var(--k-r-lg);
  border: 1px solid rgba(42, 79, 143, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 0.875rem;
}
.k-cmodal__recap-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
.k-cmodal__recap-amt {
  font-size: 0.8125rem;
  color: var(--k-muted);
}
.k-cmodal__recap-amt b {
  color: #fff;
  font-size: 0.9375rem;
}
.k-cmodal__step {
  margin-top: 1.25rem;
}
.k-cmodal__step .k-fieldlabel {
  margin-bottom: 0.5rem;
}
.k-cmodal__input {
  width: 100%;
  height: 3rem;
  border-radius: var(--k-r);
  border: 1px solid var(--k-line2);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 0.875rem;
  color: #fff;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.k-cmodal__input::placeholder {
  color: var(--k-muted2);
}
.k-cmodal__input:focus {
  outline: none;
  border-color: var(--k-blue);
  box-shadow: 0 0 0 3px rgba(9, 89, 205, 0.25);
}
.k-cmodal__go {
  margin-top: 1rem;
}
.k-cmodal__msg {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--k-error);
}
.k-cmodal__fine {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--k-muted);
}
.k-cmodal__verified {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: var(--k-r);
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: #d1fae5;
}
.k-cmodal__verified svg {
  color: var(--k-success);
  flex: none;
}
.k-cmodal__verified b {
  color: #fff;
  font-weight: 600;
}
/* --- OTP step --- */
.k-cmodal__otp-sub {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--k-muted);
}
.k-cmodal__otp-sub b {
  color: #fff;
  font-weight: 600;
}
.k-cmodal__demo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  border-radius: var(--k-r);
  border: 1px dashed rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.08);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #fcd9a1;
}
.k-cmodal__demo svg {
  flex: none;
  color: var(--k-warning);
}
.k-cmodal__demo b {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.k-otp {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
}
.k-otp__box {
  width: 100%;
  min-width: 0;
  height: 3.25rem;
  border-radius: var(--k-r);
  border: 1px solid var(--k-line2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.k-otp__box:focus {
  outline: none;
  border-color: var(--k-blue);
  box-shadow: 0 0 0 3px rgba(9, 89, 205, 0.25);
}
.k-cmodal__resend {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--k-muted);
}
.k-cmodal__resend-btn {
  border: 0;
  background: none;
  color: var(--k-light);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.k-cmodal__resend-btn:disabled {
  color: var(--k-muted2);
  cursor: default;
  text-decoration: none;
}
.k-cmodal__back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.375rem;
  margin: 0.75rem auto 0;
  border: 0;
  background: none;
  color: var(--k-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.k-cmodal__back:hover {
  color: #fff;
}
.k-paymethods {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.k-paymethod {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  border-radius: var(--k-r-lg);
  border: 1px solid var(--k-line2);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.875rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.k-paymethod input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.k-paymethod:hover {
  border-color: var(--k-light);
}
.k-paymethod__radio {
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--k-line2);
  transition: all 0.2s ease;
}
.k-paymethod__radio svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
}
.k-paymethod__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
/* real brand logo, right-aligned (self-hosted /assets/img/pay-*) */
.k-paymethod__logo {
  flex: none;
  width: auto;
  height: 1.5rem;
  max-width: 6.75rem;
  margin-left: 0.5rem;
  object-fit: contain;
}
.k-paymethod__logo--crypto {
  height: 1.75rem;
}
.k-paymethod__logo--sslcommerz {
  height: 1.15rem;
}
.k-paymethod__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
.k-paymethod__desc {
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-paymethod.is-selected {
  border-color: var(--k-blue);
  background: rgba(9, 89, 205, 0.1);
  box-shadow: 0 0 20px rgba(9, 89, 205, 0.2);
}
.k-paymethod.is-selected .k-paymethod__radio {
  border-color: var(--k-blue);
  background-image: var(--k-grad);
}
.k-paymethod.is-selected .k-paymethod__radio svg {
  opacity: 1;
}
.k-cmodal__foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 79, 143, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.k-cmodal__closebtn {
  border: 1px solid var(--k-line2);
  background: none;
  color: var(--k-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--k-r);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.k-cmodal__closebtn:hover {
  color: #fff;
  border-color: var(--k-light);
}
.k-cmodal__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--k-muted);
}
.k-cmodal__secure svg {
  color: var(--k-success);
}

/* ── Success / confirmation page ─────────────────────────────────────────────
   Styled to match the landing: dark navy hero, elevated card, animated seal. */
.k-success {
  display: flex;
  align-items: center;
  min-height: 72vh;
  padding: 4rem 0;
}
.k-success__inner {
  position: relative;
  z-index: 1;
}
.k-success__card {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
}
.k-success__seal {
  display: flex;
  margin: 0 auto 1.25rem;
  color: var(--k-success);
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
}
.k-success__seal .k-seal__ring {
  border-top-color: rgba(16, 185, 129, 0.6);
}
.k-success__badge {
  margin-bottom: 1rem;
}
.k-success__card h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--k-white);
  margin-bottom: 0.5rem;
}
.k-success__lede {
  color: var(--k-muted);
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto;
}
.k-success__ref {
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 22rem;
  border: 1px solid var(--k-line);
  border-radius: var(--k-r-lg);
  background: rgba(7, 28, 86, 0.5);
  padding: 0.875rem 1rem;
}
.k-success__ref-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--k-muted2);
}
.k-success__ref-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--k-light);
}
.k-success__hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--k-muted2);
}
.k-success__next {
  margin: 1.75rem auto 0;
  max-width: 22rem;
  display: grid;
  gap: 0.625rem;
  text-align: left;
}
.k-success__next li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--k-muted);
}
.k-success__next li svg {
  flex-shrink: 0;
  color: var(--k-light);
}
.k-success__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.k-success__secure {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--k-muted2);
}
.k-success__secure svg {
  color: var(--k-success);
}
