@font-face {
  font-family: "Josefin Sans";
  src: url("/assets/fonts/josefin-sans-v34-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-400-v25-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-700-v25-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-900-v25-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --orange: #eb8714;
  --orange-light: #ef9f43;
  --orange-soft: #fdf3e8;
  --navy: #304489;
  --blue: #415bb9;
  --data-blue: #4a88fe;
  --success: #1fa971;
  --discord: #5865f2;
  --ink: #060709;
  --heading: #0d0e12;
  --text: #41485b;
  --muted: #828ca6;
  --divider: #dfe3ee;
  --surface: #fcfcfd;
  --soft-blue: #edf1fa;
  --soft-blue-2: #e8ecf7;
  --footer: #111a3a;
  --white: #ffffff;
  --font-display: "Josefin Sans", "Avenir Next", sans-serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1340px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 8px 30px rgba(20, 28, 57, 0.08);
  --shadow-card: 0 18px 50px rgba(30, 46, 92, 0.12);
  --shadow-cta: 0 8px 18px rgba(235, 135, 20, 0.28);
  --section-space: clamp(76px, 8vw, 120px);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
}

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

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

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

body.consent-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(74, 136, 254, 0.65);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.35rem, 5.4vw, 5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.25;
}

h1 span,
h2 span {
  color: #5d6783;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 7px 14px;
  border: 1px solid rgba(48, 68, 137, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 5px 16px rgba(20, 28, 57, 0.08);
  color: #141c39;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: var(--shadow-cta);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(235, 135, 20, 0.32);
  filter: saturate(1.06);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 46px;
  padding: 11px 22px;
  font-size: 14px;
}

.button-wide {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(48, 68, 137, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(20, 28, 57, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: var(--space-8);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: calc(var(--space-6) + var(--space-1));
  color: var(--text);
  font-size: 14px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 14px;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--divider);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin-block: 5px;
  border-radius: 4px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: clamp(76px, 8vw, 116px);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: clamp(56px, 6vw, 92px);
}

.hero-inner > * {
  min-width: 0;
}

.hero-copy {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow {
  margin-inline: auto;
}

.hero-copy p {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions > span {
  color: var(--muted);
  font-size: 13px;
}

.product-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  padding: clamp(44px, 6vw, 88px);
  border: 1px solid rgba(48, 68, 137, 0.06);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fbf5ed 0%, #f8f8fa 48%, #eef0f5 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stage-glow {
  position: absolute;
  z-index: -1;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
}

.stage-glow-orange {
  left: 4%;
  bottom: 8%;
  background: var(--orange-light);
}

.stage-glow-blue {
  top: 4%;
  right: 6%;
  background: #d4d8e2;
}

.web-preview {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 12%;
  width: 64%;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(48, 68, 137, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transform: perspective(1000px) rotateX(1deg) rotateY(4deg);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, opacity 220ms ease;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid #edf0f7;
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dce1ed;
}

.window-bar small {
  min-width: 0;
  margin-left: 12px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-layer-button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(48, 68, 137, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.window-bar .preview-layer-button {
  margin-left: auto;
}

.preview-layer-button:hover {
  border-color: rgba(235, 135, 20, 0.5);
  color: var(--orange);
}

.preview-layer-button:focus-visible {
  outline: 3px solid rgba(235, 135, 20, 0.34);
  outline-offset: 3px;
}

.preview-layer-button[hidden] {
  display: none;
}

/* Umschaltbare Ebenen der Hero-Produktvorschau */
.product-stage[data-active-preview="discord"] .web-preview {
  z-index: 2;
  opacity: 0.86;
  transform: perspective(1000px) rotateX(1deg) rotateY(4deg) translateY(8px) scale(0.97);
}

.product-stage[data-active-preview="web"] .web-preview {
  z-index: 4;
  opacity: 1;
  box-shadow: 0 32px 76px rgba(20, 28, 57, 0.2);
  transform: perspective(1000px) rotateX(0) rotateY(0) translateY(-6px) scale(1.01);
}

.product-stage[data-active-preview="discord"] .discord-preview {
  z-index: 4;
  opacity: 1;
  transform: rotate(1deg) translateY(-6px) scale(1.01);
}

.product-stage[data-active-preview="web"] .discord-preview {
  z-index: 2;
  opacity: 0.78;
  box-shadow: 0 18px 48px rgba(11, 16, 36, 0.22);
  transform: rotate(3deg) translate(10px, 12px) scale(0.95);
}

.product-stage[data-active-preview="discord"] .web-preview,
.product-stage[data-active-preview="web"] .discord-preview {
  cursor: pointer;
}

.product-stage[data-active-preview="discord"] .web-preview button:not([data-hero-activate]),
.product-stage[data-active-preview="web"] .discord-preview button:not([data-hero-activate]),
.product-stage[data-active-preview="discord"] .web-preview [role="slider"],
.product-stage[data-active-preview="web"] .discord-preview [role="slider"],
.product-stage[data-active-preview="discord"] .web-preview [role="option"],
.product-stage[data-active-preview="web"] .discord-preview [role="option"] {
  pointer-events: none;
}

.web-preview-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 22px 24px 18px;
}

.web-preview-head strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
}

.web-preview-head span,
.discord-channel small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.live-indicator,
.flag-label,
.route-inline {
  display: inline-flex;
  align-items: center;
}

.live-indicator {
  gap: 9px;
}

.live-status-dot {
  position: relative;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31, 169, 113, 0.12);
}

.live-status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(31, 169, 113, 0.44);
  border-radius: inherit;
  content: "";
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% { opacity: 0.72; transform: scale(0.65); }
  70%, 100% { opacity: 0; transform: scale(1.55); }
}

.live-demo-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-label {
  gap: 7px;
}

.flag-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 16px;
  border: 1px solid rgba(16, 22, 42, 0.1);
  border-radius: 3px;
  object-fit: cover;
}

.flag-icon-large {
  width: 36px;
  height: 24px;
  border-radius: 5px;
}

.route-inline {
  justify-content: flex-start;
  gap: 7px;
}

.route-arrow {
  width: 14px;
  height: 14px;
  color: var(--muted);
  opacity: 0.62;
}

.deal-table {
  display: grid;
  grid-template-columns: 0.58fr minmax(150px, 1.65fr) minmax(110px, 1.05fr) 0.72fr 0.65fr 0.72fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px 24px;
  border-top: 1px solid #edf0f7;
  color: var(--text);
  font-size: 13px;
}

.deal-table-head {
  min-height: 42px;
  background: #fafbfe;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.deal-table strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-table em {
  color: var(--success);
  font-style: normal;
  font-weight: 700;
}

.deal-table b {
  color: var(--orange);
}

.discord-preview {
  position: absolute;
  right: 7%;
  bottom: 8%;
  z-index: 3;
  width: min(390px, 36%);
  min-width: 330px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #17191f;
  box-shadow: 0 28px 70px rgba(11, 16, 36, 0.3);
  color: #e7e9ee;
  transform: rotate(3deg);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, opacity 220ms ease;
}

.discord-preview > .preview-layer-button {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(32, 35, 44, 0.94);
  color: #fff;
}

.discord-channel {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #aeb4c3;
}

.discord-channel small {
  margin-left: auto;
}

.bot-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-line img {
  flex: 0 0 auto;
  border-radius: 9px;
}

.bot-line div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bot-line strong {
  color: #f4b04e;
  font-size: 13px;
}

.bot-line span {
  padding: 2px 6px;
  border-radius: 5px;
  background: #5865f2;
  color: #fff;
  font-size: 9px;
  line-height: 1.2;
}

.discord-preview h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
}

.discord-preview ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.discord-preview li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}

.discord-preview li b {
  color: #fff;
}

.discord-preview li small {
  color: #73a7ff;
}

.live-deal {
  transition: opacity 320ms ease, transform 320ms ease;
}

.deal-table.live-deal.is-entering,
.panel-deals article.live-deal.is-entering,
.portal-row.live-deal.is-entering {
  opacity: 0;
  transform: translateY(-10px) scale(0.99);
}

.discord-preview.live-deal {
  transition: opacity 320ms ease, box-shadow 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.discord-preview.live-deal.is-entering {
  opacity: 0.72;
  box-shadow: 0 34px 82px rgba(11, 16, 36, 0.4);
}

.keepa-graph-slot {
  margin-top: 22px;
}

.keepa-graph {
  --keepa-rank: #2d8738;
  --keepa-buybox: #e80268;
  --keepa-new: #6e58aa;
  --keepa-grid: #dfe4e8;
  --keepa-axis: #20283a;
  --keepa-muted: #687083;
  --keepa-border: #d9e0e8;
  container-type: inline-size;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--keepa-border);
  border-radius: 16px;
  background: #fefefe;
  box-shadow: 0 8px 24px rgba(16, 23, 47, 0.11);
}

.keepa-graph__header,
.keepa-graph__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.keepa-graph__header {
  color: var(--keepa-axis);
  font-size: 12px;
}

.keepa-graph__header strong {
  min-width: 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: inherit;
  letter-spacing: 0;
}

.keepa-graph__current {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f6f7f9;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.keepa-graph__current .flag-icon {
  width: 16px;
  height: 11px;
  border-radius: 2px;
}

.keepa-graph__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.keepa-graph--detail .keepa-graph__body {
  grid-template-columns: 38px minmax(0, 1fr) 106px;
  align-items: stretch;
  gap: 9px;
  margin-top: 9px;
}

.keepa-graph__plot {
  min-width: 0;
}

.keepa-graph__markets {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.keepa-graph__markets button {
  display: grid;
  width: 34px;
  height: 28px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.keepa-graph__markets button:hover {
  background: #f6f7f9;
}

.keepa-graph__markets button.is-active {
  border-color: #dfe3ea;
  background: #eef1f5;
  box-shadow: inset 0 0 0 1px rgba(32, 40, 58, 0.03);
}

.keepa-graph__markets button:focus-visible {
  outline: 3px solid rgba(65, 129, 254, 0.34);
  outline-offset: 2px;
}

.keepa-graph__markets .flag-icon {
  width: 25px;
  height: 17px;
  border-radius: 3px;
}

.keepa-graph__side-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 9px 4px 5px 2px;
  color: var(--keepa-axis);
  font-size: 9px;
}

.keepa-graph__side-legend .keepa-graph__legend-item {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 2px 5px;
  align-items: center;
}

.keepa-graph__side-legend .keepa-graph__legend-item b {
  grid-column: 2;
  overflow: hidden;
  color: var(--keepa-axis);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.keepa-graph__wordmark {
  margin-top: auto;
  color: #5d6575;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.keepa-graph__legend {
  justify-content: flex-start;
  margin: 8px 0 6px;
  color: var(--keepa-muted);
  font-size: 10px;
}

.keepa-graph__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.keepa-graph__legend-item b {
  color: var(--keepa-axis);
  font-weight: 700;
}

.keepa-graph__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.keepa-graph__dot--rank {
  background: var(--keepa-rank);
}

.keepa-graph__dot--price {
  background: var(--keepa-buybox);
}

.keepa-graph__dot--new {
  background: var(--keepa-new);
}

.keepa-graph__canvas {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 240;
  overflow: hidden;
  border: 1px solid var(--keepa-border);
  border-radius: 8px;
  background: #fff;
  cursor: crosshair;
}

.keepa-graph__canvas svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.keepa-graph__grid {
  stroke: var(--keepa-grid);
  stroke-dasharray: 4 4;
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
}

.keepa-graph__grid--vertical {
  stroke-opacity: 0.9;
}

.keepa-graph__axis-label {
  position: absolute;
  z-index: 1;
  color: var(--keepa-muted);
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
}

.keepa-graph__axis-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.keepa-graph__axis-label--y {
  margin-left: -2px;
  transform: translate(-100%, -50%);
}

.keepa-graph__axis-label--y-right {
  margin-left: 1px;
  transform: translate(0, -50%);
}

.keepa-graph__axis-label--x {
  transform: translate(-50%, -100%);
}

.keepa-graph__axis-label--start {
  transform: translate(0, -100%);
}

.keepa-graph__axis-label--end {
  transform: translate(-100%, -100%);
}

.keepa-graph__line {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.keepa-graph__line--rank {
  stroke: var(--keepa-rank);
  stroke-width: 1.25;
}

.keepa-graph__line--price {
  stroke: var(--keepa-buybox);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.keepa-graph__line--new {
  stroke: var(--keepa-new);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
}

.keepa-graph__cursor {
  stroke: rgba(50, 57, 74, 0.45);
  stroke-dasharray: 4 4;
  stroke-width: 1;
}

.keepa-graph__point {
  stroke: #fff;
  stroke-width: 2;
}

.keepa-graph__point--rank {
  fill: var(--keepa-rank);
}

.keepa-graph__point--price {
  fill: var(--keepa-buybox);
}

.keepa-graph__point--new {
  fill: var(--keepa-new);
}

.keepa-graph__tooltip {
  position: absolute;
  top: 8px;
  z-index: 2;
  max-width: min(240px, calc(100% - 16px));
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  color: var(--heading);
  font-size: 12px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 160ms ease;
}

.keepa-graph__canvas:hover .keepa-graph__tooltip,
.keepa-graph__canvas:focus-visible .keepa-graph__tooltip {
  opacity: 1;
}

.keepa-graph-slot-compact {
  margin-top: 12px;
}

.keepa-graph-slot-compact .keepa-graph {
  padding: 9px;
  border-radius: 12px;
}

.keepa-graph-slot-compact .keepa-graph__header {
  font-size: 9px;
}

.keepa-graph-slot-compact .keepa-graph__header > span,
.keepa-graph-slot-compact .keepa-graph__legend {
  font-size: 8px;
}

.keepa-graph-slot-compact .keepa-graph__legend {
  margin-block: 5px 3px;
}

.keepa-graph-slot-compact .keepa-graph__canvas {
  height: auto;
  aspect-ratio: 640 / 240;
}

.keepa-graph-slot-compact .keepa-graph__axis-label {
  font-size: 7px;
}

.portal-mini-chart {
  display: block;
  width: 100%;
  min-width: 110px;
}

.portal-mini-chart .keepa-graph {
  padding: 0;
  border-color: #dfe4e8;
  border-radius: 4px;
  box-shadow: none;
}

.portal-mini-chart .keepa-graph__header,
.portal-mini-chart .keepa-graph__legend,
.portal-mini-chart .keepa-graph__tooltip,
.portal-mini-chart .keepa-graph__axis-label,
.portal-mini-chart .keepa-graph__cursor,
.portal-mini-chart .keepa-graph__point {
  display: none;
}

.portal-mini-chart .keepa-graph__canvas {
  height: 56px;
  aspect-ratio: auto;
  border-radius: 4px;
  cursor: default;
}

.portal-mini-chart .keepa-graph__line--rank {
  stroke-width: 1.15;
}

.portal-mini-chart .keepa-graph__line--price {
  stroke-width: 1.45;
}

.portal-mini-chart .keepa-graph__line--new {
  stroke-width: 1.05;
}

@container (max-width: 360px) {
  .keepa-graph--detail .keepa-graph__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .keepa-graph--detail .keepa-graph__markets {
    flex-direction: row;
    justify-content: flex-start;
    order: 1;
  }

  .keepa-graph--detail .keepa-graph__plot {
    order: 2;
  }

  .keepa-graph--detail .keepa-graph__side-legend {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    order: 3;
    padding: 2px 0 0;
  }

  .keepa-graph--detail .keepa-graph__side-legend .keepa-graph__legend-item {
    display: inline-flex;
  }

  .keepa-graph--detail .keepa-graph__side-legend .keepa-graph__legend-item b {
    display: none;
  }

  .keepa-graph--detail .keepa-graph__wordmark {
    margin: 0 0 0 auto;
    font-size: 13px;
  }
}

@container (max-width: 340px) {
  .keepa-graph__header {
    font-size: 9px;
  }

  .keepa-graph__current {
    gap: 4px;
    padding-inline: 6px;
    font-size: 8px;
  }

  .keepa-graph__legend {
    gap: 8px;
    font-size: 8px;
  }

  .keepa-graph__axis-label {
    font-size: 7px;
  }

  .keepa-graph__axis-label--y-right {
    font-size: 0;
  }

  .keepa-graph__axis-label--y-right::after {
    content: attr(data-short-label);
    font-size: 7px;
  }

  .keepa-graph__axis-label--x[data-axis-index="1"],
  .keepa-graph__axis-label--x[data-axis-index="3"] {
    display: none;
  }

  .keepa-graph__legend-item:nth-child(3) {
    display: none;
  }
}

.floating-stat {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-stat span {
  color: var(--muted);
  font-size: 12px;
}

.floating-stat strong {
  color: var(--heading);
}

.floating-stat-left {
  left: 4%;
  bottom: 12%;
}

.floating-stat-right {
  right: 1%;
  top: 12%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  max-width: 900px;
  margin-inline: auto;
}

.stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 26px;
  text-align: center;
}

.stats > div + div {
  border-left: 1px solid var(--divider);
}

.stats strong {
  color: #262a36;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stats > div:nth-child(3) strong {
  white-space: nowrap;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading > p {
  max-width: 700px;
  margin-top: 24px;
  color: var(--text);
  font-size: 17px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-6);
}

.card,
.feature-card,
.faq-item {
  border: 1px solid rgba(48, 68, 137, 0.08);
  background: linear-gradient(180deg, #fff 0%, var(--soft-blue) 100%);
  box-shadow: var(--shadow-soft);
}

.process-card {
  border: 1px solid rgba(48, 68, 137, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius-lg);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card > p {
  max-width: 46ch;
  color: var(--text);
}

.feature-routes,
.feature-margin,
.feature-founders {
  grid-column: span 4;
}

.feature-time,
.feature-simple {
  grid-column: span 6;
  min-height: 340px;
}

.route-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
}

.route-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(20, 28, 57, 0.08);
}

.route-list > div > span {
  grid-row: span 2;
}

.route-list strong {
  color: var(--ink);
  font-size: 14px;
}

.route-list small {
  color: var(--muted);
  font-size: 12px;
}

.margin-bars {
  display: grid;
  gap: 24px;
  margin-top: auto;
  padding-top: 36px;
}

.margin-bars > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 13px;
}

.margin-bars b {
  color: var(--orange);
}

.margin-bars i {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(130, 140, 166, 0.12);
}

.margin-bars i::after {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffad37);
}

.mini-founder-stack {
  position: relative;
  min-height: 210px;
  margin-top: auto;
  padding-top: 30px;
}

.mini-founder-card {
  position: absolute;
  bottom: 0;
  width: 160px;
  height: 190px;
  padding: 12px;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.mini-founder-card .portrait {
  display: block;
  width: 136px;
  height: 136px;
  overflow: hidden;
  border-radius: 50%;
}

.mini-founder-card img,
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marc-photo {
  transform: rotate(0deg) scale(1.06);
  transform-origin: center;
}

.patrick-photo {
  transform: rotate(4deg) scale(1.1);
  transform-origin: center;
}

.founder-photo .patrick-photo {
  transform: rotate(10deg) scale(1.1);
}

.founder-photo .marc-photo {
  transform: rotate(-10deg) scale(1.06);
}

.mini-founder-card small {
  position: absolute;
  left: 8px;
  bottom: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
}

.patrick-card {
  left: calc(50% - 150px);
  transform: rotate(-8deg);
}

.marc-card {
  right: calc(50% - 150px);
  transform: translateY(-2px) rotate(6deg);
}

.time-comparison {
  display: grid;
  gap: 24px;
  margin-top: auto;
  padding-top: 34px;
}

.time-comparison > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  color: var(--muted);
}

.time-comparison b {
  color: var(--text);
}

.time-comparison > div:last-child b {
  color: var(--data-blue);
}

.time-comparison i {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(130, 140, 166, 0.16);
}

.time-comparison u {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #cdd3df;
}

.time-comparison > div:last-child u {
  background: var(--data-blue);
}

.mini-deal {
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 28, 57, 0.08);
}

.mini-deal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid #edf0f7;
  color: var(--ink);
  font-weight: 700;
}

.mini-deal-head small {
  color: var(--muted);
  font-weight: 400;
}

.mini-deal-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-deal > div:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mini-deal > div:nth-child(2) span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 12px;
}

.mini-deal strong {
  color: var(--heading);
  font-size: 16px;
}

.mini-deal footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 16px;
}

.mini-deal footer b {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e9f7f0;
  color: var(--success);
  font-size: 11px;
}

.mini-deal footer b:nth-child(2) {
  background: var(--orange-soft);
  color: var(--orange);
}

.mini-deal footer b:nth-child(3) {
  background: #eef3ff;
  color: var(--data-blue);
}

.delivery-section {
  background: linear-gradient(180deg, #fff 0%, #fafbfe 50%, #fff 100%);
}

.tabs {
  max-width: 1120px;
  margin-inline: auto;
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 6px;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: 999px;
  background: #f3f5fa;
}

.tab-list button {
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tab-list button[data-tab="discord"][aria-selected="true"] {
  background: var(--discord);
  box-shadow: 0 8px 18px rgba(88, 101, 242, 0.28);
  color: #fff;
}

.tab-list button[data-tab="web"][aria-selected="true"] {
  background: var(--orange);
  box-shadow: var(--shadow-cta);
  color: #1a1004;
}

.tab-panel {
  border-radius: var(--radius-lg);
}

.discord-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: #17191f;
  box-shadow: 0 28px 70px rgba(11, 16, 36, 0.18);
  color: #e8ebf1;
}

.panel-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-channel > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aeb4c3;
  font-size: 13px;
}

.panel-deals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-deals article {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  background: #17191f;
}

.panel-deals h3 {
  margin: 18px 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0;
}

.panel-deals dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.panel-deals dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #aeb4c3;
  font-size: 14px;
}

.panel-deals dt,
.panel-deals dd {
  margin: 0;
}

.panel-deals dd {
  color: #fff;
  font-weight: 700;
  text-align: right;
}

.portal-panel {
  overflow: hidden;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 24px 60px rgba(48, 68, 137, 0.12);
}

.portal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px 26px;
  border-bottom: 1px solid #edf0f7;
}

.portal-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.portal-title .live-indicator {
  color: var(--muted);
  font-size: 12px;
}

.portal-toolbar strong {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 24px;
}

.portal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.portal-filters > b,
.portal-filters > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f5fa;
  color: var(--text);
  font-size: 12px;
}

.portal-filters > b {
  background: var(--orange-soft);
  color: #a75505;
}

.portal-filters > b img {
  width: 18px;
  height: 18px;
}

.portal-row {
  display: grid;
  grid-template-columns: 70px minmax(200px, 1.6fr) minmax(150px, 1.1fr) 110px 92px 96px;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 13px 26px;
  border-top: 1px solid #edf0f7;
  color: var(--text);
  font-size: 13px;
}

.portal-row strong {
  overflow: hidden;
  color: var(--heading);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-row > time {
  color: var(--muted);
  font-size: 12px;
}

.portal-row-time {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.portal-row b {
  color: var(--success);
}

.portal-row em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.portal-row-head {
  min-height: 46px;
  border-top: 0;
  background: #f8f9fc;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.capability-grid > article {
  position: relative;
  min-height: 310px;
  padding: 32px;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 42px rgba(30, 46, 92, 0.07);
}

.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  padding: 15px;
  border-radius: 17px;
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(235, 135, 20, 0.25);
}

.capability-icon img {
  width: 32px;
  height: 32px;
  color: #fff;
  filter: brightness(0) invert(1);
}

.capability-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
}

.capability-grid p {
  color: var(--text);
  line-height: 1.58;
}

.capability-grid .analyzer-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  min-height: 0;
  background: linear-gradient(135deg, #fff9f2, #f8f9fc 58%, #f3f4f7);
}

.analyzer-card img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.analyzer-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 700;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 124px;
}

.process-intro > p {
  max-width: 420px;
  margin-top: 22px;
}

.process-cards {
  display: grid;
  gap: 0;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: visible;
  padding: clamp(38px, 4vw, 50px);
  border-radius: 32px;
  background: linear-gradient(180deg, #fdfdff 0%, #f4f6fc 100%);
  box-shadow: 0 18px 48px rgba(30, 46, 92, 0.08);
}

.process-card:nth-child(2) {
  z-index: 2;
  min-height: 450px;
  margin-top: -34px;
}

.process-card:nth-child(3) {
  z-index: 3;
  min-height: 490px;
  margin-top: -34px;
}

@media (min-width: 1101px) and (min-height: 760px) {
  .process-cards {
    --process-stack-top: 112px;
    --process-stack-offset: 22px;
    gap: 34px;
  }

  .process-card {
    position: sticky;
    top: var(--process-stack-top);
    z-index: 1;
  }

  .process-card:nth-child(2) {
    top: calc(var(--process-stack-top) + var(--process-stack-offset));
    z-index: 2;
    margin-top: 0;
  }

  .process-card:nth-child(3) {
    top: calc(var(--process-stack-top) + (var(--process-stack-offset) * 2));
    z-index: 3;
    margin-top: 0;
  }
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  padding: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(235, 135, 20, 0.25);
}

.process-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.process-card .step-number {
  position: absolute;
  top: 26px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(65, 91, 185, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.process-card h3 {
  max-width: calc(100% - 64px);
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
}

.process-card > p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.58;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  margin-top: auto;
  padding: 34px clamp(20px, 5vw, 54px);
}

.process-visual {
  width: 100%;
  min-height: 168px;
  margin-top: 34px;
  border-radius: 24px;
  background: #f8f9fc;
  box-shadow: inset 0 0 0 1px rgba(48, 68, 137, 0.04);
}

.logo-check {
  position: relative;
  display: inline-flex;
}

.logo-check > img {
  width: 78px;
  height: 78px;
  padding: 15px;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 28, 57, 0.08);
  object-fit: contain;
}

.logo-check > i {
  position: absolute;
  right: -7px;
  bottom: -6px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--success);
}

.logo-check > i img {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

.route-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 34px;
  padding: 30px clamp(18px, 4vw, 44px);
}

.market-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  min-height: 98px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 28, 57, 0.08);
}

.market-price small {
  width: 100%;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.market-price b {
  color: var(--heading);
  font-size: 20px;
}

.route-gain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.route-gain b {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f7f0;
  color: var(--success);
  font-size: 13px;
}

.route-gain img {
  width: 26px;
  height: 26px;
  color: var(--data-blue);
}

.profit-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  width: 100%;
  max-width: none;
  margin-top: 34px;
  padding: 28px 32px;
}

.profit-visual > span {
  color: var(--muted);
  font-size: 13px;
}

.profit-visual > strong {
  grid-row: span 2;
  color: var(--success);
  font-size: 24px;
  white-space: nowrap;
}

.profit-visual > i {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 128px;
  margin-top: 12px;
}

.profit-visual u {
  flex: 1;
  min-width: 20px;
  max-width: 72px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #81a9ff, var(--data-blue));
}

.comparison-section {
  background: #fafbfe;
}

.comparison-table {
  overflow: hidden;
  max-width: 1060px;
  margin-inline: auto;
  border: 1px solid rgba(48, 68, 137, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 16px 30px;
}

.comparison-row + .comparison-row {
  border-top: 1px solid #edf0f7;
}

.comparison-row strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.comparison-row > span:last-child {
  color: var(--muted);
}

.comparison-head {
  min-height: 88px;
  background: linear-gradient(90deg, #fff, #f6f8fd);
  color: var(--heading);
  font-weight: 700;
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.testimonial blockquote {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(20, 28, 57, 0.14);
  object-fit: cover;
}

.testimonial figcaption div {
  display: flex;
  flex-direction: column;
}

.testimonial figcaption strong {
  color: var(--heading);
}

.testimonial figcaption small {
  color: var(--muted);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 1120px;
  margin-inline: auto;
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 230px;
  padding: 34px;
  border: 1px solid rgba(48, 68, 137, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.founder-photo {
  display: block;
  width: 132px;
  height: 132px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--soft-blue);
}

.founder-card h3 {
  margin-bottom: 4px;
}

.founder-card small {
  color: var(--muted);
}

.founder-card p {
  margin: 14px 0 10px;
}

.founder-card a {
  color: var(--orange);
  font-weight: 700;
}

.pricing-section {
  background: linear-gradient(180deg, #fff 0%, #fafbfe 100%);
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(48, 68, 137, 0.09);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.price-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.price-title strong {
  color: var(--heading);
  font-size: 18px;
}

.price-title > span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.regular-price {
  width: fit-content;
  margin-bottom: 2px;
  color: var(--muted);
  text-decoration: line-through;
}

.launch-price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 14px;
}

.launch-price strong {
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.launch-price span {
  padding-bottom: 10px;
  color: var(--muted);
}

.price-tax-note {
  max-width: 430px;
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.price-copy > p {
  margin-bottom: 28px;
}

.price-copy > .price-tax-note {
  margin-bottom: 18px;
}

.price-copy > p b {
  color: var(--heading);
}

.benefit-list {
  display: grid;
  gap: 16px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 30px;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--navy);
  -webkit-mask: url("/assets/icons/check-circle.svg") center / contain no-repeat;
  mask: url("/assets/icons/check-circle.svg") center / contain no-repeat;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin-inline: auto;
}

.faq-item {
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.faq-item summary {
  position: relative;
  min-height: 66px;
  padding: 21px 58px 21px 24px;
  color: var(--heading);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 24px 24px;
}

.final-cta {
  padding-top: 24px;
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 120%, rgba(239, 159, 67, 0.55), transparent 45%),
    linear-gradient(135deg, #26366e 0%, #304489 56%, #415bb9 100%);
  box-shadow: 0 24px 70px rgba(32, 49, 103, 0.25);
  color: rgba(255, 255, 255, 0.76);
}

.final-cta-card h2 {
  color: #fff;
}

.final-cta-card p {
  margin-top: 18px;
}

.eyebrow-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff;
}

.button-light {
  flex: 0 0 auto;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 14, 40, 0.22);
  color: var(--navy);
}

.site-footer {
  margin-top: var(--section-space);
  padding: 70px 0 28px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 0.7fr 0.7fr;
  gap: 60px;
}

.footer-brand img {
  width: 166px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: #fff;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid span[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer-consent-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-consent-button:hover {
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.consent-banner {
  position: fixed;
  inset: auto auto max(16px, env(safe-area-inset-bottom)) 50%;
  width: min(920px, calc(100% - 32px));
  max-width: none;
  max-height: min(780px, calc(100dvh - 32px));
  margin: 0;
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(48, 68, 137, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(8, 14, 40, 0.3);
  color: var(--text);
  transform: translateX(-50%);
}

.consent-banner::backdrop {
  background: rgba(8, 14, 40, 0.38);
  backdrop-filter: blur(5px);
}

.consent-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 22px 32px;
  padding: 28px;
}

.consent-banner__copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.consent-banner__copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.consent-banner__copy h2:focus {
  outline: none;
}

.consent-banner__copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 14px;
}

.consent-banner__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  gap: 10px;
}

.consent-choice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 16px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.consent-choice-button:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.consent-banner__details {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(48, 68, 137, 0.1);
  padding-top: 16px;
}

.consent-banner__details summary {
  width: fit-content;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.consent-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-block: 16px;
}

.consent-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(48, 68, 137, 0.12);
  border-radius: 16px;
  background: #f8f9fc;
  cursor: pointer;
}

.consent-option--fixed {
  cursor: default;
}

.consent-option > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consent-option strong {
  color: var(--heading);
}

.consent-option small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.consent-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-switch {
  position: relative;
  width: 44px;
  height: 26px;
  border: 1px solid rgba(48, 68, 137, 0.2);
  border-radius: 999px;
  background: #dfe3ed;
  transition: background 160ms ease, border-color 160ms ease;
}

.consent-switch::after {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(8, 14, 40, 0.2);
  content: "";
  transition: transform 160ms ease;
}

.consent-option input:checked + .consent-switch {
  border-color: var(--navy);
  background: var(--navy);
}

.consent-option input:checked + .consent-switch::after {
  transform: translateX(18px);
}

.consent-option input:focus-visible + .consent-switch {
  outline: 3px solid rgba(74, 136, 254, 0.65);
  outline-offset: 3px;
}

.consent-option__status {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(48, 68, 137, 0.08);
  color: var(--navy) !important;
  font-weight: 700;
}

.consent-save-button {
  min-height: 48px;
  padding-inline: 22px;
}

.consent-banner__note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.consent-banner__note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner__close {
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 16px;
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f8;
  color: var(--heading);
  font-size: 23px;
  cursor: pointer;
}

.consent-banner[data-saved="true"] .consent-banner__close {
  display: block;
}

.consent-banner[data-saved="true"] .consent-banner__copy {
  padding-right: 42px;
}

.checkout-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  overflow: auto;
  padding: 38px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 100px rgba(8, 14, 40, 0.32);
  color: var(--text);
}

.checkout-dialog::backdrop {
  background: rgba(8, 14, 40, 0.58);
  backdrop-filter: blur(8px);
}

.checkout-dialog > img {
  margin-bottom: 18px;
}

.checkout-dialog h2 {
  margin-bottom: 16px;
  font-size: 48px;
}

.checkout-dialog h2 small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.checkout-dialog > p {
  margin-bottom: 22px;
}

.checkout-dialog .compact {
  margin-bottom: 28px;
}

.dialog-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f8;
  color: var(--heading);
  font-size: 24px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .web-preview {
    left: 4%;
    width: 70%;
  }

  .discord-preview {
    right: 4%;
  }

  .floating-stat-right {
    display: none;
  }

  .feature-routes,
  .feature-margin {
    grid-column: span 6;
  }

  .feature-founders {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .mini-founder-stack {
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .process-intro .eyebrow {
    margin-inline: auto;
  }

  .process-intro > p {
    margin-inline: auto;
  }

  .process-cards {
    width: min(820px, 100%);
    margin-inline: auto;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --section-space: 78px;
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(20, 28, 57, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  }

  .site-nav.is-open {
    max-height: 440px;
    padding: 12px 16px 16px;
    border-color: rgba(48, 68, 137, 0.1);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    min-height: 48px;
    padding: 14px 10px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .product-stage {
    min-height: 560px;
    padding: 42px;
  }

  .web-preview {
    width: 78%;
  }

  .discord-preview {
    width: 380px;
    max-width: 48%;
  }

  .floating-stat-left {
    display: none;
  }

  .panel-deals {
    grid-template-columns: 1fr;
  }

  .panel-deals article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 420px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    min-height: 240px;
  }

  .founder-grid,
  .pricing-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    min-height: 210px;
  }

  .pricing-card {
    max-width: 680px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .portal-panel {
    overflow: hidden;
  }

  .portal-toolbar {
    flex-wrap: wrap;
    min-width: 0;
  }

  .portal-filters {
    justify-content: flex-start;
  }

  .portal-row {
    grid-template-columns: 44px minmax(100px, 1.5fr) minmax(112px, 1.1fr) 76px 60px 68px;
    gap: 8px;
    min-width: 0;
    padding-inline: 14px;
  }

  .portal-row strong {
    font-size: 12px;
  }

  .portal-row-head {
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-copy p {
    margin-top: 24px;
    font-size: 16px;
  }

  .product-stage {
    min-height: 650px;
    padding: 24px;
    border-radius: 24px;
  }

  .web-preview {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    transform: none;
  }

  .live-demo-status {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .deal-table {
    grid-template-columns: 0.65fr 1.6fr 1fr;
    padding: 12px 14px;
  }

  .deal-table > *:nth-child(4),
  .deal-table > *:nth-child(5),
  .deal-table > *:nth-child(6) {
    display: none;
  }

  .deal-table .portal-mini-chart .keepa-graph__canvas {
    height: 48px;
  }

  .discord-preview {
    right: 18px;
    bottom: 24px;
    width: calc(100% - 36px);
    max-width: none;
    min-width: 0;
    transform: rotate(1deg);
  }

  .product-stage[data-active-preview="discord"] .web-preview {
    transform: translateY(4px) scale(0.97);
  }

  .product-stage[data-active-preview="web"] .web-preview {
    transform: translateY(-4px) scale(1.01);
  }

  .product-stage[data-active-preview="discord"] .discord-preview {
    transform: rotate(1deg) translateY(-4px) scale(1.01);
  }

  .product-stage[data-active-preview="web"] .discord-preview {
    transform: rotate(1deg) translate(4px, 10px) scale(0.95);
  }

  .discord-preview li {
    grid-template-columns: 1fr auto;
  }

  .discord-preview li small {
    display: none;
  }

  .stats > div {
    padding-inline: 8px;
  }

  .stats strong {
    font-size: clamp(1.55rem, 7.6vw, 2.4rem);
    white-space: nowrap;
  }

  .stats span {
    font-size: 11px;
  }

  .section-heading {
    align-items: flex-start;
    text-align: left;
  }

  .section-heading .eyebrow {
    margin-inline: 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-routes,
  .feature-margin,
  .feature-founders,
  .feature-time,
  .feature-simple {
    grid-column: auto;
    min-height: 360px;
  }

  .feature-time,
  .feature-simple {
    min-height: 320px;
  }

  .mini-founder-stack {
    min-height: 190px;
  }

  .mini-founder-card {
    width: 142px;
    height: 170px;
  }

  .mini-founder-card .portrait {
    width: 118px;
    height: 118px;
  }

  .patrick-card {
    left: calc(50% - 135px);
  }

  .marc-card {
    right: calc(50% - 135px);
  }

  .mini-deal-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-channel {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-deals article {
    padding: 24px;
  }

  .panel-deals article:nth-child(n + 2) {
    display: none;
  }

  .keepa-graph__axis-label {
    font-size: 10px;
  }

  .keepa-graph-slot-compact .keepa-graph__axis-label {
    font-size: 9px;
  }

  .panel-deals dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .panel-deals dd {
    text-align: left;
  }

  .portal-panel {
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .portal-toolbar {
    align-items: flex-start;
    flex-direction: column;
    min-width: 0;
    margin-bottom: 12px;
    border: 1px solid rgba(48, 68, 137, 0.08);
    border-radius: 16px;
    background: #fff;
  }

  .portal-filters {
    justify-content: flex-start;
  }

  .portal-row-head {
    display: none;
  }

  .portal-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-width: 0;
    min-height: 0;
    margin-bottom: 12px;
    padding: 20px;
    border: 1px solid rgba(48, 68, 137, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 28, 57, 0.06);
  }

  .portal-row > time,
  .portal-row strong,
  .portal-mini-chart {
    grid-column: 1 / -1;
  }

  .portal-row strong {
    white-space: normal;
  }

  .portal-mini-chart .keepa-graph__canvas {
    height: 112px;
  }

  .portal-row [data-label] {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .portal-row [data-label]::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .portal-row .route-inline[data-label] {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .portal-row .route-inline[data-label]::before {
    width: 100%;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid .analyzer-card {
    grid-column: auto;
  }

  .capability-grid .analyzer-card {
    grid-template-columns: 1fr;
  }

  .process-intro {
    text-align: left;
  }

  .process-intro .eyebrow {
    margin-inline: 0;
  }

  .process-intro > p {
    margin-inline: 0;
  }

  .process-card {
    min-height: 0;
    padding: 26px;
    border-radius: 24px;
  }

  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    min-height: 0;
    margin-top: 18px;
  }

  .process-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
  }

  .process-visual {
    min-height: 158px;
    margin-top: 28px;
    border-radius: 20px;
  }

  .profit-visual {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 5px 12px;
    padding: 24px 18px;
  }

  .profit-visual > strong {
    grid-row: auto;
    font-size: clamp(20px, 6vw, 24px);
  }

  .profit-visual > i {
    grid-column: 1 / -1;
    width: 100%;
    gap: 5px;
  }

  .profit-visual u {
    min-width: 0;
  }

  .logo-row {
    gap: 12px;
    padding: 28px 16px;
  }

  .logo-check > img {
    width: 64px;
    height: 64px;
  }

  .route-visual {
    grid-template-columns: 1fr;
  }

  .route-gain img {
    transform: rotate(90deg);
  }

  .comparison-table {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    min-height: 0;
    margin-bottom: 12px;
    padding: 20px;
    border: 1px solid rgba(48, 68, 137, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 28, 57, 0.06);
  }

  .comparison-row + .comparison-row {
    border-top: 1px solid rgba(48, 68, 137, 0.08);
  }

  .comparison-row > span:first-child {
    grid-column: 1 / -1;
    color: var(--heading);
    font-weight: 700;
  }

  .comparison-row > strong,
  .comparison-row > span:last-child {
    align-items: flex-start;
    font-size: 13px;
  }

  .comparison-row > strong::before {
    content: "FlipHunter";
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .comparison-row > strong {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .comparison-row > span:last-child::before {
    content: "Andere";
    display: block;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
  }

  .comparison-head {
    display: none;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    margin-inline: auto;
  }

  .pricing-card {
    gap: 36px;
    padding: 28px 24px;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-light {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .consent-banner {
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 20px;
  }

  .consent-banner__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .consent-banner__quick-actions,
  .consent-banner__details,
  .consent-banner__note {
    grid-column: 1;
  }

  .consent-options {
    grid-template-columns: 1fr;
  }

  .consent-option {
    min-height: 0;
  }

  .consent-save-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .consent-banner__quick-actions {
    grid-template-columns: 1fr;
  }

  .consent-choice-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 36px);
  }

  .site-nav {
    left: 18px;
    right: 18px;
  }

  .brand img {
    width: 142px;
  }

  .product-stage {
    min-height: 630px;
    padding: 16px;
  }

  .discord-preview {
    right: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }

  .stats {
    margin-inline: -4px;
  }

  .stats > div {
    padding-inline: 5px;
  }

  .route-list > div {
    padding-inline: 12px;
  }

  .mini-founder-card {
    width: 130px;
    height: 158px;
  }

  .mini-founder-card .portrait {
    width: 106px;
    height: 106px;
  }

  .patrick-card {
    left: calc(50% - 122px);
  }

  .marc-card {
    right: calc(50% - 122px);
  }

  .checkout-dialog {
    padding: 28px 22px;
  }
}

/* HTML-Produktkonsole: echte Web-App statt gerendertem Mockup */
.hero-inner {
  gap: clamp(42px, 5vw, 64px);
}

.hero-copy {
  max-width: 1120px;
}

.hero-copy p {
  max-width: 740px;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid rgba(48, 68, 137, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--heading);
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button-secondary:hover {
  border-color: rgba(235, 135, 20, 0.46);
  box-shadow: 0 10px 24px rgba(20, 28, 57, 0.09);
  transform: translateY(-2px);
}

.product-stage {
  min-height: 730px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(48, 68, 137, 0.09);
  background: #f3f5f9;
  box-shadow: inset 0 1px 0 #fff, 0 28px 70px rgba(24, 35, 73, 0.08);
}

.stage-glow {
  display: none;
}

.stage-switch {
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(48, 68, 137, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 28, 57, 0.1);
  transform: translateX(-50%);
}

.stage-switch button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #697287;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.stage-switch button[data-hero-activate="web"].is-active {
  background: var(--orange-soft);
  box-shadow: inset 0 0 0 1px rgba(235, 135, 20, 0.18);
  color: #9b5108;
}

.stage-switch button[data-hero-activate="discord"].is-active {
  background: #eef0ff;
  box-shadow: inset 0 0 0 1px rgba(88, 101, 242, 0.18);
  color: #4854d4;
}

.web-preview {
  left: 3%;
  top: 46px;
  width: 87%;
  min-height: 612px;
  border-color: rgba(48, 68, 137, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 78px rgba(20, 28, 57, 0.16);
  transform: none;
}

.product-stage[data-active-preview="web"] .web-preview {
  transform: translateY(0) scale(1);
}

.product-stage[data-active-preview="discord"] .web-preview {
  opacity: 0.66;
  transform: translate(-10px, 8px) scale(0.965);
}

.window-bar {
  height: 42px;
  padding-inline: 14px;
  background: #fbfcfe;
}

.window-bar small {
  font-size: 10px;
}

.app-shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 568px;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 12px 14px;
  border-right: 1px solid #e8ebf2;
  background: #f7f8fb;
}

.app-sidebar-logo {
  width: 34px;
  height: 34px;
  margin: 2px 8px 28px;
}

.app-sidebar-label {
  margin: 0 9px 8px;
  color: #8a93a8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #596176;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: default;
}

.app-nav-item + .app-nav-item {
  margin-top: 4px;
}

.app-nav-item img {
  flex: 0 0 auto;
}

.app-nav-item .app-nav-a1-logo {
  border-radius: 5px;
}

.app-nav-item.is-active {
  background: var(--orange-soft);
  color: #9b5108;
}

.app-sidebar-spacer {
  flex: 1;
}

.app-sidebar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 8px 2px;
  color: #758096;
  font-size: 9px;
  font-weight: 700;
}

.app-sidebar-status .live-status-dot {
  width: 6px;
  height: 6px;
}

.app-workspace {
  min-width: 0;
  background: #fff;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 13px 18px;
  border-bottom: 1px solid #edf0f5;
}

.app-topbar > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.app-topbar strong {
  color: #151923;
  font-size: 16px;
  line-height: 1.2;
}

.app-kicker {
  color: #8a93a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.app-live-status {
  color: #687186;
  font-size: 10px;
  font-weight: 700;
}

.app-filterbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 50px;
  padding: 9px 14px;
  overflow-x: auto;
  border-bottom: 1px solid #edf0f5;
  background: #fbfcfe;
  scrollbar-width: none;
}

.app-filterbar::-webkit-scrollbar {
  display: none;
}

.app-filter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 6px 9px;
  border: 1px solid #e1e5ed;
  border-radius: 9px;
  background: #fff;
  color: #5e6679;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.app-filter.is-active {
  border-color: #f3c38e;
  background: var(--orange-soft);
  color: #9b5108;
}

.app-filter-count {
  flex: 0 0 auto;
  margin-left: auto;
  color: #8a93a8;
  font-size: 9px;
  font-weight: 700;
}

.app-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 322px;
  min-height: 448px;
}

.app-deal-list {
  min-width: 0;
  background: #fff;
}

.app-deal-list .deal-table {
  grid-template-columns: 42px minmax(130px, 1.45fr) minmax(100px, 0.9fr) 76px 57px 62px;
  gap: 9px;
  min-height: 72px;
  padding: 10px 14px;
  font-size: 10px;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.app-deal-list .deal-table:hover,
.app-deal-list .deal-table:focus-visible {
  background: #fcf8f3;
}

.app-deal-list .deal-table.is-selected {
  background: #fff8ef;
  box-shadow: inset 3px 0 var(--orange);
}

.app-deal-list .deal-table-head {
  min-height: 36px;
  background: #f7f9fc;
  color: #929bad;
  font-size: 8px;
  cursor: default;
}

.app-deal-list .deal-table .portal-mini-chart {
  min-width: 0;
}

.app-deal-list .portal-mini-chart .keepa-graph__canvas {
  height: 48px;
}

.deal-inspector {
  min-width: 0;
  padding: 17px;
  border-left: 1px solid #edf0f5;
  background: #fbfcfe;
}

.deal-inspector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  color: #8a93a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-inspector-head b {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf7f1;
  color: #167e55;
  font-size: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.inspector-product-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inspector-product-label img {
  border-radius: 5px;
}

.deal-inspector h2 {
  min-height: 38px;
  color: #151923;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.deal-inspector-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 11px;
  padding: 9px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  background: #fff;
}

.deal-inspector-route > span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #778094;
  font-size: 9px;
}

.deal-inspector-route b {
  color: #2a3040;
}

.inspector-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.inspector-kpis > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #e8ebf2;
  border-radius: 11px;
  background: #fff;
}

.inspector-kpis small,
.inspector-foot small {
  color: #8992a6;
  font-size: 8px;
}

.inspector-kpis strong {
  color: #242a38;
  font-size: 12px;
  white-space: nowrap;
}

.inspector-kpis .is-positive strong {
  color: var(--success);
}

.inspector-graph {
  margin-top: 10px;
}

.inspector-graph .keepa-graph {
  padding: 9px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20, 28, 57, 0.08);
}

.inspector-graph .keepa-graph__header {
  font-size: 8px;
}

.inspector-graph .keepa-graph__header > span,
.inspector-graph .keepa-graph__legend,
.inspector-graph .keepa-graph__axis-label {
  font-size: 7px;
}

.inspector-graph .keepa-graph__legend {
  margin-block: 4px 2px;
}

.inspector-graph .keepa-graph__canvas {
  height: auto;
  aspect-ratio: 640 / 240;
  border-radius: 8px;
}

.keepa-graph-slot .keepa-graph__canvas {
  height: auto;
  aspect-ratio: 640 / 240;
}

.inspector-foot {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7px;
  margin-top: 9px;
}

.inspector-foot > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 8px 9px;
  border-radius: 10px;
  background: #eef2f8;
}

.inspector-foot b {
  overflow: hidden;
  color: #343b4c;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-preview {
  right: 1.8%;
  bottom: 22px;
  width: min(365px, 31%);
  min-width: 320px;
  padding: 18px;
  border-radius: 20px;
  transform: translate(8px, 10px) rotate(0.8deg) scale(0.94);
}

.product-stage[data-active-preview="web"] .discord-preview {
  z-index: 2;
  opacity: 0.74;
  transform: translate(8px, 12px) rotate(0.8deg) scale(0.94);
}

.product-stage[data-active-preview="discord"] .discord-preview {
  z-index: 5;
  opacity: 1;
  box-shadow: 0 34px 86px rgba(11, 16, 36, 0.36);
  transform: translateY(-10px) rotate(0) scale(1.01);
}

.discord-preview .keepa-graph-slot-compact .keepa-graph__canvas {
  height: auto;
  aspect-ratio: 640 / 240;
}

.floating-stat {
  display: none;
}

.stats {
  gap: 12px;
  max-width: 1040px;
}

.stats > div {
  min-height: 112px;
  justify-content: center;
  padding: 18px 20px;
  border: 1px solid rgba(48, 68, 137, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 28, 57, 0.06);
}

.stats > div + div {
  border-left: 1px solid rgba(48, 68, 137, 0.09);
}

.stats strong {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .product-stage {
    min-height: 700px;
  }

  .web-preview {
    left: 2%;
    width: 90%;
  }

  .app-shell {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .app-main-grid {
    grid-template-columns: minmax(0, 1fr) 285px;
  }

  .app-nav-item {
    padding-inline: 8px;
    font-size: 10px;
  }

  .app-deal-list .deal-table {
    grid-template-columns: 38px minmax(105px, 1.35fr) 96px 68px 50px 58px;
    gap: 7px;
    padding-inline: 10px;
  }

  .discord-preview {
    width: min(350px, 36%);
  }
}

@media (max-width: 860px) {
  .product-stage {
    min-height: 680px;
    padding: 0;
  }

  .web-preview {
    min-height: 574px;
  }

  .app-shell {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 532px;
  }

  .app-sidebar {
    align-items: center;
    padding-inline: 7px;
  }

  .app-sidebar-logo {
    margin-inline: 0;
  }

  .app-sidebar-label,
  .app-nav-item span,
  .app-sidebar-status {
    display: none;
  }

  .app-nav-item {
    justify-content: center;
    padding-inline: 8px;
  }

  .app-main-grid {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .deal-inspector {
    padding: 13px;
  }

  .inspector-graph .keepa-graph__canvas {
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-copy h1 br {
    display: block;
  }

  .hero-action-row {
    width: 100%;
  }

  .hero-action-row .button,
  .hero-action-row .button-secondary {
    width: 100%;
  }

  .hero-actions > span {
    max-width: 310px;
    line-height: 1.4;
    text-align: center;
  }

  .product-stage {
    min-height: 700px;
    padding: 0;
    border-radius: 24px;
  }

  .web-preview {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 50px;
    width: auto;
    min-height: 510px;
  }

  .stage-switch {
    top: 9px;
  }

  .window-bar .preview-layer-button {
    margin-left: auto;
  }

  .app-shell {
    display: block;
    min-height: 468px;
  }

  .app-sidebar,
  .deal-inspector {
    display: none;
  }

  .app-topbar {
    min-height: 58px;
    padding: 11px 13px;
  }

  .app-topbar strong {
    font-size: 14px;
  }

  .app-filterbar {
    min-height: 45px;
    padding-inline: 10px;
  }

  .app-filter-count {
    display: none;
  }

  .app-main-grid {
    display: block;
    min-height: 0;
  }

  .app-deal-list .deal-table {
    grid-template-columns: 38px minmax(0, 1fr) 92px;
    gap: 8px;
    min-height: 66px;
    padding: 9px 11px;
    font-size: 10px;
  }

  .app-deal-list .deal-table > *:nth-child(4),
  .app-deal-list .deal-table > *:nth-child(5),
  .app-deal-list .deal-table > *:nth-child(6) {
    display: none;
  }

  .app-deal-list .deal-table-head {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 32px;
  }

  .app-deal-list .deal-table-head > *:nth-child(3) {
    display: none;
  }

  .app-deal-list .deal-table:nth-child(n + 5) {
    display: none;
  }

  .discord-preview {
    left: 16px;
    right: 16px;
    bottom: 14px;
    width: auto;
    max-width: none;
    min-width: 0;
    transform: none;
  }

  .product-stage[data-active-preview="web"] .web-preview {
    transform: translateY(0) scale(1);
  }

  .product-stage[data-active-preview="discord"] .web-preview {
    opacity: 0.48;
    transform: translateY(-8px) scale(0.95);
  }

  .product-stage[data-active-preview="web"] .discord-preview {
    opacity: 0.58;
    transform: translateY(62px) scale(0.92);
  }

  .product-stage[data-active-preview="discord"] .discord-preview {
    opacity: 1;
    transform: translateY(-82px) scale(1);
  }

  .discord-preview .keepa-graph-slot-compact .keepa-graph__canvas {
    height: auto;
  }

  .stats {
    gap: 8px;
  }

  .stats > div {
    min-height: 102px;
    padding: 14px 8px;
    border-radius: 15px;
  }

  .stats strong {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .stats span {
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .product-stage {
    min-height: 680px;
    padding: 0;
  }

  .web-preview {
    left: 9px;
    right: 9px;
    width: auto;
  }

  .window-bar small {
    max-width: 104px;
  }

  .app-live-status {
    font-size: 8px;
  }

  .app-deal-list .deal-table {
    grid-template-columns: 34px minmax(0, 1fr) 82px;
    gap: 6px;
    padding-inline: 9px;
  }

  .app-deal-list .deal-table strong {
    font-size: 9px;
  }

  .app-deal-list .deal-table-head {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .app-deal-list .portal-mini-chart .keepa-graph__canvas {
    height: 44px;
  }

  .discord-preview {
    left: 11px;
    right: 11px;
    padding: 14px;
  }

  .discord-preview h3 {
    font-size: 13px;
  }

  .stats {
    margin-inline: 0;
  }

  .stats > div {
    padding-inline: 5px;
  }

  .stats strong {
    font-size: 1.75rem;
  }
}

/* Durchgängige Produktansicht im unteren Discord- und Web-App-Bereich */
.delivery-section .tab-list {
  gap: 4px;
  padding: 4px;
  border-color: rgba(48, 68, 137, 0.12);
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 28, 57, 0.1);
}

.delivery-section .tab-list button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 13px;
  color: #697287;
  font-size: 11px;
}

.delivery-section .tab-list button img {
  width: 18px;
  height: 18px;
}

.delivery-section .tab-list button[data-tab="web"][aria-selected="true"] {
  background: var(--orange-soft);
  box-shadow: inset 0 0 0 1px rgba(235, 135, 20, 0.18);
  color: #9b5108;
}

.delivery-section .tab-list button[data-tab="discord"][aria-selected="true"] {
  background: #eef0ff;
  box-shadow: inset 0 0 0 1px rgba(88, 101, 242, 0.18);
  color: #4854d4;
}

.delivery-section .tab-list button:focus-visible {
  outline: 3px solid rgba(65, 129, 254, 0.34);
  outline-offset: 3px;
}

.delivery-app-preview {
  overflow: hidden;
  border: 1px solid rgba(48, 68, 137, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 24px 60px rgba(48, 68, 137, 0.12);
}

.delivery-app-preview .window-bar {
  border-bottom: 1px solid #edf0f5;
}

.delivery-app-shell {
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 0;
}

.delivery-app-sidebar {
  min-height: 430px;
}

.delivery-filterbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 50px;
  padding: 9px 14px;
  overflow-x: auto;
  border-bottom: 1px solid #edf0f5;
  background: #fbfcfe;
  scrollbar-width: none;
}

.delivery-filterbar::-webkit-scrollbar {
  display: none;
}

.delivery-filter-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 6px 9px;
  border: 1px solid #e1e5ed;
  border-radius: 9px;
  background: #fff;
  color: #5e6679;
  font-size: 9px;
  font-weight: 700;
}

.delivery-filter-chip.is-active {
  border-color: #f3c38e;
  background: var(--orange-soft);
  color: #9b5108;
}

.delivery-filter-count {
  flex: 0 0 auto;
  margin-left: auto;
  color: #8a93a8;
  font-size: 9px;
  font-weight: 700;
}

.delivery-portal-list {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.delivery-portal-list .portal-row {
  min-height: 86px;
}

@media (max-width: 860px) {
  .delivery-app-shell {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .delivery-app-sidebar {
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  .delivery-app-preview {
    border-radius: 22px;
  }

  .delivery-app-shell {
    display: block;
  }

  .delivery-filter-count {
    display: none;
  }

  .delivery-portal-list .portal-row {
    min-height: 0;
  }
}

@container (max-width: 340px) {
  .keepa-graph .keepa-graph__axis-label--y-right {
    font-size: 0;
  }

  .keepa-graph .keepa-graph__axis-label--y-right::after {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .live-status-dot::after {
    animation: none;
    opacity: 0;
  }

  .process-cards {
    gap: 34px;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    position: relative;
    top: auto;
    margin-top: 0;
  }
}
