:root {
  --bg: #05070d;
  --panel: rgba(12, 16, 28, 0.82);
  --panel-2: rgba(18, 24, 42, 0.92);
  --border: rgba(255, 255, 255, 0.105);
  --border-hot: rgba(120, 255, 214, 0.5);
  --text: #f5f7ff;
  --muted: #8f9ab8;
  --soft: #cbd5ee;
  --cyan: #6ff7ff;
  --mint: #7bffcf;
  --violet: #8c70ff;
  --pink: #ff6bd6;
  --amber: #ffd36e;
  --red: #ff7676;
  --green: #7bffcf;
  --node-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --topbar-height: 64px;
  --left-width: 246px;
  --right-width: 312px;
  --console-height: 44px;
  --zoom: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 16%, rgba(140, 112, 255, 0.18), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(111, 247, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #05070d, #070a12 45%, #05070d);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(116, 151, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 151, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

button,
textarea,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  height: 100vh;
  grid-template-columns: var(--left-width) 1fr var(--right-width);
  grid-template-rows: var(--topbar-height) 1fr var(--console-height);
  grid-template-areas:
    "topbar topbar topbar"
    "left canvas right"
    "console console console";
}

.designer-topbar {
  grid-area: topbar;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.74);
  backdrop-filter: blur(22px);
}

.brand {
  width: calc(var(--left-width) - 24px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #041016;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--mint) 55%, #fff);
  box-shadow: 0 0 32px rgba(111, 247, 255, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.topbar-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.topbar-tabs a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.topbar-tabs a.active,
.topbar-tabs a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.ghost-button,
.run-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.045);
}

.ghost-button {
  padding: 0 13px;
}

.run-button {
  padding: 0 15px;
  color: #031015;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 30px rgba(111, 247, 255, 0.18);
}

.run-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #061015;
  box-shadow: 0 0 0 6px rgba(6, 16, 21, 0.12);
}

.left-rail,
.right-inspector {
  position: relative;
  z-index: 5;
  min-height: 0;
  overflow: auto;
  border-color: var(--border);
  background: rgba(5, 7, 13, 0.62);
  backdrop-filter: blur(22px);
}

.left-rail {
  grid-area: left;
  padding: 18px 14px;
  border-right: 1px solid var(--border);
}

.right-inspector {
  grid-area: right;
  padding: 16px;
  border-left: 1px solid var(--border);
}

.rail-title {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.palette-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 9px;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--text);
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.palette-item:hover {
  transform: translateX(2px);
  border-color: rgba(111, 247, 255, 0.18);
  background: rgba(255, 255, 255, 0.062);
}

.palette-item strong,
.palette-item small {
  display: block;
}

.palette-item strong {
  font-size: 13px;
}

.palette-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.palette-icon {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
}

.palette-icon.trigger { background: linear-gradient(135deg, var(--cyan), #bffcff); }
.palette-icon.ai { background: linear-gradient(135deg, var(--mint), var(--violet)); }
.palette-icon.decision { background: linear-gradient(135deg, var(--amber), var(--pink)); }
.palette-icon.email { background: linear-gradient(135deg, #b7c4ff, var(--violet)); }
.palette-icon.revenue { background: linear-gradient(135deg, var(--mint), var(--amber)); }

.rail-divider {
  height: 1px;
  margin: 18px 0;
  background: var(--border);
}

.mini-hint {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
  background:
    radial-gradient(circle at top left, rgba(111, 247, 255, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.035);
}

.mini-hint strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
}

.mini-hint p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.inspector-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
}

.inspector-header strong {
  color: var(--mint);
}

.inspector-preview {
  position: relative;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(123, 255, 207, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.inspector-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(111,247,255,0.18), transparent, rgba(140,112,255,0.12));
}

.preview-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 24px rgba(123, 255, 207, 0.5);
}

.inspector-preview h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.inspector-preview p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.inspector-group {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.032);
}

.inspector-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fake-input {
  padding: 12px;
  border-radius: 12px;
  color: var(--soft);
  font-size: 13px;
  background: rgba(0, 0, 0, 0.22);
}

.meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  box-shadow: 0 0 20px rgba(123, 255, 207, 0.32);
}

.output-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  color: var(--soft);
  font-size: 13px;
}

.canvas-viewport {
  grid-area: canvas;
  min-width: 0;
  min-height: 0;
  overflow: auto;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 50% 280px, rgba(111, 247, 255, 0.075), transparent 34%),
    radial-gradient(circle at 50% 1450px, rgba(140, 112, 255, 0.09), transparent 34%);
}

.canvas-stage {
  position: relative;
  width: 2100px;
  height: 3800px;
  transform: scale(var(--zoom));
  transform-origin: top left;
  transition: transform 0.2s ease;
}

.connection-layer {
  position: absolute;
  inset: 0;
  width: 2100px;
  height: 3800px;
  pointer-events: none;
  overflow: visible;
}

.connector {
  fill: none;
  stroke: url(#flowGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 11 13;
  filter: url(#lineGlow);
  animation: dash 2.8s linear infinite;
}

.connector.hot {
  stroke: url(#hotGradient);
  stroke-width: 5;
  opacity: 0.9;
}

.connector.faint {
  stroke-width: 3;
  opacity: 0.42;
}

.node {
  position: absolute;
  cursor: pointer;
  left: var(--x);
  top: var(--y);
  width: 600px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022)),
    rgba(12, 16, 28, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--node-shadow);
  user-select: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.node:hover,
.node.selected {
  border-color: rgba(123, 255, 207, 0.42);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(123, 255, 207, 0.08),
    0 0 72px rgba(123, 255, 207, 0.12);
}

.node.dragging {
  z-index: 20;
  cursor: pointer;
  transform: translateY(-2px);
}

.node-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.node-label,
.node-status,
.path-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.node-label {
  color: var(--cyan);
  border: 1px solid rgba(111, 247, 255, 0.22);
  background: rgba(111, 247, 255, 0.08);
}

.node-label.ai,
.node-label.revenue,
.node-label.cta {
  color: var(--mint);
  border-color: rgba(123, 255, 207, 0.28);
  background: rgba(123, 255, 207, 0.08);
}

.node-label.decision {
  color: var(--amber);
  border-color: rgba(255, 211, 110, 0.28);
  background: rgba(255, 211, 110, 0.08);
}

.node-label.email {
  color: #bec8ff;
  border-color: rgba(190, 200, 255, 0.28);
  background: rgba(140, 112, 255, 0.1);
}

.node-label.segment,
.node-label.timing,
.node-label.explain,
.node-label.test,
.node-label.score,
.node-label.sync {
  color: var(--soft);
}

.node-status {
  margin-left: auto;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.node-status.active {
  color: #041016;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

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

.node h1 {
  max-width: 550px;
  margin-bottom: 16px;
  font-size: 50px;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.node h2 {
  margin-bottom: 12px;
  font-size: 39px;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.node h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.node p {
  color: var(--soft);
  line-height: 1.62;
}

.node-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.prompt-card button,
.demo-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 15px;
  font-weight: 900;
}

.primary-button,
.prompt-card button,
.demo-form button {
  color: #041016;
  background: linear-gradient(135deg, var(--cyan), var(--mint) 55%, #f1fffb);
  box-shadow: 0 0 34px rgba(111, 247, 255, 0.2);
}

.secondary-button {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
}

.node-output {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.node-output span,
.generated-strip span,
.email-preview span,
.mini-stat span,
.revenue-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.node-output strong {
  font-size: 17px;
}

.node-hero {
  overflow: hidden;
}

.node-hero::before,
.node-ai::before,
.revenue-node::before,
.demo-node::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(111, 247, 255, 0.25), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(140, 112, 255, 0.24), transparent 38%);
  filter: blur(18px);
  opacity: 0.9;
}

.node-wide {
  width: 770px;
}

.node-ai {
  border-color: rgba(123, 255, 207, 0.28);
}

.ai-builder-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: stretch;
}

.prompt-card {
  padding: 14px;
  border: 1px solid rgba(123, 255, 207, 0.18);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
}

.prompt-card textarea {
  width: 100%;
  min-height: 122px;
  resize: none;
  margin: 8px 0 10px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.prompt-card textarea:focus,
.demo-form input:focus {
  border-color: rgba(123, 255, 207, 0.42);
  box-shadow: 0 0 0 4px rgba(123, 255, 207, 0.08);
}

.prompt-card button {
  width: 100%;
}

.generated-strip {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.generated-strip span {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
}

.generated-strip span.flash {
  color: #041016;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

.micro-node {
  width: 320px;
  padding: 20px;
}

.micro-node p {
  margin-bottom: 0;
  font-size: 14px;
}

.node-decision {
  width: 600px;
  text-align: center;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 110, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022)),
    rgba(12, 16, 28, 0.9);
}

.decision-shape {
  padding: 12px 18px 6px;
}

.decision-shape > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.branch-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.path-badge,
.branch-pills span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.path-badge.yes,
.branch-pills .yes {
  color: #041016;
  background: linear-gradient(135deg, var(--mint), #d9fff5);
}

.path-badge.no,
.branch-pills .no {
  color: var(--text);
  background: rgba(255, 107, 214, 0.16);
  border: 1px solid rgba(255, 107, 214, 0.24);
}

.branch-node {
  width: 600px;
}

.email-preview {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(123, 255, 207, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(123, 255, 207, 0.09), transparent 36%),
    rgba(0, 0, 0, 0.2);
}

.email-preview strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.email-preview p {
  margin: 0;
  font-size: 14px;
}

.email-preview.alt {
  border-color: rgba(255, 107, 214, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 214, 0.12), transparent 36%),
    rgba(0, 0, 0, 0.2);
}

.mini-stat {
  width: 190px;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-stat strong {
  font-size: 34px;
  letter-spacing: -0.06em;
}

.feature-node {
  min-height: 194px;
}

.revenue-node {
  text-align: center;
}

.revenue-node p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.revenue-grid div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.revenue-grid strong {
  font-size: 34px;
  letter-spacing: -0.06em;
}

.demo-node {
  width: 600px;
  text-align: center;
  border-color: rgba(123, 255, 207, 0.34);
}

.demo-form {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
}

.demo-form input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.demo-form input::placeholder {
  color: rgba(203, 213, 238, 0.52);
}

.bottom-console {
  grid-area: console;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  background: rgba(5, 7, 13, 0.8);
  backdrop-filter: blur(18px);
}

.console-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.console-led {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(123, 255, 207, 0.6);
}

.zoom-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zoom-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.zoom-controls span {
  width: 44px;
  text-align: center;
  color: var(--soft);
}

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

@media (max-width: 1180px) {
  :root {
    --right-width: 0px;
  }

  .right-inspector {
    display: none;
  }

  .app-shell {
    grid-template-columns: var(--left-width) 1fr;
    grid-template-areas:
      "topbar topbar"
      "left canvas"
      "console console";
  }
}

@media (max-width: 820px) {
  body {
    overflow: auto;
  }

  .app-shell {
    display: block;
    height: auto;
  }

  .designer-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .brand {
    width: auto;
  }

  .brand small,
  .topbar-tabs,
  .ghost-button {
    display: none;
  }

  .left-rail,
  .right-inspector,
  .bottom-console {
    display: none;
  }

  .canvas-viewport {
    overflow-x: auto;
    overflow-y: visible;
    min-height: calc(100vh - var(--topbar-height));
  }

  .canvas-stage {
    width: 960px;
    height: 3600px;
    transform: scale(0.68);
    transform-origin: top left;
  }

  .connection-layer {
    width: 960px;
    height: 3600px;
  }

  .node {
    width: 560px;
  }

  .node,
  .node-wide,
  .node-decision,
  .branch-node,
  .demo-node {
    left: 200px !important;
  }

  .node-hero { top: 80px !important; }
  .node-ai { top: 610px !important; }
  #decision-node { top: 1160px !important; }
  .left-branch { top: 1650px !important; }
  .right-branch { top: 2050px !important; }
  .revenue-node { top: 2570px !important; }
  .demo-node { top: 3050px !important; }

  .micro-node,
  .feature-node {
    display: none;
  }

  .ai-builder-layout {
    grid-template-columns: 1fr;
  }

  .node h1 {
    font-size: 45px;
  }

  .demo-form,
  .revenue-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .revenue-grid {
    display: grid;
  }
}

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

/* tamaly.cloud copy refinements */
.brand strong { text-transform: none; }
.benefit-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--soft);
  line-height: 1.45;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 14px rgba(123,255,207,.3);
}
