/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(46, 167, 255, 0.07), transparent 34rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 720;
}

p {
  color: var(--color-muted);
}

::selection {
  background: rgba(102, 227, 255, 0.28);
  color: var(--color-white);
}

:focus-visible {
  outline: 3px solid rgba(102, 227, 255, 0.78);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Buttons and links */
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.1;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  background: var(--gradient-brand-deep);
  color: #03101c;
  box-shadow: var(--shadow-brand), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button--primary:hover {
  box-shadow: 0 20px 60px rgba(46, 167, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button--secondary {
  border-color: rgba(102, 227, 255, 0.3);
  background: rgba(46, 167, 255, 0.08);
  color: var(--color-cyan);
}

.button--secondary:hover {
  border-color: rgba(102, 227, 255, 0.56);
  background: rgba(46, 167, 255, 0.14);
}

.button--ghost {
  border-color: var(--color-line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
  border-color: rgba(102, 227, 255, 0.42);
  background: rgba(102, 227, 255, 0.07);
}

.button--large {
  min-height: 55px;
  padding: 0.95rem 1.35rem;
  border-radius: 1rem;
  font-size: 1rem;
}

.button--small {
  min-height: 42px;
  padding-inline: 1rem;
}

.button--full {
  width: 100%;
}

.button-play {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  color: var(--color-cyan);
  font-size: 0.58rem;
  padding-left: 1px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-cyan);
  font-weight: 700;
  transition: color var(--transition), gap var(--transition);
}

.text-link:hover {
  gap: 0.7rem;
  color: var(--color-white);
}

/* Header and navigation — identical to site.css across all pages */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.site-header.is-scrolled,
.site-header:focus-within,
body.nav-open .site-header {
  background: rgba(4, 10, 19, .87);
  border-color: var(--color-line);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav-shell { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-height); }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; width: clamp(178px, 16vw, 226px); }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: .2rem; margin-left: auto; }
.primary-nav > a,
.nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 44px;
  padding: .65rem .78rem;
  border: 0;
  border-radius: .75rem;
  background: transparent;
  color: var(--color-text-soft);
  font-weight: 650;
  font-size: .91rem;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-group > button:hover,
.nav-group > button:focus-visible,
.primary-nav > a[aria-current="page"],
.nav-group.is-open > button {
  color: var(--color-white);
  background: rgba(148, 169, 194, .09);
}
.nav-caret { width: .55rem; height: .55rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform var(--transition); }
.nav-group.is-open .nav-caret { transform: rotate(225deg) translate(-1px, -1px); }
.nav-group { position: relative; }
.mega-panel {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  width: min(720px, calc(100vw - 2rem));
  padding: .75rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 1.2rem;
  background: rgba(8, 20, 35, .98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, .6rem) scale(.98);
  transform-origin: 50% 0;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-group.is-open .mega-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
.mega-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .8rem;
  align-items: start;
  padding: .85rem;
  border-radius: .95rem;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.mega-link:hover, .mega-link:focus-visible { background: rgba(46, 167, 255, .07); border-color: rgba(102, 227, 255, .15); transform: translateY(-1px); }
.mega-link img { width: 38px; height: 38px; padding: .45rem; border-radius: .75rem; background: rgba(46, 167, 255, .1); }
.mega-link strong { display: block; margin-bottom: .12rem; font-size: .94rem; }
.mega-link small { display: block; color: var(--color-muted); font-size: .78rem; line-height: 1.4; }
.nav-actions { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.nav-login { color: var(--color-text-soft); font-weight: 700; font-size: .91rem; }
.nav-login:hover, .nav-login:focus-visible { color: var(--color-white); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--color-line-strong); border-radius: .8rem; background: rgba(15, 32, 53, .7); cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 1.5px; margin: 4px auto; background: var(--color-text); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-5.5px) rotate(-45deg); }
/* Keep header CTA identical to site pages even when home button tokens differ */
.site-header .button--small {
  min-height: 40px;
  padding: .68rem .95rem;
  border-radius: .75rem;
  font-size: .86rem;
  font-weight: 780;
}
.site-header .button--primary {
  color: #03111e;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-brand);
}
.site-header .button--primary:hover {
  box-shadow: 0 20px 60px rgba(46, 167, 255, .34);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 54px;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 72% 23%, rgba(46, 167, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 4% 78%, rgba(65, 211, 158, 0.08), transparent 30rem),
    linear-gradient(180deg, #07111f 0%, #071524 62%, #081321 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 19, 0.34));
  content: "";
  pointer-events: none;
}

.hero-grid-motion {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(102, 227, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.075) 1px, transparent 1px);
  background-position: center top;
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 56%, transparent 100%);
}

.hero-orb {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-orb--one {
  top: 90px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 35% 35%, rgba(102, 227, 255, 0.18), rgba(46, 167, 255, 0.02) 65%, transparent 72%);
}

.hero-orb--two {
  bottom: 60px;
  left: -190px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 55% 45%, rgba(65, 211, 158, 0.11), rgba(65, 211, 158, 0.01) 65%, transparent 72%);
}

.hero-particles span {
  position: absolute;
  z-index: -2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 14px rgba(102, 227, 255, 0.8);
  opacity: 0.4;
}

.hero-particles span:nth-child(1) { top: 18%; left: 9%; }
.hero-particles span:nth-child(2) { top: 38%; left: 44%; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { top: 14%; right: 18%; }
.hero-particles span:nth-child(4) { top: 69%; right: 7%; width: 3px; height: 3px; }
.hero-particles span:nth-child(5) { bottom: 16%; left: 26%; }
.hero-particles span:nth-child(6) { bottom: 29%; right: 42%; width: 2px; height: 2px; }

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(690px, 1.38fr);
  align-items: center;
  gap: clamp(2.2rem, 4vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.1rem;
  padding: .5rem .75rem;
  border: 1px solid rgba(102, 227, 255, .18);
  border-radius: var(--radius-pill);
  color: var(--color-cyan);
  background: rgba(46, 167, 255, .07);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-eyebrow img {
  width: 1rem;
  height: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: var(--color-cyan);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--color-brand);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(65, 211, 158, 0.12), 0 0 18px rgba(65, 211, 158, 0.7);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 1.45rem;
  color: var(--color-text);
  font-size: clamp(2.9rem, 4.5vw, 4.6rem);
  font-weight: 790;
  letter-spacing: -0.06em;
}

.hero h1 span {
  background: linear-gradient(100deg, #f7fbff 0%, #66e3ff 52%, #2ea7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: #afc0d4;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.55rem;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-assurances li span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(65, 211, 158, 0.32);
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.08);
  color: var(--color-success);
  font-size: 0.65rem;
}

/* Animated workflow */
.workflow-frame {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgba(102, 227, 255, 0.2);
  border-radius: 1.8rem;
  background:
    linear-gradient(145deg, rgba(20, 41, 67, 0.76), rgba(7, 17, 31, 0.94)),
    var(--color-surface);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 80px rgba(46, 167, 255, 0.08);
  backdrop-filter: blur(18px);
}

.workflow-frame::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: var(--gradient-border);
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.workflow-topbar,
.workflow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.workflow-topbar {
  min-height: 42px;
  padding: 0 0.45rem 0.8rem;
}

.workflow-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.status-light,
.footer-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 14px rgba(65, 211, 158, 0.85);
}

.workflow-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.6rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.68rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.workflow-toggle:hover {
  border-color: rgba(102, 227, 255, 0.35);
  background: rgba(102, 227, 255, 0.06);
  color: var(--color-white);
}

.pause-icon {
  position: relative;
  width: 10px;
  height: 10px;
}

.pause-icon::before,
.pause-icon::after {
  position: absolute;
  top: 1px;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.pause-icon::before { left: 2px; }
.pause-icon::after { right: 2px; }

.workflow-frame.is-paused .pause-icon::before {
  top: 1px;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.workflow-frame.is-paused .pause-icon::after {
  display: none;
}

.workflow-diagram {
  position: relative;
  display: grid;
  min-height: 380px;
  grid-template-columns: minmax(188px, 1fr) 42px minmax(176px, 0.94fr) 42px minmax(210px, 1.08fr);
  align-items: center;
  overflow: hidden;
  padding: 0.9rem;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 1.35rem;
  background:
    linear-gradient(rgba(102, 227, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.035) 1px, transparent 1px),
    rgba(4, 12, 23, 0.5);
  background-size: 30px 30px;
}

.workflow-diagram::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46, 167, 255, 0.1), transparent 43%);
  content: "";
  pointer-events: none;
}

.flow-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 330px;
  padding: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.18);
  border-radius: 1.15rem;
  background: linear-gradient(155deg, rgba(21, 42, 67, 0.92), rgba(9, 22, 38, 0.94));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.flow-node::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(102, 227, 255, 0.06), transparent 38%, transparent 70%, rgba(65, 211, 158, 0.04));
  content: "";
  pointer-events: none;
}

.node-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.node-heading img {
  width: 40px;
  height: 40px;
}

.node-heading div:not(.execute-icon-stack) {
  min-width: 0;
}

.node-heading strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(0.72rem, 0.72vw, 0.84rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.node-kicker {
  display: block;
  margin-bottom: 0.05rem;
  color: var(--color-muted-2);
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.node-state {
  padding: 0.25rem 0.45rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.node-state--blue {
  border: 1px solid rgba(46, 167, 255, 0.28);
  background: rgba(46, 167, 255, 0.11);
  color: var(--color-cyan);
}

.node-state--cyan {
  border: 1px solid rgba(102, 227, 255, 0.28);
  background: rgba(102, 227, 255, 0.1);
  color: var(--color-cyan);
}

.node-state--green {
  border: 1px solid rgba(65, 211, 158, 0.28);
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
}

.telegram-window,
.parser-window,
.account-stack {
  position: relative;
  z-index: 2;
}

.telegram-window {
  padding: 0.65rem;
  border: 1px solid rgba(46, 167, 255, 0.15);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 167, 255, 0.1), transparent 50%),
    #091829;
}

.telegram-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.channel-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c76b, #ff7458);
  color: #211006;
  font-size: 0.56rem;
  font-weight: 850;
}

.telegram-channel strong,
.telegram-channel small {
  display: block;
}

.telegram-channel strong {
  color: var(--color-text-soft);
  font-size: 0.7rem;
}

.telegram-channel small {
  color: var(--color-muted-2);
  font-size: 0.52rem;
}

.message-tick {
  color: var(--color-brand);
  font-size: 0.58rem;
}

.signal-message {
  position: relative;
  padding: 0.78rem 0.72rem 1.18rem;
  border: 1px solid rgba(65, 211, 158, 0.16);
  border-radius: 0.85rem 0.85rem 0.25rem 0.85rem;
  background: linear-gradient(145deg, rgba(25, 62, 60, 0.82), rgba(13, 42, 42, 0.92));
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.message-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 800;
}

.buy-tag,
.mini-buy,
.mini-sell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  font-family: var(--font-mono);
  font-weight: 800;
}

.buy-tag {
  padding: 0.17rem 0.34rem;
  background: var(--color-success);
  color: #041810;
  font-size: 0.52rem;
}

.signal-message dl {
  display: grid;
  gap: 0.28rem;
  margin: 0;
}

.signal-message dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.signal-message dt,
.signal-message dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.signal-message dt {
  color: #9db8b4;
}

.signal-message dd {
  color: #e7fffa;
  font-weight: 700;
}

.message-time {
  position: absolute;
  right: 0.5rem;
  bottom: 0.35rem;
  color: rgba(231, 255, 250, 0.52);
  font-size: 0.46rem;
}

.flow-connector {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 150px;
}

.connector-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 167, 255, 0.14), rgba(102, 227, 255, 0.58), rgba(46, 167, 255, 0.14));
  box-shadow: 0 0 10px rgba(102, 227, 255, 0.18);
}

.connector-line::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(102, 227, 255, 0.68);
  border-right: 1px solid rgba(102, 227, 255, 0.68);
  content: "";
  transform: rotate(45deg);
}

.data-packet {
  position: absolute;
  top: calc(50% - 5px);
  left: -3px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 16px rgba(46, 167, 255, 0.9), 0 0 0 4px rgba(46, 167, 255, 0.1);
  opacity: 0;
}

.data-packet i {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-cyan);
}

.connector-label {
  position: absolute;
  top: calc(50% + 12px);
  right: 0;
  left: 0;
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.42rem;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.parser-window {
  display: grid;
  gap: 0.42rem;
  padding: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(102, 227, 255, 0.15);
  border-radius: 0.9rem;
  background: rgba(5, 16, 28, 0.78);
}

.scanner-line {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
  box-shadow: 0 0 16px rgba(102, 227, 255, 0.8);
  opacity: 0;
}

.parser-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 29px;
  padding: 0.38rem 0.45rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-mono);
  opacity: 0.42;
  transform: translateY(2px);
}

.parser-field span {
  color: var(--color-muted-2);
  font-size: 0.48rem;
}

.parser-field strong {
  color: var(--color-text-soft);
  font-size: 0.52rem;
  font-weight: 750;
  white-space: nowrap;
}

.parser-field i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.13);
  color: var(--color-success);
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-style: normal;
}

.risk-rule-chip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 28px;
  margin-top: 0.6rem;
  border: 1px solid rgba(159, 140, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(159, 140, 255, 0.08);
  color: #c9c0ff;
  font-size: 0.52rem;
  font-weight: 680;
}

.execute-icon-stack {
  position: relative;
  width: 49px;
  height: 42px;
}

.execute-icon-stack img {
  position: absolute;
  width: 35px;
  height: 35px;
}

.execute-icon-stack img:first-child { top: 0; left: 0; }
.execute-icon-stack img:last-child { right: 0; bottom: 0; }

.account-stack {
  display: grid;
  gap: 0.58rem;
}

.account-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 61px;
  padding: 0.62rem;
  border: 1px solid rgba(148, 169, 194, 0.14);
  border-radius: 0.75rem;
  background: rgba(5, 16, 28, 0.68);
}

.account-row img {
  width: 32px;
  height: 32px;
}

.account-row strong,
.account-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-row strong {
  color: var(--color-text-soft);
  font-size: 0.62rem;
}

.account-row small {
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.45rem;
}

.execution-check {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(65, 211, 158, 0.3);
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
  font-size: 0.68rem;
  font-weight: 900;
  opacity: 0.3;
  transform: scale(0.8);
}

.execution-toast {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.72rem;
  padding: 0.65rem;
  border: 1px solid rgba(65, 211, 158, 0.24);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(65, 211, 158, 0.13), rgba(65, 211, 158, 0.04));
  opacity: 0.35;
  transform: translateY(6px);
}

.toast-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-success);
  color: #052117;
  font-size: 0.9rem;
  font-weight: 900;
}

.execution-toast strong,
.execution-toast small {
  display: block;
}

.execution-toast strong {
  color: #dffbef;
  font-size: 0.62rem;
}

.execution-toast small {
  color: #8ab8a7;
  font-size: 0.46rem;
}

.workflow-footer {
  min-height: 39px;
  padding: 0.72rem 0.45rem 0;
  border-top: 1px solid transparent;
}

.workflow-footer div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-soft);
}

/* Hero proof strip */
.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.15rem;
  margin-top: 2.7rem;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: 1.1rem;
  background: rgba(11, 24, 41, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.trust-score {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.trust-stars,
.large-stars,
.review-card-top span,
.footer-trust span {
  color: var(--color-success);
  letter-spacing: 0.08em;
}

.trust-stars {
  font-size: 1rem;
}

.trust-score strong,
.trust-score span,
.proof-item strong,
.proof-item span {
  display: block;
}

.trust-score strong,
.proof-item strong {
  color: var(--color-text-soft);
  font-size: 0.82rem;
}

.trust-score span,
.proof-item span {
  color: var(--color-muted-2);
  font-size: 0.68rem;
}

.proof-divider {
  width: 1px;
  height: 34px;
  background: var(--color-line);
}

/* Generic sections */
.section {
  position: relative;
  padding: var(--size-12) 0;
  border-bottom: 1px solid rgba(148, 169, 194, 0.1);
}

.section--intro {
  background:
    radial-gradient(circle at 14% 0%, rgba(46, 167, 255, 0.07), transparent 28rem),
    #091524;
}

.section--dashboard {
  overflow: hidden;
  background: #07111f;
}

.section--dashboard::before {
  position: absolute;
  top: 7%;
  right: -10%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 167, 255, 0.09), transparent 67%);
  content: "";
  pointer-events: none;
}

.section--paths,
.section--pricing {
  background:
    radial-gradient(circle at 82% 25%, rgba(46, 167, 255, 0.06), transparent 26rem),
    #091524;
}

.section-heading {
  margin-bottom: 3.4rem;
}

.section-heading h2 {
  max-width: 930px;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-heading--center {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2,
.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: 3rem;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split p {
  margin-bottom: 0.4rem;
}

.lead {
  color: #aebfd2;
  font-size: 1.04rem;
  line-height: 1.78;
}

/* How it works */
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.steps-grid::before {
  position: absolute;
  top: 52px;
  right: 15%;
  left: 15%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 227, 255, 0.26), transparent);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(19, 36, 58, 0.92), rgba(9, 22, 38, 0.92));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  border-color: rgba(102, 227, 255, 0.3);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24), 0 0 45px rgba(46, 167, 255, 0.05);
  transform: translateY(-5px);
}

.step-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 167, 255, 0.13), transparent 70%);
  content: "";
}

.step-number {
  position: absolute;
  top: 1.2rem;
  right: 1.35rem;
  color: rgba(102, 227, 255, 0.14);
  font-family: var(--font-mono);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.step-card > img,
.step-icon-pair {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 2rem;
}

.step-icon-pair {
  display: flex;
  width: 82px;
}

.step-icon-pair img {
  width: 48px;
  height: 48px;
}

.step-icon-pair img + img {
  margin-left: -14px;
  transform: translateY(11px);
}

.step-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.step-meta {
  position: absolute;
  right: 1.55rem;
  bottom: 1.35rem;
  left: 1.55rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  color: var(--color-cyan);
  font-size: 0.76rem;
  font-weight: 700;
}

/* Dashboard showcase */
.split-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(680px, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
}

.split-copy h2 {
  font-size: clamp(2.45rem, 3.6vw, 4.05rem);
}

.benefit-list {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0 2.2rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.24);
  border-radius: 0.8rem;
  background: rgba(46, 167, 255, 0.07);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 750;
}

.benefit-item strong,
.benefit-item p {
  display: block;
}

.benefit-item strong {
  margin-bottom: 0.25rem;
  color: var(--color-text-soft);
}

.benefit-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.dashboard-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 227, 255, 0.2);
  border-radius: 1.5rem;
  background: #0a1626;
  box-shadow: var(--shadow-lg), 0 0 90px rgba(46, 167, 255, 0.09);
  transform: perspective(1600px) rotateY(-3deg) rotateX(1.2deg);
  transform-origin: center;
}

.dashboard-window::before {
  position: absolute;
  inset: -1px;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.browser-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 50px;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(148, 169, 194, 0.12);
  background: #0f1d2e;
}

.browser-dots {
  display: flex;
  gap: 0.35rem;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #506078;
}

.browser-dots span:nth-child(1) { background: #ff7458; }
.browser-dots span:nth-child(2) { background: #f5c76b; }
.browser-dots span:nth-child(3) { background: #41d39e; }

.browser-address {
  justify-self: center;
  width: min(360px, 86%);
  padding: 0.38rem 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lock-mini {
  margin-right: 0.3rem;
  color: var(--color-success);
  font-size: 0.45rem;
}

.browser-user {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #07111f;
  font-size: 0.58rem;
  font-weight: 850;
}

.dashboard-body {
  display: grid;
  min-height: 555px;
  grid-template-columns: 62px minmax(0, 1fr);
}

.dashboard-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1rem 0;
  border-right: 1px solid rgba(148, 169, 194, 0.1);
  background: #0b1828;
}

.dashboard-sidebar img {
  width: 34px;
  height: 34px;
  margin-bottom: 0.5rem;
}

.side-nav {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.025);
}

.side-nav.active {
  border-color: rgba(102, 227, 255, 0.28);
  background: rgba(46, 167, 255, 0.15);
  box-shadow: 0 0 16px rgba(46, 167, 255, 0.15);
}

.side-nav--bottom {
  margin-top: auto;
}

.dashboard-content {
  min-width: 0;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 82% 0%, rgba(46, 167, 255, 0.08), transparent 18rem),
    #091522;
}

.dashboard-title-row,
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-title-row {
  margin-bottom: 1rem;
}

.dashboard-title-row small,
.dashboard-title-row strong,
.panel-heading small,
.panel-heading strong {
  display: block;
}

.dashboard-title-row small,
.panel-heading small {
  color: var(--color-muted-2);
  font-size: 0.47rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.dashboard-title-row strong {
  color: var(--color-text);
  font-size: 1rem;
}

.dashboard-title-row button {
  padding: 0.45rem 0.65rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--gradient-brand);
  color: #06131f;
  font-size: 0.53rem;
  font-weight: 800;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.dashboard-stat {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(19, 36, 58, 0.9), rgba(10, 24, 40, 0.9));
}

.dashboard-stat span,
.dashboard-stat strong,
.dashboard-stat small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-stat span {
  margin-bottom: 0.2rem;
  color: var(--color-muted-2);
  font-size: 0.48rem;
}

.dashboard-stat strong {
  color: var(--color-text-soft);
  font-size: 0.67rem;
}

.dashboard-stat small {
  margin-top: 0.22rem;
  color: #657c97;
  font-size: 0.44rem;
}

.status-dot-small {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(65, 211, 158, 0.8);
}

.journey-panel,
.mini-panel {
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 0.82rem;
  background: rgba(13, 29, 48, 0.8);
}

.journey-panel {
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.panel-heading {
  min-height: 56px;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(148, 169, 194, 0.1);
}

.panel-heading strong {
  color: var(--color-text-soft);
  font-size: 0.68rem;
}

.panel-heading > span {
  color: var(--color-brand);
  font-size: 0.48rem;
  font-weight: 700;
}

.journey-table {
  display: grid;
  font-family: var(--font-mono);
}

.journey-head,
.journey-row {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 1.15fr 1.2fr 0.7fr;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.55rem 0.75rem;
}

.journey-head {
  color: var(--color-muted-2);
  font-size: 0.42rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-row {
  border-top: 1px solid rgba(148, 169, 194, 0.08);
  color: #a9b9cb;
  font-size: 0.46rem;
}

.journey-row > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-row--live {
  background: rgba(46, 167, 255, 0.035);
}

.mini-buy,
.mini-sell {
  padding: 0.1rem 0.22rem;
  font-size: 0.4rem;
}

.mini-buy {
  background: rgba(65, 211, 158, 0.16);
  color: var(--color-success);
}

.mini-sell {
  background: rgba(255, 116, 88, 0.14);
  color: var(--color-danger);
}

.mini-success,
.mini-neutral {
  padding: 0.14rem 0.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.4rem;
  font-weight: 700;
}

.mini-success {
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
}

.mini-neutral {
  background: rgba(46, 167, 255, 0.1);
  color: var(--color-brand);
}

.dashboard-bottom-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 0.8rem;
}

.mini-panel {
  min-width: 0;
  overflow: hidden;
}

.rule-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.48rem 0.75rem;
  border-top: 1px solid rgba(148, 169, 194, 0.075);
  color: var(--color-muted-2);
  font-size: 0.46rem;
}

.rule-line strong {
  color: var(--color-text-soft);
}

.mini-panel--chart svg {
  width: 100%;
  height: 86px;
  padding: 0.6rem 0.8rem 0;
}

.chart-caption {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0 0.85rem 0.7rem;
}

.chart-caption strong {
  color: var(--color-cyan);
  font-size: 0.85rem;
}

.chart-caption span {
  color: var(--color-muted-2);
  font-size: 0.43rem;
}

/* Feature bento */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(19, 36, 58, 0.85), rgba(8, 21, 36, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.feature-card:hover {
  border-color: rgba(102, 227, 255, 0.3);
  background: linear-gradient(150deg, rgba(23, 45, 72, 0.9), rgba(9, 24, 41, 0.96));
  transform: translateY(-4px);
}

.feature-card > img {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  max-width: 460px;
  font-size: 1.35rem;
}

.feature-card p {
  max-width: 530px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.feature-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-brand);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card--wide {
  display: grid;
  min-height: 315px;
  grid-column: span 2;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
}

.feature-card--wide > img {
  margin-bottom: 0;
}

.token-cloud {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.token-cloud span {
  padding: 0.33rem 0.55rem;
  border: 1px solid rgba(102, 227, 255, 0.15);
  border-radius: var(--radius-pill);
  background: rgba(46, 167, 255, 0.055);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.feature-card--cloud {
  min-height: 310px;
  background:
    radial-gradient(circle at 82% 45%, rgba(46, 167, 255, 0.14), transparent 12rem),
    linear-gradient(150deg, rgba(19, 36, 58, 0.85), rgba(8, 21, 36, 0.94));
}

.cloud-orbit {
  position: absolute;
  right: 2rem;
  bottom: 1.1rem;
  width: 190px;
  height: 110px;
  border: 1px solid rgba(102, 227, 255, 0.17);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.cloud-orbit::before,
.cloud-orbit::after {
  position: absolute;
  inset: 16px 30px;
  border: 1px solid rgba(65, 211, 158, 0.13);
  border-radius: 50%;
  content: "";
}

.cloud-orbit::after {
  inset: 33px 58px;
  border-color: rgba(159, 140, 255, 0.13);
}

.cloud-orbit span,
.cloud-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 14px rgba(46, 167, 255, 0.7);
}

.cloud-orbit span:nth-child(1) { top: 13px; left: 34px; }
.cloud-orbit span:nth-child(2) { right: 20px; bottom: 31px; background: var(--color-success); box-shadow: 0 0 14px rgba(65, 211, 158, 0.7); }
.cloud-orbit span:nth-child(3) { right: 78px; bottom: 4px; background: var(--color-violet); box-shadow: 0 0 14px rgba(159, 140, 255, 0.65); }
.cloud-orbit i { top: 48px; left: 88px; width: 14px; height: 14px; background: var(--color-cyan); }

/* User paths */
.path-grid {
  display: grid;
  max-width: 1050px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-inline: auto;
}

.path-card {
  position: relative;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(19, 36, 58, 0.9), rgba(8, 21, 36, 0.95));
  box-shadow: var(--shadow-sm);
}

.path-card--featured {
  border-color: rgba(102, 227, 255, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 167, 255, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(20, 42, 68, 0.95), rgba(8, 22, 38, 0.98));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25), 0 0 60px rgba(46, 167, 255, 0.06);
}

.path-badge {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(46, 167, 255, 0.06);
  color: var(--color-cyan);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-icon-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 62px;
  margin: 1.6rem 0;
}

.path-icon-row img {
  width: 48px;
  height: 48px;
}

.path-icon-row img + img {
  margin-left: -0.7rem;
}

.path-icon-row > span:not(.signal-wave) {
  color: var(--color-muted-2);
}

.signal-wave {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(245, 199, 107, 0.25);
  border-radius: 0.9rem;
  background: rgba(245, 199, 107, 0.08);
  color: var(--color-warning);
  font-size: 1.7rem;
}

.path-card h3 {
  font-size: 1.65rem;
}

.path-card ul,
.price-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  list-style: none;
}

.path-card li,
.price-card li {
  position: relative;
  padding-left: 1.45rem;
  color: #afc0d4;
  font-size: 0.88rem;
}

.path-card li::before,
.price-card li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: var(--color-success);
  content: "✓";
  font-weight: 850;
}

/* Security */
.section--security {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(65, 211, 158, 0.08), transparent 26rem),
    linear-gradient(180deg, #07111f, #081522);
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.security-visual {
  position: relative;
  min-height: 520px;
}

.security-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(102, 227, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 45% 35%, rgba(46, 167, 255, 0.18), rgba(8, 22, 38, 0.98) 68%);
  box-shadow: 0 0 70px rgba(46, 167, 255, 0.12), inset 0 0 40px rgba(102, 227, 255, 0.05);
  transform: translate(-50%, -50%);
}

.security-core img {
  width: 68px;
  height: 68px;
  margin-bottom: 0.7rem;
}

.security-core strong,
.security-core span {
  display: block;
}

.security-core strong {
  color: var(--color-text);
  font-size: 0.88rem;
}

.security-core span {
  color: var(--color-muted-2);
  font-size: 0.65rem;
}

.security-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(102, 227, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.security-ring span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(148, 169, 194, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(11, 24, 41, 0.92);
  color: var(--color-text-soft);
  font-size: 0.66rem;
  font-weight: 650;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.security-ring span::before {
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px rgba(65, 211, 158, 0.7);
  content: "";
}

.security-ring--one { width: 300px; height: 300px; }
.security-ring--two { width: 405px; height: 405px; border-color: rgba(65, 211, 158, 0.12); }
.security-ring--three { width: 505px; height: 505px; border-color: rgba(159, 140, 255, 0.1); }

.security-ring--one span { top: 12px; right: 20px; }
.security-ring--two span { right: -5px; bottom: 70px; }
.security-ring--three span { bottom: 35px; left: 40px; }

.security-copy h2 {
  font-size: clamp(2.4rem, 3.6vw, 4rem);
}

.security-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 2.2rem;
}

.security-list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.025);
}

.security-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(65, 211, 158, 0.3);
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.09);
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 850;
}

.security-list p {
  margin-bottom: 0;
}

.security-list strong,
.security-list small {
  display: block;
}

.security-list strong {
  margin-bottom: 0.2rem;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.security-list small {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Proof */
.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.review-summary,
.review-card,
.verified-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(19, 36, 58, 0.88), rgba(8, 21, 36, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.review-summary {
  padding: 1.65rem;
}

.proof-card-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-brand);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.review-score-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-score-row > strong {
  color: var(--color-text);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.large-stars,
.review-score-row small {
  display: block;
}

.large-stars {
  font-size: 1.2rem;
}

.review-score-row small {
  margin-top: 0.25rem;
  color: var(--color-muted-2);
  font-size: 0.7rem;
}

.review-summary p {
  font-size: 0.92rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.35rem;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-card-top span {
  font-size: 0.72rem;
}

.review-card-top small {
  color: var(--color-muted-2);
  font-size: 0.55rem;
}

.review-card > p {
  flex: 1;
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.62;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-line);
}

.review-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 167, 255, 0.12);
  color: var(--color-cyan);
  font-size: 0.66rem;
  font-weight: 800;
}

.review-card footer strong,
.review-card footer small {
  display: block;
}

.review-card footer strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.review-card footer small {
  color: var(--color-muted-2);
  font-size: 0.58rem;
}

.verified-card {
  display: grid;
  min-height: 360px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  overflow: hidden;
}

.verified-card-copy {
  padding: 1.8rem;
}

.verified-card h3 {
  max-width: 500px;
  font-size: 1.9rem;
}

.verified-card p {
  max-width: 540px;
}

.verified-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.3rem 0 1.6rem;
}

.verified-pills span {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(65, 211, 158, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(65, 211, 158, 0.055);
  color: #9fe6c7;
  font-size: 0.64rem;
  font-weight: 650;
}

.verified-chart {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-left: 1px solid var(--color-line);
  background:
    linear-gradient(rgba(102, 227, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(65, 211, 158, 0.09), transparent 18rem),
    #091522;
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.verified-chart svg {
  position: absolute;
  inset: 60px 25px 55px;
  width: calc(100% - 50px);
  height: calc(100% - 115px);
}

.chart-note {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  color: var(--color-muted-2);
  font-size: 0.62rem;
  text-align: center;
}

.risk-note {
  margin: 1.35rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(245, 199, 107, 0.15);
  border-radius: 0.8rem;
  background: rgba(245, 199, 107, 0.045);
  color: #a8b7c8;
  font-size: 0.76rem;
}

.risk-note strong {
  color: var(--color-warning);
}

/* Pricing */
.trial-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(102, 227, 255, 0.25);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 75% 50%, rgba(46, 167, 255, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(20, 42, 68, 0.94), rgba(8, 22, 38, 0.97));
  box-shadow: var(--shadow-sm);
}

.trial-banner strong,
.trial-banner small,
.trial-price strong,
.trial-price span {
  display: block;
}

.trial-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-cyan);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trial-banner > div:first-child > strong {
  color: var(--color-text);
  font-size: 1.15rem;
}

.trial-banner small {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.76rem;
}

.trial-price {
  text-align: right;
}

.trial-price strong {
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1;
}

.trial-price span {
  color: var(--color-muted-2);
  font-size: 0.65rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(19, 36, 58, 0.9), rgba(8, 21, 36, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.price-card--featured {
  border-color: rgba(102, 227, 255, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 167, 255, 0.17), transparent 16rem),
    linear-gradient(150deg, rgba(22, 45, 72, 0.97), rgba(8, 22, 39, 0.98));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.27), 0 0 60px rgba(46, 167, 255, 0.08);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -13px;
  right: 1.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #05131f;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-brand);
}

.price-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-brand);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.price-card h3 {
  font-size: 1.55rem;
}

.price-card > p {
  min-height: 50px;
  margin-bottom: 1.35rem;
  font-size: 0.88rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--color-line);
}

.price strong {
  color: var(--color-text);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--color-muted-2);
  font-size: 0.74rem;
}

.price-card ul {
  flex: 1;
}

.pricing-footnote {
  margin: 1.4rem auto 0;
  color: var(--color-muted-2);
  font-size: 0.74rem;
  text-align: center;
}

.pricing-link-wrap {
  margin-top: 0.7rem;
  text-align: center;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.9rem);
}

.faq-intro .button {
  margin-top: 0.7rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(19, 36, 58, 0.78), rgba(8, 21, 36, 0.92));
  transition: border-color var(--transition), background var(--transition);
}

.faq-list details[open] {
  border-color: rgba(102, 227, 255, 0.27);
  background: linear-gradient(145deg, rgba(21, 42, 67, 0.86), rgba(8, 22, 38, 0.96));
}

.faq-list summary {
  position: relative;
  padding: 1.2rem 3.4rem 1.2rem 1.25rem;
  color: var(--color-text-soft);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 14px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  content: "";
  transform: translateY(-50%);
  transition: transform var(--transition);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  margin: 0 1.25rem;
  padding: 0;
  border-top: 0;
  font-size: 0.9rem;
}

.faq-list details > p:first-of-type {
  margin-top: -0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.faq-list details > p:last-of-type {
  padding-bottom: 1.25rem;
}

.faq-list details > p + p {
  margin-top: 0.65rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 82% 30%, rgba(46, 167, 255, 0.18), transparent 25rem),
    radial-gradient(circle at 5% 100%, rgba(65, 211, 158, 0.11), transparent 24rem),
    linear-gradient(135deg, #0b1c30, #07111f 65%);
}

.final-cta-motion {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(102, 227, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000 80%, transparent);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 4rem;
  padding: 2.4rem;
  border: 1px solid rgba(102, 227, 255, 0.22);
  border-radius: 1.8rem;
  background: rgba(9, 23, 39, 0.72);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 3.8vw, 4.3rem);
}

.final-cta p {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1rem;
}

.final-cta-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.75rem;
}

.final-cta-actions small {
  color: var(--color-muted-2);
  font-size: 0.68rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--color-bg-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.8fr);
  gap: 3rem;
  padding: 4.2rem 0 3rem;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 350px;
  font-size: 0.84rem;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-soft);
  font-size: 0.76rem;
}

.footer-trust span {
  font-size: 0.72rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-column h3 {
  margin-bottom: 0.35rem;
  color: var(--color-text-soft);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}

.footer-column a {
  color: var(--color-muted-2);
  font-size: 0.78rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-column a:hover {
  color: var(--color-cyan);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0 1.7rem;
  border-top: 1px solid rgba(148, 169, 194, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #64778e;
  font-size: 0.68rem;
}

/* Reveal state; visible by default when JS is unavailable */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2, .75, .25, 1), transform 700ms cubic-bezier(.2, .75, .25, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


/* Shared site footer (match site.css) */
.site-footer { border-top: 1px solid var(--color-line); background: var(--color-bg-deep); }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 2rem; padding: 3.5rem 0 2.5rem; }
.footer-brand img { width: 210px; }
.footer-brand p { max-width: 34ch; color: var(--color-muted); font-size: .82rem; }
.footer-trust { display: inline-flex; align-items: center; gap: .55rem; margin-top: .65rem; padding: .45rem .65rem; border: 1px solid var(--color-line); border-radius: .65rem; background: rgba(15,32,53,.45); color: inherit; text-decoration: none; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.footer-trust:hover,
.footer-trust:focus-visible { border-color: rgba(102,227,255,.35); background: rgba(46,167,255,.08); outline: none; }
.footer-trust span { color: var(--color-warning); font-size: .72rem; letter-spacing: .05em; }
.footer-trust strong { font-size: .68rem; color: inherit; }
.footer-column h3 { margin: 0 0 .7rem; font-size: .78rem; }
.footer-column a { display: block; padding: .3rem 0; color: var(--color-muted); font-size: .75rem; }
.footer-column a:hover { color: var(--color-cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0 1.5rem; border-top: 1px solid var(--color-line); color: var(--color-muted-2); font-size: .68rem; }

/* Reveal states */

/* Back to top — match original marketing widget (bottom-right) */
.site-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10031;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease;
}
.site-scroll-top svg { width: 1.15rem; height: 1.15rem; }
.site-scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.site-scroll-top:hover,
.site-scroll-top:focus-visible { box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28); outline: none; }
@media (max-width: 767px) {
  .site-scroll-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
