:root {
  color-scheme: light;
  --ink: #10121a;
  --muted: #5d6372;
  --line: #d9ddea;
  --panel: #ffffff;
  --soft: #f5f7fb;
  --night: #12131a;
  --night-2: #1b1d27;
  --violet: #6254f3;
  --cyan: #20b8d8;
  --green: #26b67a;
  --orange: #f2994a;
  --shadow: 0 24px 70px rgba(16, 18, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(217, 221, 234, 0.72);
  background: rgba(245, 247, 251, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 16px;
  font-weight: 760;
}

.button--primary {
  background: var(--ink);
  color: #ffffff;
}

.button--secondary {
  border-color: var(--line);
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 54px) 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(32, 184, 216, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef3f8 42%, #e9edf6 100%);
}

.hero__scene {
  position: absolute;
  inset: 74px clamp(18px, 4vw, 54px) 76px;
  border: 1px solid rgba(16, 18, 26, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f0f3f8;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8cfdd;
}

.scene-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(300px, 0.75fr);
  min-height: calc(100% - 38px);
}

.linkedin-card {
  padding: clamp(28px, 5vw, 64px);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
}

.profile-top {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #243047, #7496aa);
}

.profile-lines {
  display: grid;
  gap: 9px;
  width: min(420px, 100%);
}

.line {
  height: 12px;
  border-radius: 999px;
  background: #dce2ef;
}

.line--wide { width: 88%; }
.line--mid { width: 66%; }
.line--short { width: 42%; }

.profile-body {
  display: grid;
  gap: 14px;
  padding-top: 28px;
}

.profile-block {
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.klix-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--night);
  color: #ffffff;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-head img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

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

.tone-row span {
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  padding: 10px 6px;
  color: #d7d9e3;
  font-size: 13px;
  font-weight: 700;
}

.tone-row span:nth-child(2) {
  border-color: var(--cyan);
  background: rgba(32, 184, 216, 0.14);
  color: #ffffff;
}

.message-box {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 18px;
  background: #202431;
}

.hero .message-box p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 650;
  line-height: 1.6;
}

.spark {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(38, 182, 122, 0.16);
  color: #9ff0c7;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 0 clamp(44px, 7vw, 74px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 15px;
  border: 1px solid rgba(16, 18, 26, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.76);
  color: #2c3240;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #394052;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.checkout-banner {
  position: relative;
  z-index: 4;
  display: none;
  max-width: 760px;
  margin: 0 0 18px;
  border: 1px solid rgba(38, 182, 122, 0.36);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: #173c2b;
  font-weight: 760;
}

.checkout-banner--cancelled {
  border-color: rgba(242, 153, 74, 0.42);
  color: #5b3514;
}

.section {
  padding: clamp(58px, 8vw, 102px) clamp(18px, 4vw, 54px);
}

.section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.beta-form,
.install-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(16, 18, 26, 0.08);
}

.install-card {
  align-content: start;
}

.install-expectations {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.install-expectations li {
  color: var(--ink);
  line-height: 1.55;
}

.install-expectations li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 9px;
}

.install-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.beta-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.beta-form input,
.beta-form textarea,
.beta-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.beta-form textarea {
  resize: vertical;
}

.beta-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

.section__lead {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

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

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

.mode-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
}

.mode-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.product-shot {
  margin: 0;
}

.product-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.screenshot-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px dashed rgba(32, 184, 216, 0.54);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(32, 184, 216, 0.08), rgba(98, 84, 243, 0.08)),
    #ffffff;
  color: var(--ink);
  text-align: center;
}

.screenshot-placeholder strong,
.screenshot-placeholder span {
  display: block;
}

.screenshot-placeholder strong {
  font-size: 20px;
}

.screenshot-placeholder span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 760;
}

.shot-sidebar {
  display: grid;
  gap: 12px;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 252, 0.9)),
    #ffffff;
  box-shadow: var(--shadow);
}

.shot-header {
  font-size: 20px;
  font-weight: 850;
}

.shot-profile {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.shot-profile span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.shot-profile strong,
.shot-profile small {
  display: block;
}

.shot-profile small {
  margin-top: 3px;
  color: var(--muted);
}

.shot-tabs,
.shot-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.shot-tabs span,
.shot-actions span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

.shot-tabs span:first-child,
.shot-actions span:first-child {
  border-color: rgba(32, 184, 216, 0.46);
  background: rgba(32, 184, 216, 0.1);
}

.shot-message,
.shot-rough {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  color: #31384a;
  line-height: 1.55;
}

.shot-message {
  min-height: 118px;
}

.comparison-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5ecf8;
  text-align: left;
}

.comparison-table th {
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.section__lead--links a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
}

.step h3 {
  margin: 20px 0 10px;
  font-size: 21px;
}

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

.pricing-band {
  background: var(--night);
  color: #ffffff;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
}

.price-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
}

.price-panel__cta {
  width: 100%;
  margin-top: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 18px;
}

.price strong {
  font-size: 52px;
  line-height: 1;
}

.checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-item {
  min-height: 150px;
  padding: 24px;
  background: #ffffff;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-page {
  background: #ffffff;
}

.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 20px;
}

.legal-main h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 58px);
}

.legal-main h2 {
  margin-top: 34px;
}

.legal-main p,
.legal-main li {
  color: #41495b;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 184, 216, 0.14), transparent 32%),
    #f5f7fb;
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta__inner .button {
  margin-top: 24px;
}

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

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero__scene {
    position: relative;
    inset: auto;
    min-height: 540px;
    margin-bottom: 34px;
  }

  .scene-grid,
  .steps,
  .screenshots,
  .mode-grid,
  .price-layout,
  .beta-layout,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 40px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__scene {
    min-height: auto;
    width: min(100%, 350px);
    max-width: 350px;
  }

  .linkedin-card {
    display: none;
  }

  .scene-grid {
    display: block;
  }

  .klix-panel,
  .message-box,
  .hero__copy {
    min-width: 0;
  }

  .hero__copy {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .klix-panel {
    padding: 26px;
  }

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

  .tone-row span {
    min-width: 0;
    font-size: 12px;
  }

  .hero p,
  .hero .message-box p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Homepage visual upgrade */
html:not(.legal-page) body {
  background: #070910;
}

html:not(.legal-page) .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(7, 9, 16, 0.92), rgba(13, 18, 30, 0.82)),
    rgba(7, 9, 16, 0.88);
  color: #ffffff;
}

html:not(.legal-page) .brand span {
  text-shadow: 0 0 24px rgba(32, 184, 216, 0.45);
}

html:not(.legal-page) .nav {
  color: #aab4c7;
}

html:not(.legal-page) .nav a:hover {
  color: #ffffff;
}

.button {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.nav a:focus-visible,
.brand:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(32, 184, 216, 0.8);
  outline-offset: 4px;
}

.button--primary {
  border-color: rgba(130, 245, 255, 0.18);
  background: linear-gradient(135deg, #121723, #06080e);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

.button--neon {
  border-color: rgba(32, 184, 216, 0.68);
  background:
    linear-gradient(135deg, rgba(32, 184, 216, 0.2), rgba(98, 84, 243, 0.26)),
    #080b13;
  box-shadow: 0 0 0 1px rgba(32, 184, 216, 0.18), 0 18px 46px rgba(32, 184, 216, 0.24);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero {
  min-height: 92vh;
  padding-top: clamp(88px, 10vw, 132px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(32, 184, 216, 0.2), transparent 26%),
    radial-gradient(circle at 36% 86%, rgba(38, 182, 122, 0.16), transparent 30%),
    linear-gradient(135deg, #080a12 0%, #111728 44%, #091018 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px 0 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 16%, rgba(32, 184, 216, 0.1) 16.2%, transparent 17% 47%, rgba(98, 84, 243, 0.12) 47.2%, transparent 48%),
    linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.08) 48%, transparent 50%);
  opacity: 0.85;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.signal-field {
  position: absolute;
  inset: 76px clamp(18px, 4vw, 54px) 70px;
  pointer-events: none;
  overflow: hidden;
}

.signal-field span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 184, 216, 0.82), rgba(38, 182, 122, 0.58), transparent);
  filter: drop-shadow(0 0 9px rgba(32, 184, 216, 0.55));
}

.signal-field span:nth-child(1) {
  top: 10%;
  left: 0;
  width: 46%;
}

.signal-field span:nth-child(2) {
  top: 28%;
  right: 6%;
  width: 34%;
}

.signal-field span:nth-child(3) {
  bottom: 24%;
  left: 10%;
  width: 52%;
}

.signal-field span:nth-child(4) {
  bottom: 8%;
  right: 0;
  width: 42%;
}

.hero__scene {
  inset: 108px clamp(18px, 4vw, 54px) 76px 46%;
  border-color: rgba(122, 238, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    #0a0d15;
  box-shadow:
    0 0 0 1px rgba(32, 184, 216, 0.12),
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(32, 184, 216, 0.12);
  backdrop-filter: blur(18px);
}

.browser-bar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.dot {
  background: #67748c;
}

.dot:nth-child(2) {
  background: #5cd3ff;
  box-shadow: 0 0 14px rgba(92, 211, 255, 0.72);
}

.browser-title {
  margin-left: 10px;
  color: #7d8798;
  font-size: 12px;
  font-weight: 700;
}

.scene-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(330px, 0.9fr);
}

.linkedin-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 22, 38, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 38, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff, #eaf1fb);
  background-size: 26px 26px, 26px 26px, auto;
}

.linkedin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1px solid rgba(32, 184, 216, 0.28);
  background: linear-gradient(90deg, transparent 0 60%, rgba(32, 184, 216, 0.1));
  pointer-events: none;
}

.avatar {
  background:
    linear-gradient(135deg, rgba(32, 184, 216, 0.52), rgba(98, 84, 243, 0.38)),
    #243047;
  box-shadow: 0 0 0 8px rgba(32, 184, 216, 0.08), 0 18px 38px rgba(36, 48, 71, 0.22);
}

.line {
  background: linear-gradient(90deg, #b9c5d8, #dfe6f2);
}

.profile-block {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
}

.profile-block--active {
  border-color: rgba(32, 184, 216, 0.45);
  box-shadow: inset 0 0 0 1px rgba(32, 184, 216, 0.12), 0 16px 34px rgba(32, 184, 216, 0.1);
}

.profile-block--active::before,
.profile-block::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 10px;
  border-radius: 999px;
  background: #dce4f1;
}

.profile-block--active::before {
  top: 18px;
  width: 44%;
  background: linear-gradient(90deg, #20b8d8, #26b67a);
}

.profile-block::after {
  bottom: 18px;
  width: 68%;
}

.scan-line {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 72%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(32, 184, 216, 0.98), transparent);
  box-shadow: 0 0 22px rgba(32, 184, 216, 0.7);
}

.klix-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #0c101c, #101827 62%, #071119);
  background-size: 24px 24px, 24px 24px, auto;
}

.panel-glow {
  position: absolute;
  inset: 12% -26% auto auto;
  width: 52%;
  height: 54%;
  transform: skewX(-16deg);
  border: 1px solid rgba(32, 184, 216, 0.18);
  background: linear-gradient(135deg, rgba(32, 184, 216, 0.14), rgba(98, 84, 243, 0.1));
  filter: blur(1px);
}

.panel-head {
  position: relative;
  z-index: 1;
}

.panel-head img {
  box-shadow: 0 0 32px rgba(98, 84, 243, 0.52);
}

.panel-head div {
  display: grid;
  gap: 3px;
}

.panel-head span {
  color: #92a2ba;
  font-size: 12px;
  font-weight: 760;
}

.tone-row,
.message-box,
.signal-meters {
  position: relative;
  z-index: 1;
}

.tone-row span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: #cfd8e8;
}

.tone-row span:nth-child(2) {
  border-color: rgba(32, 184, 216, 0.9);
  background: linear-gradient(180deg, rgba(32, 184, 216, 0.26), rgba(32, 184, 216, 0.08));
  box-shadow: inset 0 0 18px rgba(32, 184, 216, 0.18), 0 0 22px rgba(32, 184, 216, 0.16);
}

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

.signal-meters span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #a8b4c8;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.message-box {
  border: 1px solid rgba(32, 184, 216, 0.18);
  background:
    linear-gradient(135deg, rgba(32, 184, 216, 0.08), transparent 38%),
    #151b29;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.32);
}

.spark {
  border: 1px solid rgba(126, 255, 202, 0.22);
  background: rgba(38, 182, 122, 0.14);
  color: #b5ffdc;
}

.hero .message-box p {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.hero__copy {
  max-width: 560px;
}

.eyebrow {
  border-color: rgba(32, 184, 216, 0.28);
  background: rgba(32, 184, 216, 0.1);
  color: #bef7ff;
  box-shadow: inset 0 0 18px rgba(32, 184, 216, 0.08);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 0 42px rgba(32, 184, 216, 0.28);
}

.hero p {
  max-width: 530px;
  color: #d4dcea;
}

.hero__note {
  margin-top: 14px;
  color: #9fb0c9;
  font-size: 14px;
  font-weight: 760;
}

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

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.065);
  color: #aeb9ca;
  font-size: 13px;
  font-weight: 780;
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  color: #ffffff;
  font-size: 18px;
}

.section {
  background: #f5f7fb;
}

.pricing-band {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #090c14;
  background-size: 38px 38px, 38px 38px, auto;
}

@media (max-width: 1040px) {
  .hero__scene {
    left: 38%;
  }

  .scene-grid {
    grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 1fr);
  }
}

@media (max-width: 880px) {
  html:not(.legal-page) .site-header {
    background: #080a12;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
    padding-bottom: 48px;
  }

  .hero::before {
    mask-image: none;
  }

  .signal-field {
    inset: 86px 18px 24px;
  }

  .hero__scene {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
  }

  .hero__copy {
    order: 1;
    width: min(680px, 100%);
    max-width: 680px;
    padding-bottom: 0;
  }

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

  .linkedin-card {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .button {
    min-height: 44px;
  }

  .hero {
    padding-top: 44px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero__scene,
  .hero__copy {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .hero__copy,
  .hero__actions,
  .hero-stats,
  .message-box,
  .klix-panel {
    min-width: 0;
  }

  .hero p,
  .hero .message-box p,
  .hero-stats span,
  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .browser-title {
    display: none;
  }

  .klix-panel {
    padding: 22px;
  }

  .panel-glow {
    display: none;
  }

  .panel-head span {
    font-size: 11px;
  }

  .signal-meters {
    grid-template-columns: 1fr;
  }

  .signal-meters span {
    text-align: left;
  }

  .message-box {
    padding: 16px;
  }

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

/* Keep the hero preview honest: show extension controls, not fake interactive scanning. */
.hero__scene {
  left: 58%;
}

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

.klix-panel {
  min-height: 100%;
  align-content: center;
}

.context-panel,
.generate-preview,
.usage-strip {
  position: relative;
  z-index: 1;
}

.context-panel {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(32, 184, 216, 0.18);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(32, 184, 216, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.045);
}

.context-panel span {
  color: #97f3ff;
  font-size: 12px;
  font-weight: 850;
}

.context-panel p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 780;
  line-height: 1.5;
}

.generate-preview {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(32, 184, 216, 0.6);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(32, 184, 216, 0.22), rgba(98, 84, 243, 0.2)),
    #101827;
  box-shadow: 0 18px 46px rgba(32, 184, 216, 0.14);
}

.generate-preview strong {
  color: #ffffff;
  font-size: 18px;
}

.generate-preview span {
  color: #bdc8db;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
}

.usage-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.usage-strip span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #d8e1f1;
  font-size: 13px;
  font-weight: 820;
  text-align: center;
}

@media (max-width: 1040px) {
  .hero__scene {
    left: 54%;
  }
}

@media (max-width: 880px) {
  .hero__scene {
    left: auto;
  }
}

@media (max-width: 560px) {
  .usage-strip {
    grid-template-columns: 1fr;
  }

  .context-panel p,
  .generate-preview strong,
  .generate-preview span,
  .usage-strip span {
    overflow-wrap: anywhere;
  }
}

/* Simple premium landing behavior: no fake UI, only real links feel clickable. */
.hero__scene,
.signal-field,
.hero-stats {
  display: none;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 18%, rgba(32, 184, 216, 0.22), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #070910 0%, #101624 48%, #071018 100%);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.hero::before {
  inset: 70px 0 0;
  background:
    linear-gradient(110deg, transparent 0 22%, rgba(32, 184, 216, 0.12) 22.1%, transparent 23% 62%, rgba(98, 84, 243, 0.1) 62.2%, transparent 63%),
    radial-gradient(circle at 50% 62%, rgba(38, 182, 122, 0.14), transparent 34%);
  mask-image: none;
}

.hero__copy {
  width: min(820px, 100%);
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.hero h1 {
  margin-inline: auto;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 1;
}

.hero p {
  max-width: 700px;
  margin-inline: auto;
  color: #e0e7f3;
  font-size: clamp(19px, 2.3vw, 27px);
}

.hero__actions {
  justify-content: center;
}

.section {
  position: relative;
  transition: background 220ms ease;
}

.step,
.mode-card,
.product-shot,
.price-panel,
.trust-item {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.step:hover,
.mode-card:hover,
.product-shot:hover,
.price-panel:hover,
.trust-item:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 184, 216, 0.44);
  box-shadow: 0 24px 70px rgba(16, 18, 26, 0.16);
}

.pricing-band .price-panel:hover {
  box-shadow: 0 28px 80px rgba(32, 184, 216, 0.22);
}

.button:hover {
  border-color: rgba(32, 184, 216, 0.72);
  box-shadow: 0 18px 46px rgba(32, 184, 216, 0.18);
}

.reveal-target {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.step:nth-child(2).reveal-target {
  transition-delay: 80ms;
}

.step:nth-child(3).reveal-target {
  transition-delay: 160ms;
}

.trust-item:nth-child(2).reveal-target {
  transition-delay: 60ms;
}

.trust-item:nth-child(3).reveal-target {
  transition-delay: 120ms;
}

.trust-item:nth-child(4).reveal-target {
  transition-delay: 180ms;
}

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

  .button,
  .step,
  .mode-card,
  .product-shot,
  .price-panel,
  .trust-item,
  .reveal-target {
    transition: none;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 68vh;
    padding: 76px 20px 64px;
    overflow: hidden;
  }

  .hero__copy {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 68px);
  }

  .hero p {
    width: min(100%, 260px);
    max-width: 260px;
    font-size: 17px;
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section__inner {
    width: min(100%, 300px);
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .shot-sidebar {
    min-height: 0;
  }

  .section h2 {
    font-size: 30px;
  }
}
