@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #eef0f3;
  --text: #0f1720;
  --muted: #5d6672;
  --line: #d9dee5;
  --dark: #111827;
  --ink: #080b11;
  --green: #8f1d2c;
  --green-dark: #5e111d;
  --accent: #8f1d2c;
  --accent-dark: #741824;
  --blue: #334155;
  --amber: #936316;
  --red: #d71920;
  --chrome: #eff1f4;
  --chrome-line: #d4d9e0;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.62;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.btn {
  font-family: var(--font-display);
  font-weight: 700;
}

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

.container.narrow {
  width: min(760px, calc(100% - 36px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
  background: rgba(246, 247, 249, .94);
  border-bottom: 1px solid rgba(217, 222, 229, .9);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-logo,
.site-nav,
.site-actions,
.hero-actions,
.hero-strip,
.browser-bar,
.visual-head,
.report-header,
.site-footer {
  display: flex;
  align-items: center;
}

.site-logo {
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.site-header .site-logo img {
  width: auto;
  height: 40px;
}

.site-footer .site-logo img {
  width: auto;
  height: 44px;
}

.site-nav {
  margin-left: auto;
  gap: 20px;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
}

.site-nav a,
.btn {
  text-decoration: none;
}

.site-actions,
.hero-actions {
  gap: 10px;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #c7cfdb;
  border-radius: 8px;
  background: #edf1f7;
  color: #1f2d44;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.lang-dropdown summary::-webkit-details-marker {
  display: none;
}

.lang-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a3c58;
}

.lang-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lang-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid #3d516f;
  border-bottom: 2px solid #3d516f;
  transform: rotate(45deg);
  margin-top: -3px;
}

.lang-dropdown[open] .lang-caret {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid #cdd5e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
  z-index: 30;
}

.lang-option {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 10px;
  color: #21324e;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.lang-option:hover {
  background: #e4eaf5;
  border-color: #9fb0cb;
}

.lang-option.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

.lang-option.is-disabled {
  color: #7f8ba0;
  cursor: not-allowed;
}

.btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
  margin-right: 8px;
}

.btn-large {
  min-height: 50px;
  padding-inline: 20px;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #5e111d;
  border-color: #5e111d;
}

.site-actions .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.site-actions .btn-primary:hover {
  background: #2a2f38;
  border-color: #2a2f38;
}

.site-actions .btn {
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.site-actions .btn-header-login {
  background: #e6ebf4;
  border-color: #bfc9da;
  color: #1f2d44;
}

.site-actions .btn-header-login:hover {
  background: #a9bde1;
  border-color: #607cae;
  color: #0b1629;
}

.site-actions .btn-header-login .btn-icon {
  width: 20px;
  height: 20px;
}

.site-actions .btn-header-try {
  background: #7d1d2c;
  border-color: #7d1d2c;
  color: #fff;
}

.site-actions .btn-header-try:hover {
  background: #3f0b14;
  border-color: #3f0b14;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.btn-light:hover {
  background: #e2e9f4;
  border-color: #9eb0ca;
  color: #0f1b30;
}

.site-actions .btn-light:hover {
  background: #a9bde1;
  border-color: #607cae;
  color: #0b1629;
}

.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #2b3548;
  border-color: #2b3548;
}

.btn-outline {
  background: transparent;
  border-color: #9ca7b8;
  color: #1f2a37;
}

.hero-actions .btn-outline {
  border-width: 2px;
  font-weight: 700;
}

.btn-outline:hover {
  background: #dde6f3;
  border-color: #5f7597;
  color: #0f1b31;
}

.hero {
  padding: clamp(54px, 8vw, 104px) 0 36px;
  background: var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 820px;
}

.hero-copy > :not(.hero-watermark) {
  position: relative;
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  top: -52px;
  right: -48px;
  width: 260px;
  max-width: 42%;
  opacity: .055;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.eyebrow,
.section-head span,
.section-label,
.auth-copy span {
  display: inline-flex;
  color: var(--green-dark);
  background: #eeeeef;
  border: 1px solid #dadadd;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero p,
.section-head p,
.split p,
.auth-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.hero-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: #263247;
  font-size: 13px;
  font-weight: 650;
}

.product-visual {
  background: var(--chrome);
  color: #151719;
  border: 1px solid var(--chrome-line);
  border-radius: 16px;
  padding: 0 0 16px;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
  overflow: hidden;
}

.browser-bar {
  gap: 12px;
  color: #41525f;
  font-size: 12px;
  min-height: 46px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--chrome-line);
  background: linear-gradient(180deg, #f7f9fb, #e8edf3);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.browser-dots i:nth-child(2) {
  background: #f59e0b;
}

.browser-dots i:nth-child(3) {
  background: #22c55e;
}

.browser-address {
  min-width: 0;
  flex: 1;
  display: inline-flex;
  align-items: center;
  height: 28px;
  border: 1px solid #d3dce6;
  border-radius: 999px;
  background: #fff;
  padding: 0 12px;
  color: #627180;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.browser-bar em {
  font-style: normal;
  color: #1f5b43;
  background: #dff2e9;
  border: 1px solid #bfe4d4;
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 850;
}

.visual-main,
.event-feed div {
  background: #e1e3e6;
  border: 1px solid #c9cdd2;
  border-radius: 10px;
}

.visual-main {
  margin: 16px 16px 0;
  padding: 16px;
}

.visual-head {
  justify-content: space-between;
  gap: 14px;
}

.visual-head small,
.report-header span,
.report-metrics span {
  display: block;
  color: #626a73;
  font-size: 12px;
}

.visual-head strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  color: #111;
}

.visual-head b {
  color: #8c1116;
  background: #f3d6d8;
  border: 1px solid #eab4b8;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
}

.live-line-chart {
  position: relative;
  height: 220px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 10px;
  background: #f0f1f3;
  border: 1px solid #cfd3d8;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to bottom, rgba(80, 86, 94, .18) 0 1px, transparent 1px 43px),
    repeating-linear-gradient(to right, rgba(80, 86, 94, .1) 0 1px, transparent 1px 70px);
}

.live-line-chart svg {
  position: absolute;
  inset: 12px 14px 28px;
  width: calc(100% - 28px);
  height: calc(100% - 40px);
}

.chart-kpis {
  position: static;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.chart-kpis div {
  background: #f6f6f7;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 12px 26px rgba(17, 17, 17, .08);
}

.chart-kpis .kpi-saving {
  background: #fff;
  border-color: rgba(17, 17, 17, .1);
}

.chart-kpis .kpi-saving strong {
  font-size: 24px;
}

.chart-kpis span,
.chart-kpis strong {
  display: block;
}

.chart-kpis span {
  color: #666a70;
  font-size: 12px;
  font-weight: 800;
}

.chart-kpis strong {
  margin-top: 5px;
  color: #111;
  font-size: 20px;
  line-height: 1.05;
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .12));
  transition: all .55s ease;
}

.line-green {
  stroke: #18835f;
}

.line-red {
  stroke: var(--red);
}

.line-dot {
  stroke: #fff;
  stroke-width: 3;
  transition: cx .55s ease, cy .55s ease;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .35));
}

.dot-green {
  fill: #18835f;
}

.dot-red {
  fill: var(--red);
  animation: pulseRed 1.15s ease-in-out infinite;
}

@keyframes pulseRed {
  0%, 100% {
    r: 6;
    opacity: 1;
  }
  50% {
    r: 9;
    opacity: .68;
  }
}

.chart-legend {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #4d535a;
  font-size: 12px;
  font-weight: 750;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-green {
  background: #18835f;
}

.legend-red {
  background: var(--red);
}

.event-feed {
  display: grid;
  gap: 10px;
  margin: 14px 16px 0;
}

.event-feed div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 7px 12px;
  align-items: center;
  transition: opacity .25s ease, transform .25s ease;
  background: #eceff4;
  border-color: #cfd5de;
  color: #162133;
}

.event-feed b,
.mini-table b,
.session-status b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.risk {
  color: #fff;
  background: #d71920;
}

.warn {
  color: #111;
  background: #f2b23d;
}

.bot {
  color: #fff;
  background: #5b6472;
}

.ok {
  color: #fff;
  background: #25282d;
}

.blocked {
  color: #fff;
  background: #9f3a24;
  font-size: 10px;
  letter-spacing: 0;
}

.event-feed span {
  color: #263247;
  font-size: 13px;
  line-height: 1.4;
}

.event-feed span strong,
.event-feed span em,
.event-feed span small {
  display: block;
}

.event-feed span strong {
  display: inline;
  font-weight: 750;
}

.event-feed span em {
  display: inline;
  margin-top: 0;
  color: #263247;
  font-style: normal;
  font-weight: 400;
}

.event-feed span em::before {
  content: " · ";
}

.event-feed span small {
  margin-top: 3px;
  color: #66758a;
  font-size: 12px;
}

.device-em {
  color: #111;
  font-weight: 600;
}

.brand-section {
  padding: 78px 0 18px;
}

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

.brand-head span {
  color: #666a70;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-head strong {
  max-width: 720px;
  color: #222;
  font-size: 16px;
  line-height: 1.45;
  text-align: right;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-logos img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(.12);
}

.trust-section {
  padding: 18px 0 26px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.trust-band div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  background: #fff;
  padding: 20px;
}

.metric-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  border-radius: 8px;
  background: #f1f1f2;
  border: 1px solid #dedee0;
  position: relative;
}

.metric-icon::before,
.metric-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-finder::before {
  width: 14px;
  height: 14px;
  border: 3px solid #111;
  border-radius: 50%;
}

.icon-finder::after {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.icon-device::before {
  width: 18px;
  height: 22px;
  border: 3px solid #111;
  border-radius: 5px;
}

.icon-device::after {
  width: 6px;
  height: 2px;
  background: var(--red);
  bottom: 8px;
}

.icon-keyword::before {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(#111, #111) 4px 0 / 3px 18px no-repeat,
    linear-gradient(#111, #111) 11px 0 / 3px 18px no-repeat,
    linear-gradient(#111, #111) 0 5px / 18px 3px no-repeat,
    linear-gradient(#111, #111) 0 12px / 18px 3px no-repeat;
  transform: rotate(-8deg);
}

.icon-keyword::after {
  display: none;
}

.icon-location::before {
  width: 14px;
  height: 14px;
  border: 3px solid #111;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-location::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.icon-refund::before {
  width: 18px;
  height: 14px;
  border: 3px solid #111;
  border-radius: 3px;
}

.icon-refund::after {
  width: 12px;
  height: 3px;
  background: var(--red);
}

.icon-block::before {
  width: 18px;
  height: 18px;
  border: 3px solid var(--red);
  border-radius: 50%;
}

.icon-block::after {
  width: 18px;
  height: 3px;
  background: var(--red);
  transform: rotate(-35deg);
}

.icon-rival::before {
  width: 18px;
  height: 18px;
  border: 3px solid #111;
  border-radius: 50%;
}

.icon-rival::after {
  width: 20px;
  height: 3px;
  background: var(--red);
  transform: rotate(45deg);
}

.icon-budget::before {
  width: 20px;
  height: 14px;
  border: 3px solid #111;
  border-radius: 4px;
}

.icon-budget::after {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  align-self: end;
}

.trust-band span {
  color: var(--muted);
  margin-top: 3px;
  font-size: 13px;
}

.section,
.auth-section,
.cta-section {
  padding: 78px 0;
}

.section-head {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
}

.section-head.wide {
  width: 100%;
}

.problem .section-head.wide {
  padding-right: min(24vw, 260px);
}

.problem-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  width: 210px;
  max-width: 22vw;
  opacity: .08;
  pointer-events: none;
  user-select: none;
  transform: translateY(-50%);
}

.section-head h2,
.split h2,
.auth-copy h2 {
  margin: 13px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.13;
  font-weight: 700;
  letter-spacing: 0;
}

.insight-grid,
.use-grid,
.pricing-grid,
.auth-grid {
  display: grid;
  gap: 16px;
}

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

.use-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.insight-grid article,
.use-grid article,
.price-card,
.auth-card,
.code-card,
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .04);
}

.insight-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border-top: 4px solid #111;
}

.insight-grid article::before,
.insight-grid article::after {
  display: none;
  content: none;
}

.insight-grid em {
  display: inline-flex;
  align-self: flex-start;
  color: #fff;
  background: #111;
  border-radius: 999px;
  padding: 6px 10px;
  font-style: normal;
  font-weight: 850;
  margin-bottom: 22px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .03em;
}

.insight-grid strong,
.use-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.insight-grid p,
.use-grid p,
.price-card p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.insight-grid p {
  margin-bottom: 24px;
}

.dashboard-story {
  background: #fff;
}

.report-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  align-items: stretch;
}

.report-menu {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 12px 0 12px 12px;
  border: 1px solid #d6dbe4;
  border-right: 0;
  border-radius: 12px 0 0 12px;
  background: #e9edf4;
}

.report-menu button {
  appearance: none;
  font: inherit;
  position: relative;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
  border: 1px solid transparent;
  border-right: 0;
  background: transparent;
  font-weight: 750;
  color: #344054;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.report-menu button.active {
  color: #111827;
  background: #f1f3f6;
  border-color: #d6dce5;
  box-shadow: -10px 0 22px rgba(17, 24, 39, .04);
  z-index: 2;
}

.report-menu button.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.report-menu button.active::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: #f1f3f6;
}

.report-menu button:hover:not(.active) {
  background: #f8fafc;
  border-color: #c8d0dd;
  color: #8f1d2c;
  box-shadow: none;
}

.report-panel {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: #f1f3f6;
  color: #111827;
  border-radius: 0 12px 12px 0;
  padding: 18px;
  border: 1px solid #d6dce5;
  box-shadow: 0 18px 38px rgba(17, 24, 39, .08);
}

.report-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.report-header > div {
  min-width: 0;
}

.report-header strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  overflow-wrap: anywhere;
}

.report-header button {
  flex: 0 0 auto;
  border: 1px solid #8f1d2c;
  background: #8f1d2c;
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}

.report-header button:hover {
  background: #5e111d;
  border-color: #5e111d;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.report-metrics div {
  background: #fff;
  border: 1px solid #d9dee7;
  border-radius: 9px;
  padding: 14px;
}

.report-metrics div:nth-child(2) {
  border-color: rgba(143, 29, 44, .32);
  background: #f7e9ec;
}

.report-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.session-profile {
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #d9dee7;
  background: #fff;
  overflow: hidden;
}

.session-profile-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-bottom: 1px solid #e2e6ed;
}

.session-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3e3e6;
  color: var(--accent);
  font-weight: 900;
}

.session-profile-head span,
.session-facts span {
  display: block;
  color: #697386;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.session-profile-head strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.session-profile-head p {
  margin: 7px 0 0;
  max-width: 720px;
  color: #526071;
  line-height: 1.55;
}

.session-status {
  justify-self: end;
}

.session-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #e2e6ed;
}

.session-facts div {
  min-width: 0;
  padding: 13px 15px;
  background: #f8fafc;
}

.session-facts strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mini-table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-radius: 9px;
}

.mini-table th,
.mini-table td {
  padding: 13px;
  text-align: left;
  border-bottom: 1px solid #e2e6ed;
  font-size: 14px;
  color: #263247;
}

.mini-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.mini-table th {
  color: #697386;
  font-size: 12px;
  text-transform: uppercase;
}

.mini-table thead,
.mini-table tbody {
  display: table;
  width: 100%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 540px);
  gap: 28px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.steps div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
}

.steps b {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
}

.steps span {
  color: #334155;
  font-weight: 750;
}

.code-card {
  background: #071421;
  color: #f2e8ea;
}

.code-card small {
  display: block;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 10px;
}

.code-card strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.code-card code {
  display: block;
  overflow: auto;
  white-space: nowrap;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.code-card p {
  color: rgba(255, 255, 255, .68);
  margin-bottom: 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card.is-popular {
  border-color: var(--green);
  box-shadow: 0 22px 55px rgba(143, 29, 44, .16);
}

.price-card em {
  align-self: flex-start;
  border-radius: 999px;
  background: #f5e4e7;
  color: var(--green-dark);
  padding: 7px 10px;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.price-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.price-card strong {
  font-size: 36px;
  font-weight: 700;
}

.price-card strong span {
  color: var(--muted);
  font-size: 15px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
  color: #334155;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.cta-section {
  background: var(--ink);
  color: #fff;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.cta-card h2 {
  margin: 13px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-card p {
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

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

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

.auth-card h3 {
  margin: 0 0 4px;
  color: var(--text);
}

.auth-card input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  font: inherit;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  display: block;
  padding: 54px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #f2f4f7;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid #d3d9e3;
  border-radius: 999px;
  background: #fff;
  color: #263247;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.footer-brand small {
  color: #475569;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 20px;
  min-width: 0;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.footer-links strong {
  color: #111;
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 2px;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #d8dde6;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.footer-bottom span {
  min-width: 0;
}

.footer-bottom a {
  flex: 0 0 auto;
  color: #111827;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.page-main {
  padding: 74px 0;
}

.auth-page,
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.auth-single {
  display: grid;
  justify-content: center;
}

.auth-single .auth-page-card {
  width: min(100%, 560px);
}

.signup-page {
  align-items: center;
}

.signup-intro {
  background: #fff;
  color: #111;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, .05);
}

.signup-intro .section-label {
  color: #6b7280;
}

.signup-intro h1 {
  margin: 14px 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
}

.signup-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.signup-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.signup-points div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #e1e4ea;
  border-radius: 10px;
  background: #f8fafc;
}

.signup-points strong {
  font-family: var(--font-display);
  color: #111;
}

.signup-points span {
  color: #64748b;
  line-height: 1.55;
}

.auth-page-copy h1,
.checkout-copy h1,
.auth-page-card h1 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.auth-page-copy p,
.checkout-copy p,
.auth-page-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.auth-page-card,
.checkout-card {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}

.auth-page-card h2,
.checkout-card h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.auth-form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.auth-form-head span {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

.auth-field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.auth-page-card label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 450;
}

.auth-page-card label span {
  font-size: 13px;
  font-weight: 450;
  letter-spacing: .01em;
}

.auth-page-card label em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 2px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(215, 25, 32, .22);
  background: rgba(215, 25, 32, .08);
  color: #b91c1c;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.auth-page-card .auth-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 500;
}

.auth-page-card .auth-remember input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.auth-page-card .auth-remember span {
  font-size: 14px;
  font-weight: 500;
}

.form-alert {
  border: 1px solid rgba(215, 25, 32, .22);
  border-radius: 8px;
  background: rgba(215, 25, 32, .08);
  color: #991b1b;
  padding: 12px 14px;
  font-weight: 600;
}

.auth-page-card input {
  width: 100%;
  min-height: 52px;
  border: 2px solid #d7dbe2;
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  font: inherit;
  font-weight: 400;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.auth-page-card textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 2px solid #d7dbe2;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  font: inherit;
  font-weight: 400;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.auth-page-card input:focus,
.auth-page-card textarea:focus {
  outline: none;
  background: #fff;
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, .06);
}

.auth-page-card .input-group {
  display: flex;
  width: 100%;
}

.auth-page-card .input-group-text {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border: 2px solid #d7dbe2;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
}

.auth-page-card .input-group .form-control {
  min-width: 0;
  border-radius: 0 8px 8px 0;
}

.auth-page-card .input-group:focus-within .input-group-text {
  border-color: #111;
  background: #fff;
}

.auth-page-card .input-group:focus-within .form-control {
  box-shadow: none;
}

.auth-page-card input.is-invalid,
.auth-page-card .input-group.is-invalid .input-group-text,
.auth-page-card .input-group.is-invalid .form-control {
  border-color: var(--red);
}

.auth-page-card .btn {
  min-height: 58px;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 600;
}

.auth-page-card a {
  color: var(--green-dark);
  font-weight: 650;
}

.auth-page-card .auth-login-link {
  margin-bottom: -14px;
}

.auth-page-card .auth-legal {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.55;
}

.auth-page-card .auth-legal a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-benefits span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.checkout-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.checkout-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.checkout-list b {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
}

.checkout-list span {
  color: #334155;
  font-weight: 750;
}

.legal-page {
  max-width: 1040px;
}

.legal-hero {
  margin-bottom: 24px;
  padding-bottom: 8px;
}

.legal-hero h1 {
  margin: 14px 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
}

.legal-hero p {
  max-width: 920px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.legal-hero small {
  display: inline-flex;
  margin-top: 8px;
  color: #475569;
  font-weight: 600;
}

.legal-content {
  display: grid;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 18px 54px rgba(15, 23, 42, .06);
}

.legal-notice {
  border: 1px solid rgba(215, 25, 32, .16);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: #fff7f7;
  color: #3b0b0e;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

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

.legal-highlights span {
  min-height: 86px;
  border: 1px solid #e3e7ee;
  border-radius: 10px;
  background: #f8fafc;
  color: #1f2937;
  padding: 14px 15px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.legal-content article {
  padding: 0;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 21px;
  line-height: 1.25;
}

.legal-content p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.78;
}

.legal-content p + p {
  margin-top: 10px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-copy h1 {
  margin: 14px 0;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.04;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-cards div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards strong {
  color: #111;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.contact-cards span {
  color: #475569;
  line-height: 1.55;
}

.contact-form .auth-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.success-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}

.success-card h1 {
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
}

.success-card p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.tracker-copy-box {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: left;
}

.tracker-copy-box label {
  color: #334155;
  font-weight: 700;
}

.tracker-copy-box textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 2px solid #d7dbe2;
  border-radius: 10px;
  background: #f8fafc;
  padding: 14px;
  color: #111;
  font: 500 14px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  cursor: pointer;
}

.tracker-copy-box textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, .06);
}

.tracker-copy-box [data-copy-message] {
  opacity: 0;
  transform: translateY(-4px);
  color: var(--green-dark);
  font-weight: 800;
  transition: opacity .18s ease, transform .18s ease;
}

.tracker-copy-box [data-copy-message].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-card strong {
  font-size: 38px;
}

.checkout-card strong span {
  color: var(--muted);
  font-size: 15px;
}

.checkout-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
  color: #334155;
}

.checkout-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

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

  .hero,
  .split,
  .auth-section,
  .report-layout,
  .auth-page,
  .checkout-page,
  .contact-page,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .brand-head strong {
    text-align: left;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 22px 28px;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .report-layout {
    gap: 12px;
  }

  .report-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 8px;
    border-right: 1px solid #d6dbe4;
    border-radius: 12px;
  }

  .report-menu button {
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
  }

  .report-menu button.active {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
  }

  .report-menu button.active::before,
  .report-menu button.active::after {
    display: none;
  }

  .report-panel {
    border-radius: 12px;
  }

  .problem .section-head.wide {
    padding-right: 0;
  }

  .problem-watermark {
    display: none;
  }

  .insight-grid,
  .use-grid,
  .pricing-grid,
  .auth-grid,
  .trust-band,
  .session-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    gap: 12px;
  }

  .hero-actions,
  .cta-card {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .site-actions .lang-dropdown {
    position: absolute;
    top: 0;
    right: 0;
  }

  .site-actions .lang-dropdown summary {
    min-height: 40px;
  }

  .site-actions .btn {
    width: 100%;
    min-height: 42px;
  }

  .site-actions .btn-header-login {
    grid-column: 1;
  }

  .site-actions .btn-header-try {
    grid-column: 2;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-header .site-logo {
    max-width: calc(100% - 92px);
  }

  .site-header .site-logo img {
    height: 38px;
  }

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

  .hero-watermark {
    display: block;
    top: -26px;
    right: -16px;
    width: 190px;
    max-width: 58%;
    opacity: .04;
  }

  .report-panel {
    padding: 14px;
  }

  .report-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-header button {
    width: 100%;
  }

  .report-metrics,
  .chart-kpis,
  .legal-highlights,
  .brand-logos,
  .auth-field-grid,
  .insight-grid,
  .use-grid,
  .pricing-grid,
  .auth-grid,
  .trust-band,
  .session-profile-head,
  .session-facts {
    grid-template-columns: 1fr;
  }

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

  .session-status {
    justify-self: start;
  }

  .event-feed div {
    grid-template-columns: 1fr;
  }

}
