/* ============================================================
   STORAGE SENSE — sections.css
   Hero · Features · How it works · Why us · Pricing · FAQ · CTA
   ============================================================ */

/* ============================================================
   1. HERO
   ============================================================ */
.ss-hero {
  position: relative;
  padding-top: calc(var(--ss-header-h) + clamp(38px, 6vw, 76px));
  padding-bottom: clamp(56px, 6vw, 90px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #F4F9FD 0%, #FBFDFE 46%, var(--ss-paper) 100%);
}
.ss-hero__glow {
  position: absolute;
  inset: -220px 0 auto;
  height: 720px;
  background:
    radial-gradient(58% 52% at 50% 34%, rgba(17, 113, 186, .16), transparent 70%),
    radial-gradient(30% 34% at 84% 12%, rgba(126, 180, 220, .28), transparent 72%);
  pointer-events: none;
}
.ss-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 26, 41, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 26, 41, .028) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(72% 58% at 50% 26%, #000 0%, transparent 78%);
  mask-image: radial-gradient(72% 58% at 50% 26%, #000 0%, transparent 78%);
  pointer-events: none;
}
.ss-hero > .ss-container { position: relative; z-index: 2; }

.ss-hero__head { max-width: 860px; margin-inline: auto; text-align: center; }
.ss-hero__title {
  margin: 26px 0 0;
  font-family: var(--ss-display);
  font-weight: 600;
  font-size: clamp(2.55rem, 6.2vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.042em;
  color: var(--ss-ink);
}
.ss-hero__title em {
  font-style: normal;
  color: var(--ss-blue);
  position: relative;
  white-space: nowrap;
}
.ss-hero__title em::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: .04em;
  height: .085em;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(17, 113, 186, .15), rgba(17, 113, 186, .5), rgba(17, 113, 186, .15));
}
.ss-hero__lead {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--ss-text);
}

/* --- Stage: photo + floating cards --- */
.ss-stage {
  position: relative;
  margin-top: clamp(46px, 5vw, 72px);
  padding-bottom: 34px;
}

.ss-shot {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: var(--ss-r-xl);
  background: linear-gradient(155deg, #E8F1F8, #D3E4F2);
  box-shadow: var(--ss-sh-lg);
  overflow: hidden;
}
.ss-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}
/* keeps the white cards readable against a busy frame */
.ss-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 53, 90, .3) 0%, rgba(8, 53, 90, .06) 34%, transparent 58%),
    linear-gradient(0deg, rgba(8, 53, 90, .22), transparent 40%);
  pointer-events: none;
}
/* --- Stage: photo + floating cards --- */
.ss-stage {
  position: relative;
  margin-top: clamp(46px, 5vw, 72px);
  padding-bottom: 34px;
}

.ss-shot {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: var(--ss-r-xl);
  background: linear-gradient(155deg, #E8F1F8, #D3E4F2);
  box-shadow: var(--ss-sh-lg);
  overflow: hidden;
}
.ss-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}
/* keeps the white cards readable against a busy frame */
.ss-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 53, 90, .3) 0%, rgba(8, 53, 90, .06) 34%, transparent 58%),
    linear-gradient(0deg, rgba(8, 53, 90, .22), transparent 40%);
  pointer-events: none;
}
/* Floating cards */
.ss-float {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border: 1px solid rgba(10, 26, 41, .06);
  border-radius: var(--ss-r);
  background: #fff;
  box-shadow: var(--ss-sh-md);
  animation: ss-drift 7s ease-in-out infinite;
}
.ss-float__num {
  display: block;
  font-family: var(--ss-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ss-ink);
}
.ss-float__num--sm { font-size: 1.5rem; }
.ss-float__label {
  display: block;
  margin-top: 8px;
  max-width: 168px;
  font-size: .74rem;
  line-height: 1.45;
  color: var(--ss-text-dim);
}

.ss-float--uptime {
  top: 7%; left: 0;
  background: var(--ss-ink);
  border-color: transparent;
  animation-delay: .2s;
}
.ss-float--uptime .ss-float__num { color: #fff; }
.ss-float--uptime .ss-float__label { color: rgba(255, 255, 255, .58); }

.ss-float--files  { top: 46%; left: 10px; animation-delay: 1.4s; }
.ss-float--rating { top: 24%; right: 0;   animation-delay: .8s; }
.ss-float__rating { display: flex; align-items: center; gap: 10px; }
.ss-stars { display: inline-flex; gap: 2px; color: var(--ss-amber); }
.ss-stars svg { width: 12px; height: 12px; fill: currentColor; }

.ss-float--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 214px;
  bottom: 16%; right: 26px;
  padding: 14px;
  animation-delay: 2s;
}
.ss-float--tags span {
  padding: 6px 12px;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r-pill);
  background: var(--ss-blue-50);
  font-family: var(--ss-mono);
  font-size: .68rem;
  color: var(--ss-blue-dark);
}

@keyframes ss-drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.ss-stage__cta {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  margin-top: -26px;
}

/* Trust strip */
.ss-trust { margin-top: clamp(38px, 4vw, 56px); text-align: center; }
.ss-trust__label {
  font-family: var(--ss-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ss-text-dim);
}
.ss-trust__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 20px;
}
.ss-trust__list li {
  font-family: var(--ss-display);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 600;
  letter-spacing: -.03em;
  color: rgba(10, 26, 41, .32);
  transition: color .25s ease;
}
.ss-trust__list li:hover { color: rgba(10, 26, 41, .6); }

/* ============================================================
   2. FEATURES
   ============================================================ */
.ss-features { background: linear-gradient(180deg, var(--ss-paper), var(--ss-shell) 62%, var(--ss-paper)); }

/* Lead panel */
.ss-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 24px;
  padding: clamp(28px, 3.4vw, 52px);
  border: 1px solid rgba(17, 113, 186, .14);
  border-radius: var(--ss-r-xl);
  background:
    radial-gradient(78% 120% at 4% 6%, #FFFFFF 0%, #EFF6FC 42%, #DFEDF9 100%);
  box-shadow: var(--ss-sh-sm);
  overflow: hidden;
}
.ss-panel__copy p {
  margin: 16px 0 26px;
  max-width: 440px;
  font-size: .98rem;
  line-height: 1.68;
}

.ss-panel__visual {
  position: relative;
  min-height: 268px;
  border: 1px dashed rgba(17, 113, 186, .3);
  border-radius: var(--ss-r-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .4));
  overflow: hidden;
}
.ss-dropzone {
  position: absolute;
  top: 24px; left: 50%;
  translate: -50% 0;
  width: 92px; height: 92px;
  border-radius: 26px;
  background: linear-gradient(155deg, #3E9AD8, var(--ss-blue) 52%, var(--ss-blue-dark));
  box-shadow: 0 20px 34px -18px rgba(17, 113, 186, .9);
}
.ss-dropzone::before,
.ss-dropzone::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  background: #fff;
}
.ss-dropzone::before { inset: 44% 34% auto; height: 3px; }
.ss-dropzone::after { inset: 30% 48.4% 30% auto; width: 3px; }
.ss-dropzone__ring {
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(17, 113, 186, .4);
  border-radius: 34px;
  animation: ss-pulse 3.4s ease-in-out infinite;
}
@keyframes ss-pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50%      { transform: scale(1.07); opacity: .35; }
}

.ss-folders { position: absolute; bottom: 62px; left: 0; right: 0; height: 118px; }
.ss-folder {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ss-line);
}
.ss-folder--3 { bottom: 52px; width: 62%; height: 54px; opacity: .55; }
.ss-folder--2 { bottom: 34px; width: 74%; height: 58px; opacity: .8; }
.ss-folder--1 {
  bottom: 8px;
  width: 86%;
  padding: 15px 20px;
  box-shadow: var(--ss-sh-sm);
}
.ss-folder--1 b { display: block; font-size: .9rem; color: var(--ss-ink); }
.ss-folder--1 i {
  display: block;
  margin-top: 3px;
  font-family: var(--ss-mono);
  font-style: normal;
  font-size: .68rem;
  color: var(--ss-text-dim);
}
.ss-autotags {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.ss-autotags li {
  padding: 5px 11px;
  border-radius: var(--ss-r-pill);
  background: rgba(17, 113, 186, .1);
  font-family: var(--ss-mono);
  font-size: .64rem;
  color: var(--ss-blue-dark);
}

/* Bento cards */
.ss-bento .ss-card__visual { display: flex; flex-direction: column; justify-content: center; }

.ss-card--ink {
  background: linear-gradient(158deg, #143A58 0%, #0C2740 52%, #071C2E 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, .62);
}
.ss-card--ink .ss-h4 { color: #fff; }
.ss-card--ink .ss-card__visual {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}

.ss-search { gap: 0; }
.ss-search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--ss-r-pill);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .9rem;
}
.ss-search__field svg { width: 15px; height: 15px; flex: none; opacity: .7; }
.ss-caret {
  display: inline-block;
  width: 1.5px; height: 14px;
  margin-left: 3px;
  translate: 0 2px;
  background: var(--ss-blue-300);
  animation: ss-blink 1.1s steps(2, start) infinite;
}
@keyframes ss-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.ss-search__results { margin: 14px 0 12px; display: grid; gap: 7px; }
.ss-search__results li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 13px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
}
.ss-search__results b { font-size: .84rem; font-weight: 600; color: #fff; }
.ss-search__results em {
  font-family: var(--ss-mono);
  font-style: normal;
  font-size: .66rem;
  color: rgba(255, 255, 255, .45);
}
.ss-search__stat { color: var(--ss-blue-300); }

.ss-speed { gap: 16px; }
.ss-speed__row { display: flex; align-items: center; gap: 10px; }
.ss-speed__row span:first-child { width: 62px; color: var(--ss-ink-soft); }
.ss-speed__row i {
  position: relative;
  flex: 1;
  height: 8px;
  border-radius: 5px;
  background: rgba(10, 26, 41, .07);
  overflow: hidden;
}
.ss-speed__row i b {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--ss-blue-dark), #52A9E0);
}
.ss-speed__val { width: 66px; text-align: right; color: var(--ss-ink); }
.ss-speed__row--muted span:first-child,
.ss-speed__row--muted .ss-speed__val { color: var(--ss-text-dim); }
.ss-speed__row--muted i b { background: rgba(10, 26, 41, .2); }

.ss-card--blue {
  border-color: transparent;
  background: linear-gradient(155deg, #2C8CD2 0%, var(--ss-blue) 46%, var(--ss-blue-deep) 100%);
  color: rgba(255, 255, 255, .78);
}
.ss-card--blue .ss-h4 { color: #fff; }
.ss-card--blue .ss-card__visual {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
  align-items: flex-start;
}
.ss-lock { width: 100%; }
.ss-lock__badge {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #fff;
  color: var(--ss-blue);
  box-shadow: 0 14px 26px -14px rgba(4, 30, 52, .8);
}
.ss-lock__badge svg { width: 26px; height: 26px; }
.ss-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ss-chips li {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--ss-r-pill);
  background: rgba(255, 255, 255, .14);
  font-family: var(--ss-mono);
  font-size: .66rem;
  color: #fff;
}

.ss-plans { justify-content: center; padding-inline: 26px; }
.ss-plans__track {
  position: relative;
  height: 8px;
  margin: 10px 0 26px;
  border-radius: 5px;
  background: rgba(10, 26, 41, .08);
}
.ss-plans__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--ss-blue-dark), #4FA6DE);
}
.ss-plans__pin {
  position: absolute;
  top: 50%;
  width: 14px; height: 14px;
  translate: -50% -50%;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(10, 26, 41, .22);
}
.ss-plans__pin.is-on {
  width: 22px; height: 22px;
  background: var(--ss-blue);
  box-shadow: 0 6px 14px -6px rgba(17, 113, 186, .95), 0 0 0 5px rgba(17, 113, 186, .14);
}
.ss-plans__scale { display: flex; justify-content: space-between; }
.ss-plans__scale li { text-align: center; }
.ss-plans__scale b { display: block; color: var(--ss-text-dim); }
.ss-plans__scale em {
  display: block;
  margin-top: 3px;
  font-family: var(--ss-display);
  font-style: normal;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: rgba(10, 26, 41, .35);
}
.ss-plans__scale .is-on b { color: var(--ss-blue-dark); }
.ss-plans__scale .is-on em { color: var(--ss-ink); }

/* ============================================================
   3. HOW IT WORKS
   ============================================================ */
.ss-how { background: var(--ss-paper); }

.ss-blueprint {
  position: relative;
  padding: clamp(26px, 3vw, 42px) clamp(14px, 2vw, 30px);
  border-top: 1px solid var(--ss-line);
  border-bottom: 1px solid var(--ss-line);
  background-image:
    linear-gradient(90deg, rgba(17, 113, 186, .05) 1px, transparent 1px);
  background-size: 46px 100%;
}
.ss-mark {
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid rgba(17, 113, 186, .45);
  background: #fff;
}
.ss-mark--tl { top: -5px; left: -4px; }
.ss-mark--tr { top: -5px; right: -4px; }
.ss-mark--bl { bottom: -5px; left: -4px; }
.ss-mark--br { bottom: -5px; right: -4px; }

.ss-steps { display: grid; gap: 26px; }
.ss-steps--left  { padding-right: clamp(10px, 2vw, 30px); }
.ss-steps--right { padding-left: clamp(10px, 2vw, 30px); }

.ss-step {
  padding: 22px 24px;
  border-radius: var(--ss-r);
  background: #fff;
  border: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.ss-step:hover {
  border-color: var(--ss-line);
  box-shadow: var(--ss-sh-sm);
  transform: translateY(-3px);
}
.ss-step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-bottom: 16px;
  border-radius: 11px;
  background: var(--ss-blue-50);
  border: 1px solid var(--ss-blue-100);
  color: var(--ss-blue-dark);
  font-size: .7rem;
}
.ss-step .ss-h4 { margin-bottom: 8px; }
.ss-step p { font-size: .92rem; line-height: 1.62; }
.ss-steps--right .ss-step { text-align: left; }

/* Centre orbit */
.ss-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
@media (min-width: 1200px){
  .ss-orbit {
    min-height: 420px;
  }
}
.ss-orbit__ring {
  position: absolute;
  border: 1px dashed rgba(17, 113, 186, .22);
  border-radius: 50%;
}
.ss-orbit__ring--1 { width: 130px; height: 130px; }
.ss-orbit__ring--2 { width: 210px; height: 210px; border-style: solid; border-color: rgba(17, 113, 186, .12); }
.ss-orbit__ring--3 { width: 296px; height: 296px; }
.ss-orbit__core {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border-radius: 24px;
  background: linear-gradient(155deg, #47A2DE, var(--ss-blue) 50%, var(--ss-blue-deep));
  color: #fff;
  box-shadow: 0 22px 40px -18px rgba(17, 113, 186, .95);
}
.ss-orbit__core svg { width: 34px; height: 34px; }

.ss-uptime {
  position: absolute;
  bottom: 24px;
  left: 50%;
  translate: -50% 0;
  width: min(268px, 94%);
  padding: 16px 18px 14px;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  box-shadow: var(--ss-sh-md);
}
.ss-uptime__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--ss-text-dim);
}
.ss-uptime__top b {
  font-family: var(--ss-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ss-ink);
}
.ss-uptime__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin: 12px 0 10px;
}
.ss-uptime__bars i {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, #62B0E4, var(--ss-blue));
  opacity: .85;
}
.ss-uptime__bars i:nth-child(even) { opacity: .45; }
.ss-uptime__foot { color: var(--ss-text-dim); }

/* ============================================================
   4. WHY US
   ============================================================ */
.ss-why { background: linear-gradient(180deg, var(--ss-paper), #F3F8FC); }

.ss-wcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 113, 186, .13);
  border-radius: var(--ss-r-lg);
  background: #fff;
  box-shadow: var(--ss-sh-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ss-wcard:hover { transform: translateY(-5px); box-shadow: var(--ss-sh-md); }
.ss-wcard__visual {
  position: relative;
  padding: 26px 24px;
  min-height: 226px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(120% 100% at 20% 0%, #FFFFFF, #E9F3FB 68%, #DDEBF7 100%);
  border-bottom: 1px solid rgba(17, 113, 186, .12);
}
.ss-wcard__body { padding: 24px; }
.ss-wcard__body p { margin: 10px 0 18px; font-size: .93rem; line-height: 1.64; }

/* Tier bars */
.ss-tiers { width: 100%; display: grid; gap: 14px; }
.ss-tier { display: flex; align-items: center; gap: 12px; }
.ss-tier span { width: 58px; color: var(--ss-text-dim); }
.ss-tier i {
  position: relative;
  flex: 1;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(17, 113, 186, .12);
  overflow: hidden;
}
.ss-tier i b {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 7px;
  background: rgba(17, 113, 186, .18);
}
.ss-tier.is-on span { color: var(--ss-blue-dark); }
.ss-tier.is-on i { border-color: rgba(17, 113, 186, .3); }
.ss-tier.is-on i b { background: linear-gradient(90deg, var(--ss-blue-dark), #4FA6DE); }
.ss-tiers__note { margin-top: 4px; color: var(--ss-text-dim); }

/* Toggle rows */
/* File tree */
.ss-tree {
  width: 100%;
  border: 1px solid rgba(17, 113, 186, .14);
  border-radius: var(--ss-r-sm);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--ss-sh-xs);
  overflow: hidden;
}
.ss-tree__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(17, 113, 186, .12);
  background: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ss-ink);
}
.ss-tree__head b { font-weight: 400; color: var(--ss-text-dim); }

.ss-tree__list { padding: 6px; }
.ss-tree__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 9px;
  font-size: .82rem;
}
.ss-tree__row--folder { font-weight: 600; color: var(--ss-ink); }
.ss-tree__row--file { position: relative; margin-left: 22px; color: var(--ss-ink-soft); }
.ss-tree__row--file::before {
  content: "";
  position: absolute;
  left: -13px;
  top: -7px;
  bottom: 50%;
  width: 9px;
  border-left: 1px solid rgba(17, 113, 186, .28);
  border-bottom: 1px solid rgba(17, 113, 186, .28);
  border-bottom-left-radius: 7px;
}
.ss-tree__row--new { background: rgba(17, 113, 186, .09); }

.ss-tree__ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 25px;
  height: 25px;
  border-radius: 8px;
}
.ss-tree__ico svg { width: 14px; height: 14px; }
.ss-tree__ico--folder { background: rgba(17, 113, 186, .14); color: var(--ss-blue-dark); }
.ss-tree__ico--file {
  background: #fff;
  border: 1px solid var(--ss-line);
  color: var(--ss-text-dim);
}
.ss-tree__name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-tree__meta { flex: none; color: var(--ss-text-dim); }
.ss-tree__tag {
  flex: none;
  padding: 4px 10px;
  border-radius: var(--ss-r-pill);
  background: var(--ss-blue);
  color: #fff;
  font-family: var(--ss-mono);
  font-style: normal;
  font-size: .62rem;
  font-weight: 400;
}
/* Globe */
.ss-globe {
  position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    min-height: 100%;
    background: url(../../images/earth.png) no-repeat;
    background-size: cover;
    background-position: top
}
.ss-globe__sphere {
  position: relative;
  width: 124px; height: 124px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 22%, #FFFFFF, #CFE4F5 58%, #9CC5E5);
  box-shadow: inset 0 -10px 22px rgba(8, 53, 90, .12), 0 20px 34px -20px rgba(8, 53, 90, .5);
  overflow: hidden;
}
.ss-globe__lat, .ss-globe__lon {
  position: absolute;
  border: 1px solid rgba(17, 113, 186, .26);
}
.ss-globe__lat { left: -8%; right: -8%; height: 0; }
.ss-globe__lat:nth-of-type(1) { top: 28%; }
.ss-globe__lat:nth-of-type(2) { top: 50%; }
.ss-globe__lat:nth-of-type(3) { top: 72%; }
.ss-globe__lon { top: -6%; bottom: -6%; width: 0; }
.ss-globe__lon:nth-of-type(4) { left: 34%; border-radius: 50%; width: 32%; }
.ss-globe__lon:nth-of-type(5) { left: 18%; border-radius: 50%; width: 64%; }

.ss-pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ss-blue);
  box-shadow: 0 0 0 4px rgba(17, 113, 186, .18);
}
.ss-pin--1 { top: 30%; left: 34%; }
.ss-pin--2 { top: 52%; right: 32%; }
.ss-pin--3 { bottom: 30%; left: 44%; }

.ss-devices {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.ss-devices li {
  padding: 5px 11px;
  border: 1px solid rgba(17, 113, 186, .16);
  border-radius: var(--ss-r-pill);
  background: rgba(255, 255, 255, .9);
  font-family: var(--ss-mono);
  font-size: .64rem;
  color: var(--ss-blue-dark);
}

/* ============================================================
   5. PRICING
   ============================================================ */
.ss-pricing { background: linear-gradient(180deg, #F3F8FC, var(--ss-paper) 44%); }

.ss-switch {
  display: inline-flex;
  gap: 4px;
  margin-top: 32px;
  padding: 5px;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r-pill);
  background: #fff;
  box-shadow: var(--ss-sh-xs);
}
.ss-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  border-radius: var(--ss-r-pill);
  background: transparent;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ss-text);
  cursor: pointer;
  transition: background-color .24s ease, color .24s ease;
}
.ss-switch__btn.is-active { background: var(--ss-ink); color: #fff; }
.ss-save {
  padding: 3px 9px;
  border-radius: var(--ss-r-pill);
  background: var(--ss-amber-soft);
  color: #8A5B14;
  font-family: var(--ss-mono);
  font-size: .64rem;
  font-weight: 500;
}
.ss-switch__btn.is-active .ss-save { background: var(--ss-amber); color: #2B1A02; }

.ss-price {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px 28px 28px;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r-lg);
  background: linear-gradient(180deg, #FBFDFE, #FFFFFF 34%);
  box-shadow: var(--ss-sh-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ss-price:hover { transform: translateY(-5px); box-shadow: var(--ss-sh-md); border-color: rgba(17, 113, 186, .22); }

.ss-price__head { padding-bottom: 18px; }
.ss-price__name {
  font-family: var(--ss-display);
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: -.026em;
  color: var(--ss-ink);
}
.ss-price__for { margin-top: 5px; font-size: .96rem; color: var(--ss-text-dim); }

.ss-price__amount { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 8px; }
.ss-price__was {
  font-family: var(--ss-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--ss-text-dim);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  translate: 0 -6px;
}
.ss-price__val {
  font-family: var(--ss-display);
  font-size: clamp(2.6rem, 3.6vw, 3.2rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--ss-ink);
}
.ss-price__per {
  font-size: .82rem;
  color: var(--ss-text-dim);
  translate: 0 -4px;
}
.ss-price__per em {
  display: block;
  font-style: normal;
  margin-top: 2px;
  color: var(--ss-blue-dark);
}
.ss-price__cap {
  margin: 20px 0 0;
  padding: 9px 14px;
  border: 1px solid var(--ss-blue-100);
  border-radius: var(--ss-r-pill);
  background: var(--ss-blue-50);
  color: var(--ss-blue-dark);
  text-align: center;
}

.ss-ticks { display: grid; gap: 11px; margin: 24px 0 26px; }
.ss-ticks li {
  position: relative;
  padding-left: 30px;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ss-ink-soft);
}
.ss-ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--ss-green-soft);
}
.ss-ticks li::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 7px;
  width: 8px; height: 4.5px;
  border-left: 1.9px solid #14764E;
  border-bottom: 1.9px solid #14764E;
  transform: rotate(-45deg);
}
.ss-ticks li.is-off { color: var(--ss-text-dim); }
.ss-ticks li.is-off::before { background: rgba(10, 26, 41, .07); }
.ss-ticks li.is-off::after {
  left: 6px; top: 6px;
  width: 8px; height: 8px;
  border: 0;
  transform: none;
  background:
    linear-gradient(45deg, transparent 43%, rgba(10, 26, 41, .42) 43%, rgba(10, 26, 41, .42) 57%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, rgba(10, 26, 41, .42) 43%, rgba(10, 26, 41, .42) 57%, transparent 57%);
}
.ss-price .ss-btn { margin-top: auto; }

/* Featured plan */
.ss-price--featured {
  border-color: transparent;
  background: linear-gradient(168deg, #14324D 0%, #0A2439 46%, #071B2C 100%);
  box-shadow: 0 2px 8px rgba(9, 30, 50, .1), 0 46px 80px -34px rgba(8, 40, 66, .6);
}
.ss-price--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(90% 60% at 84% 0%, rgba(17, 113, 186, .5), transparent 70%);
  pointer-events: none;
}
.ss-price--featured > * { position: relative; }
.ss-price--featured:hover { border-color: transparent; }
.ss-price--featured .ss-price__name,
.ss-price--featured .ss-price__val { color: #fff; }
.ss-price--featured .ss-price__for,
.ss-price--featured .ss-price__per { color: rgba(255, 255, 255, .55); }
.ss-price--featured .ss-price__was { color: rgba(255, 255, 255, .42); }
.ss-price--featured .ss-price__per em { color: var(--ss-blue-300); }
.ss-price--featured .ss-price__cap {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}
.ss-price--featured .ss-ticks li { color: rgba(255, 255, 255, .82); }
.ss-price--featured .ss-ticks li::before { background: rgba(52, 211, 153, .18); }
.ss-price--featured .ss-ticks li::after { border-color: #4ADE9B; }
.ss-price__tag {
  position: absolute;
  top: 22px; right: 22px;
  padding: 6px 13px;
  border-radius: var(--ss-r-pill);
  background: var(--ss-amber);
  color: #2B1A02;
  font-family: var(--ss-mono);
  font-size: .64rem;
  letter-spacing: .02em;
}
.ss-price--featured .ss-price__head { padding-right: 118px; }

.ss-pricing__note { margin-top: 34px; text-align: center; color: var(--ss-text-dim); }

/* ============================================================
   6. FAQ
   ============================================================ */
.ss-faq { background: var(--ss-paper); }

.ss-accordion {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 6px;
}
.ss-ac {
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r);
  background: #fff;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.ss-ac h3 { margin: 0; }
.ss-ac__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--ss-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--ss-ink);
  cursor: pointer;
  transition: color .22s ease;
}
.ss-ac__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--ss-line-mid);
  border-radius: 9px;
  transition: background-color .25s ease, border-color .25s ease, transform .3s ease;
}
.ss-ac__icon::before,
.ss-ac__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  background: var(--ss-ink-soft);
  border-radius: 2px;
  transition: opacity .25s ease, background-color .25s ease;
}
.ss-ac__icon::before { width: 11px; height: 1.8px; }
.ss-ac__icon::after { width: 1.8px; height: 11px; }

.ss-ac__a {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .34s cubic-bezier(.3, .8, .3, 1);
}
.ss-ac__a > p {
  overflow: hidden;
  padding: 0 22px;
  font-size: .95rem;
  line-height: 1.7;
  opacity: 0;
  transition: opacity .3s ease, padding .34s ease;
}

.ss-ac.is-open {
  border-color: rgba(17, 113, 186, .28);
  background: linear-gradient(180deg, #F7FBFE, #FFFFFF);
  box-shadow: var(--ss-sh-sm);
}
.ss-ac.is-open .ss-ac__q { color: var(--ss-blue); }
.ss-ac.is-open .ss-ac__icon { background: var(--ss-blue); border-color: transparent; transform: rotate(180deg); }
.ss-ac.is-open .ss-ac__icon::before { background: #fff; }
.ss-ac.is-open .ss-ac__icon::after { opacity: 0; }
.ss-ac.is-open .ss-ac__a { grid-template-rows: 1fr; visibility: visible; }
.ss-ac.is-open .ss-ac__a > p { opacity: 1; padding-bottom: 22px; }
.ss-ac:hover { border-color: rgba(17, 113, 186, .22); }

/* ============================================================
   7. CONTACT CTA
   ============================================================ */
.ss-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFD 46%, #EFF6FC 100%);
}
.ss-cta__sky {
  position: absolute;
  inset: auto 0 -140px;
  height: 460px;
  background:
    radial-gradient(46% 60% at 50% 100%, rgba(17, 113, 186, .2), transparent 70%),
    radial-gradient(30% 44% at 16% 96%, rgba(126, 180, 220, .3), transparent 74%),
    radial-gradient(28% 40% at 84% 92%, rgba(126, 180, 220, .26), transparent 74%);
  pointer-events: none;
}
.ss-cta > .ss-container { position: relative; z-index: 2; }

.ss-rings {
  position: relative;
  height: clamp(280px, 30vw, 366px);
  margin-top: clamp(6px, 2vw, 22px);
  display: grid;
  place-items: center;
}
.ss-rings__ring {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(17, 113, 186, .16);
  border-radius: 50%;
}
.ss-rings__ring--1 { width: 168px; height: 168px; }
.ss-rings__ring--2 { width: 300px; height: 300px; border-color: rgba(17, 113, 186, .13); }
.ss-rings__ring--3 { width: 452px; height: 452px; border-color: rgba(17, 113, 186, .1); }
.ss-rings__ring--4 { width: 566px; height: 566px; border-color: rgba(17, 113, 186, .07); }

.ss-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border: 1px solid var(--ss-line);
  border-radius: 17px;
  background: #fff;
  color: var(--ss-ink-soft);
  box-shadow: var(--ss-sh-sm);
  transition: transform .3s ease, color .3s ease;
}
.ss-node svg { width: 24px; height: 24px; }
.ss-node:hover { transform: translateY(-4px); color: var(--ss-blue); }
.ss-node--core {
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 76px; height: 76px;
  border-color: transparent;
  border-radius: 24px;
  background: linear-gradient(155deg, #47A2DE, var(--ss-blue) 50%, var(--ss-blue-deep));
  color: #fff;
  box-shadow: 0 22px 42px -18px rgba(17, 113, 186, .95);
  z-index: 2;
}
.ss-node--core svg { width: 36px; height: 36px; }

/* Node placement on the middle ring */
.ss-node--a { top: 50%; left: calc(50% - 226px); translate: 0 -50%; }
.ss-node--b { top: calc(50% - 92px); left: calc(50% - 178px); }
.ss-node--c { top: calc(50% + 46px); left: calc(50% - 172px); }
.ss-node--d { top: 50%; left: calc(50% - 116px); translate: 0 -50%; }
.ss-node--e { top: 50%; left: calc(50% + 62px); translate: 0 -50%; }
.ss-node--f { top: calc(50% - 92px); left: calc(50% + 124px); }
.ss-node--g { top: calc(50% + 46px); left: calc(50% + 118px); }
.ss-node--h { top: 50%; left: calc(50% + 172px); translate: 0 -50%; }

.ss-signup { margin: clamp(18px, 3vw, 34px) auto 0; text-align: center; }
.ss-signup__form {
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--ss-line-mid);
  border-radius: var(--ss-r-pill);
  background: #fff;
  box-shadow: var(--ss-sh-md);
}
.ss-signup__input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--ss-r-pill);
  background: transparent;
  font-family: var(--ss-body);
  font-size: .95rem;
  color: var(--ss-ink);
}
.ss-signup__input::placeholder { color: var(--ss-text-dim); }
.ss-signup__input:focus { outline: 0; }
.ss-signup__form:focus-within { border-color: var(--ss-blue-300); }
.ss-signup__form.is-invalid { border-color: #D5563F; }
.ss-signup__note { margin-top: 14px; color: var(--ss-text-dim); }
.ss-signup__note.is-ok { color: #14764E; }
.ss-signup__note.is-error { color: #B03A24; }

/* ============================================================
   8. RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .ss-shot { max-width: 700px; }
  .ss-float { padding: 15px 17px; }
  .ss-float__num { font-size: 1.7rem; }
  .ss-float__label { max-width: 150px; }
  .ss-float--uptime { left: -10px; }
  .ss-float--rating { right: -10px; }
  .ss-float--files { top: 46%; left: -4px; }
  .ss-float--tags { max-width: 178px; }
  .ss-node--a, .ss-node--h { display: none; }
  .ss-node--b { left: calc(50% - 152px); }
  .ss-node--c { left: calc(50% - 148px); }
  .ss-node--f { left: calc(50% + 100px); }
  .ss-node--g { left: calc(50% + 96px); }
}

@media (max-width: 991.98px) {
  /* Hero: floats move out of the way of the surface */
  .ss-shot { max-width: 100%; aspect-ratio: 16 / 11; order: -1; grid-column: 1 / -1; }
  .ss-stage { padding-bottom: 26px; }
  .ss-float { position: static; animation: none; }
  .ss-float--uptime, .ss-float--files, .ss-float--rating, .ss-float--tags { inset: auto; }
  .ss-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ss-stage__cta { grid-column: 1 / -1; }
  .ss-float { width: 100%; }
  .ss-float--tags { grid-column: 1 / -1; flex-direction: row; }
  .ss-float__label { max-width: none; }
  .ss-float--tags { max-width: none; }
  .ss-stage__cta { margin-top: 8px; }

  .ss-panel { grid-template-columns: 1fr; }
  .ss-panel__visual { min-height: 300px; }

  .ss-steps--left, .ss-steps--right { padding: 0; }
  .ss-steps { gap: 14px; }
  .ss-step { border-color: var(--ss-line); }
  .ss-orbit { min-height: 330px; margin: 22px 0; }

  .ss-price--featured .ss-price__head { padding-right: 0; }
  .ss-price__tag { position: static; display: inline-block; margin-bottom: 14px; }
}

@media (max-width: 767.98px) {
   .ss-shot { aspect-ratio: 4 / 3; border-radius: var(--ss-r-lg); }
  .ss-rings { height: 300px; }
  .ss-rings__ring--4 { display: none; }
  .ss-node { width: 46px; height: 46px; border-radius: 14px; }
  .ss-node svg { width: 20px; height: 20px; }
  .ss-node--core { width: 64px; height: 64px; }
  .ss-node--core svg { width: 30px; height: 30px; }
  .ss-node--b { top: calc(50% - 82px); left: calc(50% - 116px); }
  .ss-node--c { top: calc(50% + 40px); left: calc(50% - 112px); }
  .ss-node--d { left: calc(50% - 104px); }
  .ss-node--e { left: calc(50% + 56px); }
  .ss-node--f { top: calc(50% - 82px); left: calc(50% + 72px); }
  .ss-node--g { top: calc(50% + 40px); left: calc(50% + 68px); }
}

@media (max-width: 575.98px) {
  .ss-stage { grid-template-columns: 1fr; }
  .ss-signup__form { flex-direction: column; border-radius: var(--ss-r-lg); padding: 10px; }
  .ss-signup__input { text-align: center; }
  .ss-hero__title { letter-spacing: -.034em; }
  .ss-ac__q { padding: 17px 16px; font-size: .95rem; }
  .ss-ac__a > p { padding-inline: 16px; }
  .ss-ac.is-open .ss-ac__a > p { padding-bottom: 18px; }
  .ss-card, .ss-wcard__body, .ss-price { padding: 22px; }
  .ss-price { padding-top: 26px; }
  .ss-trust__list { gap: 16px 22px; }
}
