/* Aggressive journey effects. Opposite of frost/mist/pill: hard cuts, no blur, snap motion.
   Scoped to .tone-aggressive / fx-* so polite packs stay untouched. */

body.tone-aggressive {
  --pack-radius: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
}
html body.tone-aggressive .btn,
html body.tone-aggressive .nav-toggle,
html body.tone-aggressive .product-card,
html body.tone-aggressive input,
html body.tone-aggressive select,
html body.tone-aggressive .txn-shell,
html body.tone-aggressive .shop-chip,
html body.tone-aggressive .badge,
html body.tone-aggressive .step-nav li {
  border-radius: 0;
  backdrop-filter: none;
}
body.tone-aggressive .btn {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--text);
}
body.tone-aggressive .eyebrow {
  letter-spacing: 0.22em;
  font-weight: 700;
}
html body.tone-aggressive.view-home .block-hero .hero-copy,
html body.tone-aggressive.view-home .block-hero.variant-cinematic .block-inner {
  max-width: 42rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0;
  background: #0a0a0a;
  color: #f4f4f0;
  backdrop-filter: none;
  border: 3px solid var(--accent);
  text-shadow: none;
}
html body.tone-aggressive.view-home .block-hero .hero-copy .eyebrow,
html body.tone-aggressive.view-home .block-hero .hero-copy .lede,
html body.tone-aggressive.view-home .block-hero.variant-cinematic .block-inner .eyebrow,
html body.tone-aggressive.view-home .block-hero.variant-cinematic .block-inner .lede {
  color: inherit;
  opacity: 0.82;
}
html body.tone-aggressive.view-home .block-hero .hero-copy .btn,
html body.tone-aggressive.view-home .block-hero.variant-cinematic .block-inner .btn {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
body.tone-aggressive .block.surface-frost,
body.tone-aggressive .block.surface-glass {
  backdrop-filter: none;
  background: var(--text);
  color: var(--bg);
}
body.tone-aggressive.fx-kinetic:not(.fx-reduced) .block-hero .hero-media,
body.tone-aggressive.fx-kinetic:not(.fx-reduced) [data-motion="float"] {
  animation: none;
  transform: none;
}

body.fx-slam-cut.view-home .block-hero .hero-copy {
  animation: ag-slam-cut 0.42s cubic-bezier(0.15, 0, 0, 1) both;
}
body.fx-slam-cut .product-card {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}
@keyframes ag-slam-cut {
  from { clip-path: inset(0 100% 0 0); transform: translate3d(-6%, 0, 0); }
  to { clip-path: inset(0); transform: none; }
}

body.fx-strobe-edge .btn,
body.fx-strobe-edge .site-header {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
body.fx-strobe-edge:not(.fx-reduced) .btn {
  animation: ag-strobe 0.9s steps(2, end) infinite;
}
@keyframes ag-strobe {
  from { outline-color: var(--accent); }
  to { outline-color: transparent; }
}

body.fx-type-impact h1,
body.fx-type-impact .brand {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
body.fx-type-impact h1 {
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: 0.92;
}

body.fx-slash-wipe.view-home .block-hero {
  overflow: clip;
}
body.fx-slash-wipe.view-home .block-hero::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 42%,
    var(--accent) 50%,
    transparent 58%
  );
  opacity: 0.85;
  animation: ag-slash 1.4s cubic-bezier(0.2, 0, 0, 1) 1 both;
}
@keyframes ag-slash {
  from { transform: translate3d(-40%, 0, 0); }
  to { transform: translate3d(40%, 0, 0); opacity: 0; }
}

body.fx-stamp-hit .product-card {
  outline: 3px solid var(--text);
  outline-offset: -1px;
}
body.fx-stamp-hit .product-card .thumb::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 3px solid var(--accent);
  transform: rotate(-18deg);
  pointer-events: none;
}

body.fx-chroma-split h1 {
  text-shadow:
    -3px 0 color-mix(in srgb, #ff2d55 70%, transparent),
    3px 0 color-mix(in srgb, #00f0ff 70%, transparent);
}
body.fx-chroma-split .brand:hover {
  text-shadow:
    -2px 0 color-mix(in srgb, #ff2d55 80%, transparent),
    2px 0 color-mix(in srgb, #00f0ff 80%, transparent);
}

body.fx-grid-slam .product-grid {
  gap: 2px;
}
body.fx-grid-slam .product-card {
  border: 2px solid var(--text);
  transition: none;
}
body.fx-grid-slam .product-card:hover {
  transform: translate3d(4px, -4px, 0);
  background: var(--accent);
  color: var(--bg);
}

body.fx-alert-bar .perks {
  background: repeating-linear-gradient(
    -18deg,
    var(--accent) 0 12px,
    var(--text) 12px 24px
  );
  color: var(--bg);
  border-bottom: 0;
}
body.fx-alert-bar .perk,
body.fx-alert-bar a.perk {
  color: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
body.fx-alert-bar .perk + .perk { border-left-color: color-mix(in srgb, var(--bg) 40%, transparent); }

body.atm-strike .atm-layer {
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 16px,
      color-mix(in srgb, var(--accent) 28%, transparent) 16px 18px
    ),
    repeating-linear-gradient(
      18deg,
      transparent 0 40px,
      color-mix(in srgb, var(--text) 12%, transparent) 40px 41px
    );
}
body.atm-strike .atm-sweep {
  display: block;
  inset: auto 0;
  height: 4px;
  top: 0;
  background: var(--accent);
  animation: atm-scan 1.6s linear infinite;
  opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  body.tone-aggressive .btn,
  body.fx-slam-cut.view-home .block-hero .hero-copy,
  body.fx-strobe-edge .btn,
  body.fx-slash-wipe.view-home .block-hero::after,
  body.atm-strike .atm-sweep {
    animation: none !important;
  }
  body.fx-slash-wipe.view-home .block-hero::after { display: none; }
  body.fx-chroma-split h1 { text-shadow: none; }
}
body.rm-static.tone-aggressive .btn,
body.rm-static.fx-slam-cut.view-home .block-hero .hero-copy,
body.rm-opacity-only.fx-strobe-edge .btn {
  animation: none !important;
}
body.rm-static.fx-slash-wipe.view-home .block-hero::after { display: none; }
body.journey-txn.tone-aggressive .btn { animation: none; }
