/* ============================================================================
   PrintLister — styles
   Aesthetic: Bambu Lab (clean tech, light/dark sections, rounded cards, bold
   geometric type) + Meshy (electric accent, glowing CTAs, motion). Accent: blue.
   Mobile-first. Lots of motion, all respecting prefers-reduced-motion.
   ============================================================================ */

:root {
  --ink: #0b1320;            /* near-black, slightly blue */
  --ink-soft: #46556b;
  --ink-faint: #75829a;
  --bg: #ffffff;
  --bg-soft: #f3f7fd;        /* very light blue-gray */
  --panel: #0a1322;          /* dark section bg */
  --panel-2: #0e1a2e;
  --card: #ffffff;
  --accent: #1668ff;         /* electric blue */
  --accent-2: #36d1ff;       /* cyan, for gradients */
  --accent-deep: #0b4fd6;
  --accent-tint: #e9f1ff;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --green-deep: #0f7a37;
  --line: #e3e9f2;
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-lg: 22px;
  --grad: linear-gradient(135deg, var(--accent), var(--accent-2));
  --shadow: 0 24px 60px -28px rgba(11, 25, 55, 0.45);
  --glow: 0 12px 34px -10px rgba(22, 104, 255, 0.6);
  --maxw: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.mono { font-family: "Space Mono", ui-monospace, monospace; }
.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

/* ---- Keyframes -------------------------------------------------------- */
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatSlow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-18px); } }
@keyframes aurora {
  0%   { transform: translate(-6%, -4%) scale(1); }
  50%  { transform: translate(6%, 6%) scale(1.15); }
  100% { transform: translate(-6%, -4%) scale(1); }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 12px 30px -10px rgba(22,104,255,.55); }
  50%     { box-shadow: 0 16px 44px -8px rgba(54,209,255,.8); }
}
@keyframes plusPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22,104,255,.45); }
  50%     { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(22,104,255,0); }
}

/* ---- Scroll reveal --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---- Buttons --------------------------------------------------------- */
.btn {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.2s ease;
  text-align: center;
  position: relative;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 18px 44px -10px rgba(54,209,255,.75); }
.btn-pulse { animation: pulseGlow 2.8s ease-in-out infinite; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { font-size: 1.06rem; padding: 16px 30px; }
/* sheen sweep on hover */
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }

/* ---- Nav ------------------------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 1.25rem; letter-spacing: -0.03em;
}
.logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--grad);
  display: grid; place-items: center; color: #fff; font-size: 17px; font-weight: 700;
  box-shadow: var(--glow);
}
.nav-cta { display: none; }
@media (min-width: 760px) { .nav-cta { display: inline-flex; } }

/* ---- Section shell --------------------------------------------------- */
section { padding: 64px 0; position: relative; }
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.sec-h { font-size: clamp(1.8rem, 6vw, 2.6rem); max-width: 22ch; margin-bottom: 12px; }
.sec-lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 54ch; }

/* ---- Hero ------------------------------------------------------------ */
.hero { padding: 52px 0 48px; overflow: hidden; position: relative; }
.hero-aurora { position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: 0; pointer-events: none; filter: blur(60px); opacity: 0.75; }
.hero-aurora span { position: absolute; border-radius: 50%; display: block; }
.hero-aurora .b1 { width: 420px; height: 420px; left: 8%; top: 0; background: radial-gradient(circle, rgba(22,104,255,.55), transparent 65%); animation: aurora 14s ease-in-out infinite; }
.hero-aurora .b2 { width: 360px; height: 360px; right: 6%; top: 12%; background: radial-gradient(circle, rgba(54,209,255,.5), transparent 65%); animation: aurora 18s ease-in-out infinite reverse; }
.hero-aurora .b3 { width: 300px; height: 300px; left: 38%; top: 30%; background: radial-gradient(circle, rgba(120,90,255,.35), transparent 65%); animation: aurora 22s ease-in-out infinite; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.8); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  color: var(--ink-soft); box-shadow: 0 6px 18px -12px rgba(11,25,55,.4);
  backdrop-filter: blur(6px);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.hero h1 { font-size: clamp(2.2rem, 9vw, 3.8rem); margin: 18px 0 14px; }
.hero-sub { font-size: 1.14rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 12px; }
.hero-clarify { font-size: 0.9rem; color: var(--ink-faint); max-width: 44ch; margin-bottom: 22px; }
.hero-cta { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.hero-cta .btn { width: 100%; }
.cta-micro { margin-top: 14px; font-size: 0.86rem; color: var(--ink-faint); font-weight: 500; }
.cta-micro strong { color: var(--accent-deep); }

@media (min-width: 760px) {
  .hero { padding: 72px 0 64px; }
  .hero-cta { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero-cta .btn { width: auto; }
}

/* ---- Floating 3D icons (decorative) ---------------------------------- */
.f3d {
  position: absolute; z-index: 0; pointer-events: none;
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  box-shadow: 0 22px 34px -14px rgba(22, 104, 255, 0.5),
              inset 0 2px 3px rgba(255, 255, 255, 0.55),
              inset 0 -8px 13px rgba(11, 25, 55, 0.22);
  animation: float3dA 8s ease-in-out infinite;
  will-change: transform;
}
.f3d svg { width: 56%; height: 56%; }
.f3d .glyph { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: #fff; font-size: 1.55rem; line-height: 1; }
.f3d.v1 { background: linear-gradient(150deg, #7cc4ff, #1668ff); }
.f3d.v2 { background: linear-gradient(150deg, #5fe3b6, #15a24a); box-shadow: 0 22px 34px -14px rgba(21, 162, 74, 0.45), inset 0 2px 3px rgba(255,255,255,.55), inset 0 -8px 13px rgba(8, 60, 30, 0.25); }
.f3d.v3 { background: linear-gradient(150deg, #aab8ff, #5566ff); }
.f3d.lg { width: 80px; height: 80px; border-radius: 23px; }
.f3d.lg .glyph { font-size: 2.1rem; }
.f3d.sm { width: 46px; height: 46px; border-radius: 14px; }
.f3d.sm .glyph { font-size: 1.2rem; }
.f3d.alt { animation-name: float3dB; }
.f3d.d2 { animation-duration: 10s; animation-delay: -3s; }
.f3d.d3 { animation-duration: 12.5s; animation-delay: -6s; }
@keyframes float3dA { 0%,100% { transform: translateY(0) rotate(-7deg); } 50% { transform: translateY(-16px) rotate(-3deg); } }
@keyframes float3dB { 0%,100% { transform: translateY(0) rotate(8deg); } 50% { transform: translateY(-13px) rotate(3deg); } }
@media (max-width: 760px) { .f3d { display: none; } }

/* ---- Split layout (hero + feature sections) -------------------------- */
.split { display: grid; gap: 32px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.reverse .split-media { order: -1; }
}
.split-text h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); margin-bottom: 12px; }
.split-text p { color: var(--ink-soft); font-size: 1.08rem; max-width: 44ch; }
.split-text p strong { color: var(--ink); }

.feature { padding: 56px 0; overflow: hidden; }
.feature-alt { background: var(--bg-soft); }

/* Step visual (job 1) */
.steps-vis { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.step-chip {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 24px; font-weight: 600; font-size: 1.02rem; width: 100%; max-width: 320px;
  box-shadow: var(--shadow); justify-content: center;
}
.step-chip .sc-ic {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-deep); font-weight: 700; font-size: 0.95rem;
}
.step-chip.sc-go { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--glow); }
.step-chip.sc-go .sc-ic { background: rgba(255,255,255,.25); color: #fff; }
.step-arrow { color: var(--accent); font-size: 1.2rem; line-height: 1; }

/* ---- Hero mock (clean Bambu-style card, floats) ---------------------- */
.mock {
  position: relative; z-index: 1; background: #fff;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow); overflow: hidden;
  animation: floatSlow 7s ease-in-out infinite;
}
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.tl-r { background: #ff5f57; } .tl-y { background: #febc2e; } .tl-g { background: #28c840; }
.mock-url {
  margin-left: 8px; font-family: "Space Mono", monospace; font-size: 0.68rem;
  color: var(--ink-faint); background: #fff; border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 7px; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-body { padding: 16px; display: grid; gap: 12px; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.mock-plus {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-size: 22px; font-weight: 700; font-family: "Space Grotesk", sans-serif;
  animation: plusPulse 2.4s ease-in-out infinite;
}
.mock-row .label { font-size: 0.9rem; font-weight: 600; }
.mock-row .sub { font-size: 0.76rem; color: var(--ink-faint); }
.mock-cta { margin-top: 4px; background: var(--grad); color: #fff; text-align: center; padding: 13px; border-radius: 12px; font-family: "Space Grotesk", sans-serif; font-weight: 600; box-shadow: var(--glow); }

/* Dashboard mock (job 2) */
.mock-dash { animation: floatSlow 8s ease-in-out infinite; }
.dash-body { padding: 10px; display: grid; gap: 8px; }
.dash-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.dash-name { font-weight: 600; font-size: 0.92rem; }
.dash-price { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--ink); font-size: 0.95rem; min-width: 38px; text-align: right; }
.chip { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.chip-live { background: var(--accent-tint); color: var(--accent-deep); }
.chip-sold { background: var(--green-bg); color: var(--green-deep); }
.chip-draft { background: #eef1f6; color: var(--ink-faint); }

/* ---- Trust row ------------------------------------------------------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 22px 20px; }
.trust-chip { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px; }

/* ---- Pitch / features ------------------------------------------------ */
.feat-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 28px; }
@media (min-width: 640px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(22,104,255,.4); }
.feat .fic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; background: var(--accent-tint); border: 1px solid #d6e4ff; }
.feat h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feat p { font-size: 0.96rem; color: var(--ink-soft); }

/* Product preview placeholder (clearly labeled — not a fake screenshot) */
/* ---- Offer ----------------------------------------------------------- */
.offer { background: var(--bg-soft); overflow: hidden; }
.pricing-lead { text-align: center; margin: 0 auto 30px; }
.pricing-lead .sec-h, .pricing-lead .sec-lead { margin-left: auto; margin-right: auto; }

.offer-card {
  position: relative; background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 40px 28px 32px; max-width: 480px; margin: 0 auto; text-align: center;
  border: 1px solid var(--line);
}
.offer-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.offer-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 0.76rem; padding: 7px 16px; border-radius: 100px;
  box-shadow: var(--glow); white-space: nowrap;
}
.offer-price { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 3rem; margin: 6px 0 4px; }
.offer-price small { font-size: 1.05rem; color: var(--ink-soft); font-weight: 500; }
.spots-left { font-size: 0.86rem; font-weight: 700; color: var(--accent-deep); background: var(--accent-tint); border: 1px solid #cfe0ff; border-radius: 100px; padding: 6px 13px; display: inline-block; margin-bottom: 4px; }
.value-stack { list-style: none; text-align: left; display: grid; gap: 13px; margin: 22px 0; }
.value-stack li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; color: var(--ink); line-height: 1.4; }
.vs-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; margin-top: 1px; }
.vs-bonus {
  display: flex; gap: 11px; align-items: flex-start; text-align: left;
  background: var(--accent-tint); border: 1px solid #cfe0ff; border-radius: 12px;
  padding: 14px 16px; font-size: 0.96rem; color: #1b3a6b; margin-bottom: 14px; line-height: 1.4;
}
.vs-bonus-tag {
  flex-shrink: 0; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: #fff; background: var(--grad);
  padding: 4px 9px; border-radius: 6px; margin-top: 1px;
}
.guarantee {
  display: flex; gap: 12px; align-items: center; text-align: left;
  border: 1.5px solid var(--green); background: var(--green-bg); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 18px;
}
.guarantee .g-ic { font-size: 1.4rem; flex-shrink: 0; }
.guarantee div { font-size: 0.92rem; color: var(--green-deep); line-height: 1.45; }
.guarantee strong { color: #0a5e2a; }
.offer-card .btn { width: 100%; }
.offer-fine { color: var(--ink-faint); font-size: 0.88rem; margin-top: 14px; }

/* ---- Footer ---------------------------------------------------------- */
footer { background: var(--panel-2); color: #93a1bd; padding: 46px 0 30px; }
.foot-top { display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 700px) { .foot-top { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.foot-top .brand { color: #fff; margin-bottom: 10px; }
.foot-about { font-size: 0.92rem; max-width: 40ch; line-height: 1.7; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: #c2cce0; font-size: 0.92rem; transition: color 0.2s ease; }
.foot-links a:hover { color: var(--accent-2); }
.foot-bot { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 8px; font-size: 0.82rem; color: #75829a; }

/* ---- Welcome page ---------------------------------------------------- */
.welcome { min-height: 100vh; display: flex; flex-direction: column; }
.welcome-main { flex: 1; display: grid; place-items: center; padding: 48px 0; position: relative; overflow: hidden; }
.welcome-main .hero-aurora { opacity: 0.5; }
.welcome-card { position: relative; z-index: 1; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 38px 26px; max-width: 600px; width: 100%; text-align: center; }
.welcome-check { font-size: 0.82rem; font-weight: 700; color: var(--green-deep); background: var(--green-bg); display: inline-block; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.welcome-card h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 12px; }
.welcome-card .lead { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 26px; }
.welcome-card .btn { width: 100%; margin-bottom: 28px; }
@media (min-width: 560px) { .welcome-card .btn-install { width: auto; min-width: 320px; } }
.steps { display: grid; gap: 14px; text-align: left; margin-bottom: 26px; }
.step { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.step .n { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; background: var(--grad); color: #fff; font-family: "Space Grotesk", sans-serif; font-weight: 700; display: grid; place-items: center; }
.step .body strong { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.step .body span { font-size: 0.9rem; color: var(--ink-soft); }
.welcome-note { font-size: 0.9rem; color: var(--ink-faint); }
.welcome-manage { margin-top: 18px; font-size: 0.92rem; }
.welcome-manage a { color: var(--accent); font-weight: 600; }

/* ---- Logo image (real icon instead of the + glyph) ------------------- */
.logo-img { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; box-shadow: var(--glow); display: block; }
footer .brand .logo-img { box-shadow: 0 6px 18px -8px rgba(54,209,255,.55); }

/* ---- Safety (dark band — brings the dark-section styling in) ---------- */
.safety { background: var(--panel); color: #c5d0e4; overflow: hidden; }
.safety .eyebrow { color: var(--accent-2); }
.safety .sec-h { color: #fff; }
.safety .sec-lead { color: #9fb0cc; }
.safety-head { text-align: center; max-width: 660px; margin: 0 auto 36px; }
.safety-head .sec-h, .safety-head .sec-lead { margin-left: auto; margin-right: auto; }
.safe-grid { display: grid; gap: 16px; grid-template-columns: 1fr; position: relative; z-index: 1; }
@media (min-width: 720px) { .safe-grid { grid-template-columns: 1fr 1fr; } }
.safe {
  display: flex; gap: 13px; align-items: flex-start;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 20px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.safe:hover { background: rgba(255,255,255,.07); border-color: rgba(54,209,255,.35); transform: translateY(-3px); }
.safe .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 2px; box-shadow: var(--glow); }
.safe strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 3px; }
.safe p { color: #9fb0cc; font-size: 0.92rem; line-height: 1.5; }
