:root {
  --landing-bg: #06100f;
  --landing-bg-soft: #0b1715;
  --landing-bg-deep: #040909;
  --landing-panel: rgba(11, 21, 20, 0.82);
  --landing-panel-strong: rgba(8, 16, 15, 0.94);
  --landing-line: rgba(200, 255, 61, 0.12);
  --landing-line-strong: rgba(200, 255, 61, 0.26);
  --landing-text: #edf8f1;
  --landing-muted: #9eb3ab;
  --landing-primary: #c8ff3d;
  --landing-primary-rgb: 200, 255, 61;
  --landing-secondary: #35a6ff;
  --landing-secondary-rgb: 53, 166, 255;
  --landing-accent: #ca45ff;
  --landing-accent-rgb: 202, 69, 255;
  --landing-yellow: #ffed4e;
  --landing-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --landing-shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.24);
  --landing-radius: 24px;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(var(--landing-primary-rgb), 0.24);
  }
  50% {
    box-shadow: 0 0 46px rgba(var(--landing-primary-rgb), 0.56);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(3deg);
  }
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -16px, 0) scale(1.08);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(237, 248, 241, 0.74);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--landing-primary);
}

.logo {
  color: var(--landing-text);
}

.logo .icon {
  color: var(--landing-primary);
}

.user-name {
  color: var(--landing-text);
}

.landing-page {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(var(--landing-primary-rgb), 0.2), transparent 20%),
    radial-gradient(circle at 84% 8%, rgba(var(--landing-secondary-rgb), 0.16), transparent 24%),
    radial-gradient(circle at 70% 22%, rgba(var(--landing-accent-rgb), 0.12), transparent 18%),
    linear-gradient(180deg, #06100f 0%, #070f13 32%, #081315 65%, #050909 100%);
  color: var(--landing-text);
  overflow: clip;
}

.landing-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
  pointer-events: none;
}

.landing-container,
.analysis-shell .app-container {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.landing-section,
.hero,
.analysis-shell,
.final-cta {
  position: relative;
  padding: 84px 0;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 54px;
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(6, 16, 15, 0.96) 0%, rgba(var(--landing-secondary-rgb), 0.42) 56%, rgba(var(--landing-accent-rgb), 0.18) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(var(--landing-secondary-rgb), 0.22), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(var(--landing-primary-rgb), 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 45%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: 28px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(var(--landing-primary-rgb), 0.24);
  background: rgba(var(--landing-primary-rgb), 0.08);
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-primary);
  box-shadow: 0 0 22px rgba(var(--landing-primary-rgb), 0.72);
}

.hero__headline,
.section-heading h2,
.analysis-shell__header h2,
.final-cta h2 {
  margin: 0;
  font-family: "Inter", "DM Sans", sans-serif;
  letter-spacing: -0.04em;
}

.hero__headline {
  font-size: clamp(68px, 10vw, 156px);
  line-height: 0.82;
  font-weight: 900;
  max-width: 920px;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.headline-accent {
  color: var(--landing-primary);
  text-shadow:
    0 0 26px rgba(var(--landing-primary-rgb), 0.28),
    0 0 72px rgba(var(--landing-primary-rgb), 0.14);
}

.hero__sub,
.section-heading p,
.feature-card p,
.plan-card li,
.analysis-shell__lead,
.final-cta p,
.site-footer p {
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero__sub {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 17px;
}

.hero__signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(var(--landing-primary-rgb), 0.16);
  background:
    linear-gradient(135deg, rgba(var(--landing-primary-rgb), 0.12), rgba(var(--landing-secondary-rgb), 0.08));
  color: rgba(237, 248, 241, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__grid-lines {
  position: absolute;
  inset: 8% 0 10%;
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 82%);
  opacity: 0.34;
}

.hero__mascot-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(13, 22, 22, 0.78), rgba(6, 11, 11, 0.92));
  border: 1px solid rgba(var(--landing-primary-rgb), 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 40px 110px rgba(0, 0, 0, 0.4);
  animation: pulseGlow 5s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  inset: 12% 12% auto;
  height: 280px;
  background:
    radial-gradient(circle, rgba(var(--landing-primary-rgb), 0.2) 0%, rgba(var(--landing-secondary-rgb), 0.16) 40%, rgba(var(--landing-accent-rgb), 0.1) 62%, transparent 78%);
  filter: blur(34px);
  pointer-events: none;
  animation: orbDrift 6s ease-in-out infinite;
}

.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.78;
  z-index: 1;
}

.hero__orb--one {
  width: 86px;
  height: 86px;
  top: 18%;
  right: 10%;
  background: radial-gradient(circle, rgba(var(--landing-primary-rgb), 0.8), transparent 68%);
  animation: orbDrift 7s ease-in-out infinite;
}

.hero__orb--two {
  width: 110px;
  height: 110px;
  left: 8%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(var(--landing-accent-rgb), 0.66), transparent 72%);
  animation: orbDrift 8s ease-in-out infinite reverse;
}

.hero__mascot-static {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  filter:
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 38px rgba(var(--landing-primary-rgb), 0.22));
  animation: mascotFloat 5.5s ease-in-out infinite;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__stats .stat,
.integration-strip__logos span,
.feature-card,
.plan-card,
.analysis-shell .app-sidebar,
.analysis-shell .pricing-header,
.analysis-shell .tab-card {
  background: var(--landing-panel);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--landing-shadow);
}

.hero__stats .stat {
  min-width: 170px;
  padding: 20px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 19, 19, 0.88), rgba(8, 14, 14, 0.98)),
    radial-gradient(circle at top right, rgba(var(--landing-primary-rgb), 0.14), transparent 45%);
  border: 1px solid rgba(var(--landing-primary-rgb), 0.14);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero__stats .stat:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--landing-primary-rgb), 0.28);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(var(--landing-primary-rgb), 0.14);
}

.stat-number {
  display: block;
  color: var(--landing-primary);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(237, 248, 241, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-strip {
  padding: 0;
  background: linear-gradient(90deg, var(--landing-primary) 0%, var(--landing-yellow) 50%, var(--landing-primary) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow:
    0 0 28px rgba(var(--landing-primary-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.integration-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  min-height: 78px;
}

.integration-strip__label,
.landing-section-label {
  margin: 0;
  color: #06100f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-strip__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-strip__logos span {
  padding: 0;
  border-radius: 0;
  color: #06100f;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.impact-strip {
  position: relative;
  padding: 16px 0 0;
  background: linear-gradient(180deg, rgba(5, 9, 9, 0.98), rgba(7, 12, 12, 0.98));
}

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

.impact-card {
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 15, 15, 0.88), rgba(7, 12, 12, 0.96)),
    radial-gradient(circle at top right, rgba(var(--landing-accent-rgb), 0.18), transparent 36%);
  border: 1px solid rgba(var(--landing-secondary-rgb), 0.12);
  box-shadow: var(--landing-shadow-soft);
}

.impact-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--landing-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-card strong {
  display: block;
  color: #f8fff8;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.impact-card p {
  margin: 14px 0 0;
  color: rgba(237, 248, 241, 0.68);
  line-height: 1.72;
}

.impact-card--visual {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(var(--landing-secondary-rgb), 0.22), rgba(var(--landing-accent-rgb), 0.18) 44%, rgba(8, 14, 14, 0.96) 100%);
  border-color: rgba(var(--landing-primary-rgb), 0.18);
}

.impact-card__mascot {
  width: min(100%, 170px);
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 34px rgba(var(--landing-primary-rgb), 0.18));
}

.impact-card__copy {
  display: grid;
  align-content: center;
}

.slogan-band {
  position: relative;
  padding: 28px 0 20px;
  background:
    linear-gradient(180deg, rgba(6, 11, 11, 0.98), rgba(8, 14, 14, 0.98));
}

.slogan-band__inner {
  padding: 34px 36px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(var(--landing-secondary-rgb), 0.18), rgba(var(--landing-accent-rgb), 0.16) 42%, rgba(8, 14, 14, 0.96) 100%);
  border: 1px solid rgba(var(--landing-primary-rgb), 0.18);
  box-shadow: var(--landing-shadow-soft);
}

.slogan-band__eyebrow {
  margin: 0 0 10px;
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slogan-band__inner h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #f8fff8;
}

.slogan-band__inner p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(237, 248, 241, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.analysis-shell {
  padding-top: 44px;
  padding-bottom: 58px;
  background:
    linear-gradient(180deg, rgba(5, 9, 9, 0.98), rgba(7, 12, 12, 0.98));
}

.analysis-shell__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.analysis-shell__header h2,
.section-heading h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  font-weight: 850;
}

.analysis-shell__quicklist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.analysis-shell__quicklist span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(var(--landing-primary-rgb), 0.08);
  border: 1px solid rgba(var(--landing-primary-rgb), 0.12);
  color: var(--landing-text);
  font-size: 13px;
  font-weight: 700;
}

.analysis-shell .app-container {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.analysis-shell .app-sidebar {
  position: sticky;
  top: 94px;
  padding: 18px;
  border-radius: var(--landing-radius);
  background:
    linear-gradient(180deg, rgba(8, 15, 15, 0.98), rgba(5, 10, 10, 0.98)),
    radial-gradient(circle at top, rgba(var(--landing-secondary-rgb), 0.12), transparent 35%);
  border: 1px solid rgba(var(--landing-secondary-rgb), 0.12);
}

.analysis-shell .app-main {
  padding: 22px;
  border-radius: calc(var(--landing-radius) + 4px);
  background:
    linear-gradient(180deg, rgba(8, 15, 15, 0.98), rgba(5, 10, 10, 0.98)),
    radial-gradient(circle at top right, rgba(var(--landing-accent-rgb), 0.12), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--landing-shadow);
}

.analysis-shell .pricing-header {
  margin-bottom: 18px;
  padding: 30px;
  text-align: left;
  border-radius: calc(var(--landing-radius) + 4px);
  background:
    linear-gradient(180deg, rgba(7, 14, 14, 0.98), rgba(5, 10, 10, 0.98)),
    radial-gradient(circle at top right, rgba(var(--landing-secondary-rgb), 0.16), transparent 34%),
    radial-gradient(circle at left, rgba(var(--landing-accent-rgb), 0.12), transparent 28%);
  border: 1px solid rgba(var(--landing-secondary-rgb), 0.16);
}

.pricing-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.pricing-header__content {
  display: grid;
  gap: 8px;
}

.pricing-eyebrow {
  margin: 0;
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.analysis-shell .pricing-header h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 0.98;
  color: #f7fff9;
}

.analysis-shell .pricing-header p {
  margin: 10px 0 0;
  color: rgba(237, 248, 241, 0.68);
}

.analysis-shell .pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: none;
  margin: 20px 0 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--landing-secondary-rgb), 0.46) 0%, rgba(var(--landing-accent-rgb), 0.26) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(8, 23, 21, 0.26);
}

.plan-visibility-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 13, 13, 0.96), rgba(12, 20, 20, 0.96));
  border: 1px solid rgba(var(--landing-accent-rgb), 0.14);
  box-shadow: var(--landing-shadow-soft);
}

.plan-visibility-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.plan-visibility-card h3 {
  margin: 4px 0 0;
  color: #f7fff9;
  font-size: 30px;
  line-height: 0.98;
}

.plan-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-status-badge--visitor,
.plan-status-badge--free {
  color: #eff8f2;
  background: rgba(255, 255, 255, 0.06);
}

.plan-status-badge--pro {
  color: #07100f;
  background: var(--landing-primary);
  border-color: transparent;
}

.plan-usage-text,
.plan-helper-text,
.plan-pricing-note {
  margin: 14px 0 0;
  color: rgba(237, 248, 241, 0.74);
}

.plan-helper-text {
  font-size: 14px;
}

.plan-pricing-note {
  font-size: 13px;
  color: rgba(237, 248, 241, 0.58);
}

.plan-usage-track {
  margin-top: 16px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.plan-usage-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--landing-primary), #8aff7f);
  box-shadow: 0 0 24px rgba(var(--landing-primary-rgb), 0.3);
  transition: width 0.32s ease;
}

.plan-compare-grid,
.ops-overview-grid {
  display: grid;
  gap: 16px;
}

.plan-compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.plan-compare-card,
.ops-card,
.history-workspace,
.history-group,
.history-entry {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--landing-shadow-soft);
}

.plan-compare-card {
  padding: 18px 20px;
}

.plan-compare-card--highlight {
  border-color: rgba(var(--landing-primary-rgb), 0.18);
  background: linear-gradient(180deg, rgba(var(--landing-primary-rgb), 0.12), rgba(255, 255, 255, 0.03));
}

.plan-compare-card__eyebrow {
  margin: 0 0 8px;
  color: var(--landing-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-compare-card strong,
.ops-card__value {
  display: block;
  color: #f7fff9;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.plan-compare-card span,
.ops-card__meta {
  display: block;
  margin-top: 8px;
  color: rgba(237, 248, 241, 0.66);
  line-height: 1.6;
}

.ops-overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 22px;
}

.ops-card {
  padding: 20px;
}

.ops-card__label {
  display: block;
  margin-bottom: 12px;
  color: rgba(237, 248, 241, 0.6);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysis-shell .tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.analysis-shell .tab {
  min-height: 56px;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(237, 248, 241, 0.74);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.analysis-shell .tab:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--landing-primary-rgb), 0.20);
}

.analysis-shell .tab.active {
  background: linear-gradient(135deg, var(--landing-primary), #88ff89);
  color: #07100f;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(var(--landing-primary-rgb), 0.15), 0 12px 24px rgba(var(--landing-primary-rgb), 0.16);
}

.analysis-shell .tab-card {
  padding: 22px;
  border-radius: calc(var(--landing-radius) + 4px);
  background: rgba(255, 255, 255, 0.025);
}

.analysis-shell .form-section {
  padding: 0;
}

.analysis-shell .form-section h3 {
  margin: 0 0 18px;
  color: #f7fff9;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.analysis-shell .form-group label {
  color: rgba(237, 248, 241, 0.92);
  font-weight: 700;
}

.analysis-shell input,
.analysis-shell textarea,
.analysis-shell select {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(var(--landing-primary-rgb), 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #f4fff8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.analysis-shell textarea {
  min-height: 120px;
}

.analysis-shell input::placeholder,
.analysis-shell textarea::placeholder {
  color: rgba(237, 248, 241, 0.38);
}

.analysis-shell input:focus,
.analysis-shell textarea:focus,
.analysis-shell select:focus {
  border-color: rgba(var(--landing-primary-rgb), 0.36);
  box-shadow: 0 0 0 4px rgba(var(--landing-primary-rgb), 0.10);
}

.analysis-shell .results-area {
  margin-top: 18px;
}

.analysis-shell .result-card,
.analysis-shell .result-item,
.analysis-shell .result-table-container {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--landing-shadow-soft);
}

.analysis-shell .result-card.safe,
.analysis-shell .result-item.safe {
  background: linear-gradient(180deg, rgba(24, 167, 122, 0.16), rgba(255, 255, 255, 0.03));
}

.analysis-shell .result-card.unsafe,
.analysis-shell .result-item.high-risk {
  background: linear-gradient(180deg, rgba(var(--landing-primary-rgb), 0.13), rgba(255, 255, 255, 0.03));
}

.analysis-shell .stats-grid {
  gap: 12px;
}

.analysis-shell .stat-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--landing-secondary-rgb), 0.14);
}

.analysis-shell .sidebar-section + .sidebar-section {
  margin-top: 18px;
}

.history-workspace {
  margin-top: 24px;
  padding: 24px;
}

.history-workspace__header,
.history-controls,
.history-entry__meta,
.history-entry__footer,
.history-workspace__actions,
.history-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.history-workspace__header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.history-workspace__header h3 {
  margin: 6px 0 0;
  color: #f7fff9;
  font-size: 28px;
  line-height: 1.04;
}

.history-controls {
  align-items: end;
  margin-bottom: 18px;
}

.history-controls .form-group {
  flex: 1 1 180px;
}

.history-summary-strip {
  margin-bottom: 18px;
}

.history-summary-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(var(--landing-primary-rgb), 0.08);
  border: 1px solid rgba(var(--landing-primary-rgb), 0.12);
  color: #eff8f2;
  font-size: 13px;
  font-weight: 700;
}

.history-workspace__results {
  display: grid;
  gap: 16px;
}

.history-group {
  padding: 18px;
}

.history-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.history-group__header h4 {
  margin: 0;
  color: #f7fff9;
  font-size: 20px;
}

.history-group__header span,
.history-entry__date,
.history-entry__hint {
  color: rgba(237, 248, 241, 0.6);
  font-size: 13px;
}

.history-group__items {
  display: grid;
  gap: 12px;
}

.history-entry {
  padding: 16px;
}

.history-entry__type {
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-commercial-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.history-commercial-badge--low {
  background: rgba(119, 221, 119, 0.14);
  border-color: rgba(119, 221, 119, 0.28);
  color: #a9f3a9;
}

.history-commercial-badge--medium {
  background: rgba(255, 214, 102, 0.16);
  border-color: rgba(255, 214, 102, 0.3);
  color: #ffe08a;
}

.history-commercial-badge--high {
  background: rgba(255, 107, 107, 0.14);
  border-color: rgba(255, 107, 107, 0.3);
  color: #ff9a9a;
}

.history-entry__query {
  display: block;
  margin-top: 8px;
  color: #f7fff9;
  font-size: 18px;
  line-height: 1.35;
  word-break: break-word;
}

.history-entry__footer {
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.history-empty-state {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(var(--landing-primary-rgb), 0.18);
  text-align: center;
}

.history-empty-state strong {
  display: block;
  color: #f7fff9;
  font-size: 22px;
}

.history-empty-state p {
  margin: 10px auto 0;
  max-width: 620px;
  color: rgba(237, 248, 241, 0.66);
}

.history-empty-state__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.landing-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.landing-section--light {
  background: linear-gradient(180deg, rgba(5, 9, 9, 0.98) 0%, rgba(8, 14, 14, 0.98) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.feature-grid,
.plans-grid {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.plan-card {
  position: relative;
  padding: 28px;
  border-radius: var(--landing-radius);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(var(--landing-primary-rgb), 0.08), rgba(8, 14, 14, 0.94)),
    radial-gradient(circle at top right, rgba(var(--landing-accent-rgb), 0.14), transparent 34%);
  border: 1px solid rgba(var(--landing-primary-rgb), 0.18);
}

.plan-card {
  background:
    linear-gradient(180deg, rgba(var(--landing-secondary-rgb), 0.08), rgba(8, 14, 14, 0.94)),
    radial-gradient(circle at top right, rgba(var(--landing-secondary-rgb), 0.14), transparent 34%);
  border: 1px solid rgba(var(--landing-secondary-rgb), 0.16);
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--landing-primary-rgb), 0.3);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.feature-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--landing-primary-rgb), 0.08), transparent 38%, rgba(var(--landing-accent-rgb), 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before,
.plan-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-yellow));
  color: #07100f;
  box-shadow:
    0 0 40px rgba(var(--landing-primary-rgb), 0.28),
    0 18px 28px rgba(0, 0, 0, 0.18);
  animation: pulseGlow 4.8s ease-in-out infinite;
}

.feature-card h3,
.plan-card h3 {
  margin: 0 0 12px;
  color: #f5fff9;
  font-size: 26px;
  line-height: 1.08;
}

.feature-card__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(var(--landing-primary-rgb), 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--landing-primary-rgb), 0.34);
  box-shadow: 0 0 24px rgba(var(--landing-primary-rgb), 0.14);
}

.plan-card__supporting {
  margin: -2px 0 14px;
  color: rgba(237, 248, 241, 0.62);
  line-height: 1.6;
}

.plan-tier {
  margin: 0 0 8px;
  color: var(--landing-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card h3 span {
  font-size: 18px;
  color: var(--landing-muted);
}

.plan-card ul {
  margin: 4px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

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

.plan-card--featured {
  background:
    linear-gradient(180deg, rgba(var(--landing-primary-rgb), 0.12), rgba(8, 14, 14, 0.98)),
    radial-gradient(circle at top, rgba(var(--landing-primary-rgb), 0.22), transparent 46%);
  border-color: rgba(var(--landing-primary-rgb), 0.3);
  box-shadow:
    0 0 0 1px rgba(var(--landing-primary-rgb), 0.12),
    0 0 56px rgba(var(--landing-primary-rgb), 0.2),
    var(--landing-shadow);
}

.plan-card--roadmap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

#how-section,
#bento-section,
#testimonials-section {
  display: none;
}

.final-cta {
  background:
    radial-gradient(circle at top right, rgba(var(--landing-primary-rgb), 0.22), transparent 22%),
    radial-gradient(circle at 24% 20%, rgba(var(--landing-accent-rgb), 0.16), transparent 24%),
    linear-gradient(180deg, #040808 0%, #071011 100%);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  align-items: center;
  gap: 28px;
}

.final-cta__mascot {
  width: min(100%, 220px);
  justify-self: end;
  filter:
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 34px rgba(var(--landing-primary-rgb), 0.18));
  animation: mascotFloat 6s ease-in-out infinite;
}

.site-footer {
  background: #040909;
  color: #f7fff9;
  padding-top: 48px;
  border-top: 1px solid rgba(var(--landing-primary-rgb), 0.12);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer__links,
.site-footer__social {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(247, 255, 249, 0.88);
  text-decoration: none;
}

.site-footer__bottom {
  margin-top: 36px;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
  color: rgba(247, 255, 249, 0.7);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: floatIn 0.7s ease;
}

.feature-grid .animate-on-scroll:nth-child(2),
.plans-grid .animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.feature-grid .animate-on-scroll:nth-child(3),
.plans-grid .animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero__grid,
  .analysis-shell__header,
  .pricing-header__grid,
  .final-cta__grid,
  .feature-grid,
  .plans-grid,
  .site-footer__grid,
  .impact-strip__grid {
    grid-template-columns: 1fr;
  }

  .analysis-shell .app-container {
    grid-template-columns: 1fr;
  }

  .ops-overview-grid,
  .plan-compare-grid {
    grid-template-columns: 1fr 1fr;
  }

  .analysis-shell .app-sidebar {
    position: relative;
    top: auto;
  }

  .slogan-band__inner {
    padding: 26px 24px;
  }
}

@media (max-width: 768px) {
  .landing-container,
  .analysis-shell .app-container {
    width: min(100%, calc(100% - 40px));
  }

  .landing-section,
  .hero,
  .analysis-shell,
  .final-cta {
    padding: 80px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero__headline {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__mascot-static {
    width: min(100%, 300px);
  }

  .slogan-band__inner h2 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .analysis-shell .tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .plan-card,
  .analysis-shell .pricing-header,
  .analysis-shell .tab-card,
  .analysis-shell .app-main,
  .history-workspace {
    padding: 24px;
  }

  .ops-overview-grid,
  .plan-compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__cta,
  .hero__stats,
  .analysis-shell__quicklist,
  .hero__signal-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__visual,
  .final-cta__mascot {
    display: none;
  }

  .integration-strip__inner {
    min-height: 64px;
  }

  .integration-strip__logos span {
    font-size: 12px;
  }

  .hero__stats .stat {
    min-width: 0;
  }

  .analysis-shell .tabs-nav {
    grid-template-columns: 1fr;
  }

  .history-entry__footer,
  .history-workspace__header {
    flex-direction: column;
    align-items: stretch;
  }
}
