:root {
  --bg: #edf4ff;
  --paper: rgba(255, 255, 255, 0.74);
  --paper-strong: rgba(255, 255, 255, 0.9);
  --ink: #0b1424;
  --muted: #5d6a7b;
  --line: rgba(18, 32, 52, 0.08);
  --brand: #77a4ff;
  --brand-dark: #4f7fe3;
  --brand-soft: #dbe7ff;
  --green: #179c67;
  --navy: #16203a;
  --blue: #4b86ff;
  --gold: #f5a623;
  --violet: #7553ff;
  --shadow: 0 26px 70px rgba(12, 24, 48, 0.12);
  --stadium-scale: 1;
  --stadium-rotate: 0deg;
  --stadium-shift-y: 0px;
  --stadium-shift-x: 0px;
  --stadium-blur: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(118, 170, 255, 0.22), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(75, 134, 255, 0.16), transparent 24%),
    radial-gradient(circle at 72% 68%, rgba(23, 156, 103, 0.08), transparent 24%),
  linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

.stadium-backdrop,
.stadium-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.stadium-backdrop {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(6, 12, 34, 0.16), rgba(10, 24, 64, 0.12)),
    url("./background-neural-blue.png") center center / cover no-repeat;
  transform:
    translate3d(var(--stadium-shift-x), var(--stadium-shift-y), 0)
    scale(var(--stadium-scale))
    rotate(var(--stadium-rotate));
  transform-origin: center center;
  filter: saturate(1.03) contrast(1.02) brightness(0.86);
  transition: transform 180ms linear, filter 180ms linear;
}

.stadium-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(228, 236, 255, 0.16) 0%, rgba(223, 233, 255, 0.2) 24%, rgba(228, 236, 255, 0.3) 100%);
}

body.page-home {
  background:
    radial-gradient(circle at 12% 12%, rgba(118, 170, 255, 0.22), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(75, 134, 255, 0.16), transparent 24%),
    radial-gradient(circle at 72% 68%, rgba(23, 156, 103, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

body.page-data {
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 107, 255, 0.2), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(117, 83, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #f6f8ff 0%, #f3efe8 100%);
}

body.page-analysis {
  background:
    radial-gradient(circle at 14% 12%, rgba(23, 156, 103, 0.16), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(255, 93, 77, 0.16), transparent 22%),
    linear-gradient(180deg, #f8f5f0 0%, #efe9e2 100%);
}

body.page-plans {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 93, 77, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(245, 166, 35, 0.16), transparent 22%),
    linear-gradient(180deg, #fff5f0 0%, #f3ece4 100%);
}

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

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: 80px;
  left: -120px;
  background: rgba(122, 177, 255, 0.28);
}

.page-glow-right {
  top: 260px;
  right: -110px;
  background: rgba(94, 148, 255, 0.24);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 28px));
  margin: 0 auto;
  padding: 112px 0 48px;
}

.top-nav-shell {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.top-nav {
  width: min(980px, calc(100% - 28px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(235, 244, 255, 0.78)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 56px rgba(18, 42, 86, 0.16);
  backdrop-filter: blur(24px) saturate(1.2);
  pointer-events: auto;
}

.top-nav-brand,
.top-nav-links,
.top-nav-links a {
  display: inline-flex;
  align-items: center;
}

.top-nav-brand {
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.top-nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(31, 73, 154, 0.16);
}

.top-nav-links {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.top-nav-links a {
  justify-content: center;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 999px;
  color: #173052;
  font-weight: 850;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 24px rgba(18, 42, 86, 0.08);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.top-nav-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-dark);
}

.top-nav-links a:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 138, 95, 0.28), rgba(255, 255, 255, 0.76));
}

.top-nav-links a:nth-child(2) {
  background: linear-gradient(135deg, rgba(31, 191, 131, 0.24), rgba(255, 255, 255, 0.76));
}

.top-nav-links a:nth-child(3),
.top-nav-links .top-nav-cta {
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
  color: white;
  box-shadow: 0 12px 24px rgba(66, 112, 214, 0.22);
}

.clientes-floating {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, rgba(20, 41, 78, 0.96), rgba(58, 102, 209, 0.95));
  color: #fff;
  font-weight: 850;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(17, 46, 96, 0.24);
  white-space: nowrap;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.clientes-floating:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.clientes-floating.is-active {
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 24px;
  margin-top: 22px;
  align-items: stretch;
}

.hero-intro {
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: center;
  padding: 4vh 0 10vh;
}

.hero-product {
  margin-top: 42px;
}

.page-hero {
  padding: 56px 0 10px;
  max-width: 860px;
}

.page-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: 13ch;
}

.page-section-first {
  padding-top: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--brand-dark);
  font-weight: 800;
  margin: 0 0 10px;
}

.eyebrow.light {
  color: rgba(53, 104, 212, 0.74);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(37, 73, 138, 0.08);
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-copy span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
}

.hero-welcome-copy {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 22px;
  min-width: 0;
}

.hero-welcome-copy::before {
  content: none;
}

.hero-welcome p {
  width: fit-content;
  margin: 0;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef6ff, #cbe0ff);
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #10223f;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: clamp(1.02rem, 1.7vw, 1.55rem);
  box-shadow: 0 22px 44px rgba(18, 42, 86, 0.2);
}

.hero-welcome h1 {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 0.075em;
  width: min(100%, 9.8ch);
  margin: 0;
  max-width: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.7rem, 8.35vw, 10.2rem);
  line-height: 0.8;
  letter-spacing: -0.075em;
  color: #ffffff;
  text-wrap: nowrap;
}

.hero-welcome h1::before {
  content: none;
}

.hero-welcome h1::after {
  content: "";
  position: absolute;
  inset: -0.1em -0.16em -0.08em -0.12em;
  z-index: -1;
  border-radius: 0.18em;
  background:
    radial-gradient(circle at 18% 20%, rgba(166, 202, 255, 0.24), transparent 34%),
    radial-gradient(circle at 72% 46%, rgba(76, 136, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(20, 48, 112, 0.34), rgba(93, 150, 255, 0.12));
  filter: blur(18px);
  opacity: 0.88;
}

.hero-title-line {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 0.16em;
  width: 100%;
}

.hero-title-line span {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #edf5ff 72%, #dbe9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 3px 0 rgba(164, 196, 255, 0.46),
    5px 7px 0 rgba(50, 82, 151, 0.48),
    8px 12px 18px rgba(3, 12, 30, 0.64),
    0 20px 42px rgba(3, 12, 30, 0.46),
    0 0 34px rgba(98, 151, 255, 0.34);
}

.store-badges {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: stretch;
}

.store-badge {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 12px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #05070b 0%, #000 100%);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 22px 42px rgba(3, 12, 30, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.1);
}

.store-badge.play {
  background: linear-gradient(180deg, #05070b 0%, #000 100%);
}

.store-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  font-size: 3.1rem;
  font-weight: 900;
}

.apple-logo {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  line-height: 1;
}

.google-play-logo {
  width: 54px;
  height: 54px;
}

.google-play-logo svg {
  display: block;
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
}

.play-blue {
  fill: #00a6ff;
}

.play-green {
  fill: #00df7b;
}

.play-yellow {
  fill: #ffd34d;
}

.play-red {
  fill: #ff4b55;
}

.store-badge small,
.store-badge strong {
  display: block;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.hero h1,
.section-head h2,
.cta-band h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.05rem, 3.7vw, 3.8rem);
  line-height: 0.89;
  max-width: 14.2ch;
}

.hero-title-stacked {
  max-width: 8.2ch;
  line-height: 0.92;
}

.hero-title-stacked br {
  display: block;
  content: "";
  margin-bottom: 0.38em;
}

.hero-slogan {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-top: 18px;
}

.slogan-line {
  --slogan-color: #5f8dff;
  --slogan-soft: rgba(95, 141, 255, 0.16);
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding: 12px 20px 12px 12px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 18%, color-mix(in srgb, var(--slogan-color) 24%, transparent), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), var(--slogan-soft)),
    rgba(255, 255, 255, 0.68);
  border: 1px solid color-mix(in srgb, var(--slogan-color) 32%, white);
  box-shadow: 0 20px 42px rgba(18, 42, 86, 0.12);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4.25vw, 4.75rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.065em;
  backdrop-filter: blur(18px) saturate(1.12);
}

.slogan-line span {
  white-space: nowrap;
}

.slogan-line:nth-child(2),
.slogan-line:nth-child(3),
.slogan-line:nth-child(4) {
  margin-left: 0;
}

.slogan-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(44px, 5.5vw, 70px);
  height: clamp(44px, 5.5vw, 70px);
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--slogan-color), color-mix(in srgb, var(--slogan-color) 58%, white));
  color: white;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 26px color-mix(in srgb, var(--slogan-color) 28%, transparent);
}

.slogan-line.intuition {
  --slogan-color: #ff8a5f;
  --slogan-soft: rgba(255, 138, 95, 0.2);
}

.slogan-line.criteria {
  --slogan-color: #5f8dff;
  --slogan-soft: rgba(95, 141, 255, 0.2);
}

.slogan-line.context {
  --slogan-color: #7553ff;
  --slogan-soft: rgba(117, 83, 255, 0.18);
}

.slogan-line.decisions {
  --slogan-color: #1fbf83;
  --slogan-soft: rgba(31, 191, 131, 0.18);
  padding-right: 26px;
  box-shadow:
    0 22px 48px rgba(31, 191, 131, 0.16),
    0 16px 36px rgba(18, 42, 86, 0.12);
}

.hero-text,
.section-text {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
  max-width: 62ch;
  margin-top: 18px;
}

.section-text.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-copy {
  padding: 28px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 56px rgba(18, 42, 86, 0.1);
  backdrop-filter: blur(26px) saturate(1.06);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #162338;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #9fd0ff);
  flex: 0 0 auto;
}

.hero-panel {
  display: block;
}

.hero-phone {
  position: relative;
  width: min(100%, 560px);
  height: 100%;
  justify-self: end;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-phone-screen {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  aspect-ratio: auto;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  box-shadow: none;
}

.hero-phone-shot {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  transform: none;
  transform-origin: center top;
  margin-left: auto;
  margin-right: auto;
}

.hero-phone-shot-clean {
  filter: drop-shadow(0 30px 54px rgba(11, 20, 36, 0.24));
}

.hero-panel-small {
  max-width: none;
  justify-self: auto;
  padding: 14px;
  border-radius: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 93, 77, 0.14), transparent 36%),
    radial-gradient(circle at bottom right, rgba(47, 107, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(16, 19, 28, 0.98), rgba(22, 32, 58, 0.94));
  box-shadow: none;
  color: white;
}

.hero-panel-grid {
  margin-top: 10px;
}

.panel-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.dashboard-card {
  padding: 14px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 93, 77, 0.18);
  color: #ffe0db;
}

.dashboard-score {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0 0;
}

.metric-bubble {
  min-height: 104px;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-bubble span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.metric-bubble strong {
  font-size: 2.1rem;
  line-height: 0.96;
  font-family: "Space Grotesk", sans-serif;
}

.metric-bubble.coral {
  background: linear-gradient(160deg, rgba(255, 93, 77, 0.42), rgba(245, 166, 35, 0.2));
}

.metric-bubble.navy {
  background: linear-gradient(160deg, rgba(47, 107, 255, 0.34), rgba(117, 83, 255, 0.24));
}

.metric-bubble.green {
  background: linear-gradient(160deg, rgba(23, 156, 103, 0.34), rgba(12, 55, 41, 0.26));
}

.mini-chart {
  margin-top: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-chart p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero-mini-chart {
  margin-top: 10px;
  padding: 14px;
}

.mini-chart-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 78px;
}

.hero-mini-chart .mini-chart-line {
  min-height: 82px;
  gap: 8px;
}

.mini-chart-line span {
  display: block;
  border-radius: 999px 999px 16px 16px;
  background: linear-gradient(180deg, #ff8e60, #ff5d4d);
}

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

.stat-card {
  padding: 12px;
  min-height: 98px;
}

.hero-panel-grid .stat-card {
  min-height: 98px;
  padding: 12px;
}

.stat-card p,
.stat-card span {
  margin: 0;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.45rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-panel-grid .stat-card strong {
  margin: 6px 0 8px;
  font-size: 1.45rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-panel-grid .stat-card span,
.hero-panel-grid .stat-card p {
  font-size: 0.8rem;
}

.stat-card.coral {
  background: linear-gradient(160deg, rgba(255, 93, 77, 0.28), rgba(255, 151, 81, 0.16));
}

.stat-card.electric {
  background: linear-gradient(160deg, rgba(47, 107, 255, 0.3), rgba(117, 83, 255, 0.18));
}

.stat-card.green {
  background: linear-gradient(160deg, rgba(23, 156, 103, 0.3), rgba(15, 48, 38, 0.24));
}

.feature-strip,
.feature-grid,
.plans-grid,
.reports-layout,
.analytics-showcase {
  display: grid;
  gap: 18px;
}

.feature-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.page-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-link-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(83, 123, 193, 0.12);
  box-shadow: var(--shadow);
  min-height: 230px;
}

.page-link-card h3 {
  margin: 12px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.04;
}

.page-link-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-link-data {
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
}

.page-link-analysis {
  background:
    radial-gradient(circle at top right, rgba(117, 83, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
}

.page-link-advantages {
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
}

.lineup-section {
  padding-top: 30px;
  margin-right: calc(50% - 50vw + 14px);
}

.lineup-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.lineup-stage,
.lineup-insight-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(83, 123, 193, 0.12);
  box-shadow: var(--shadow);
  border-radius: 32px;
  backdrop-filter: blur(12px);
}

.lineup-stage {
  padding: 12px;
}

.formation-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.formation-pill {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(17,17,17,0.04);
  font: inherit;
  font-weight: 800;
  color: #30303a;
  cursor: pointer;
}

.formation-pill.is-active {
  background: rgba(47,107,255,0.12);
  color: var(--blue);
  border-color: rgba(47,107,255,0.18);
}

.tactic-badge {
  padding: 10px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,93,77,0.08), rgba(245,166,35,0.08));
  border: 1px solid rgba(255,93,77,0.12);
}

.tactic-badge-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  font-weight: 800;
}

.tactic-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 0.96rem;
}

.lineup-pitch-wrap {
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #172028, #11161d);
}

.lineup-pitch {
  position: relative;
  min-height: 820px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px) top / 100% 20%,
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) left / 20% 100%,
    linear-gradient(180deg, #25954a, #1e8140);
}

.lineup-pitch::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 22px;
}

.pitch-midline {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  background: rgba(255,255,255,0.72);
}

.pitch-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.72);
}

.pitch-lines {
  position: absolute;
  left: 50%;
  width: 48%;
  height: 14%;
  transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,0.72);
}

.pitch-lines-box-top {
  top: 14px;
}

.pitch-lines-box-bottom {
  bottom: 14px;
}

.pitch-six {
  position: absolute;
  left: 50%;
  width: 22%;
  height: 7%;
  transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,0.72);
}

.pitch-six-top {
  top: 14px;
}

.pitch-six-bottom {
  bottom: 14px;
}

.pitch-arc {
  position: absolute;
  left: 50%;
  width: 138px;
  height: 66px;
  transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 999px;
}

.pitch-arc-top {
  top: 106px;
  border-top: 0;
  clip-path: inset(50% 0 0 0);
}

.pitch-arc-bottom {
  bottom: 106px;
  border-bottom: 0;
  clip-path: inset(0 0 50% 0);
}

.pitch-goal {
  position: absolute;
  left: 50%;
  width: 18%;
  height: 28px;
  transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,0.82);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.pitch-goal-top {
  top: 0;
  border-bottom: 0;
  border-radius: 0 0 16px 16px;
}

.pitch-goal-bottom {
  bottom: 0;
  border-top: 0;
  border-radius: 16px 16px 0 0;
}

.pitch-player {
  position: absolute;
  left: calc(var(--x, 50) * 1%);
  top: calc(var(--y, 50) * 1%);
  transform: translate(-50%, -50%);
  width: 90px;
  min-height: 108px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: default;
  z-index: 2;
}

.pitch-player.is-selected {
  transform: translate(-50%, -50%) scale(1.04);
}

.player-insights-section {
  padding-top: 34px;
}

.player-insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.player-rankings-column {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.player-ranking-card,
.player-profile-showcase {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.player-ranking-card {
  min-height: 0;
}

.player-rankings-column .player-ranking-card {
  min-height: 246px;
}

.player-profile-showcase {
  height: 100%;
}

.player-ranking-card.warm {
  background: linear-gradient(180deg, rgba(255, 213, 159, 0.62), rgba(255, 245, 228, 0.9));
  border-color: rgba(245, 166, 35, 0.35);
}

.player-ranking-card.cool {
  background: linear-gradient(180deg, rgba(197, 238, 255, 0.7), rgba(238, 249, 255, 0.92));
  border-color: rgba(104, 196, 255, 0.38);
}

.player-ranking-card.green {
  background: linear-gradient(180deg, rgba(207, 247, 218, 0.74), rgba(241, 255, 245, 0.94));
  border-color: rgba(47, 186, 122, 0.34);
}

.player-ranking-card.violet {
  background: linear-gradient(180deg, rgba(226, 213, 255, 0.72), rgba(246, 241, 255, 0.92));
  border-color: rgba(144, 98, 255, 0.34);
}

.ranking-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ranking-card-head h3 {
  margin: 0;
  font-size: 1.45rem;
}

.ranking-icon,
.ranking-alert {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 900;
}

.ranking-icon {
  background: rgba(255,255,255,0.55);
}

.ranking-alert {
  margin-left: auto;
  background: rgba(255, 89, 89, 0.16);
  color: #e63939;
  font-size: 0.86rem;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.ranking-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ranking-pos {
  min-width: 20px;
  color: #ff9f1b;
  font-weight: 900;
  font-size: 1.3rem;
}

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

.ranking-item strong {
  font-size: 1.02rem;
}

.ranking-item small {
  margin-top: 2px;
  color: #2f2f35;
  font-size: 0.92rem;
  font-weight: 700;
}

.player-profile-top {
  margin-bottom: 18px;
}

.player-avatar-block {
  display: flex;
  gap: 16px;
  align-items: center;
}

.player-avatar {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ff6250, #ff7c66);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 28px rgba(255, 93, 77, 0.24);
}

.player-avatar-block h3 {
  margin: 4px 0 6px;
  font-size: 1.7rem;
}

.player-avatar-block p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.player-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.player-metric-card {
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(240, 180, 120, 0.45);
}

.player-metric-card.peach {
  background: linear-gradient(180deg, rgba(255, 233, 218, 0.92), rgba(255, 245, 238, 0.96));
}

.player-metric-card.gold {
  background: linear-gradient(180deg, rgba(255, 242, 196, 0.9), rgba(255, 250, 231, 0.96));
}

.player-metric-card span,
.player-metric-card strong,
.player-metric-card small {
  display: block;
}

.player-metric-card span {
  font-weight: 800;
}

.player-metric-card strong {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 0.98;
  font-family: "Space Grotesk", sans-serif;
}

.player-metric-card small {
  margin-top: 8px;
  color: #2f2f35;
  font-size: 1rem;
  font-weight: 700;
}

.impact-block {
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(208, 228, 253, 0.82), rgba(232, 242, 255, 0.94));
  border: 1px solid rgba(135, 174, 255, 0.26);
}

.impact-block h3 {
  margin: 0 0 14px;
  font-size: 1.9rem;
}

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

.impact-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.impact-stat span,
.impact-stat strong {
  display: block;
}

.impact-stat span {
  font-weight: 800;
  line-height: 1.3;
}

.impact-stat strong {
  margin-top: 12px;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.95;
}

.pitch-player .shirt-number {
  position: absolute;
  inset: 24px 16px auto 16px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(180deg, #ff6250, #ff7c66);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(0,0,0,0.16);
}

.pitch-player .shirt-number::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #ffd1ae;
}

.pitch-player .shirt-name {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: max-content;
  max-width: 104px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(17,17,17,0.48);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.pitch-player .shirt-rating {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.pitch-overlay {
  position: absolute;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(17, 22, 29, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: white;
  pointer-events: none;
}

.pitch-overlay span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pitch-overlay strong {
  display: block;
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1;
}

.pitch-overlay-top-left {
  top: 24px;
  left: 24px;
}

.pitch-overlay-top-right {
  top: 24px;
  right: 24px;
  text-align: right;
}

.pitch-overlay-bottom-right {
  right: 24px;
  bottom: 24px;
  text-align: right;
}

.lineup-insight-card {
  padding: 14px;
  position: sticky;
  top: 96px;
}

.insight-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.lineup-main-title {
  margin: 10px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  line-height: 0.98;
}

.lineup-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.lineup-meta-grid.compact {
  margin-top: 0;
}

.selected-player-role {
  margin: 4px 0 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.selected-player-why {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.selected-player-why.compact {
  line-height: 1.5;
  font-size: 0.94rem;
}

.lineup-checks {
  margin-top: 12px;
}

.lineup-checks.compact {
  display: grid;
  gap: 8px;
}

.lineup-checks.compact li {
  line-height: 1.4;
  font-size: 0.93rem;
}

.lineup-compact-block {
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17,17,17,0.03), rgba(17,17,17,0.015));
  border: 1px solid rgba(17,17,17,0.06);
}

.lineup-compact-block.dark {
  background:
    radial-gradient(circle at top right, rgba(117, 83, 255, 0.1), transparent 40%),
    rgba(117, 83, 255, 0.06);
  border-color: rgba(117, 83, 255, 0.12);
}

.mini-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #6d6673;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.selected-player-inline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.selected-player-inline strong,
.lineup-compact-block strong {
  font-family: "Space Grotesk", sans-serif;
}

.selected-player-inline strong {
  font-size: 1.12rem;
}

.selected-player-inline b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
}

.pitch-dominant {
  min-width: 0;
}

.section-head-centered {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lineup-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.92;
  max-width: none;
}

.lineup-subtitle {
  margin: 16px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.lineup-subtitle.secondary {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-strip article,
.feature-card,
.plan-card,
.report-preview,
.reports-copy,
.chart-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-strip article {
  padding: 18px 20px;
  border-radius: 22px;
}

.feature-strip span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--brand-dark);
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 84px 0 12px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

body:not(.page-guide) .section > .section-head {
  width: fit-content;
  max-width: min(980px, 100%);
  padding: 18px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(138, 178, 255, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 243, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 52px rgba(18, 42, 86, 0.12);
  backdrop-filter: blur(18px) saturate(1.1);
}

body:not(.page-guide) .section > .section-head.section-head-centered {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  position: relative;
  font-size: clamp(1.75rem, 2.5vw, 3.05rem);
  color: var(--ink);
}

.usage-guide-section {
  padding-top: 68px;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.usage-step {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(138, 178, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 54px rgba(18, 42, 86, 0.1);
  backdrop-filter: blur(18px) saturate(1.08);
}

.usage-step.wide {
  grid-column: span 3;
  min-height: 170px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
}

.usage-step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(66, 112, 214, 0.2);
}

.usage-step h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.usage-step.wide h3 {
  margin-top: 0;
}

.usage-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 650;
}

.section-contrast {
  margin-top: 24px;
  border-radius: 36px;
  padding: 72px 32px;
  background:
    radial-gradient(circle at top right, rgba(108, 168, 255, 0.12), transparent 20%),
    linear-gradient(135deg, rgba(245, 250, 255, 0.9), rgba(232, 241, 255, 0.88) 60%, rgba(240, 249, 246, 0.84));
  color: var(--ink);
  border: 1px solid rgba(83, 123, 193, 0.1);
  box-shadow: 0 28px 64px rgba(39, 73, 138, 0.08);
}

.section-contrast .section-text,
.section-contrast .chart-note,
.section-contrast .feature-card p,
.section-contrast .reports-copy .check-list li,
.section-contrast .report-bullets,
.section-contrast .report-bullets li {
  color: var(--muted);
}

.section-contrast .section-head h2,
.section-contrast .reports-gallery-head h3,
.section-contrast .report-type-head strong {
  color: var(--ink);
}

.compact-light {
  max-width: 740px;
}

.analytics-showcase {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  align-items: stretch;
}

.decision-grid,
.results-showcase {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.decision-grid {
  grid-template-columns: repeat(2, 1fr);
}

.chart-card {
  padding: 22px;
  border-radius: 30px;
}

.large-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(255, 93, 77, 0.12), rgba(47, 107, 255, 0.08));
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.chart-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 900;
}

.chart-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.chart-tag {
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.9rem;
}

.chart-tag.positive {
  background: rgba(23, 156, 103, 0.14);
  color: #138758;
}

.line-chart {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  overflow: hidden;
}

.line-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.06) 1px, transparent 1px) top / 100% 25%,
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px) left / 20% 100%;
}

.line-chart svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bar-chart {
  min-height: 210px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
  padding: 20px 6px 6px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6fbff, #ffffff);
}

.bar-chart span {
  display: block;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #2f6bff, #6b92ff);
}

.radar-chart {
  position: relative;
  min-height: 210px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfff8, #ffffff);
  overflow: hidden;
}

.radar-ring {
  position: absolute;
  inset: 50%;
  border: 1.5px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 70px;
  height: 70px;
}

.ring-two {
  width: 126px;
  height: 126px;
}

.ring-three {
  width: 182px;
  height: 182px;
}

.radar-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%) rotate(18deg);
  background: rgba(23, 156, 103, 0.22);
  clip-path: polygon(50% 2%, 88% 28%, 82% 78%, 42% 100%, 8% 72%, 12% 24%);
  border: 2px solid rgba(23, 156, 103, 0.52);
}

.chart-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.decision-card,
.result-card,
.illustration-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(83, 123, 193, 0.12);
  box-shadow: var(--shadow);
}

.decision-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.decision-card h3,
.illustration-copy h3 {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.decision-card p,
.illustration-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.decision-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 156, 103, 0.12);
  color: #138758;
  font-size: 0.88rem;
  font-weight: 800;
}

.decision-badge.cool {
  background: rgba(47, 107, 255, 0.1);
  color: var(--blue);
}

.results-showcase {
  grid-template-columns: 1fr 1fr 0.95fr;
}

.result-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.result-teams strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
}

.team-mini {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.team-mini p {
  margin: 0;
  font-weight: 800;
}

.crest {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,0.18),
    0 12px 24px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

.crest-sun {
  background:
    radial-gradient(circle at 30% 30%, #ffd16f, transparent 34%),
    linear-gradient(160deg, #ff5d4d, #f5a623);
}

.crest-night {
  background:
    radial-gradient(circle at 70% 26%, rgba(255,255,255,0.22), transparent 22%),
    linear-gradient(160deg, #15203b, #2f6bff);
}

.crest-forest {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.24), transparent 20%),
    linear-gradient(160deg, #179c67, #123d31);
}

.crest-flare {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.22), transparent 20%),
    linear-gradient(160deg, #7b56ff, #ff5d4d);
}

.crest-symbol {
  position: absolute;
  opacity: 0.34;
  pointer-events: none;
}

.crest-symbol-sun {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.55);
}

.crest-symbol-wave {
  width: 42px;
  height: 20px;
  border-bottom: 3px solid rgba(255,255,255,0.58);
  border-radius: 0 0 999px 999px;
  transform: translateY(8px);
}

.crest-symbol-peak {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid rgba(255,255,255,0.46);
  transform: translateY(4px);
}

.crest-symbol-star {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.34);
  clip-path: polygon(50% 0%, 62% 34%, 100% 34%, 69% 55%, 80% 100%, 50% 72%, 20% 100%, 31% 55%, 0% 34%, 38% 34%);
}

.crest span {
  position: relative;
  z-index: 1;
}

.result-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.summary-pill {
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17,17,17,0.03), rgba(17,17,17,0.015));
  border: 1px solid rgba(17,17,17,0.05);
}

.summary-pill strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.summary-pill span {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: lowercase;
}

.result-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.result-bars div {
  display: grid;
  gap: 7px;
}

.result-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5d4d, #f5a623);
}

.result-bars small,
.match-story p {
  color: var(--muted);
  font-size: 0.95rem;
}

.match-story {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.result-footnote {
  margin-top: 18px;
}

.result-footnote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-pill {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(117, 83, 255, 0.12);
  color: var(--violet);
  font-weight: 800;
}

.match-story p {
  margin: 0;
  line-height: 1.7;
}

.mini-insight-board {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(117,83,255,0.07), rgba(17,17,17,0.02));
}

.insight-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17,17,17,0.06);
}

.insight-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.insight-row span {
  color: var(--muted);
}

.insight-row strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.illustration-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.mini-pitch {
  position: relative;
  min-height: 230px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px) top / 100% 50%,
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) left / 25% 100%,
    linear-gradient(180deg, #21954d, #1d8445);
  overflow: hidden;
}

.mini-pitch::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 22px;
}

.mini-pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.72);
}

.mini-player {
  position: absolute;
  width: 38px;
  height: 62px;
  border-radius: 20px 20px 14px 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.mini-player::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #ffd2b2;
}

.player-one {
  left: 18%;
  top: 24%;
  background: linear-gradient(180deg, #ff5d4d, #ff9160);
}

.player-two {
  left: 42%;
  top: 14%;
  background: linear-gradient(180deg, #2f6bff, #6b92ff);
}

.player-three {
  right: 18%;
  top: 28%;
  background: linear-gradient(180deg, #179c67, #32c486);
}

.player-four {
  left: 38%;
  bottom: 20%;
  background: linear-gradient(180deg, #7553ff, #9b83ff);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 26px;
  border-radius: 28px;
}

.feature-visual {
  position: relative;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 88px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.01));
  overflow: hidden;
}

.feature-visual span {
  display: block;
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px;
  height: 1px;
  background: rgba(17, 17, 17, 0.06);
}

.visual-stats span {
  width: 18px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #ff8f63, #ff5d4d);
  position: relative;
  z-index: 1;
}

.visual-stats span:nth-child(1) {
  height: 34px;
}

.visual-stats span:nth-child(2) {
  height: 58px;
}

.visual-stats span:nth-child(3) {
  height: 46px;
}

.visual-analysis {
  align-items: center;
}

.visual-analysis::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 36px;
  height: 2px;
  background: rgba(17, 17, 17, 0.08);
}

.visual-analysis span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #2f6bff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.65);
}

.visual-analysis span:nth-child(1) {
  margin-top: 18px;
}

.visual-analysis span:nth-child(2) {
  margin-top: -10px;
  background: #7553ff;
}

.visual-analysis span:nth-child(3) {
  margin-top: -24px;
  background: #179c67;
}

.visual-decisions {
  align-items: center;
  justify-content: space-between;
}

.visual-decisions span:nth-child(1) {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #ff5d4d;
  filter: drop-shadow(0 8px 10px rgba(255, 93, 77, 0.16));
}

.visual-decisions span:nth-child(2) {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), transparent),
    linear-gradient(135deg, #2f6bff, #7553ff);
  box-shadow: 0 12px 24px rgba(47, 107, 255, 0.18);
}

.visual-decisions span:nth-child(3) {
  width: 60px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #179c67, #58c98f);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}

.visual-accessible {
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.visual-accessible span:nth-child(1),
.visual-accessible span:nth-child(2),
.visual-accessible span:nth-child(3) {
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.visual-accessible span:nth-child(1) {
  background: #ff5d4d;
  box-shadow: 0 0 0 8px rgba(255, 93, 77, 0.12);
}

.visual-accessible span:nth-child(2) {
  background: #2f6bff;
  box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.1);
}

.visual-accessible span:nth-child(3) {
  background: #179c67;
  box-shadow: 0 0 0 8px rgba(23, 156, 103, 0.1);
}

.visual-club {
  align-items: center;
  gap: 14px;
}

.visual-club span:nth-child(1) {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff5d4d;
  box-shadow: 26px 0 0 #2f6bff, 52px 0 0 #179c67;
  position: relative;
  z-index: 1;
}

.visual-club span:nth-child(2) {
  width: 80px;
  height: 2px;
  background: rgba(17, 17, 17, 0.12);
  position: absolute;
  left: 8px;
  top: 26px;
}

.visual-club span:nth-child(3) {
  width: 80px;
  height: 2px;
  background: rgba(17, 17, 17, 0.12);
  position: absolute;
  left: 8px;
  top: 46px;
}

.visual-ai {
  align-items: center;
  justify-content: space-between;
}

.visual-ai span:nth-child(1) {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, #111318, #2f6bff);
}

.visual-ai span:nth-child(2) {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ff5d4d;
  box-shadow: 20px 10px 0 #179c67, 34px -8px 0 #f5a623;
  position: relative;
  z-index: 1;
}

.visual-ai span:nth-child(3) {
  width: 72px;
  height: 38px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(17,17,17,0.08) 1px, transparent 1px) top / 100% 50%,
    linear-gradient(90deg, rgba(17,17,17,0.08) 1px, transparent 1px) left / 33% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.56));
  border: 1px solid rgba(17,17,17,0.08);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reports-layout {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.report-preview,
.reports-copy {
  border-radius: 30px;
  padding: 22px;
}

.report-cover {
  border-radius: 24px;
  padding: 26px;
  background: linear-gradient(160deg, #ff5d4d, #f57b2e 58%, #f5a623);
  color: white;
}

.report-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.75;
}

.report-cover h3 {
  margin: 14px 0 8px;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.report-cover p {
  margin: 0;
  opacity: 0.88;
  line-height: 1.6;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.report-metrics div {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 14px;
}

.report-metrics strong {
  display: block;
  font-size: 2rem;
}

.report-metrics span {
  opacity: 0.82;
}

.reports-gallery {
  margin-top: 28px;
}

.reports-gallery-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.reports-gallery-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  line-height: 1.04;
}

.report-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.report-type-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(83, 123, 193, 0.12);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.report-type-card.monthly {
  background:
    radial-gradient(circle at top right, rgba(108, 168, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.report-type-card.quarterly {
  background:
    radial-gradient(circle at top right, rgba(82, 129, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.report-type-card.season {
  background:
    radial-gradient(circle at top right, rgba(145, 207, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.report-type-head {
  display: grid;
  gap: 10px;
}

.report-type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.report-type-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.34rem;
  line-height: 1.05;
  color: var(--ink);
}

.report-type-chart {
  margin-top: 16px;
  min-height: 156px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.06);
  position: relative;
  overflow: hidden;
}

.line-mini {
  background:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px) top / 100% 25%,
    rgba(255, 255, 255, 0.74);
}

.line-mini span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5d4d;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.line-mini svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.line-mini polyline {
  fill: none;
  stroke: #ff5d4d;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bars-mini {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px) top / 100% 25%,
    rgba(255, 255, 255, 0.74);
}

.bars-mini span {
  display: block;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #2f6bff, #6b92ff);
}

.donuts-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.donut-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.donut {
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border-radius: 999px;
  background:
    conic-gradient(#179c67 0 223deg, rgba(23, 156, 103, 0.14) 223deg 360deg);
  display: grid;
  place-items: center;
}

.donut.small {
  width: 92px;
  height: 92px;
  background:
    conic-gradient(#2f6bff 0 328deg, rgba(47, 107, 255, 0.14) 328deg 360deg);
}

.donut::before {
  content: "";
  width: 70%;
  height: 70%;
  border-radius: 999px;
  background: white;
  position: absolute;
}

.donut {
  position: relative;
}

.donut b {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.donut b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.donut-label {
  font-size: 0.72rem;
  font-weight: 900;
  color: #3f4554;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.report-bullets {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.reports-copy,
.report-preview,
.report-type-card,
.result-card,
.illustration-card {
  color: var(--ink);
}

.reports-copy .check-list li,
.report-bullets li,
.result-footnote p,
.illustration-copy p:last-child,
.match-story p,
.insight-row span,
.summary-pill span,
.result-bars small {
  color: #4d5564;
}

.team-mini p,
.result-teams strong,
.match-story strong,
.insight-row strong,
.illustration-copy h3 {
  color: var(--ink);
}

.summary-pill {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,255,0.9));
  border: 1px solid rgba(83, 123, 193, 0.1);
}

.result-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.9));
}

.illustration-card {
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(240, 247, 255, 0.9));
}

.mini-insight-board {
  background: rgba(116, 96, 214, 0.08);
  border: 1px solid rgba(116, 96, 214, 0.14);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 900;
  color: #91ffbf;
}

.plans-grid {
  grid-template-columns: repeat(2, 1fr);
}

.plan-card {
  padding: 26px;
  border-radius: 30px;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(107, 163, 255, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(83, 123, 193, 0.16);
}

.plan-name {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 900;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.price {
  display: block;
  margin: 16px 0 18px;
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
}

.plan-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  line-height: 1.9;
}

.cta-band {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, #6da6ff, #4f86ff 55%, #8fd0ff);
  color: white;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
  color: white;
  box-shadow: 0 16px 30px rgba(66, 112, 214, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(255, 255, 255, 0.4);
  color: #122034;
}

.button-success {
  background: linear-gradient(135deg, #49c98f, #16a361);
  color: white;
  box-shadow: 0 16px 30px rgba(22, 163, 97, 0.22);
}

.button-danger {
  background: linear-gradient(135deg, #fb7a6f, #ef4444);
  color: white;
  box-shadow: 0 16px 30px rgba(239, 68, 68, 0.22);
}

.button-danger:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
  transform: none;
}

.button-ghost {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.12);
  min-height: 40px;
  padding: 0 14px;
}

.button-light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
}

.full {
  width: 100%;
}

.hero-copy,
.lineup-stage,
.lineup-insight-card,
.player-profile-showcase,
.report-preview,
.reports-copy,
.plan-card,
.legal-footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 141, 255, 0.34), transparent 38%),
    radial-gradient(circle at 92% 84%, rgba(70, 190, 255, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(207, 228, 255, 0.72));
}

.lineup-insight-card,
.player-profile-showcase,
.reports-copy {
  background:
    radial-gradient(circle at 10% 12%, rgba(117, 83, 255, 0.24), transparent 36%),
    radial-gradient(circle at 92% 84%, rgba(90, 200, 250, 0.32), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(221, 235, 255, 0.74));
}

.report-preview,
.plan-card:nth-child(1) {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 168, 76, 0.38), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(95, 141, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 236, 205, 0.74));
}

.plan-card.featured {
  background:
    radial-gradient(circle at 18% 14%, rgba(95, 141, 255, 0.38), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(117, 83, 255, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(204, 222, 255, 0.78));
}

.result-card,
.illustration-card,
.report-type-card {
  background:
    radial-gradient(circle at 16% 14%, rgba(95, 141, 255, 0.28), transparent 38%),
    radial-gradient(circle at 88% 84%, rgba(255, 168, 76, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(220, 235, 255, 0.76));
}

.result-card:nth-child(2),
.report-type-card.quarterly {
  background:
    radial-gradient(circle at 16% 14%, rgba(117, 83, 255, 0.28), transparent 38%),
    radial-gradient(circle at 88% 84%, rgba(70, 190, 255, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(235, 225, 255, 0.76));
}

.illustration-card,
.report-type-card.season {
  background:
    radial-gradient(circle at 16% 14%, rgba(47, 186, 122, 0.28), transparent 38%),
    radial-gradient(circle at 88% 84%, rgba(95, 141, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(214, 255, 237, 0.76));
}

.section-head h2,
.reports-gallery-head h3,
.illustration-copy h3,
.guide-hero h1,
.guide-step-copy h2 {
  color: var(--ink);
}

.page-guide .site-shell {
  width: min(1280px, calc(100% - 28px));
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: stretch;
}

.guide-hero-copy,
.guide-hero-visual,
.guide-step-card {
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 64px rgba(18, 42, 86, 0.13);
  backdrop-filter: blur(22px) saturate(1.12);
}

.guide-hero-copy {
  padding: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 141, 255, 0.42), transparent 38%),
    radial-gradient(circle at 90% 78%, rgba(255, 168, 76, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(207, 228, 255, 0.78));
}

.guide-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.55rem, 5vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.guide-hero p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.guide-hero-visual {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(95, 141, 255, 0.18), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(226, 239, 255, 0.5));
}

.guide-hero-visual img {
  width: min(100%, 340px);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(11, 20, 36, 0.28));
}

.guide-hero-impact {
  position: relative;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 98px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -22px;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  padding: clamp(34px, 7vw, 92px) max(28px, calc((100vw - 1280px) / 2 + 28px));
  background: transparent;
  border: 0;
  box-shadow: none;
}

.guide-hero-impact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 46%, rgba(92, 142, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(10, 20, 48, 0.02), rgba(10, 20, 48, 0.06));
  pointer-events: none;
}

.guide-hero-impact-copy {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  text-align: center;
}

.guide-hero-impact h1 {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 0.075em;
  width: min(100%, 14ch);
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 7.35vw, 8.75rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.075em;
  text-wrap: nowrap;
}

.guide-hero-impact h1::after {
  content: "";
  position: absolute;
  inset: -0.1em -0.16em -0.08em -0.12em;
  z-index: -1;
  border-radius: 0.18em;
  background:
    radial-gradient(circle at 18% 20%, rgba(166, 202, 255, 0.24), transparent 34%),
    radial-gradient(circle at 72% 46%, rgba(76, 136, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(20, 48, 112, 0.34), rgba(93, 150, 255, 0.12));
  filter: blur(18px);
  opacity: 0.88;
}

.guide-impact-title .hero-title-line {
  justify-content: center;
}

.guide-access-flow {
  margin-top: 26px;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 14%, rgba(31, 191, 131, 0.22), transparent 36%),
    radial-gradient(circle at 92% 78%, rgba(95, 141, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(219, 235, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 26px 64px rgba(18, 42, 86, 0.13);
  backdrop-filter: blur(22px) saturate(1.12);
}

.guide-access-head {
  display: grid;
  gap: 10px;
  max-width: 100%;
}

.guide-access-head span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 92, 183, 0.1);
  color: #245ecf;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-access-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.95rem;
  line-height: 0.94;
  letter-spacing: -0.052em;
  white-space: nowrap;
}

.guide-access-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 760;
  line-height: 1.65;
}

.guide-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.guide-access-grid article {
  display: grid;
  gap: 9px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(83, 123, 193, 0.14);
  box-shadow: 0 16px 34px rgba(18, 42, 86, 0.08);
}

.guide-access-grid b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #103f9c, #5f8dff);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 950;
}

.guide-access-grid strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.guide-access-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
}

.guide-route {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.guide-step-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  background:
    radial-gradient(circle at 14% 18%, rgba(95, 141, 255, 0.34), transparent 38%),
    radial-gradient(circle at 92% 80%, rgba(70, 190, 255, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(218, 234, 255, 0.76));
}

.guide-step-card:nth-child(2n) {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 168, 76, 0.36), transparent 38%),
    radial-gradient(circle at 92% 80%, rgba(95, 141, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 236, 205, 0.76));
}

.guide-step-card:nth-child(3n) {
  background:
    radial-gradient(circle at 14% 18%, rgba(117, 83, 255, 0.28), transparent 38%),
    radial-gradient(circle at 92% 80%, rgba(70, 190, 255, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(235, 225, 255, 0.74));
}

.guide-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(66, 112, 214, 0.22);
}

.guide-step-copy h2 {
  margin: 18px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.step-ai .guide-step-copy h2 {
  font-size: 2.46rem;
  letter-spacing: -0.058em;
  white-space: nowrap;
}

.guide-step-copy p,
.guide-step-copy li {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 680;
}

.guide-step-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 16px 0 0;
}

.guide-visual {
  min-height: 260px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px) top / 100% 22%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) left / 22% 100%,
    linear-gradient(135deg, #1f64d8, #3aa0ff);
}

.mini-app-card,
.score-board,
.ai-panel,
.report-sheet {
  width: min(88%, 340px);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 42px rgba(11, 20, 36, 0.18);
}

.mini-player-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(95, 141, 255, 0.1);
}

.mini-player-row span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: white;
  background: #5f8dff;
  font-weight: 900;
}

.guide-mini-pitch {
  position: relative;
  width: min(86%, 360px);
  height: 230px;
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #23914b, #176f39);
}

.guide-mini-pitch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.guide-mini-pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.guide-mini-pitch .dot {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #9fd0ff);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.dot.gk { left: 50%; bottom: 8%; transform: translateX(-50%); }
.dot.d1 { left: 22%; bottom: 28%; }
.dot.d2 { left: 50%; bottom: 30%; transform: translateX(-50%); }
.dot.d3 { right: 22%; bottom: 28%; }
.dot.m1 { left: 24%; top: 42%; }
.dot.m2 { left: 50%; top: 39%; transform: translateX(-50%); }
.dot.m3 { right: 24%; top: 42%; }
.dot.a1 { left: 20%; top: 16%; }
.dot.a2 { left: 50%; top: 12%; transform: translateX(-50%); }
.dot.a3 { right: 20%; top: 16%; }

.score-board strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  margin: 6px 0 14px;
}

.score-board div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(18, 32, 52, 0.1);
}

.training-bars {
  width: min(82%, 330px);
  height: 190px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 14px;
}

.training-bars span {
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, #9fd0ff, #5f8dff);
  box-shadow: 0 18px 28px rgba(31, 100, 216, 0.24);
}

.ai-panel {
  display: grid;
  gap: 10px;
}

.ai-panel b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  color: #1f64d8;
}

.ai-panel span,
.report-sheet p {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(95, 141, 255, 0.1);
  color: #21314a;
  font-weight: 850;
}

.sheet-line {
  height: 12px;
  border-radius: 999px;
  margin: 16px 0;
  background: linear-gradient(90deg, #5f8dff, #9fd0ff);
}

.sheet-chart {
  height: 96px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(18, 32, 52, 0.06) 1px, transparent 1px) top / 100% 25%,
    linear-gradient(135deg, rgba(95, 141, 255, 0.2), rgba(255, 179, 107, 0.18));
}

.stats-grid-mini {
  width: min(88%, 340px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stats-grid-mini div {
  min-height: 112px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(11, 20, 36, 0.13);
}

.stats-grid-mini strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.3rem;
}

.stats-grid-mini span {
  color: var(--muted);
  font-weight: 850;
}

.guide-tactical-board,
.match-dashboard,
.training-dashboard,
.prediction-card,
.stats-showcase {
  width: min(94%, 430px);
}

.guide-tactical-board,
.match-dashboard,
.training-dashboard,
.prediction-card {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 50px rgba(11, 20, 36, 0.2);
}

.guide-board-top,
.training-topline,
.prediction-head,
.report-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.guide-board-top strong,
.prediction-head strong,
.training-topline strong,
.report-sheet-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  color: var(--ink);
}

.guide-board-top span,
.prediction-head span,
.training-topline span,
.report-sheet-head span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(95, 141, 255, 0.14);
  color: #245ecf;
  font-size: 0.78rem;
  font-weight: 900;
}

.guide-mini-pitch.detailed {
  width: 100%;
  height: 270px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px) top / 100% 20%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) left / 25% 100%,
    linear-gradient(180deg, #238f49, #176d39);
}

.guide-mini-pitch.detailed::before {
  top: 50%;
}

.guide-mini-pitch.detailed::after {
  width: 84px;
  height: 84px;
}

.field-line {
  position: absolute;
  pointer-events: none;
}

.field-line.box {
  left: 24%;
  width: 52%;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.field-line.box.top {
  top: -2px;
  border-top: 0;
}

.field-line.box.bottom {
  bottom: -2px;
  border-bottom: 0;
}

.field-line.goal {
  left: 40%;
  width: 20%;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.field-line.goal.top {
  top: -2px;
  border-top: 0;
}

.field-line.goal.bottom {
  bottom: -2px;
  border-bottom: 0;
}

.field-player {
  position: absolute;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7fbff, #8ab2ff);
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.field-player b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #10223f;
}

.field-player em {
  position: absolute;
  top: 40px;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.42);
}

.field-player.gk { left: 50%; top: 89%; background: linear-gradient(135deg, #ffd36f, #ff8a5f); }
.field-player.d1 { left: 18%; top: 70%; }
.field-player.d2 { left: 38%; top: 72%; }
.field-player.d3 { left: 62%; top: 72%; }
.field-player.d4 { left: 82%; top: 70%; }
.field-player.m1 { left: 27%; top: 50%; background: linear-gradient(135deg, #d9d1ff, #7553ff); }
.field-player.m2 { left: 50%; top: 53%; background: linear-gradient(135deg, #d9d1ff, #7553ff); }
.field-player.m3 { left: 73%; top: 50%; background: linear-gradient(135deg, #d9d1ff, #7553ff); }
.field-player.a1 { left: 24%; top: 25%; background: linear-gradient(135deg, #c7ffe3, #1fbf83); }
.field-player.a2 { left: 50%; top: 21%; background: linear-gradient(135deg, #c7ffe3, #1fbf83); }
.field-player.a3 { left: 76%; top: 25%; background: linear-gradient(135deg, #c7ffe3, #1fbf83); }

.match-dashboard {
  display: grid;
  gap: 14px;
}

.match-scoreline {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mini-crest {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.12), 0 16px 26px rgba(11, 20, 36, 0.18);
}

.mini-crest.warm {
  background: linear-gradient(135deg, #ff7a59, #ffbd4a);
}

.mini-crest.cool {
  background: linear-gradient(135deg, #1f64d8, #53d6ff);
}

.match-scoreline small,
.match-scoreline span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.match-scoreline strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.35rem;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.match-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.match-metrics-row div {
  padding: 12px 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(95, 141, 255, 0.14), rgba(31, 191, 131, 0.12));
  text-align: center;
}

.match-metrics-row b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.match-metrics-row span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.match-timeline {
  position: relative;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #ff8a5f 0 50%, #5f8dff 50% 100%);
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.72);
}

.match-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 34, 63, 0.18);
}

.match-timeline span {
  position: absolute;
  top: 9px;
  transform: translateX(-50%);
  padding: 5px 7px;
  border-radius: 999px;
  background: white;
  color: #10223f;
  font-size: 0.62rem;
  font-weight: 900;
  white-space: nowrap;
}

.training-dashboard {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.training-topline {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.attendance-ring {
  display: grid;
  place-items: center;
  align-content: center;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, white 0 50%, transparent 51%),
    conic-gradient(#1fbf83 0 90%, rgba(31, 191, 131, 0.18) 90% 100%);
  box-shadow: 0 18px 32px rgba(31, 191, 131, 0.18);
}

.attendance-ring b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.attendance-ring span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.training-phases {
  display: grid;
  gap: 8px;
}

.training-phases span {
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 179, 107, 0.28), rgba(95, 141, 255, 0.16));
  color: #26344d;
  font-size: 0.78rem;
  font-weight: 900;
}

.training-bars.detailed {
  grid-column: 1 / -1;
  width: 100%;
  height: 88px;
  gap: 10px;
}

.training-bars.detailed span {
  background: linear-gradient(180deg, #ffd36f, #ff8a5f 48%, #5f8dff);
}

.prediction-card {
  display: grid;
  gap: 12px;
}

.prediction-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.74fr;
  gap: 12px;
  align-items: stretch;
}

.prediction-pitch {
  position: relative;
  min-height: 230px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) top / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) left / 33% 100%,
    linear-gradient(180deg, #1c8744, #136a35);
  overflow: hidden;
}

.prediction-pitch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.68);
}

.prediction-pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.prediction-pitch i {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #5f8dff);
  color: #10223f;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.prediction-side {
  display: grid;
  gap: 8px;
}

.prediction-side div {
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(95, 141, 255, 0.16), rgba(31, 191, 131, 0.12));
}

.prediction-side b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.prediction-side span,
.prediction-card p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.prediction-card p {
  margin: 0;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 179, 107, 0.2);
  color: #37445c;
}

.report-sheet.detailed {
  width: min(92%, 390px);
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.report-kpis div {
  padding: 10px;
  border-radius: 16px;
  background: rgba(95, 141, 255, 0.12);
}

.report-kpis b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.report-kpis span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.detailed-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 14px;
  height: 124px;
}

.detailed-chart i {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #5f8dff, #1fbf83);
}

.stats-showcase {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px) top / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) left / 25% 100%,
    linear-gradient(135deg, #1f64d8, #3aa0ff);
}

.rank-card {
  display: grid;
  gap: 9px;
  min-height: 0;
  padding: 13px 15px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(11, 20, 36, 0.12);
}

.rank-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
}

.rank-card ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rank;
}

.rank-card li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  color: #21314a;
  font-weight: 900;
}

.rank-card li::before {
  content: counter(rank) ".";
  color: #ff9f2f;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.rank-card span,
.rank-card b {
  color: #21314a;
  font-size: 0.83rem;
  font-weight: 900;
}

.rank-card span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-card.gold {
  background: linear-gradient(135deg, rgba(255, 214, 128, 0.82), rgba(255, 245, 210, 0.9));
}

.rank-card.blue {
  background: linear-gradient(135deg, rgba(159, 208, 255, 0.9), rgba(229, 244, 255, 0.94));
}

.rank-card.green {
  background: linear-gradient(135deg, rgba(164, 241, 203, 0.88), rgba(230, 255, 242, 0.94));
}

.rank-card.purple {
  background: linear-gradient(135deg, rgba(209, 197, 255, 0.9), rgba(244, 239, 255, 0.94));
}

.plans-shell {
  width: min(1260px, calc(100% - 28px));
}

.plans-hero {
  display: block;
  margin-top: 18px;
}

.plans-hero-copy,
.plans-savings-card,
.pricing-card,
.discount-section,
.team-scale-card,
.plans-cta-band {
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 64px rgba(18, 42, 86, 0.13);
  backdrop-filter: blur(22px) saturate(1.12);
}

.plans-hero-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.82fr);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 13% 14%, rgba(95, 141, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(31, 191, 131, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(245, 249, 255, 0.9), rgba(215, 231, 249, 0.74));
}

.plans-hero-message {
  display: grid;
  gap: 18px;
  align-content: center;
}

.plans-hero-calculator {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 360px;
  padding: clamp(18px, 2.4vw, 30px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at 86% 85%, rgba(95, 141, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(218, 232, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 26px 58px rgba(18, 42, 86, 0.14);
  overflow: hidden;
}

.plans-hero-calculator::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(95, 141, 255, 0.14);
  pointer-events: none;
}

.plans-hero .brand-lockup {
  gap: 10px;
  padding: 8px 11px;
  border-radius: 16px;
  width: fit-content;
  margin-bottom: 2px;
  box-shadow: 0 14px 30px rgba(37, 73, 138, 0.06);
}

.plans-hero .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.plans-hero .brand-copy strong {
  font-size: 1rem;
}

.plans-hero .brand-copy span {
  font-size: 0.78rem;
}

.membership-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #10223f, #245ecf 58%, #5f8dff);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 34px rgba(36, 94, 207, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.membership-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(36, 94, 207, 0.34);
}

.plans-hero-kicker {
  width: fit-content;
  color: #31558e;
  font-size: 0.74rem;
  font-weight: 920;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plans-hero-headline {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.plans-headline-line {
  --headline-color: #5f8dff;
  --headline-soft: rgba(95, 141, 255, 0.18);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  width: fit-content;
  padding: clamp(10px, 1.4vw, 16px) clamp(18px, 2vw, 28px) clamp(10px, 1.4vw, 16px) clamp(10px, 1.3vw, 15px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--headline-color) 22%, transparent), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), var(--headline-soft));
  border: 1px solid color-mix(in srgb, var(--headline-color) 30%, white);
  box-shadow: 0 22px 44px rgba(18, 42, 86, 0.1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.1vw, 4.55rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.plans-headline-line.savings {
  --headline-color: #1fbf83;
  --headline-soft: rgba(31, 191, 131, 0.18);
}

.plans-headline-line.control {
  --headline-color: #7553ff;
  --headline-soft: rgba(117, 83, 255, 0.16);
}

.plans-headline-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(42px, 5.2vw, 72px);
  height: clamp(42px, 5.2vw, 72px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--headline-color), color-mix(in srgb, var(--headline-color) 62%, white));
  color: white;
  font-size: clamp(1.3rem, 2.4vw, 2.35rem);
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--headline-color) 26%, transparent);
}

.plans-hero-message p {
  max-width: 760px;
  margin: 0;
  color: #53647a;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  font-weight: 820;
}

.plans-calculator-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.plans-calculator-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.95rem, 3vw, 3.55rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.plans-calculator-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.55;
  font-weight: 780;
}

.plans-calculate-button {
  width: fit-content;
  margin-top: 6px;
  min-height: 58px;
  padding: 0 24px;
  font-size: 1.04rem;
}

.plans-calculator-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(12, 28, 58, 0.94), rgba(33, 85, 172, 0.84)),
    #10223f;
  box-shadow: 0 22px 44px rgba(15, 38, 86, 0.22);
}

.calculator-screen {
  min-height: 168px;
  display: grid;
  align-content: center;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 18%, rgba(95, 141, 255, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(221, 235, 255, 0.9));
  color: var(--ink);
}

.calculator-screen-label {
  color: #31558e;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-screen strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.calculator-screen em {
  color: #53647a;
  font-style: normal;
  font-weight: 900;
}

.calculator-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calculator-keys span {
  min-height: 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.plans-slogan {
  display: grid;
  gap: 10px;
  max-width: min(100%, 780px);
  margin-top: 0;
}

.plans-slogan-line {
  --plan-slogan-color: #315fd8;
  --plan-slogan-soft: rgba(91, 135, 255, 0.18);
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 15px 18px;
  overflow: hidden;
  border: 1px solid rgba(95, 141, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(218, 232, 255, 0.28)),
    radial-gradient(circle at 12% 20%, var(--plan-slogan-soft), transparent 40%);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 1.95vw, 2.55rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.96;
  box-shadow: 0 12px 26px rgba(42, 74, 130, 0.08);
}

.plans-slogan-line::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--plan-slogan-color), rgba(255, 255, 255, 0.4));
}

.plans-slogan-line.season {
  --plan-slogan-color: #177c63;
  --plan-slogan-soft: rgba(38, 188, 143, 0.18);
}

.pricing-head h2,
.discount-copy h2,
.plans-cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.plans-hero p,
.pricing-head p,
.discount-copy p,
.plans-cta-band p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 720;
}

.plans-hero-copy > p:not(.plans-auth-required) {
  max-width: 920px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.plans-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.plans-hero-pills span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #173052;
  font-size: 0.84rem;
  font-weight: 880;
  box-shadow: 0 8px 16px rgba(18, 42, 86, 0.06);
}

.plans-savings-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 28px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 179, 107, 0.3), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 244, 255, 0.78));
}

.plans-savings-card p {
  margin: 0;
  color: #245ecf;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.plans-savings-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  line-height: 0.95;
  color: var(--ink);
}

.plans-savings-card span,
.plans-savings-card small {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 800;
}

.saving-bars {
  height: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.saving-bars i {
  border-radius: 999px 999px 16px 16px;
  background: linear-gradient(180deg, #5f8dff, #1fbf83);
  box-shadow: 0 16px 26px rgba(31, 100, 216, 0.2);
}

.pricing-section,
.discount-section,
.team-scale-section,
.plans-cta-band {
  margin-top: 24px;
}

.pricing-head {
  max-width: 800px;
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 10%, rgba(138, 178, 255, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 52px rgba(18, 42, 86, 0.1);
}

.pricing-head h2,
.discount-copy h2,
.plans-cta-band h2 {
  font-size: clamp(2rem, 3.7vw, 4.2rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.pricing-card {
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(31, 191, 131, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(227, 255, 241, 0.78));
}

.pricing-card.eleven {
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 141, 255, 0.28), transparent 38%),
    radial-gradient(circle at 92% 84%, rgba(117, 83, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(222, 234, 255, 0.78));
}

.pricing-card.featured {
  border-color: rgba(95, 141, 255, 0.34);
  box-shadow: 0 30px 70px rgba(66, 112, 214, 0.18);
}

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.pricing-card-top span,
.pricing-card-top strong {
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 950;
}

.pricing-card-top span {
  background: #10223f;
  color: white;
}

.pricing-card-top strong {
  background: rgba(255, 255, 255, 0.72);
  color: #245ecf;
}

.pricing-card p,
.pricing-card li {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 760;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.price-table-card,
.price-calculator-card {
  margin-top: 20px;
  padding: 26px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 12%, rgba(138, 178, 255, 0.26), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(31, 191, 131, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 240, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 68px rgba(18, 42, 86, 0.14);
  backdrop-filter: blur(22px) saturate(1.12);
}

.price-table-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.price-table-head span {
  color: #245ecf;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price-table-head h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.price-table-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 780;
}

.price-table {
  display: grid;
  gap: 9px;
  overflow-x: auto;
}

.price-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr 1fr 0.9fr;
  gap: 10px;
  align-items: center;
  min-width: 980px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #173052;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(18, 42, 86, 0.06);
}

.price-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
}

.price-row-head {
  background: #10223f;
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-row.highlight {
  background: linear-gradient(135deg, rgba(138, 178, 255, 0.88), rgba(222, 235, 255, 0.92));
  border: 1px solid rgba(95, 141, 255, 0.34);
}

.price-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.price-notes span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #173052;
  font-weight: 900;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 18px;
  align-items: stretch;
}

.calculator-controls {
  display: grid;
  gap: 14px;
}

.selector-group,
.team-selector {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(83, 123, 193, 0.12);
}

.selector-group strong,
.team-selector span {
  color: #173052;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.selector-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #173052;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(18, 42, 86, 0.06);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.billing-discount {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(33, 124, 79, 0.26), rgba(70, 166, 118, 0.24));
  border: 1px solid rgba(31, 118, 75, 0.45);
  color: #1f7b4f;
  font-weight: 900;
  font-size: 0.8em;
  letter-spacing: 0.01em;
}

.selector-option.is-active .billing-discount {
  background: linear-gradient(135deg, rgba(33, 124, 79, 0.38), rgba(70, 166, 118, 0.34));
  border-color: rgba(28, 108, 69, 0.6);
  color: #e8fff3;
}

.billing-discount.is-zero,
.selector-option.is-active .billing-discount.is-zero {
  background: linear-gradient(135deg, rgba(208, 62, 78, 0.18), rgba(255, 122, 122, 0.18));
  border-color: rgba(178, 49, 62, 0.42);
  color: #b83248;
}

.selector-option:hover {
  transform: translateY(-1px);
}

.selector-option.is-active {
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
  color: white;
  box-shadow: 0 16px 30px rgba(66, 112, 214, 0.22);
}

.team-selector select {
  min-height: 54px;
  padding: 0 14px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: #173052;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(18, 42, 86, 0.06);
}

.price-result-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(95, 141, 255, 0.34), transparent 40%),
    radial-gradient(circle at 92% 84%, rgba(31, 191, 131, 0.2), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 238, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 52px rgba(18, 42, 86, 0.13);
}

.result-top-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.result-plan-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.result-membership {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.result-plan {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: #10223f;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-discount-inline {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(38, 146, 93, 0.2), rgba(86, 187, 133, 0.2));
  border: 1px solid rgba(29, 128, 80, 0.38);
  color: #1f7b4f;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.result-discount-inline.is-zero {
  background: linear-gradient(135deg, rgba(208, 62, 78, 0.18), rgba(255, 122, 122, 0.18));
  border-color: rgba(178, 49, 62, 0.38);
  color: #b83248;
}

.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.membership-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.membership-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(95, 141, 255, 0.32), transparent 32%),
    rgba(3, 12, 30, 0.68);
  backdrop-filter: blur(16px) saturate(1.12);
}

.membership-dialog {
  position: relative;
  width: min(980px, calc(100vw - 28px));
  max-height: min(820px, calc(100svh - 28px));
  overflow: auto;
  scrollbar-width: thick;
  scrollbar-color: rgba(76, 122, 236, 0.76) transparent;
  scrollbar-gutter: stable both-edges;
  padding: 30px 68px 30px 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 12%, rgba(138, 178, 255, 0.3), transparent 36%),
    radial-gradient(circle at 92% 86%, rgba(31, 191, 131, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(246, 250, 255, 0.96), rgba(221, 235, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 40px 100px rgba(3, 12, 30, 0.38);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.22s ease;
}

.membership-dialog::-webkit-scrollbar {
  width: 24px;
}

.membership-dialog::-webkit-scrollbar-track {
  margin: 108px 8px 104px 0;
  border-radius: 999px;
  background: transparent;
  border: 7px solid transparent;
  background-clip: padding-box;
}

.membership-dialog::-webkit-scrollbar-thumb {
  min-height: 52px;
  border: 7px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #9bbcff, #5f8dff 58%, #3f6fe0)
    padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 14px rgba(42, 86, 186, 0.18);
}

.membership-dialog::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #a9c7ff, #5f8dff 58%, #2f5bd1)
    padding-box;
}

.membership-modal.is-open .membership-dialog {
  transform: translateY(0) scale(1);
}

.membership-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 34, 63, 0.1);
  color: #10223f;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
}

.membership-dialog-head {
  max-width: 760px;
  padding-right: 56px;
}

.membership-dialog-head span {
  color: #245ecf;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.membership-dialog-head h2 {
  margin: 8px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.membership-dialog-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 780;
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 18px;
  margin-top: 22px;
}

.membership-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.membership-steps span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #526071;
  font-size: 0.82rem;
  font-weight: 950;
}

.membership-steps span.is-active {
  background: linear-gradient(135deg, #10223f, #245ecf);
  color: white;
}

.membership-controls {
  display: grid;
  gap: 14px;
}

.membership-selector,
.membership-team-selector,
.membership-summary {
  background: rgba(255, 255, 255, 0.74);
}

.membership-summary {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(83, 123, 193, 0.12);
  box-shadow: 0 24px 52px rgba(18, 42, 86, 0.11);
}

.result-price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.monthly-equivalent {
  display: grid;
  gap: 3px;
  margin-bottom: 5px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 191, 131, 0.28);
  box-shadow: 0 12px 24px rgba(18, 42, 86, 0.07);
}

.monthly-equivalent[hidden] {
  display: none;
}

.monthly-equivalent span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
}

.monthly-equivalent b {
  color: #126f4f;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 950;
  line-height: 1.05;
}

.membership-summary .result-price-row > strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: var(--ink);
}

.membership-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 860;
}

.membership-summary small {
  color: var(--muted);
  font-weight: 820;
  line-height: 1.55;
}

.membership-discount {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(95, 141, 255, 0.12);
  color: #245ecf !important;
  font-weight: 950 !important;
}

.membership-next {
  width: 100%;
  margin-top: 4px;
}

.modal-open {
  overflow: hidden;
}

.membership-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.membership-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.membership-form-grid.compact {
  grid-template-columns: 2fr 1fr 1fr;
}

.membership-form label {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(83, 123, 193, 0.12);
}

.membership-form label span {
  color: #173052;
  font-size: 0.88rem;
  font-weight: 950;
}

.membership-form input,
.membership-form select,
.resend-email-field input {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #10223f;
  font: inherit;
  font-weight: 800;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(83, 123, 193, 0.14);
}

.membership-form input,
.membership-form select {
  min-height: 48px;
  padding: 0 12px;
}

.membership-form input:focus,
.membership-form select:focus,
.resend-email-field input:focus {
  box-shadow: inset 0 0 0 2px rgba(95, 141, 255, 0.48);
}

.membership-form input:disabled {
  cursor: not-allowed;
  background: rgba(226, 235, 252, 0.78);
  color: #72819a;
  box-shadow: inset 0 0 0 1px rgba(83, 123, 193, 0.2);
}

.membership-form select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #244a86 50%),
    linear-gradient(135deg, #244a86 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.credentials-panel {
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 12%, rgba(95, 141, 255, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.credentials-panel h3 {
  display: block;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  font-size: 1.45rem;
}

.credentials-panel p {
  color: var(--muted);
  font-weight: 780;
  line-height: 1.55;
}

.membership-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.credentials-panel {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.credentials-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credentials-meta-item {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(83, 123, 193, 0.2);
  color: #243753;
  font-size: 0.9rem;
  font-weight: 900;
}

.credentials-panel > span {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: #10223f;
  color: white;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sent-confirmation,
.resend-email-field {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(83, 123, 193, 0.12);
}

.credentials-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.resend-current-button {
  min-width: 220px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(36, 94, 207, 0.28);
}

.resend-email-field label {
  display: grid;
  gap: 8px;
}

.sent-confirmation strong {
  color: #245ecf;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.sent-confirmation p,
.resend-status {
  margin: 0;
}

.checkout-important-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 247, 237, 0.96);
  border: 1px solid rgba(251, 146, 60, 0.36);
  color: #9a3412;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.checkout-resend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.checkout-resend-card .button {
  justify-self: start;
  margin-top: 6px;
}

.resend-email-field span {
  color: #173052;
  font-size: 0.88rem;
  font-weight: 950;
}

.resend-email-field input {
  min-height: 48px;
  padding: 0 12px;
}

.resend-status {
  min-height: 22px;
  color: #126f4f;
  font-weight: 900;
}

.resend-countdown {
  margin: 0;
  min-height: 22px;
  color: #245ecf;
  font-weight: 900;
}

.checkout-status {
  margin: 6px 2px 0;
  min-height: 22px;
  color: #a92525;
  font-weight: 900;
}

.checkout-return-card {
  margin: 28px 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(222, 238, 255, 0.90)),
    #fff;
  border: 1px solid rgba(186, 206, 247, 0.82);
  box-shadow: 0 26px 70px rgba(15, 42, 88, 0.20);
}

.checkout-return-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.checkout-return-head span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(47, 179, 119, 0.16);
  color: #146a45;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.checkout-return-card h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #0b1730;
}

.checkout-return-card p {
  max-width: 980px;
  margin: 0;
  color: #4f617c;
  font-weight: 760;
  line-height: 1.6;
}

.checkout-return-breakdown {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
}

.checkout-return-breakdown div {
  min-height: 96px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(234, 242, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(99, 140, 218, 0.18);
}

.checkout-return-breakdown span {
  display: block;
  color: #64738a;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-return-breakdown strong {
  display: block;
  margin-top: 8px;
  color: #0f2d57;
  font-size: 1.25rem;
}

.checkout-return-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(99, 140, 218, 0.18);
}

.checkout-return-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.checkout-return-table th,
.checkout-return-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(74, 117, 184, 0.14);
}

.checkout-return-table th {
  color: #2a4f8f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-return-table td {
  color: #172d51;
  font-weight: 780;
}


.price-result-card .result-price-row > strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: var(--ink);
}

.tax-note {
  width: fit-content;
  margin-top: -8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(31, 191, 131, 0.16);
  color: #126f4f;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-result-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 860;
}

.result-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.result-breakdown .breakdown-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 112, 178, 0.16);
}

.result-breakdown span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.result-breakdown b {
  display: block;
  margin-top: 5px;
  color: #173052;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  line-height: 1.15;
}

.breakdown-card.tone-blue { background: linear-gradient(180deg, rgba(123, 156, 255, 0.22), rgba(255, 255, 255, 0.84)); }
.breakdown-card.tone-cyan { background: linear-gradient(180deg, rgba(104, 211, 255, 0.2), rgba(255, 255, 255, 0.84)); }
.breakdown-card.tone-indigo { background: linear-gradient(180deg, rgba(132, 135, 255, 0.19), rgba(255, 255, 255, 0.86)); }
.breakdown-card.tone-violet { background: linear-gradient(180deg, rgba(167, 136, 255, 0.18), rgba(255, 255, 255, 0.86)); }
.breakdown-card.tone-sand { background: linear-gradient(180deg, rgba(255, 206, 143, 0.2), rgba(255, 255, 255, 0.86)); }
.breakdown-card.tone-mint { background: linear-gradient(180deg, rgba(140, 226, 184, 0.2), rgba(255, 255, 255, 0.86)); }

.breakdown-card.tone-mint b,
.breakdown-card.tone-sand b {
  color: #10395e;
}

.price-result-card small {
  color: var(--muted);
  font-weight: 820;
  line-height: 1.55;
}

.plan-definitions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.plan-definition {
  min-height: 250px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 46px rgba(18, 42, 86, 0.11);
  backdrop-filter: blur(18px) saturate(1.08);
}

.plan-definition.starter {
  background:
    radial-gradient(circle at 18% 14%, rgba(93, 168, 221, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(223, 244, 255, 0.94), rgba(255, 255, 255, 0.82));
}

.plan-definition.base {
  background:
    radial-gradient(circle at 18% 14%, rgba(196, 125, 73, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 232, 210, 0.94), rgba(255, 255, 255, 0.82));
}

.plan-definition.pro {
  background:
    radial-gradient(circle at 18% 14%, rgba(148, 164, 186, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(231, 239, 250, 0.94), rgba(255, 255, 255, 0.82));
}

.plan-definition.elite {
  background:
    radial-gradient(circle at 18% 14%, rgba(216, 169, 62, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 242, 196, 0.94), rgba(255, 255, 255, 0.82));
}

.plan-definition-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-definition-label {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(16, 34, 63, 0.9);
  color: white;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-definition-discount {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(33, 124, 79, 0.24), rgba(70, 166, 118, 0.22));
  border: 1px solid rgba(31, 118, 75, 0.4);
  color: #1f7b4f;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-definition.base .plan-definition-discount {
  background: linear-gradient(135deg, rgba(171, 95, 46, 0.24), rgba(219, 151, 96, 0.22));
  border-color: rgba(145, 77, 38, 0.42);
  color: #8a4b27;
}

.plan-definition.pro .plan-definition-discount {
  background: linear-gradient(135deg, rgba(127, 143, 166, 0.24), rgba(202, 212, 226, 0.28));
  border-color: rgba(118, 136, 160, 0.48);
  color: #52657f;
}

.plan-definition.elite .plan-definition-discount {
  background: linear-gradient(135deg, rgba(196, 142, 29, 0.24), rgba(249, 210, 95, 0.24));
  border-color: rgba(174, 126, 25, 0.44);
  color: #946814;
}

.plan-definition strong {
  display: block;
  margin: 14px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.plan-definition p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 760;
}

.discount-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 179, 107, 0.25), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 242, 219, 0.74));
}

.discount-matrix {
  display: grid;
  gap: 10px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: #173052;
  font-weight: 900;
}

.matrix-row.head {
  background: #10223f;
  color: white;
}

.matrix-row.highlight {
  background: linear-gradient(135deg, #8ab2ff, #5f8dff);
  color: white;
}

.team-scale-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-scale-card {
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 12%, rgba(95, 141, 255, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(229, 242, 255, 0.76));
}

.team-scale-card.recommended {
  background:
    radial-gradient(circle at 14% 12%, rgba(31, 191, 131, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(223, 255, 239, 0.76));
}

.team-scale-card span {
  color: #245ecf;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.team-scale-card strong {
  display: block;
  margin: 10px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  color: var(--ink);
}

.team-scale-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 760;
}

.plans-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 14%, rgba(138, 178, 255, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 235, 255, 0.78));
}

.plans-cta-band > div {
  flex: 1 1 auto;
  min-width: 0;
}

.plans-cta-band h2 {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(2.25rem, 3.15vw, 3.65rem);
}

.plans-cta-band p {
  margin-bottom: 0;
}

.plans-cta-band .button {
  flex: 0 0 auto;
  width: max-content;
  min-width: 0;
  padding-inline: 24px;
  text-align: center;
  white-space: nowrap;
}

.legal-footer {
  margin-top: 34px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(138, 178, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 246, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 60px rgba(18, 42, 86, 0.12);
  backdrop-filter: blur(22px) saturate(1.12);
}

.legal-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(49, 81, 130, 0.1);
}

.legal-footer-top p,
.legal-grid p,
.legal-notes p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-footer-top p {
  max-width: 68ch;
  margin: 10px 0 0;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.legal-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 14px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.legal-grid section {
  min-height: 210px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(74, 116, 184, 0.1);
}

.legal-grid h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.legal-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.legal-notes {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(49, 81, 130, 0.1);
}

.legal-notes p {
  margin: 0;
  font-size: 0.86rem;
}

.legal-notes p:last-child {
  max-width: 78ch;
}

.legal-links-row {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.legal-link {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  font-weight: 800;
  color: #223a63;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(34, 58, 99, 0.35);
  text-underline-offset: 3px;
}

.legal-link:hover {
  color: #305fbc;
  text-decoration-color: rgba(48, 95, 188, 0.58);
}

sup {
  font-size: 0.38em;
  line-height: 0;
  vertical-align: super;
  letter-spacing: 0.02em;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 44, 0.56);
  backdrop-filter: blur(4px);
}

.legal-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, calc(100% - 28px));
  max-height: min(80vh, 700px);
  overflow: auto;
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(232, 244, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 36px 90px rgba(14, 37, 78, 0.30);
}

.legal-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  color: #15335c;
  font-size: 1.6rem;
  cursor: pointer;
}

.legal-modal-dialog h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}

.legal-modal-dialog [data-legal-body] {
  color: #405573;
  line-height: 1.7;
  font-weight: 560;
}

.legal-modal-dialog [data-legal-body] p,
.legal-modal-dialog [data-legal-body] ul {
  margin: 0;
}

.legal-modal-dialog [data-legal-body] p + p,
.legal-modal-dialog [data-legal-body] p + ul,
.legal-modal-dialog [data-legal-body] ul + p {
  margin-top: 14px;
}

.legal-modal-dialog [data-legal-body] strong {
  color: #1c355d;
}

.legal-modal-dialog [data-legal-body] ul {
  padding-left: 20px;
}

.clients-panel {
  margin-top: 26px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(227, 240, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(20, 45, 92, 0.15);
}

.clients-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(46, 98, 213, 0.13);
  color: #2d5dc0;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.clients-head h1 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4.8vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.clients-head p {
  margin: 0;
  color: #516684;
  font-weight: 650;
}

.clients-grid {
  margin-top: 18px;
  display: block;
}

.clients-auth-switch {
  margin-top: 18px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(114, 148, 199, 0.24);
}

.clients-auth-tab {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: #274a82;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.clients-auth-tab.is-active {
  color: white;
  background: linear-gradient(135deg, #5f8dff, #3f6de6);
  box-shadow: 0 10px 20px rgba(63, 109, 230, 0.26);
}

.clients-auth-panels {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.clients-auth-zone {
  margin-top: 20px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(114, 148, 199, 0.22);
}

.clients-auth-zone[hidden],
.clients-session-bar[hidden] {
  display: none !important;
}

.clients-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(114, 148, 199, 0.24);
  display: grid;
  gap: 10px;
  width: min(620px, 100%);
  margin: 0 auto;
}

.clients-card[hidden],
.clients-result[hidden] {
  display: none !important;
}

.clients-note {
  margin: 2px 0 0;
  color: #4b6486;
  font-size: 0.92rem;
  font-weight: 640;
}

.clients-card h2 {
  margin: 0 0 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.clients-card label {
  display: grid;
  gap: 6px;
}

.clients-card label span {
  font-size: 0.9rem;
  font-weight: 750;
  color: #385179;
}

.clients-card input {
  min-height: 45px;
  border-radius: 12px;
  border: 1px solid rgba(63, 109, 181, 0.30);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 12px;
  font: inherit;
  color: #10264c;
}

.clients-card .clients-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(231, 239, 255, 0.72);
  border: 1px solid rgba(63, 109, 181, 0.18);
}

.clients-card .clients-terms-check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: #4f79ee;
  flex: 0 0 auto;
}

.clients-card .clients-terms-check span {
  color: #304967;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 760;
}

.clients-terms-check button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #285bc8;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.clients-status {
  margin: 14px 0 0;
  min-height: 22px;
  color: #294f94;
  font-weight: 760;
}

.clients-session-bar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(225, 237, 255, 0.86), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(98, 139, 219, 0.22);
}

.clients-session-bar span,
.clients-result-kicker {
  display: block;
  color: #2a5bc3;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.clients-session-bar strong {
  display: block;
  margin-top: 4px;
  color: #0d1a33;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.clients-result-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.clients-sort-select {
  min-height: 44px;
  border: 1px solid rgba(98, 139, 219, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 239, 255, 0.92));
  color: #163a73;
  font: inherit;
  font-weight: 850;
  padding: 0 16px;
  box-shadow: 0 12px 28px rgba(31, 69, 145, 0.08);
}

.clients-sort-direction {
  min-height: 44px;
  border: 1px solid rgba(98, 139, 219, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 241, 255, 0.96), rgba(255, 255, 255, 0.9));
  color: #163a73;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(31, 69, 145, 0.08);
  cursor: pointer;
}

.clients-sort-direction[data-direction="desc"] {
  background: linear-gradient(135deg, rgba(31, 70, 145, 0.96), rgba(85, 126, 239, 0.92));
  color: #fff;
}

.client-popup[hidden] {
  display: none !important;
}

.client-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.client-popup-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 26%, rgba(91, 141, 255, 0.32), transparent 34%),
    rgba(8, 18, 42, 0.56);
  backdrop-filter: blur(12px);
}

.client-popup-dialog {
  position: relative;
  width: min(540px, 100%);
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(224, 236, 255, 0.94)),
    #fff;
  border: 1px solid rgba(171, 195, 239, 0.82);
  box-shadow: 0 28px 80px rgba(9, 24, 56, 0.30);
  color: #0d1830;
}

.client-popup-dialog:has(.checkout-return-table-wrap),
.client-popup.is-checkout-success .client-popup-dialog {
  width: min(1120px, 100%);
}

.client-popup.is-cancel-confirm .client-popup-dialog {
  width: min(1040px, 100%);
  min-height: min(620px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 82% 78%, rgba(255, 84, 84, 0.18), transparent 27%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(227, 239, 255, 0.97)),
    #fff;
}

.client-popup.is-cancel-confirm .client-popup-kicker {
  background: rgba(45, 91, 194, 0.12);
  color: #2d58ba;
}

.client-popup.is-cancel-confirm .client-popup-dialog h3 {
  margin-top: 24px;
  max-width: calc(100% - 52px);
  white-space: nowrap;
  font-size: clamp(1.7rem, 4vw, 3.45rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.client-popup.is-cancel-confirm .client-popup-dialog p {
  max-width: 840px;
  font-size: clamp(1.05rem, 2vw, 1.62rem);
  line-height: 1.35;
  color: #4b5d78;
}

.client-popup.is-cancel-confirm .client-popup-extra {
  margin-top: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.client-popup-danger-panel {
  display: grid;
  gap: 6px;
  width: min(520px, 100%);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 240, 240, 0.86);
  border: 1px solid rgba(244, 81, 81, 0.20);
  box-shadow: 0 18px 42px rgba(244, 81, 81, 0.10);
}

.client-popup-danger-panel span {
  color: #b83248;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.client-popup-danger-panel strong {
  color: #142340;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
}

.client-popup-impact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #405675;
  font-weight: 820;
}

.client-popup-impact-list li {
  position: relative;
  padding-left: 26px;
}

.client-popup-impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b6b, #ef4444);
}

.client-popup-cancel-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}

.client-popup-return-cta {
  min-width: 260px;
  min-height: 64px;
  font-size: 1.05rem;
  box-shadow: 0 22px 44px rgba(22, 163, 97, 0.20);
}

.client-popup-danger-cta {
  min-width: 160px;
  min-height: 48px;
  padding: 0 24px;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.18);
}

.client-popup-portal-link {
  margin-left: 10px;
}

.client-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 35, 72, 0.08);
  color: #142340;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.client-popup-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(77, 121, 244, 0.13);
  color: #2d58ba;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.client-popup.is-error .client-popup-kicker {
  background: rgba(255, 103, 103, 0.16);
  color: #b83248;
}

.client-popup.is-success .client-popup-kicker {
  background: rgba(71, 190, 132, 0.18);
  color: #176b48;
}

.client-popup-dialog h3 {
  margin: 16px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.client-popup-dialog p {
  margin: 0 0 20px;
  color: #4f617c;
  font-weight: 700;
  line-height: 1.55;
  white-space: pre-line;
}

.client-popup-extra {
  margin: 18px 0 20px;
}

.client-popup-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.client-popup-label {
  color: #18325f;
  font-weight: 900;
}

.client-popup-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid rgba(76, 121, 193, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  padding: 18px;
  color: #10264c;
  font: inherit;
  font-weight: 700;
}

.client-popup-textarea:focus {
  outline: 3px solid rgba(83, 132, 255, 0.20);
  border-color: rgba(62, 107, 225, 0.66);
}

.client-popup-license-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.client-popup-license-row {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(76, 121, 193, 0.16);
}

.client-popup-check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.client-popup-check-row input {
  width: 22px;
  height: 22px;
  accent-color: #5f8dff;
}

.client-popup-check-row span {
  display: grid;
  gap: 3px;
}

.client-popup-check-row small,
.client-popup-license-row span {
  color: #526786;
  font-weight: 800;
}

.client-popup-login-form {
  display: grid;
  gap: 12px;
}

.client-popup-login-form label {
  display: grid;
  gap: 7px;
}

.client-popup-login-form label span {
  color: #314b77;
  font-size: 0.92rem;
  font-weight: 850;
}

.client-popup-login-form input {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(76, 121, 193, 0.28);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px;
  color: #10264c;
  font: inherit;
  font-weight: 700;
}

.client-popup-login-form input:focus {
  outline: 3px solid rgba(83, 132, 255, 0.22);
  border-color: rgba(62, 107, 225, 0.72);
}

.client-popup-form-status {
  margin: 0;
  min-height: 22px;
  color: #9d2f3d;
  font-size: 0.94rem;
  font-weight: 800;
}

.verification-code-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(38px, 1fr));
  gap: 8px;
}

.client-popup-login-form .verification-code-grid input {
  min-height: 54px;
  padding: 0;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 900;
}

.client-popup-register-link {
  justify-self: center;
  color: #2e5bd1;
  font-weight: 900;
  text-decoration: none;
}

.client-popup-register-link:hover {
  text-decoration: underline;
}

.clients-result {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(89, 129, 188, 0.24);
}

.clients-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.clients-result-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.clients-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

.clients-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.clients-table th,
.clients-table td {
  text-align: left;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(74, 117, 184, 0.16);
}

.clients-table th {
  color: #2a4f8f;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.clients-table td {
  color: #1a315d;
  font-weight: 650;
}

.license-user-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.license-code-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(74, 117, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #244fb5;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.license-code-button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.license-code-button:hover {
  transform: translateY(-1px);
  background: rgba(222, 234, 255, 0.95);
  border-color: rgba(74, 117, 184, 0.42);
}

.license-cancel-muted {
  color: #8da0c3;
  font-weight: 900;
}

.clients-bottom-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.clients-inline-action {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.client-popup-actions-inline {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.license-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.license-status.available {
  background: rgba(81, 136, 255, 0.14);
  color: #244fb5;
}

.license-status.active {
  background: rgba(57, 174, 116, 0.16);
  color: #176d47;
}

.license-status.pending-payment {
  background: rgba(244, 151, 55, 0.18);
  color: #9a5213;
}

.license-status.cancel-scheduled {
  background: rgba(251, 191, 36, 0.18);
  color: #9a5b00;
}

.license-status.cancelled {
  background: rgba(225, 81, 93, 0.14);
  color: #9d2f3d;
}

.license-status.expired,
.license-status.revoked {
  background: rgba(225, 81, 93, 0.14);
  color: #9d2f3d;
}

@media (max-width: 1080px) {
  .hero,
  .plans-hero,
  .discount-section,
  .guide-hero,
  .guide-step-card,
  .usage-steps,
  .lineup-layout,
  .player-insights-layout,
  .report-types-grid,
  .page-links-grid,
  .reports-layout,
  .plans-grid,
  .feature-grid,
  .feature-strip,
  .panel-grid,
  .analytics-showcase,
  .dashboard-score,
  .decision-grid,
  .results-showcase {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
  }

  .lineup-pitch {
    min-height: 620px;
  }

  .lineup-section {
    margin-right: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-welcome {
    grid-template-columns: 1fr;
  }

  .store-badges {
    max-width: 420px;
  }

  .hero-phone {
    width: min(100%, 520px);
    justify-self: start;
    height: auto;
  }

  .guide-hero {
    grid-template-columns: 1fr;
  }

  .guide-hero-impact {
    min-height: calc(100svh - 112px);
    margin-top: -18px;
  }

  .guide-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-hero-visual img {
    width: min(100%, 280px);
  }

  .guide-step-card {
    grid-template-columns: 1fr;
  }

  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav-links {
    justify-content: flex-start;
  }

  .clientes-floating {
    top: 14px;
    right: 14px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .plan-definitions,
  .calculator-layout,
  .membership-grid,
  .team-scale-section {
    grid-template-columns: 1fr;
  }

  .plans-hero-copy,
  .plans-hero-calculator {
    grid-template-columns: 1fr;
  }

  .plans-hero-calculator {
    min-height: 0;
  }

  .plans-savings-card {
    min-height: 320px;
  }

  .usage-step.wide {
    grid-column: span 2;
  }

  .legal-footer-top,
  .legal-notes {
    align-items: flex-start;
    flex-direction: column;
  }

  .clients-auth-switch {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 148px;
  }

  .site-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 148px;
  }

  .top-nav-shell {
    top: 9px;
  }

  .top-nav {
    width: min(100% - 18px, 1180px);
    min-height: 0;
    border-radius: 24px;
    padding: 10px;
  }

  .top-nav-brand img {
    width: 38px;
    height: 38px;
  }

  .top-nav-links {
    width: 100%;
    gap: 6px;
  }

  .top-nav-links a {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .clientes-floating {
    top: 10px;
    right: 10px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-intro {
    min-height: calc(100svh - 148px);
    padding: 2vh 0 8vh;
  }

  .hero-welcome {
    gap: 14px;
  }

  .hero-welcome h1 {
    width: min(100%, 9.6ch);
    font-size: clamp(3.25rem, 14.5vw, 5.5rem);
  }

  .hero-welcome p {
    font-size: 0.82rem;
    padding: 11px 13px;
  }

  .store-badges {
    max-width: none;
  }

  .plans-hero-membership {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .plans-hero-copy {
    padding: 18px;
    border-radius: 28px;
  }

  .plans-headline-line {
    width: 100%;
    padding-right: 14px;
    font-size: clamp(2.05rem, 11vw, 3.25rem);
  }

  .plans-hero-calculator {
    padding: 16px;
    border-radius: 26px;
  }

  .plans-calculator-visual {
    padding: 14px;
    border-radius: 24px;
  }

  .calculator-screen {
    min-height: 128px;
  }

  .plans-slogan-line {
    max-width: 100%;
    font-size: clamp(1.65rem, 8vw, 3.1rem);
    white-space: normal;
  }

  .plans-slogan {
    max-width: 100%;
  }

  .result-top-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-modal {
    padding: 10px;
  }

  .membership-dialog {
    padding: 22px 44px 22px 22px;
    border-radius: 28px;
  }

  .membership-dialog-head {
    padding-right: 42px;
  }

  .hero-slogan {
    gap: 10px;
  }

  .slogan-line,
  .slogan-line:nth-child(2),
  .slogan-line:nth-child(3),
  .slogan-line:nth-child(4) {
    width: 100%;
    margin-left: 0;
    padding: 10px 14px 10px 10px;
    border-radius: 22px;
    font-size: clamp(2.15rem, 12vw, 3.6rem);
    letter-spacing: -0.07em;
  }

  .slogan-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    font-size: 1.15rem;
  }

  .guide-hero h1 {
    font-size: 3.1rem;
  }

  .guide-hero-impact {
    min-height: calc(100svh - 136px);
    margin-top: -10px;
    padding-inline: 18px;
  }

  .guide-hero-impact h1 {
    width: min(100%, 11.8ch);
    font-size: clamp(2.9rem, 13.4vw, 5.3rem);
  }

  .guide-hero-copy {
    padding: 24px;
  }

  .guide-access-flow {
    padding: 22px;
    border-radius: 28px;
  }

  .guide-access-head h2,
  .step-ai .guide-step-copy h2 {
    white-space: normal;
  }

  .guide-access-grid {
    grid-template-columns: 1fr;
  }

  .guide-step-card {
    padding: 16px;
    border-radius: 28px;
  }

  .guide-visual {
    min-height: 220px;
  }

  .hero-phone {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .insight-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .lineup-pitch {
    min-height: 520px;
  }

  .pitch-overlay {
    padding: 10px 12px;
  }

  .pitch-overlay strong {
    font-size: 0.9rem;
  }

  .pitch-player {
    width: 70px;
    min-height: 86px;
  }

  .pitch-player .shirt-number {
    inset: 18px 12px auto 12px;
    height: 46px;
    font-size: 1.1rem;
  }

  .pitch-player .shirt-number::before {
    width: 22px;
    height: 22px;
    top: -15px;
  }

  .pitch-player .shirt-name {
    font-size: 0.68rem;
    max-width: 76px;
    bottom: 14px;
  }

  .pitch-player .shirt-rating {
    font-size: 0.66rem;
    padding: 3px 7px;
  }

  .lineup-main-title {
    font-size: 1.55rem;
  }

  .lineup-meta-grid {
    grid-template-columns: 1fr;
  }

  .section-contrast {
    padding: 44px 18px;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .report-metrics {
    grid-template-columns: 1fr;
  }

  .ranking-grid,
  .player-metric-grid,
  .impact-grid,
  .usage-steps,
  .pricing-grid,
  .plan-definitions,
  .discount-section,
  .team-scale-section,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .plans-hero-copy,
  .plans-savings-card,
  .price-table-card,
  .price-calculator-card,
  .discount-section,
  .plans-cta-band {
    padding: 22px;
    border-radius: 28px;
  }

  .plans-hero-copy {
    grid-template-columns: 1fr;
  }

  .plans-slogan {
    gap: 10px;
  }

  .plans-slogan-line {
    max-width: 100%;
    width: 100%;
    padding: 10px 14px 10px 10px;
    border-radius: 22px;
    font-size: clamp(2.1rem, 11vw, 3.45rem);
    letter-spacing: -0.07em;
  }

  .plans-slogan-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    font-size: 1rem;
  }

  .matrix-row {
    grid-template-columns: 1fr;
  }

  .price-table-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row {
    min-width: 860px;
  }

  .calculator-layout,
  .result-breakdown {
    grid-template-columns: 1fr;
  }

  .membership-form-grid,
  .membership-form-grid.compact,
  .checkout-resend-grid {
    grid-template-columns: 1fr;
  }

  .membership-form-actions {
    justify-content: stretch;
  }

  .membership-form-actions .button {
    width: 100%;
  }

  .plans-cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .plans-cta-band h2 {
    width: 100%;
    white-space: normal;
  }

  .plans-cta-band .button {
    width: 100%;
  }

  .usage-step,
  .usage-step.wide {
    grid-column: auto;
    min-height: auto;
    display: block;
  }

  .legal-footer {
    padding: 22px;
    border-radius: 28px;
  }

  .clients-panel,
  .clients-card,
  .clients-result {
    border-radius: 24px;
  }

  .legal-links-row {
    justify-content: center;
    gap: 12px;
  }
}
