/* ===== BASE RESET & VARIABLES ===== */
:root {
  --ink: #0B1220;
  --ink-soft: #4B5872;
  --ink-dim: #8994A8;
  --paper: #FFFFFF;
  --paper-2: #F6F8FC;
  --panel-dark: #0C1526;
  --line: #E4E9F2;
  --line-soft: #EEF1F7;
  --blue: #0069ff;
  --blue-deep: #0069ff;
  --blue-tint: #EAF0FE;
  --cyan: #0069ff;
  --grad-logo: conic-gradient(from 200deg, #F2994A, #EB5B8C, #8B5CF6, #2F6BFF, #12B5A6, #F2994A);
  --grad: linear-gradient(90deg, var(--blue), var(--cyan));
  --radius: 16px;
  --maxw: 1180px;
  --nav-height: 68px;
  --section-spacing: clamp(48px, 8vw, 84px);
  --container-padding: clamp(16px, 4vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
.display {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.015em;
  margin: 0;
  word-break: break-word;
}

.mono {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

/* ===== SUBNAV ===== */
.subnav-shell {
  position: sticky;
  top: var(--nav-height);
  z-index: 45;
  display: flex;
  justify-content: center;
  padding: 12px 0 18px;
  pointer-events: none;
  background: linear-gradient(var(--paper) 60%, transparent);
  width: 100%;
  overflow-x: auto;
}

.subnav {
  pointer-events: auto;
  display: flex;
  gap: 3px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 6px;
  border-radius: 999px;
  box-shadow: 0 12px 26px -16px rgba(15, 23, 42, .18);
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 95vw;
  margin-top:20px;
}

.subnav::-webkit-scrollbar {
  display: none;
}

.subnav a {
  font-size: clamp(11px, 1.4vw, 13.5px);
  font-weight: 600;
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.subnav a.active {
  background: var(--blue);
  color: #fff;
}
.subnav a:hover:not(.active) {
  color: var(--ink);
}

@media (max-width: 600px) {
  .subnav {
    gap: 2px;
    padding: 3px 4px;
  }
  .subnav a {
    padding: 5px 10px;
    font-size: 10.5px;
  }
}

/* ===== STICKY PRICING RAIL ===== */
.pricing-rail {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  box-shadow: 0 16px 34px -12px rgba(11, 18, 32, .4);
  opacity: 0;
  transform: translateY(14px) scale(.96);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.pricing-rail.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pricing-rail .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex: none;
  box-shadow: 0 0 0 4px rgba(18, 181, 166, .22);
}

.pricing-rail span {
  font-size: clamp(10px, 1.2vw, 12.5px);
  font-weight: 500;
  color: #B9C2D6;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

.pricing-rail a {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 13px);
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .pricing-rail {
    right: 10px;
    bottom: 10px;
    padding: 6px 6px 6px 10px;
    gap: 6px;
  }
  .pricing-rail span {
    font-size: 9px;
  }
  .pricing-rail a {
    font-size: 9.5px;
    padding: 5px 10px;
  }
  .pricing-rail .live {
    width: 5px;
    height: 5px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(16px, 3vw, 24px) 0 clamp(20px, 4vw, 30px);
  overflow: hidden;
  background: var(--paper);
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-ctas .btn {
  min-height: 52px;
  min-width: 102px;
  padding: 0 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.014em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-ctas .btn-primary {
  background: linear-gradient(135deg, #1f6fff 0%, #005ef5 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 105, 255, 0.18);
}

.hero-ctas .btn-primary:hover {
  background: linear-gradient(135deg, #1a66ea 0%, #0055dd 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 105, 255, 0.26);
}

.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.why-grid .bcard.full .btn,
.guarantee .btn-primary {
  background: #fff !important;
  color: var(--blue-deep) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);

  padding: 12px 24px;
  margin: 16px 0;
  border-radius: 12px;
}

.why-grid .bcard.full .btn:hover,
.guarantee .btn-primary:hover {
  background: #f8fbff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(11px, 1.2vw, 12.5px);
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--blue-tint);
  border: 1px solid #D6E2FE;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

.hero h1 {
  font-size: clamp(28px, 5.5vw, 50px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.h1-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.lede-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lede-list li {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  padding-left: 28px;
  position: relative;
}

.lede-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.lede-list li:nth-child(2)::before {
  background: var(--cyan);
}
.lede-list li:nth-child(3)::before {
  background: var(--blue-deep);
}

.hero p.sub {
  font-size: clamp(12.5px, 1.3vw, 13.5px);
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 24px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-fine {
  font-size: clamp(9px, 1vw, 12.5px);
  color: var(--ink-dim);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  white-space: normal;
  word-break: break-word;
}
  .plan-feature-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
  }

  .plan-feature-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .plan-feature-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 17, 40, 0.72);
    backdrop-filter: blur(8px);
  }

  .plan-feature-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(480px, calc(100vw - 26px));
    max-height: min(74vh, 580px);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid rgba(221, 229, 239, 0.95);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
    padding: 16px 18px 14px;
    color: #0d223d;
    -webkit-overflow-scrolling: touch;
  }

  .plan-feature-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e6edf7;
    background: #f6f8fb;
    color: #0d223d;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-weight: 300;
  }

  .plan-feature-modal__close:hover {
    background: #eef3fb;
  }

  .plan-feature-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0069ff;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .plan-feature-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 4px;
  }

  .plan-feature-modal__header h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: #0d223d;
    letter-spacing: -0.04em;
  }

  .plan-feature-modal__price {
    min-width: 90px;
    text-align: right;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: #000000;
  }

  .plan-feature-modal__desc {
    margin: 0 0 12px;
    color: rgba(13, 34, 61, 0.76);
    line-height: 1.45;
    font-size: 0.9rem;
  }

  .plan-feature-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }

  .plan-feature-modal__grid div {
    display: block;
    padding: 0 0 4px;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .plan-feature-modal__grid span {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #677b98;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .plan-feature-modal__grid strong {
    display: block;
    font-size: 0.96rem;
    color: #0d223d;
    font-weight: 800;
    line-height: 1.35;
  }

  .plan-feature-modal__list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 6px;
  }

  .plan-feature-modal__list li {
    position: relative;
    padding-left: 16px;
    color: #243b57;
    line-height: 1.3;
    font-size: 0.9rem;
  }

  .plan-feature-modal__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0069ff;
    box-shadow: 0 0 0 4px rgba(0, 105, 255, 0.12);
  }

  .plan-feature-modal__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .plan-feature-modal__actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #0069ff !important;
    border: 1px solid #0069ff !important;
    color: #fff !important;
    box-shadow: none;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
  }

  .plan-feature-modal__actions .btn-primary:hover {
    background: #005ae1 !important;
    border-color: #005ae1 !important;
  }

  .plan-feature-modal__cancel {
    min-width: 120px;
    min-height: 48px;
    background: #fff;
    color: #0d223d;
    border: 1px solid #dfe7f4;
    border-radius: 8px;
    font-weight: 600;
  }

  .plan-feature-modal__cancel:hover {
    background: #f6f8fb;
  }

  body.modal-open {
    overflow: hidden;
  }

  @media (max-width: 560px) {
    .plan-feature-modal__header {
      align-items: flex-start;
      flex-direction: column;
    }

    .plan-feature-modal__price {
      text-align: left;
    }

    .plan-feature-modal__grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 320px) {
    .plan-feature-modal__dialog {
      width: calc(100vw - 8px);
      max-height: 76vh;
      padding: 14px 12px 12px;
      border-radius: 14px;
    }

    .plan-feature-modal__close {
      top: 8px;
      right: 8px;
      width: 30px;
      height: 30px;
      font-size: 1.5rem;
    }

    .plan-feature-modal__eyebrow {
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }

    .plan-feature-modal__header {
      gap: 8px;
      margin-bottom: 8px;
    }

    .plan-feature-modal__header h3 {
      font-size: 1.3rem;
      line-height: 1.2;
    }

    .plan-feature-modal__price {
      font-size: 1.2rem;
      min-width: auto;
    }

    .plan-feature-modal__desc {
      font-size: 0.84rem;
      margin-bottom: 12px;
    }

    .plan-feature-modal__grid {
      gap: 6px;
      margin-bottom: 10px;
    }

    .plan-feature-modal__grid span {
      font-size: 0.57rem;
      margin-bottom: 2px;
    }

    .plan-feature-modal__grid strong {
      font-size: 0.92rem;
    }

    .plan-feature-modal__list {
      gap: 6px;
      margin-bottom: 12px;
    }

    .plan-feature-modal__list li {
      font-size: 0.8rem;
      line-height: 1.38;
    }

    .plan-feature-modal__actions {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .plan-feature-modal__actions .btn-primary,
    .plan-feature-modal__cancel {
      width: 100%;
      min-height: 42px;
      font-size: 0.95rem;
    }
  }
/* ===== HERO VISUAL ===== */
.iso-visual {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  padding: 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(260px, 40vw, 420px);
}

.iso-visual-bg {
  position: absolute;
  inset: -6% -8%;
  z-index: 0;
  background: radial-gradient(clamp(200px, 40vw, 360px) clamp(150px, 30vw, 260px) at 55% 60%, rgba(29, 78, 216, .10), transparent 72%);
}

.iso-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: isoFloat 6s ease-in-out infinite;
}

.iso-stage svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes isoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-shot-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  animation: isoFloat 6s ease-in-out infinite;
}

.hero-shot-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .hero-shot-card {
    max-width: clamp(280px, 60vw, 380px);
  }
  .iso-visual {
    min-height: clamp(200px, 35vw, 340px);
  }
}

@media (max-width: 480px) {
  .iso-visual {
    min-height: 180px;
    padding: 8px 2px;
  }
  .hero-shot-card {
    max-width: 220px;
  }
}

/* ===== HERO FX OVERLAY ===== */
.hero-shot-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hs-edge {
  fill: none;
  stroke: transparent;
}

.hs-packet {
  fill: #1D4ED8;
  filter: drop-shadow(0 0 4px rgba(29, 78, 216, .65));
}

.hs-packet.soft {
  fill: #5EE6C8;
  opacity: .85;
  filter: drop-shadow(0 0 4px rgba(94, 230, 200, .6));
}

.hs-node-ring {
  fill: none;
  stroke: #1D4ED8;
  stroke-width: 2;
  opacity: 0;
  animation: hsRingPulse 3s ease-out infinite;
}

@keyframes hsRingPulse {
  0% {
    opacity: .5;
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(.8);
  }
  100% {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(1.25);
  }
}

/* ===== ISO CHIPS ===== */
.iso-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px -14px rgba(15, 23, 42, .28);
  padding: 6px 10px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(9px, 1vw, 11px);
  color: var(--ink-soft);
  z-index: 3;
  animation: isoChipFloat 5s ease-in-out infinite;
}

.iso-chip .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #12925B;
  flex: none;
}

.iso-chip.dark {
  background: var(--panel-dark);
  border-color: #26314E;
  color: #AEB8D0;
}

.iso-chip.dark .d {
  background: #5EE6C8;
}

.iso-chip.k1 {
  bottom: 4%;
  left: -4%;
  animation-delay: .2s;
}
.iso-chip.k2 {
  top: 8%;
  left: 32%;
  animation-delay: 1.1s;
}
.iso-chip.k3 {
  bottom: 30%;
  right: -4%;
  animation-delay: 1.9s;
}

.iso-chip .num {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #5B8DEF;
  margin-right: 1px;
}

.iso-chip.dark .num {
  color: #5EE6C8;
}

@keyframes isoChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 960px) {
  .iso-chip {
    display: none;
  }
}

/* ===== ISO HOSTED CARD ===== */
.iso-hosted-card {
  position: absolute;
  bottom: -3%;
  left: 36%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(155deg, #1D4ED8, #5B2FD8);
  border-radius: 16px;
  padding: 8px 12px 8px 10px;
  box-shadow: 0 16px 32px -14px rgba(29, 78, 216, .5);
  animation: isoChipFloat 5.5s ease-in-out infinite;
  animation-delay: .6s;
}

.iso-hosted-card .ic {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.iso-hosted-card .ic svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.iso-hosted-card .tx {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.iso-hosted-card .tx b {
  font-size: clamp(10px, 1.1vw, 12.5px);
  color: #fff;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  line-height: 1.1;
}

.iso-hosted-card .tx span {
  font-size: clamp(8px, 0.9vw, 10px);
  color: #D9E0FF;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

@media (max-width: 960px) {
  .iso-hosted-card {
    display: none;
  }
}

/* ===== DELIVERY BAND ===== */
.delivery-band {
  margin-top: 40px;
  background: var(--panel-dark);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .delivery-band {
    grid-template-columns: 1fr auto;
    gap: 36px;
  }
}

.delivery-band::before {
  content: "";
  position: absolute;
  inset: auto -15% -70% -10%;
  height: 200px;
  background: var(--grad);
  opacity: .14;
  filter: blur(50px);
}

.delivery-text {
  position: relative;
}

.delivery-text .k {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(10px, 1vw, 11.5px);
  color: #7EA6FF;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.delivery-text h3 {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 8px;
}

.delivery-text p {
  color: #AEB8D0;
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 420px;
}

.delivery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7EA6FF;
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 14.5px);
  text-decoration: none;
}

.delivery-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.delivery-art {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 260/150;
  flex: none;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .delivery-art {
    max-width: 180px;
  }
}

/* ===== FLOW SCENE ===== */
.flow-scene {
  position: relative;
  margin-top: 40px;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% -10%, #182548, #0A1122 55%, #080D1B);
  padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 40px) clamp(28px, 5vw, 54px);
  perspective: 1400px;
}

.flow-scene::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(clamp(300px, 50vw, 560px) clamp(150px, 25vw, 260px) at 25% 0%, rgba(91, 141, 239, .20), transparent 70%);
  pointer-events: none;
}

.flow-scene::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 50%;
  background: radial-gradient(clamp(300px, 50vw, 600px) clamp(150px, 25vw, 260px) at 80% 100%, rgba(18, 181, 166, .14), transparent 70%);
  pointer-events: none;
}

.flow-scene-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: clamp(30px, 4vw, 42px) clamp(30px, 4vw, 42px);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 90%);
  will-change: transform;
}

.flow-scene-head {
  position: relative;
  max-width: 560px;
  margin: 0 0 32px;
}

.flow-scene-head .k {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(10px, 1vw, 11.5px);
  color: #7EA6FF;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.flow-scene-head .k .live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 181, 166, .14);
  border: 1px solid rgba(18, 181, 166, .35);
  color: #5EE6C8;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: clamp(9px, 0.9vw, 10.5px);
}

.flow-scene-head .k .live-pill .p {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #12E5B5;
  animation: dpulse 1.6s ease-in-out infinite;
}

.flow-scene-head h3 {
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 8px;
}

.flow-scene-head p {
  color: #AEB8D0;
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.flow-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .12s ease-out;
}

.flow-stage svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.flow-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 26, 52, .9);
  border: 1px solid #263355;
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(9px, 0.9vw, 11px);
  color: #AEB8D0;
  z-index: 3;
  will-change: transform;
  pointer-events: none;
}

.flow-chip .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #12E5B5;
  box-shadow: 0 0 0 3px rgba(18, 229, 181, .18);
}

.flow-chip.c1 {
  top: 6%;
  left: 38%;
}
.flow-chip.c2 {
  top: 14%;
  right: 4%;
}
.flow-chip.c3 {
  top: 46%;
  left: 2%;
}
.flow-chip.c4 {
  bottom: 10%;
  right: 16%;
}

@media (max-width: 960px) {
  .flow-chip {
    display: none;
  }
}

.flow-legend {
  position: relative;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.flow-legend a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7EA6FF;
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 13.5px);
  text-decoration: none;
}

.flow-legend a svg {
  width: 13px;
  height: 13px;
  transition: transform .2s;
}

.flow-legend .note {
  font-size: clamp(11px, 1vw, 12.5px);
  color: #63708F;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .flow-stage {
    transition: none;
  }
  .iso-stage,
  .iso-chip,
  .iso-hosted-card {
    animation: none;
  }
  .hs-packet,
  .hs-node-ring {
    animation: none;
    display: none;
  }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: var(--section-spacing) 0;
}

section.tinted {
  background: var(--paper-2);
}

section.dark-band {
  background: var(--panel-dark);
  padding: calc(var(--section-spacing) * 1.14) 0;
}

section.dark-band .kicker {
  color: var(--cyan);
}
section.dark-band .section-head h2 {
  color: #fff;
}
section.dark-band .section-head p {
  color: #AEB8D0;
}

.section-head {
  max-width: 620px;
  margin: 0 0 32px;
}

.kicker {
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

.section-head h2 {
  font-size: clamp(22px, 3.6vw, 34px);
  margin: 10px 0 10px;
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
}

.section-head p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.65;
  margin: 0;
}

/* ===== BENTO GRID (Features) ===== */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 540px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bcard {
  border-radius: 16px;
  padding: clamp(20px, 3vw, 26px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  min-height: clamp(160px, 20vw, 184px);
}

.bcard .mark {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  background: currentColor;
  opacity: .5;
}

.bcard h4 {
  font-size: clamp(16px, 1.6vw, 18px);
  margin: 0 0 8px;
  line-height: 1.3;
  font-weight: 700;
}

.bcard p {
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.65;
  margin: 0;
}

.bcard .k {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(9px, 0.9vw, 10.5px);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 14px;
  opacity: .65;
}

/* ===== SHADE CLASSES ===== */
.shade-050 {
  background: #F3F7FE;
  border-color: var(--line);
}
.shade-050 .k {
  color: var(--blue);
}
.shade-050 h4,
.shade-050 h3 {
  color: var(--ink);
}
.shade-050 p {
  color: var(--ink-soft);
}
.shade-050 .mark {
  color: var(--blue);
}

.shade-100 {
  background: linear-gradient(155deg, #E7EFFE, #D6E4FD);
  border-color: #D6E4FD;
}
.shade-100 .k {
  color: var(--blue-deep);
}
.shade-100 h4,
.shade-100 h3 {
  color: var(--ink);
}
.shade-100 p {
  color: var(--ink-soft);
}
.shade-100 .mark {
  color: var(--blue-deep);
}

.shade-300 {
  background: linear-gradient(155deg, #CBDBFC, #A9C2FA);
  border-color: #A9C2FA;
}
.shade-300 .k {
  color: var(--blue-deep);
}
.shade-300 h4,
.shade-300 h3 {
  color: #0B1737;
}
.shade-300 p {
  color: #33436B;
}
.shade-300 .mark {
  color: var(--blue-deep);
}

.shade-600 {
  background: linear-gradient(155deg, #2F5FE0, #1D4ED8);
  color: #fff;
}
.shade-600 .k {
  color: #CFDCFB;
}
.shade-600 h4,
.shade-600 h3 {
  color: #fff;
}
.shade-600 p {
  color: #DCE6FC;
}
.shade-600 .mark {
  color: #fff;
}

.shade-900 {
  background: var(--blue);
  color: #fff;
}
.shade-900 .k {
  color: #9DB6F5;
}
.shade-900 h4,
.shade-900 h3 {
  color: #fff;
}
.shade-900 p {
  color: #C2D2F7;
}
.shade-900 .mark {
  color: #fff;
}

/* ===== COMPARE CARDS ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .compare {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.cmp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
}

.cmp-card.hi {
  border-color: #B9CBFB;
  box-shadow: 0 20px 40px -26px rgba(29, 78, 216, .35);
}

.cmp-card .tag {
  display: inline-block;
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 700;
  color: var(--blue-deep);
  background: var(--blue-tint);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  align-self: flex-start;
}

.cmp-card h3 {
  font-size: clamp(16px, 1.6vw, 18px);
  margin: 0 0 10px;
  color: var(--ink);
}

.cmp-card p {
  font-size: clamp(13px, 1.2vw, 13.8px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}

/* ===== COMPARE TABLE ===== */
.cmp-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.cmp-table th {
  text-align: left;
  padding: 16px 18px;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.cmp-table th.hl {
  background: var(--blue-tint);
  color: var(--blue-deep);
  position: relative;
}

.cmp-table th .tag {
  display: block;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(9px, 0.8vw, 10.5px);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.cmp-table td {
  padding: 14px 18px;
  font-size: clamp(12px, 1.2vw, 13.8px);
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.cmp-table td.hl {
  background: var(--blue-tint);
  color: var(--ink);
}

.cmp-table td.lbl {
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(12px, 1.1vw, 13px);
  white-space: nowrap;
  background: var(--paper-2);
}

.cmp-foot {
  text-align: center;
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--ink-soft);
  padding: 18px;
  border-top: 1px solid var(--line-soft);
}

/* ===== PRICING TABLE ===== */
.price-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-badges {
  display: flex;
  gap: 20px 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px 0 32px;
}

.price-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 600;
  color: var(--ink);
}

.price-badge svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  flex: none;
}

.price-hero-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.price-hero-head h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin: 0;
}

.price-hero-head h2 .hl {
  color: var(--blue);
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 1.2vw, 14px);
  min-width: 500px;
}

.ptable th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-dim);
  font-size: clamp(10px, 0.9vw, 11.5px);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.ptable td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(12px, 1.1vw, 13.5px);
  color: var(--ink-soft);
}

.ptable td.plan {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.ptable td.price {
  color: var(--ink);
  font-weight: 600;
}

.ptable .buy {
  background: var(--blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 7px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 12.5px);
  text-decoration: none;
  display: inline-block;
}

.ptable .get-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ptable .get-cell a.vf {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(11px, 1vw, 12.5px);
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.price-note {
  text-align: center;
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--ink-soft);
  padding: 20px 24px;
  border-top: 1px solid var(--line-soft);
}

.price-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.price-foot {
  margin-top: 6px;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
}

@media (min-width: 600px) {
  .price-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.price-foot a.full {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 14px);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: linear-gradient(155deg, #2F5FE0, #1D4ED8);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 34px) clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .guarantee {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.guarantee-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guarantee-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.guarantee-badge svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.guarantee h3 {
  color: #fff;
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0 0 2px;
}

.guarantee p {
  color: #DCE6FC;
  font-size: clamp(13px, 1.2vw, 14px);
  margin: 0;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 540px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-grid .bcard.wide {
  grid-column: span 1;
}

@media (min-width: 540px) {
  .why-grid .bcard.wide {
    grid-column: span 2;
  }
}

.why-grid .bcard.full {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  min-height: auto;
  padding: clamp(24px, 4vw, 38px) clamp(20px, 4vw, 44px);
}

@media (min-width: 768px) {
  .why-grid .bcard.full {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.why-grid .bcard.full h4 {
  font-size: clamp(18px, 2vw, 24px);
  margin: 0 0 4px;
}

.why-grid .bcard.full p {
  max-width: 560px;
  margin: 0;
}

.why-grid .bcard.full .mark {
  display: none;
}

/* ===== MAGAZINE CAROUSEL ===== */
.mag-head-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .mag-head-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.mag-head-row .section-head {
  margin-bottom: 0;
}

.mag-nav {
  display: flex;
  gap: 8px;
  flex: none;
}

.mag-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.mag-nav button svg {
  width: 16px;
  height: 16px;
}

.mag-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
}

.mag-viewport::-webkit-scrollbar {
  display: none;
}

.mag-track {
  display: flex;
  gap: 16px;
  padding: 4px;
}

.mag-card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

@media (min-width: 540px) {
  .mag-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (min-width: 960px) {
  .mag-card {
    flex-basis: calc((100% - 40px) / 3);
  }
}

.mag-card .mark {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  background: currentColor;
  opacity: .5;
}

.mag-card h3 {
  font-size: clamp(16px, 1.6vw, 18.5px);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.3;
}

.mag-card p {
  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 1.65;
  margin: 0;
}

.mag-card .k {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(9px, 0.8vw, 10.5px);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 140, 190, .18);
  opacity: .7;
}

/* ===== FAQ ===== */
.faq-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.faq-cat {
  font-size: clamp(11px, 1vw, 12.5px);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: default;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 40px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 15.5px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 18px;
  color: var(--blue);
  flex: none;
  margin-left: 14px;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  font-size: clamp(13px, 1.3vw, 14.5px);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 12px 0 0;
  max-width: 640px;
}

/* ===== CLOSING ===== */
.closing {
  text-align: center;
  padding-bottom: 80px;
}

.closing-panel {
  background: var(--panel-dark);
  border-radius: 24px;
  padding: clamp(40px, 8vw, 70px) clamp(20px, 5vw, 40px);
  position: relative;
  overflow: hidden;
}

.closing-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 220px;
  background: var(--grad);
  opacity: .2;
  filter: blur(50px);
}

.closing h2 {
  font-size: clamp(22px, 4vw, 36px);
  margin: 0 0 12px;
  position: relative;
  color: #fff;
}

.closing p {
  color: #AEB8D0;
  font-size: clamp(14px, 1.3vw, 15px);
  margin: 0 0 24px;
  position: relative;
}

.closing .hero-ctas {
  justify-content: center;
  position: relative;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0 0;
  font-size: clamp(11px, 1vw, 12.5px);
  color: var(--ink-dim);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-top: 100px;
}

.breadcrumb a {
  color: var(--ink-dim);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.breadcrumb span.sep {
  margin: 0 6px;
  color: #C7D0E0;
}
.breadcrumb span.cur {
  color: var(--ink-soft);
}

/* ===== BYLINE ===== */
.byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  font-size: clamp(11px, 1vw, 12.5px);
  color: var(--ink-dim);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}

.byline .av {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-logo);
  flex: none;
}

.byline b {
  color: var(--ink-soft);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

/* ===== WHAT-IS SECTION ===== */
.what-is-copy {
  max-width: 760px;
}

.what-is-copy p {
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.what-is-copy a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #C7D6FB;
}

/* ===== STAT BAR ===== */
.stat-bar-section {
  padding: clamp(24px, 4vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.stat-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 540px) {
  .stat-bar {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }
}

@media (min-width: 960px) {
  .stat-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-left: none;
}

@media (min-width: 960px) {
  .stat-bar-item {
    padding: 0 20px;
    border-left: 1px solid var(--line);
  }
  .stat-bar-item:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.stat-bar-item .num {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(22px, 2.6vw, 27px);
  font-weight: 700;
  color: var(--blue);
  flex: none;
  min-width: 60px;
}

.stat-bar-item .txt h5 {
  font-size: clamp(12px, 1.2vw, 13.5px);
  margin: 0 0 2px;
  color: var(--ink);
  font-weight: 700;
}

.stat-bar-item .txt p {
  font-size: clamp(11px, 1vw, 12px);
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.4;
}

/* ===== WHAT HOSTING CARD ===== */
.what-hosting-section {
  padding: calc(var(--section-spacing) * 0.8) 0;
}

.what-hosting-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 60px);
  box-shadow: 0 24px 60px -32px rgba(15, 23, 42, .18);
  max-width: none;
  margin: 0;
}

.what-hosting-card h2 {
  font-size: clamp(22px, 3.6vw, 34px);
  margin: 0 0 16px;
  color: var(--ink);
}

.what-hosting-card p.lede {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 760px;
}

.what-hosting-callout {
  background: linear-gradient(90deg, var(--blue-tint), #F5F9FF);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 16px 20px;
}

.what-hosting-callout p {
  font-size: clamp(14px, 1.5vw, 16.5px);
  line-height: 1.6;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0;
}

/* ===== FEATURE LIST ===== */
.feat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

@media (min-width: 540px) {
  .feat-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feat-list li {
  font-size: clamp(13px, 1.3vw, 14.5px);
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}

.feat-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.feat-list li b {
  color: var(--ink);
  font-weight: 700;
}

.src-note {
  font-size: clamp(12px, 1.1vw, 13px);
  color: var(--ink-dim);
  margin-top: 4px;
}

.src-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

/* ===== TESTIMONIALS ===== */
.testi-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
}

.testi-viewport::-webkit-scrollbar {
  display: none;
}

.testi-track {
  display: flex;
  gap: 14px;
  padding: 4px;
}

.testi-dcard {
  flex: 0 0 82%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px -20px rgba(15, 23, 42, .15);
}

@media (min-width: 480px) {
  .testi-dcard {
    flex-basis: 280px;
  }

}

@media (min-width: 768px) {
  .testi-dcard {
    flex-basis: 300px;
  }

}
@media (max-width: 769px) {
    .breadcrumb {
        margin-top: 50px;
    }
}

.testi-dcard .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.testi-dcard .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 12px;
  color: #fff;
  flex: none;
}

.testi-dcard .who h5 {
  font-size: clamp(13px, 1.2vw, 14px);
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.testi-dcard p {
  font-size: clamp(12.5px, 1.2vw, 13.5px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== DEPLOY TABLE ===== */
.deploy-table-wrap {
  background: #fff;
  border-radius: 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 26px 60px -34px rgba(15, 23, 42, .22);
  border: 1px solid var(--line);
}

.deploy-table2 {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.deploy-table2 th {
  text-align: left;
  padding: 14px 16px;
  font-size: clamp(12px, 1.2vw, 13.5px);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  vertical-align: bottom;
}

.deploy-table2 th.step-col {
  color: var(--ink-dim);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  text-transform: uppercase;
  font-size: clamp(9px, 0.8vw, 10.5px);
  letter-spacing: .06em;
  background: var(--paper-2);
  width: 160px;
}

.deploy-table2 th.manual-col {
  color: var(--ink-soft);
  background: var(--paper-2);
}

.deploy-table2 th.win-col {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
}

.deploy-table2 th.win-col .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(255, 255, 255, .2);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 5px;
}

.deploy-table2 td {
  padding: 14px 16px;
  font-size: clamp(12px, 1.2vw, 13.6px);
  line-height: 1.55;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.deploy-table2 td.step-col {
  font-weight: 700;
  color: var(--ink);
  background: var(--paper-2);
  font-size: clamp(12px, 1.1vw, 13px);
}

.deploy-table2 td.manual-col {
  color: var(--ink-dim);
}

.deploy-table2 td.win-col {
  background: var(--blue-tint);
  color: var(--ink);
}

.deploy-cell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.deploy-cell svg {
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 1px;
}

.deploy-cell.no svg {
  color: #C0524A;
}
.deploy-cell.ok svg {
  color: #12925B;
}

/* ===== STACK SCROLL CARDS ===== */
.stack-scene {
  position: relative;
  max-width: none;
  margin: 0;
  padding-top: 4px;
}

.stack-card {
  position: sticky;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 34px 70px -26px rgba(15, 23, 42, .32);
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  will-change: transform;
  transition: transform .15s ease-out;
}

@media (min-width: 768px) {
  .stack-card {
    grid-template-columns: 1.15fr .85fr;
    min-height: 300px;
  }
}

.stack-card:nth-child(1) {
  top: 80px;
  z-index: 1;
}
.stack-card:nth-child(2) {
  top: 92px;
  z-index: 2;
}
.stack-card:nth-child(3) {
  top: 104px;
  z-index: 3;
}
.stack-card:nth-child(4) {
  top: 116px;
  z-index: 4;
}
.stack-card:nth-child(5) {
  top: 128px;
  z-index: 5;
}
.stack-card:nth-child(6) {
  top: 140px;
  z-index: 6;
}
.stack-card:nth-child(7) {
  top: 152px;
  z-index: 7;
}
.stack-card:nth-child(8) {
  top: 164px;
  z-index: 8;
}

@media (min-width: 768px) {
  .stack-card:nth-child(1) {
    top: 104px;
  }
  .stack-card:nth-child(2) {
    top: 120px;
  }
  .stack-card:nth-child(3) {
    top: 136px;
  }
  .stack-card:nth-child(4) {
    top: 152px;
  }
  .stack-card:nth-child(5) {
    top: 168px;
  }
  .stack-card:nth-child(6) {
    top: 184px;
  }
  .stack-card:nth-child(7) {
    top: 200px;
  }
  .stack-card:nth-child(8) {
    top: 216px;
  }
}

.stack-card-text {
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stack-card-text .num-tag {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 8px;
}

.stack-card-text h3 {
  font-size: clamp(18px, 2.2vw, 23px);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.25;
}

.stack-card-text p {
  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 1.65;
  margin: 0 0 14px;
  opacity: .92;
}

.stack-card-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stack-card-text ul li {
  font-size: clamp(12px, 1.2vw, 13.5px);
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}

.stack-card-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  opacity: .85;
}

.stack-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 120px;
}

@media (max-width: 767px) {
  .stack-card-visual {
    display: none;
  }
}

.stack-card-visual .big-num {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(80px, 12vw, 130px);
  font-weight: 700;
  opacity: .14;
  line-height: 1;
  user-select: none;
}

.stack-card-visual .ic-badge {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-card-visual .ic-badge svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

@media (max-width: 768px) {
  .stack-card {
    margin-bottom: 14px;
    box-shadow: 0 16px 34px -20px rgba(15, 23, 42, .22);
    border-radius: 18px;
  }
}

/* ===== UC LAYOUT ===== */
.uc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 960px) {
  .uc-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.uc-col {
  padding: 0;
}

.uc-col+.uc-col {
  padding: 0;
  border-left: none;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #1E2A45;
}

@media (min-width: 960px) {
  .uc-col {
    padding: 0 48px 0 0;
  }
  .uc-col+.uc-col {
    padding: 0 0 0 48px;
    border-left: 1px solid #1E2A45;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

.uc-col-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  max-width: 340px;
}

.uc-acc {
  border-top: 1px solid #1E2A45;
}

.uc-acc-item {
  border-bottom: 1px solid #1E2A45;
  padding: 20px 0;
  cursor: pointer;
}

.uc-acc-item .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.uc-acc-item h4 {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.uc-acc-item .ico {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: #7C8AA8;
  font-size: 18px;
  flex: none;
  transition: transform .25s;
}

.uc-acc-item.open .ico {
  transform: rotate(45deg);
  color: var(--cyan);
}

.uc-acc-item .body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.uc-acc-item.open .body {
  max-height: 200px;
}

.uc-acc-item .body p {
  font-size: clamp(13px, 1.3vw, 15px);
  color: #AEB8D0;
  line-height: 1.65;
  margin: 14px 0 12px;
  max-width: 440px;
}

.uc-acc-item .body a {
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}

/* ===== RESPONSIVE FINE-TUNING ===== */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 24px;
  }
  .lede-list li {
    font-size: 13px;
    padding-left: 22px;
  }
  .lede-list li::before {
    width: 14px;
    height: 14px;
    font-size: 8px;
    line-height: 14px;
  }
  .subnav a {
    font-size: 9px;
    padding: 4px 8px;
  }
  .bcard {
    padding: 16px;
    min-height: 140px;
  }
  .bcard h4 {
    font-size: 14px;
  }
  .bcard p {
    font-size: 12px;
  }
  .cmp-table th,
  .cmp-table td {
    padding: 10px 12px;
    font-size: 11px;
  }
  .ptable th,
  .ptable td {
    padding: 10px 12px;
    font-size: 11px;
  }
  .deploy-table2 th,
  .deploy-table2 td {
    padding: 10px 12px;
    font-size: 11px;
  }
  .stack-card-text {
    padding: 18px 16px;
  }
  .stack-card-text h3 {
    font-size: 16px;
  }
  .stack-card-text ul li {
    font-size: 11px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .subnav-shell,
  .pricing-rail,
  .flow-scene-grid,
  .iso-chip,
  .flow-chip,
  .mag-nav {
    display: none !important;
  }
  .stack-card {
    position: static !important;
    box-shadow: none !important;
    border: 1px solid #ddd;
    margin-bottom: 16px;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .flow-scene {
    background: #fff !important;
    color: #000 !important;
  }
  .flow-scene-head h3,
  .flow-scene-head p {
    color: #000 !important;
  }
}