/* MeuSite — clean build */
html, body {
  margin: 0;
  padding: 0;
  background: #010805 !important;
  color: #eafff4 !important;
  min-height: 100vh;
}

.s100 {
  --bg: #010805;
  --neon: #00ff87;
  --neon2: #39ff14;
  --muted: #8fbca3;
  --line: rgba(0, 255, 135, 0.22);
  --text: #eafff4;
  --wa: #25d366;
  --font-d: "Syne", sans-serif;
  --font-b: "Outfit", sans-serif;
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  overflow-x: hidden;
  isolation: isolate;
}

.s100 *,
.s100 *::before,
.s100 *::after {
  box-sizing: border-box;
}

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

.s100 h1,
.s100 h2,
.s100 h3 {
  font-family: var(--font-d);
  letter-spacing: -0.03em;
  color: var(--text);
}

.s100-canvas {
  display: none;
}

.s100-glitter {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.s100-glitter span {
  position: absolute !important;
  top: -14px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #ffffff 0%, #86efac 35%, #00ff87 65%, transparent 75%) !important;
  box-shadow: 0 0 8px rgba(134, 239, 172, 1), 0 0 14px rgba(0, 255, 135, 0.7) !important;
  animation-name: s100GlitterFall !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  will-change: transform, opacity;
  color: transparent !important;
}

@keyframes s100GlitterFall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(30px) rotate(180deg);
    opacity: 0.2;
  }
}

.s100-beams {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.s100-beams::before,
.s100-beams::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  left: -20%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 222, 128, 0.15),
    rgba(0, 255, 135, 0.85),
    rgba(74, 222, 128, 0.2),
    transparent
  );
  box-shadow: 0 0 28px 4px rgba(0, 255, 135, 0.45), 0 0 60px 8px rgba(0, 255, 135, 0.2);
  animation: s100BeamPass 7s linear infinite;
}

.s100-beams::before {
  top: 22%;
  animation-duration: 8.5s;
}

.s100-beams::after {
  top: 68%;
  animation-duration: 6.2s;
  animation-delay: -3s;
  opacity: 0.75;
  height: 3px;
}

@keyframes s100BeamPass {
  0% {
    transform: translateX(-30%) rotate(-8deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(30%) rotate(-8deg);
    opacity: 0;
  }
}

.s100-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.s100-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: s100Orb 5.5s ease-in-out infinite;
}

.s100-orb.a {
  width: min(85vw, 520px);
  height: min(85vw, 520px);
  background: radial-gradient(circle, rgba(0, 255, 135, 0.7), transparent 68%);
  top: -8%;
  left: -12%;
  opacity: 0.55;
}

.s100-orb.b {
  width: min(70vw, 440px);
  height: min(70vw, 440px);
  background: radial-gradient(circle, rgba(57, 255, 20, 0.55), transparent 70%);
  top: 28%;
  right: -16%;
  animation-delay: -1.8s;
  opacity: 0.45;
}

.s100-orb.c {
  width: min(90vw, 560px);
  height: min(90vw, 560px);
  background: radial-gradient(circle, rgba(0, 201, 106, 0.45), transparent 70%);
  bottom: -12%;
  left: 18%;
  animation-delay: -3.2s;
  opacity: 0.4;
}

@keyframes s100Orb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.38;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.62;
  }
}

.s100-scan {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 3px
  );
}

.s100-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 5.5rem;
}

.s100-container {
  width: min(1100px, calc(100% - 1.5rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .s100-container {
    width: min(1100px, calc(100% - 2.5rem));
  }
}

.s100-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(1, 8, 5, 0.78);
  border-bottom: 1px solid var(--line);
}

.s100-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.s100-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.05rem;
}

.s100-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #00ff87, #00a85a);
  box-shadow: 0 0 18px rgba(0, 255, 135, 0.55);
  animation: s100Mark 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.s100-mark svg {
  width: 22px;
  height: 22px;
}

@keyframes s100Mark {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(0, 255, 135, 0.45);
  }
  50% {
    box-shadow: 0 0 26px rgba(0, 255, 135, 0.85);
  }
}

.s100-brand strong {
  color: var(--neon);
  text-shadow: 0 0 12px rgba(0, 255, 135, 0.7), 0 0 28px rgba(0, 255, 135, 0.35);
}

.s100-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--wa);
  color: #03140a;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
}

.s100-hero {
  position: relative;
  padding: 2rem 0 2.5rem;
  min-height: auto;
  overflow: visible;
}

@media (min-width: 768px) {
  .s100-hero {
    min-height: min(92vh, 860px);
    display: grid;
    align-items: center;
    padding: 3rem 0 4rem;
  }
}

.s100-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(0, 255, 135, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(57, 255, 20, 0.1), transparent 50%),
    linear-gradient(180deg, #03150c 0%, #010805 60%, #000503 100%);
}

.s100-neon-back {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 8%;
  width: min(100%, 520px);
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 135, 0.55) 0%,
    rgba(0, 255, 135, 0.22) 40%,
    transparent 72%
  );
  filter: blur(22px);
  animation: s100NeonBack 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes s100NeonBack {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.s100-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 255, 135, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 15%, transparent 75%);
  animation: s100Grid 20s linear infinite;
}

@keyframes s100Grid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 48px, 48px 0;
  }
}

.s100-lights {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.s100-bar {
  position: absolute;
  width: 2px;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--neon), transparent);
  box-shadow: 0 0 14px var(--neon);
  opacity: 0.4;
  animation: s100Fall 6s linear infinite;
}

.s100-bar:nth-child(1) {
  left: 8%;
}
.s100-bar:nth-child(2) {
  left: 22%;
  animation-delay: -1.2s;
  height: 80px;
}
.s100-bar:nth-child(3) {
  left: 38%;
  animation-delay: -2.4s;
}
.s100-bar:nth-child(4) {
  left: 52%;
  animation-delay: -3.5s;
  height: 130px;
}
.s100-bar:nth-child(5) {
  left: 68%;
  animation-delay: -4.8s;
}
.s100-bar:nth-child(6) {
  left: 80%;
  animation-delay: -2s;
  height: 95px;
}
.s100-bar:nth-child(7) {
  left: 92%;
  animation-delay: -5.5s;
  height: 70px;
}

@keyframes s100Fall {
  0% {
    top: -140px;
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

.s100-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .s100-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.s100-hero-content {
  display: grid;
  gap: 1.15rem;
  max-width: 720px;
}

.s100-mock {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  aspect-ratio: 10 / 12;
  border-radius: 28px;
  border: 1px solid rgba(0, 255, 135, 0.35);
  background:
    linear-gradient(160deg, rgba(0, 255, 135, 0.12), transparent 40%),
    #04140c;
  box-shadow:
    0 0 0 1px rgba(0, 255, 135, 0.08),
    0 0 40px rgba(0, 255, 135, 0.18),
    inset 0 0 40px rgba(0, 255, 135, 0.05);
  overflow: hidden;
  animation: s100MockPulse 3.2s ease-in-out infinite;
}

@keyframes s100MockPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(0, 255, 135, 0.08), 0 0 28px rgba(0, 255, 135, 0.16);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(0, 255, 135, 0.18), 0 0 52px rgba(0, 255, 135, 0.32);
  }
}

.s100-mock-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 255, 135, 0.2);
  background: rgba(0, 255, 135, 0.06);
}

.s100-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  opacity: 0.85;
}

.s100-mock-dot:nth-child(2) {
  opacity: 0.55;
}
.s100-mock-dot:nth-child(3) {
  opacity: 0.35;
}

.s100-mock-body {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.s100-mock-hero {
  height: 88px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 135, 0.25);
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 255, 135, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(0, 255, 135, 0.12), rgba(4, 20, 12, 0.9));
  display: grid;
  align-content: end;
  padding: 0.85rem;
  gap: 0.35rem;
}

.s100-mock-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 255, 135, 0.55);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.45);
}

.s100-mock-line.short {
  width: 42%;
  background: rgba(0, 255, 135, 0.28);
  box-shadow: none;
}

.s100-mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.s100-mock-tile {
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 135, 0.2);
  background: rgba(0, 255, 135, 0.06);
  position: relative;
  overflow: hidden;
}

.s100-mock-tile::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 1px dashed rgba(0, 255, 135, 0.35);
}

.s100-mock-cta {
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.45);
}

.s100-mock-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.28), transparent 70%);
  animation: s100Orb 4s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 959px) {
  .s100-mock {
    margin-top: 0.5rem;
    width: min(100%, 340px);
  }
}

.s100-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 135, 0.35);
  background: rgba(0, 255, 135, 0.08);
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.45);
}

.s100-logo-hero {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.7rem, 8vw, 4.8rem);
  line-height: 1.15;
  color: var(--neon);
  text-shadow:
    0 0 8px rgba(0, 255, 135, 1),
    0 0 20px rgba(0, 255, 135, 0.9),
    0 0 40px rgba(0, 255, 135, 0.65),
    0 0 80px rgba(0, 255, 135, 0.4),
    0 0 120px rgba(0, 255, 135, 0.25);
  filter: drop-shadow(0 0 18px rgba(0, 255, 135, 0.55));
  animation: s100Flicker 4.5s ease-in-out infinite;
  white-space: nowrap;
  margin: 0;
  position: relative;
  max-width: none;
  overflow: visible;
  padding: 0.35em 0.2em;
  margin-left: -0.2em;
  box-decoration-break: clone;
}

@media (max-width: 640px) {
  .s100-logo-hero {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    padding: 0.45em 0.25em;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .s100-logo-hero {
    font-size: 2.6rem;
  }
}

@media (min-width: 901px) {
  .s100-logo-hero {
    font-size: clamp(3.2rem, 6.5vw, 5rem);
  }
}

.s100-logo-hero::before {
  content: "";
  display: none;
}

.s100-hero-content {
  overflow: visible;
}

@keyframes s100Flicker {
  0%,
  19%,
  21%,
  23%,
  80%,
  100% {
    opacity: 1;
  }
  20%,
  22% {
    opacity: 0.78;
  }
}

.s100-hero h1 {
  font-size: clamp(1.45rem, 5.5vw, 2.4rem);
  line-height: 1.15;
  max-width: 16ch;
  margin: 0;
}

.s100-price {
  color: var(--neon);
  text-shadow: 0 0 16px rgba(0, 255, 135, 0.7);
  white-space: nowrap;
}

.s100-lead {
  color: var(--muted);
  font-size: clamp(0.98rem, 3.4vw, 1.2rem);
  max-width: 38ch;
  line-height: 1.55;
  margin: 0;
}

.s100-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

@media (min-width: 540px) {
  .s100-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.s100-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #03140a;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.4), 0 0 28px rgba(37, 211, 102, 0.5);
  animation: s100Cta 2.8s ease-in-out infinite;
  width: 100%;
}

@media (min-width: 540px) {
  .s100-btn-wa {
    width: auto;
  }
}

@keyframes s100Cta {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.4), 0 0 22px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.55), 0 0 40px rgba(37, 211, 102, 0.75);
  }
}

.s100-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--neon);
  font-weight: 700;
  background: rgba(0, 255, 135, 0.05);
  width: 100%;
}

@media (min-width: 540px) {
  .s100-btn-ghost {
    width: auto;
  }
}

.s100-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 520px) {
  .s100-meta {
    grid-template-columns: repeat(3, auto);
    gap: 0.7rem 1.2rem;
  }
}

.s100-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.s100-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: s100Blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes s100Blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.s100-section {
  padding: 3.2rem 0;
}

@media (min-width: 768px) {
  .s100-section {
    padding: 4.5rem 0;
  }
}

.s100-head {
  max-width: 620px;
  margin-bottom: 1.6rem;
}

.s100-head .tag {
  color: var(--neon);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.45);
  margin-bottom: 0.65rem;
}

.s100-head h2 {
  font-size: clamp(1.55rem, 5vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 0.6rem;
}

.s100-head p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

.s100-glow {
  color: var(--neon);
  text-shadow: 0 0 14px rgba(0, 255, 135, 0.55);
}

.s100-showcase {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .s100-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.s100-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem 1.2rem 1.4rem;
  background: linear-gradient(160deg, rgba(0, 255, 135, 0.1), transparent 55%),
    rgba(4, 20, 12, 0.88);
  min-height: 168px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.s100-card:hover,
.s100-card:active {
  border-color: rgba(0, 255, 135, 0.55);
  transform: translateY(-2px);
}

.s100-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.22), transparent 70%);
  animation: s100Orb 4s ease-in-out infinite;
}

.s100-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.35);
  box-shadow: 0 0 18px rgba(0, 255, 135, 0.22);
  color: var(--neon);
  position: relative;
  z-index: 1;
}

.s100-ico svg {
  width: 28px;
  height: 28px;
}

.s100-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(0, 255, 135, 0.3);
}

.s100-card p {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  margin: 0;
}

.s100-features {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

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

.s100-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 255, 135, 0.04);
}

.s100-feature-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--neon);
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.28);
  box-shadow: 0 0 14px rgba(0, 255, 135, 0.15);
}

.s100-feature-ico svg {
  width: 22px;
  height: 22px;
}

.s100-feature h3 {
  font-size: 1.02rem;
  margin: 0 0 0.2rem;
}

.s100-feature p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.s100-pricebox {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 135, 0.35);
  border-radius: 26px;
  padding: 1.5rem 1.2rem;
  background:
    radial-gradient(ellipse 90% 80% at 15% 0%, rgba(0, 255, 135, 0.2), transparent 55%),
    linear-gradient(145deg, rgba(0, 255, 135, 0.08), rgba(2, 8, 5, 0.92));
  box-shadow: 0 0 40px rgba(0, 255, 135, 0.12);
}

@media (min-width: 700px) {
  .s100-pricebox {
    padding: 2.4rem;
  }
}

.s100-pricebox::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 12%;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 18px var(--neon);
  animation: s100Beam 3.5s ease-in-out infinite;
}

@keyframes s100Beam {
  0%,
  100% {
    left: 8%;
    opacity: 0.4;
  }
  50% {
    left: 48%;
    opacity: 1;
  }
}

.s100-price-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 780px) {
  .s100-price-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }
}

.s100-bigprice {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3.2rem, 16vw, 4.8rem);
  line-height: 0.92;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(0, 255, 135, 0.9), 0 0 36px rgba(0, 255, 135, 0.45);
  margin: 0;
}

.s100-bigprice small {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-shadow: none;
  font-weight: 700;
  margin-top: 0.5rem;
}

.s100-price-copy h2 {
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  margin: 0 0 0.55rem;
}

.s100-price-copy > p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.s100-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.s100-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.96rem;
}

.s100-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  filter: drop-shadow(0 0 6px rgba(0, 255, 135, 0.7));
}

.s100-steps {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 760px) {
  .s100-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.s100-step {
  padding: 1.35rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(4, 20, 12, 0.75);
}

.s100-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 2rem;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 0.65rem;
  text-shadow: 0 0 16px rgba(0, 255, 135, 0.55);
}

.s100-step h3 {
  font-size: 1.08rem;
  margin: 0 0 0.35rem;
}

.s100-step p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.s100-delivery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .s100-delivery {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.25rem;
  }
}

.s100-delivery-panel {
  border-radius: 22px;
  border: 1px solid rgba(0, 255, 135, 0.3);
  padding: 1.6rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 255, 135, 0.18), transparent 45%),
    rgba(4, 20, 12, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  min-height: 160px;
}

.s100-delivery-panel .big {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.6rem, 12vw, 3.6rem);
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 255, 135, 0.55);
  margin: 0;
}

.s100-delivery-panel p {
  color: var(--muted);
  margin: 0;
}

.s100-dlist {
  display: grid;
  gap: 0.75rem;
}

.s100-ditem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 255, 135, 0.03);
}

.s100-ditem strong {
  display: block;
  font-family: var(--font-d);
  margin-bottom: 0.15rem;
}

.s100-ditem span {
  color: var(--muted);
  font-size: 0.92rem;
}

.s100-mini {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--neon);
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.25);
}

.s100-mini svg {
  width: 20px;
  height: 20px;
}

.s100-faq {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
}

.s100-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 255, 135, 0.03);
  padding: 0 0.95rem;
}

.s100-faq details[open] {
  border-color: rgba(0, 255, 135, 0.45);
}

.s100-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.98rem;
}

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

.s100-faq summary::after {
  content: "+";
  color: var(--neon);
  font-size: 1.35rem;
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
}

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

.s100-faq p {
  color: var(--muted);
  padding-bottom: 1rem;
  font-size: 0.95rem;
  margin: 0;
}

.s100-final {
  text-align: center;
  border-radius: 26px;
  border: 1px solid rgba(0, 255, 135, 0.35);
  padding: 2rem 1.15rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 255, 135, 0.22), transparent 55%),
    rgba(4, 20, 12, 0.92);
  box-shadow: 0 0 50px rgba(0, 255, 135, 0.12);
}

@media (min-width: 700px) {
  .s100-final {
    padding: 3rem 2rem;
  }
}

.s100-final h2 {
  font-size: clamp(1.55rem, 5vw, 2.5rem);
  margin: 0 0 0.65rem;
  text-shadow: 0 0 18px rgba(0, 255, 135, 0.35);
}

.s100-final p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 1.35rem;
  font-size: 1.02rem;
}

.s100-final .s100-cta-row {
  justify-content: center;
}

.s100-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.s100-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(1, 8, 5, 0.96), rgba(1, 8, 5, 0.88));
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

@media (min-width: 900px) {
  .s100-sticky {
    display: none;
  }
}

.s100-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #03140a;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.5);
}

.s100-float {
  display: none;
}

@media (min-width: 900px) {
  .s100-float {
    display: grid;
    place-items: center;
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 40;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
    animation: s100Float 2s ease-out infinite;
  }
}

@keyframes s100Float {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(0, 0, 0, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .s100 *:not(.s100-glitter):not(.s100-glitter *),
  .s100 *:not(.s100-glitter):not(.s100-glitter *)::before,
  .s100 *:not(.s100-glitter):not(.s100-glitter *)::after {
    animation: none !important;
    transition: none !important;
  }

  .s100-glitter span {
    animation-name: s100GlitterFall !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

/* Force light readable text */
.s100 {
  color: #eafff4 !important;
}
.s100 h1,
.s100 h2,
.s100 h3,
.s100 p,
.s100 li,
.s100 summary,
.s100 strong,
.s100 a {
  color: #eafff4;
}
.s100 span:not(.s100-glitter span):not(.s100-dot):not(.s100-mock-dot):not(.s100-mock-line) {
  color: inherit;
}
.s100-brand strong,
.s100-logo-hero,
.s100-price,
.s100-glow,
.s100-eyebrow,
.s100-head .tag,
.s100-bigprice,
.s100-delivery-panel .big,
.s100-btn-ghost {
  color: #00ff87 !important;
}
.s100-lead,
.s100-meta,
.s100-head p,
.s100-card p,
.s100-feature p,
.s100-step p,
.s100-faq p,
.s100-footer,
.s100-price-copy > p,
.s100-ditem span,
.s100-final p {
  color: #9fd4b8 !important;
}
.s100-btn-wa,
.s100-btn-wa *,
.s100-nav-cta,
.s100-nav-cta *,
.s100-sticky a,
.s100-sticky a * {
  color: #03140a !important;
}

/* === FORCE LIGHT TEXT (fix black text bug) === */
.s100,
.s100 p,
.s100 li,
.s100 strong,
.s100 summary,
.s100 h1,
.s100 h2,
.s100 h3,
.s100 h4,
.s100 a {
  color: #eafff4 !important;
}

.s100-glitter span {
  color: transparent !important;
  background: radial-gradient(circle, #ffffff 0%, #86efac 35%, #00ff87 65%, transparent 75%) !important;
}

.s100-brand strong,
.s100-logo-hero,
.s100-price,
.s100-glow,
.s100-eyebrow,
.s100-head .tag,
.s100-bigprice,
.s100-delivery-panel .big,
.s100-step::before,
.s100-btn-ghost {
  color: #00ff87 !important;
}

.s100-lead,
.s100-meta,
.s100-head p,
.s100-card p,
.s100-feature p,
.s100-step p,
.s100-faq p,
.s100-footer,
.s100-price-copy > p,
.s100-ditem span,
.s100-delivery-panel p,
.s100-final p {
  color: #9fd4b8 !important;
}

.s100-btn-wa,
.s100-btn-wa *,
.s100-nav-cta,
.s100-nav-cta *,
.s100-sticky a,
.s100-sticky a * {
  color: #03140a !important;
}

.s100-float,
.s100-float * {
  color: #ffffff !important;
}
