:root {
  --bg: #fbfcfb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-soft: rgba(241, 243, 240, 0.72);
  --text: #141414;
  --muted: #626660;
  --line: #deded9;
  --line-strong: #c9cbc4;
  --green: #0f8f72;
  --cyan: #18a8df;
  --blue: #456ff6;
  --amber: #c7792e;
  --black: #080808;
  --shadow: 0 24px 80px rgba(20, 20, 20, 0.08);
  --glass-shadow: 0 30px 110px rgba(19, 54, 73, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.neural-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
}

button,
input,
select {
  font: inherit;
}

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: 18px max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(222, 222, 217, 0.72);
  background: rgba(251, 252, 251, 0.78);
  backdrop-filter: blur(22px) saturate(1.1);
}

.brand,
.nav-links,
.trust-row,
.deployment-row,
.conversation-topbar,
.system-strip,
.result-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 168, 223, 0.18));
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-icon-button,
.trust-menu-button {
  display: inline-grid;
  width: 44px;
  height: 40px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(222, 222, 217, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(19, 54, 73, 0.06);
}

.trust-menu-button {
  gap: 4px;
}

.home-icon-button svg {
  display: block;
  width: 22px;
  height: 22px;
}

.trust-menu-button span {
  display: grid;
  width: 24px;
  grid-template-columns: 5px 1fr;
  gap: 4px;
  align-items: center;
}

.trust-menu-button i,
.trust-menu-button b {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.trust-menu-button b {
  opacity: 0.72;
}

.home-icon-button:hover,
.trust-menu-button:hover,
.trust-menu-button.is-active {
  background: var(--black);
  color: #fff;
}

.trust-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: max(24px, calc((100% - 1180px) / 2));
  z-index: 24;
  width: min(440px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(222, 222, 217, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(19, 54, 73, 0.16);
  backdrop-filter: blur(22px) saturate(1.08);
}

.trust-menu-panel[hidden] {
  display: none;
}

.trust-menu-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.trust-menu-panel strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.22;
}

.trust-menu-panel p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trust-menu-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-menu-links li {
  display: block;
  margin: 0;
}

.trust-menu-links a {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid rgba(222, 222, 217, 0.88);
  border-radius: 8px;
  background: rgba(251, 252, 251, 0.72);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.28;
  white-space: normal;
  overflow-wrap: anywhere;
}

.trust-menu-links a:hover {
  border-color: rgba(24, 168, 223, 0.42);
  background: rgba(24, 168, 223, 0.08);
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--surface);
  box-shadow: 0 0 0 1px rgba(24, 168, 223, 0.14), 0 12px 24px rgba(24, 168, 223, 0.18);
  animation: markPulse 4.8s ease-in-out infinite;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(222, 222, 217, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(19, 54, 73, 0.06);
}

.lang-button {
  display: inline-grid;
  min-width: 34px;
  min-height: 32px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
  text-align: center;
}

.lang-button.is-active {
  background: var(--black);
  color: #fff;
  box-shadow: 0 8px 22px rgba(8, 8, 8, 0.16);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  width: min(1180px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: 54px 0 0;
  align-items: start;
  position: relative;
}

.hero-copy {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: var(--hero-copy-gap, 37px);
  min-height: 0;
  max-width: 780px;
  min-width: 0;
  align-self: start;
}

.hero-main {
  display: grid;
  align-content: start;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 730;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.trust-row span {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(222, 222, 217, 0.72);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.72);
  color: #343732;
  font-size: 0.82rem;
  line-height: 1.2;
}

.trust-row span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.assurance-panel {
  display: grid;
  gap: 13px;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(222, 222, 217, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(19, 54, 73, 0.07);
  backdrop-filter: blur(18px) saturate(1.08);
}

.assurance-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.assurance-head span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.assurance-head strong {
  color: #2d302b;
  font-size: 0.9rem;
  line-height: 1.28;
  text-align: right;
}

.assurance-copy {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.deployment-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 4px;
}

.deployment-row article {
  display: flex;
  min-height: 108px;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 13px 13px;
  border: 1px solid rgba(222, 222, 217, 0.78);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.8);
}

.deployment-row span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 760;
  text-transform: uppercase;
}

.deployment-row strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.34;
}

.deployment-note {
  max-width: 620px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.intake-panel,
.conversation-shell,
.insight-panel,
.recommendation-card,
.architecture-grid article,
.trial-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
}

.intake-panel {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: 26px;
}

.intake-panel::before,
.conversation-shell::before,
.trial-section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), var(--green), var(--amber));
  opacity: 0.8;
}

.panel-heading h2 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.panel-heading p:not(.step-label),
.privacy-note p,
.architecture-grid p,
.trial-copy p,
.recommendation-card p {
  color: var(--muted);
  line-height: 1.54;
}

.step-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

.verify-form {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.intake-panel label {
  gap: 6px;
}

.intake-panel input {
  min-height: 44px;
}

label {
  display: grid;
  gap: 7px;
  color: #31342f;
  font-size: 0.92rem;
  font-weight: 680;
}

.company-lookup {
  position: relative;
  display: grid;
  gap: 7px;
}

.company-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(24, 168, 223, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(19, 54, 73, 0.16);
  backdrop-filter: blur(16px);
}

.company-suggestion-button {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.company-suggestion-button:hover,
.company-suggestion-button.is-active {
  border-color: rgba(24, 168, 223, 0.24);
  background: rgba(24, 168, 223, 0.07);
}

.company-suggestion-button strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.company-suggestion-button span,
.company-suggestions-empty,
.company-suggestions-attribution {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.company-suggestions-attribution {
  padding: 3px 3px 1px;
  text-align: right;
}

.inline-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.72);
}

.inline-check input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.human-check {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.38;
}

.human-check[hidden],
.human-check.is-hidden {
  display: none;
}

.human-check input {
  width: 100%;
  max-width: 180px;
  min-height: 42px;
  margin: 0;
}

.human-check strong {
  color: var(--text);
  font-size: 0.94rem;
}

.lead-submit-status {
  min-height: 1.4em;
  margin: -2px 0 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

.lead-submit-status.is-error {
  color: var(--amber);
}

.verify-form.is-sent .primary-button {
  background: var(--green);
  color: #fff;
}

.turnstile-wrap {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 0;
}

.human-challenge {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.human-challenge[hidden] {
  display: none;
}

.human-challenge.is-visible {
  animation: challengePop 220ms ease-out both;
}

.human-challenge.is-solved {
  border-color: rgba(15, 143, 114, 0.38);
  background: rgba(15, 143, 114, 0.06);
}

.human-challenge.has-error {
  border-color: rgba(199, 121, 46, 0.48);
  background: rgba(199, 121, 46, 0.06);
}

.human-challenge-head {
  display: grid;
  gap: 5px;
}

.human-challenge-head span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.human-challenge-head strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

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

.captcha-tile {
  position: relative;
  display: grid;
  min-height: 72px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(222, 222, 217, 0.9);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.86);
  cursor: pointer;
}

.captcha-tile:hover,
.captcha-tile.is-selected {
  border-color: rgba(24, 168, 223, 0.62);
  box-shadow: 0 0 0 3px rgba(24, 168, 223, 0.1);
}

.captcha-tile.is-selected::after {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  content: "";
}

.captcha-tile.is-selected::before {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.captcha-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 72px;
}

.captcha-visual.variant-1 {
  filter: hue-rotate(8deg) saturate(0.9);
}

.captcha-visual.variant-2 {
  transform: scaleX(-1);
}

.captcha-visual.variant-3 {
  filter: contrast(0.92) brightness(1.04);
}

.captcha-visual.car {
  background:
    linear-gradient(160deg, rgba(24, 168, 223, 0.2), transparent 54%),
    linear-gradient(0deg, rgba(98, 102, 96, 0.12) 0 34%, transparent 34% 100%);
}

.captcha-visual.car::before {
  position: absolute;
  left: 20%;
  top: 36%;
  width: 58%;
  height: 22%;
  border-radius: 8px 10px 5px 5px;
  background: #151515;
  box-shadow: 10px -10px 0 -3px rgba(21, 21, 21, 0.92);
  content: "";
}

.captcha-visual.car::after {
  position: absolute;
  left: 27%;
  top: 59%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 34px 0 0 #fff;
  content: "";
}

.captcha-visual.car.variant-3::before {
  top: 40%;
  width: 52%;
}

.captcha-visual.crosswalk {
  background:
    linear-gradient(160deg, rgba(24, 168, 223, 0.16), transparent 54%),
    linear-gradient(0deg, rgba(40, 48, 52, 0.16) 0 34%, transparent 34% 100%);
}

.captcha-visual.crosswalk::before {
  position: absolute;
  inset: 32% 12% 30%;
  border-radius: 4px;
  background: #30383d;
  content: "";
  transform: rotate(-3deg);
}

.captcha-visual.crosswalk::after {
  position: absolute;
  inset: 35% 18% 35%;
  background: repeating-linear-gradient(90deg, #fff 0 9px, transparent 9px 17px);
  content: "";
  transform: rotate(-3deg);
}

.captcha-visual.crosswalk.variant-2 {
  filter: contrast(1.05);
}

.captcha-visual.road {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.9) 47% 53%, transparent 53%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.14), rgba(24, 168, 223, 0.1));
}

.captcha-visual.road.variant-1 {
  background:
    linear-gradient(0deg, transparent 0 47%, rgba(255, 255, 255, 0.9) 47% 53%, transparent 53%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.14), rgba(24, 168, 223, 0.1));
}

.captcha-visual.building {
  background:
    linear-gradient(180deg, rgba(15, 143, 114, 0.16), rgba(24, 168, 223, 0.08));
}

.captcha-visual.building::before {
  position: absolute;
  left: 32%;
  top: 17%;
  width: 36%;
  height: 66%;
  border-radius: 4px 4px 0 0;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 32% 46%, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 46%, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 32% 66%, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 66%, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    #3f7788;
  content: "";
}

.captcha-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.captcha-actions button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.86rem;
}

.refresh-button {
  gap: 8px;
}

.refresh-button::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  content: "";
}

.captcha-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.human-challenge.is-solved .captcha-status {
  color: var(--green);
  font-weight: 690;
}

.human-challenge.has-error .captcha-status {
  color: var(--amber);
  font-weight: 690;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

small {
  color: var(--muted);
  font-weight: 500;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.82);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

textarea {
  width: 100%;
  min-height: 120px;
  padding: 13px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.82);
  color: var(--text);
  outline: none;
  font: inherit;
  line-height: 1.48;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(24, 168, 223, 0.72);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(24, 168, 223, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.privacy-note {
  margin: 2px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 143, 114, 0.06);
}

.privacy-note p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.46;
}

.verify-form .primary-button {
  min-height: 46px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.primary-button {
  background: var(--black);
  color: var(--surface);
}

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

.primary-button:hover {
  box-shadow: 0 16px 34px rgba(8, 8, 8, 0.18);
}

.secondary-button {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--text);
}

.system-strip {
  width: min(1040px, calc(100% - 48px));
  margin: -24px auto 92px;
  justify-content: center;
  gap: 16px;
}

.system-node {
  min-width: 184px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
}

.system-node span,
.recommendation-card span,
.architecture-grid span,
.score-block span,
.action-preview span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.system-node strong {
  font-size: 0.96rem;
}

.system-node.is-active {
  border-color: rgba(15, 143, 114, 0.36);
  background: rgba(15, 143, 114, 0.08);
}

.system-line {
  width: 58px;
  height: 1px;
  background: var(--line-strong);
}

.flow-section,
.result-section,
.software-section,
.architecture-section,
.backend-section,
.trial-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.award-strip {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  align-items: center;
  margin: 24px auto 24px;
  padding: 30px 38px;
  border: 1px solid rgba(24, 168, 223, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 248, 253, 0.82)),
    rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: 0 24px 78px rgba(19, 54, 73, 0.09);
  backdrop-filter: blur(18px) saturate(1.08);
}

.award-strip img {
  width: 88px;
  height: 88px;
}

.award-strip p {
  max-width: 760px;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 620;
  line-height: 1.42;
}

.flow-section {
  padding-bottom: 34px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.conversation-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.conversation-topbar {
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.conversation-topbar::after {
  width: 92px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanLine 2.8s ease-in-out infinite;
}

.conversation-topbar div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.conversation-topbar span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 143, 114, 0.12);
}

.messages {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.message {
  width: min(82%, 760px);
  animation: slideUp 240ms ease both;
}

.message span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.message p {
  margin-bottom: 0;
  padding: 16px 18px;
  border-radius: 8px;
  line-height: 1.55;
}

.message a {
  color: var(--blue);
  font-weight: 740;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.message.assistant p {
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.message.user {
  align-self: flex-end;
}

.message.user span {
  text-align: right;
}

.message.user p {
  background: var(--black);
  color: var(--surface);
}

.choice-area {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(251, 251, 250, 0.74);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-weight: 650;
}

.choice-button:hover,
.choice-button.is-selected {
  border-color: rgba(24, 168, 223, 0.52);
  background: rgba(24, 168, 223, 0.08);
}

.custom-answer {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.custom-answer input {
  min-height: 44px;
}

.plemeo-chat-form.is-locked {
  opacity: 0.72;
}

.plemeo-chat-form.is-locked input,
.plemeo-chat-form.is-locked button {
  cursor: not-allowed;
}

.custom-answer button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 15px;
}

.handoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.handoff-actions button {
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 740;
}

.handoff-actions button:hover,
.handoff-actions button:focus-visible {
  border-color: rgba(24, 168, 223, 0.5);
  background: rgba(24, 168, 223, 0.08);
}

.handoff-actions button:disabled {
  cursor: progress;
  opacity: 0.56;
}

.insight-panel {
  position: sticky;
  top: 96px;
  min-height: 620px;
  padding: 22px;
}

.score-block strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2.6rem;
  line-height: 1;
}

.score-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}

.score-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
  transition: width 280ms ease;
}

.insight-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.insight-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.insight-pill {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.78);
  font-size: 0.9rem;
}

.action-preview {
  padding: 16px;
  border: 1px solid rgba(199, 121, 46, 0.28);
  border-radius: 8px;
  background: rgba(199, 121, 46, 0.08);
}

.action-preview strong {
  display: block;
  line-height: 1.35;
}

.result-section {
  padding: 18px 0 96px;
}

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

.recommendation-card {
  padding: 22px;
  box-shadow: none;
}

.result-actions {
  gap: 12px;
  margin-top: 20px;
}

.result-actions button {
  padding: 0 18px;
}

.software-section {
  padding: 92px 0 18px;
}

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

.software-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
}

.software-card::before {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(24, 168, 223, 0.28);
  border-radius: 50%;
  content: "";
}

.software-card::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    -52px -14px 0 rgba(15, 143, 114, 0.52),
    -24px -66px 0 rgba(199, 121, 46, 0.42);
  content: "";
}

.software-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.software-card p {
  max-width: 92%;
  color: var(--muted);
  line-height: 1.62;
}

.architecture-section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

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

.architecture-grid article {
  padding: 22px;
  box-shadow: none;
}

.backend-section {
  padding: 86px 0 28px;
  border-top: 1px solid var(--line);
}

.backend-section .section-intro p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.62;
}

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

.backend-grid article {
  min-height: 214px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 253, 252, 0.78)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(19, 54, 73, 0.07);
  backdrop-filter: blur(18px) saturate(1.08);
}

.backend-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.backend-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.24;
}

.backend-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trial-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  margin-bottom: 72px;
  padding: 34px;
  align-items: center;
}

.trial-copy {
  max-width: 620px;
}

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

.trial-steps li {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.78);
}

.trial-steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 760;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.trust-page-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 72px;
}

.trust-page-hero {
  max-width: 820px;
  margin-bottom: 30px;
}

.trust-page-hero h1 {
  max-width: 780px;
}

.trust-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.trust-page-card,
.trust-cta-band,
.trust-related {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(19, 54, 73, 0.07);
  backdrop-filter: blur(18px) saturate(1.08);
}

.trust-page-card {
  min-height: 218px;
  padding: 22px;
}

.trust-page-card span,
.trust-cta-band span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.trust-page-card h2,
.trust-cta-band h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.trust-page-card p,
.trust-cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.trust-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
}

.trust-cta-band a,
.trust-related a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-weight: 720;
}

.trust-related {
  margin-top: 18px;
  padding: 20px;
}

.trust-related h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.trust-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-related a {
  min-height: 38px;
  background: rgba(8, 8, 8, 0.06);
  color: var(--text);
}

.trust-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-footer a {
  color: var(--text);
  font-weight: 680;
}

.site-footer {
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 168, 223, 0.15), transparent 28%),
    #081524;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(340px, 1.25fr) minmax(320px, 1fr) minmax(190px, 0.55fr) minmax(160px, 0.42fr);
  align-items: start;
  gap: 42px;
  margin: 0 auto;
  padding: 56px 0 54px;
}

.footer-brand-block,
.footer-newsletter,
.footer-links,
.footer-socials {
  min-width: 0;
}

.footer-socials {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-newsletter {
  display: grid;
  gap: 13px;
  max-width: 360px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-logo {
  width: 218px;
  height: auto;
  max-height: 64px;
}

.footer-award {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 430px;
  margin-top: 42px;
}

.footer-award img {
  width: 68px;
  height: 68px;
}

.footer-award p {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 590;
  line-height: 1.5;
}

.footer-newsletter h2,
.footer-links h2,
.footer-socials h2 {
  margin: 0;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 680;
  letter-spacing: 0;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(30, 170, 245, 0.42);
  border-radius: 8px;
  background: rgba(7, 18, 34, 0.72);
  color: #fff;
  font: inherit;
  outline: none;
}

.footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer-newsletter input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 170, 245, 0.18);
}

.newsletter-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: var(--blue);
}

.footer-consent a,
.footer-links a {
  color: #fff;
}

.footer-links a {
  white-space: nowrap;
}

.footer-consent a:hover,
.footer-links a:hover {
  color: #7bd5ff;
}

.footer-newsletter button {
  min-height: 44px;
  width: fit-content;
  margin-top: 2px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}

.footer-newsletter-status {
  min-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-newsletter-status:empty {
  display: none;
}

.footer-newsletter-status[data-state="success"] {
  color: #7bd5ff;
}

.footer-newsletter-status[data-state="error"] {
  color: #ffb47b;
}

.footer-newsletter-status[data-state="pending"] {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 13px;
  font-size: 0.98rem;
  font-weight: 590;
}

.footer-social-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.footer-menu-list,
.footer-social-row ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-row ul {
  display: flex;
  gap: 10px;
}

.footer-menu-list li,
.footer-social-row li {
  margin: 0;
}

.footer-social-row a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue);
  color: #071222;
  font-size: 1.35rem;
  font-weight: 850;
}

.footer-social-row a:hover {
  transform: translateY(-2px);
}

.footer-social-row span {
  line-height: 1;
}

.footer-social-row svg {
  display: block;
  width: 22px;
  height: 22px;
}

.legal-shell {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 74px;
}

.legal-hero {
  max-width: 680px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: 3.2rem;
}

.legal-hero p {
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
}

.legal-card article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-card article:last-child {
  border-bottom: 0;
}

.legal-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.legal-card p {
  margin: 0;
  color: #30332e;
  line-height: 1.62;
}

.legal-card div {
  min-width: 0;
}

.legal-card a {
  font-weight: 690;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #30332e;
  line-height: 1.55;
}

.legal-list strong {
  color: var(--text);
}

.legal-note {
  margin-top: 14px !important;
}

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

.cookie-service-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #30332e;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: none;
}

.admin-body {
  background: #f7f8f6;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(222, 222, 217, 0.74);
  background: rgba(247, 248, 246, 0.8);
  backdrop-filter: blur(20px) saturate(1.12);
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

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

.admin-preview-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 720;
}

.admin-preview-link:hover {
  color: var(--text);
}

.admin-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0 82px;
}

.admin-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.admin-hero h1 {
  max-width: 760px;
  font-size: 3.2rem;
}

.admin-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.admin-metrics,
.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.admin-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.admin-metrics article,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(19, 54, 73, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.admin-metrics article {
  padding: 18px;
}

.admin-metrics span,
.admin-card-head span,
.folder-list span,
.kb-source-card > span,
.provider-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.admin-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.admin-metrics p,
.admin-note,
.provider-card p,
.provider-card small,
.admin-log {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.publish-card {
  grid-column: 1 / -1;
}

.admin-card-head strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.28;
}

.admin-card-head.compact strong {
  font-size: 1rem;
}

.toggle-list {
  display: grid;
  gap: 10px;
}

.toggle-list label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.72);
  font-size: 0.9rem;
  font-weight: 620;
}

.toggle-list input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.security-cloud,
.field-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.security-cloud span,
.field-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 251, 250, 0.76);
  color: #30332e;
  font-size: 0.86rem;
  line-height: 1.3;
}

.folder-list,
.provider-list {
  display: grid;
  gap: 10px;
}

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

.folder-list div,
.kb-source-card,
.provider-card,
.wordpress-plugin-card,
.custom-plugin-card {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.74);
}

.kb-source-card {
  display: grid;
  gap: 8px;
}

.kb-source-card .inline-check {
  justify-self: start;
}

.kb-source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.kb-source-card button {
  min-height: 38px;
  width: fit-content;
  padding: 0 13px;
}

.provider-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: start;
}

.provider-card p,
.provider-card small {
  grid-column: 1 / -1;
}

.provider-card a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.84rem;
  font-weight: 720;
}

.wordpress-plugin-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: start;
}

.wordpress-plugin-card strong,
.wordpress-plugin-card p,
.wordpress-plugin-card small {
  grid-column: 1 / -1;
}

.wordpress-plugin-card strong {
  font-size: 1rem;
  line-height: 1.24;
}

.wordpress-plugin-card p,
.wordpress-plugin-card small,
.custom-plugin-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.wordpress-plugin-card a,
.custom-plugin-card a {
  overflow-wrap: anywhere;
  font-size: 0.84rem;
  font-weight: 720;
}

.plugin-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.plugin-check input,
.wordpress-step input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.wordpress-step-list,
.custom-plugin-list,
.website-link-list {
  display: grid;
  gap: 10px;
}

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

.site-link-card {
  display: grid;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.74);
}

.site-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.site-link-actions a {
  overflow-wrap: anywhere;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 760;
}

.site-link-actions .secondary-button {
  min-height: 38px;
  padding: 0 13px;
}

.wordpress-step {
  display: grid;
  grid-template-columns: 18px 44px 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.74);
}

.wordpress-step span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 780;
}

.wordpress-step strong {
  line-height: 1.28;
}

.wordpress-step p {
  grid-column: 3;
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.custom-plugin-card {
  display: grid;
  gap: 7px;
}

.custom-plugin-card span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.secret-panel {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(24, 168, 223, 0.16);
  border-radius: 8px;
  background: rgba(24, 168, 223, 0.05);
}

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

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

.backend-admin-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.76);
}

.backend-admin-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.backend-admin-grid strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.24;
}

.backend-admin-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.model-meta,
.code-change-preview {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(24, 168, 223, 0.18);
  border-radius: 8px;
  background: rgba(24, 168, 223, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.code-change-preview {
  display: grid;
  gap: 8px;
}

.code-change-preview span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.code-change-preview strong {
  color: var(--text);
}

.code-change-preview p,
.code-change-preview small {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.prompt-preview pre {
  max-height: 340px;
  overflow: auto;
  margin: 4px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #30332e;
  font: 0.84rem/1.56 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.admin-button {
  width: fit-content;
  padding: 0 16px;
}

.preview-card {
  align-content: start;
  padding: 0;
  overflow: hidden;
}

.admin-message {
  width: auto;
  padding: 22px;
}

.cost-output,
.admin-log {
  padding: 14px;
  border: 1px solid rgba(15, 143, 114, 0.2);
  border-radius: 8px;
  background: rgba(15, 143, 114, 0.07);
  font-weight: 690;
}

[hidden] {
  display: none !important;
}

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

@keyframes challengePop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes markPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px rgba(24, 168, 223, 0.14), 0 12px 24px rgba(24, 168, 223, 0.14);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(15, 143, 114, 0.2), 0 18px 34px rgba(24, 168, 223, 0.24);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-10px);
  }
  50% {
    opacity: 0.95;
    transform: translateX(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

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

  .hero-section,
  .flow-layout,
  .trial-section {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    align-content: start;
    grid-template-rows: auto auto;
    gap: 28px;
    min-height: 0;
  }

  .hero-main {
    gap: 20px;
  }

  .assurance-panel {
    margin-top: 0;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .system-strip {
    flex-direction: column;
    align-items: stretch;
    margin-top: 4px;
  }

  .system-line {
    width: 1px;
    height: 24px;
    margin-left: 24px;
  }

  .insight-panel {
    position: static;
  }

  .result-grid,
  .software-grid,
  .architecture-grid,
  .backend-grid,
  .trust-page-grid,
  .backend-admin-grid,
  .wordpress-plugin-grid,
  .website-link-list,
  .admin-metrics,
  .admin-grid.two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .admin-shell {
    width: calc(100% - 28px);
    padding-top: 34px;
  }

  .admin-hero h1 {
    font-size: 2.25rem;
  }

  .admin-card {
    padding: 18px;
  }

  .admin-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0 42px;
  }

  .footer-newsletter {
    max-width: none;
  }

  .site-footer .brand span:last-child {
    display: inline;
  }

  .footer-brand {
    font-size: 1.75rem;
  }

  .footer-brand .brand-logo {
    width: 184px;
    height: auto;
    max-height: 54px;
  }

  .footer-award {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    margin-top: 34px;
  }

  .footer-award img {
    width: 60px;
    height: 60px;
  }

  .legal-card article {
    grid-template-columns: 1fr;
  }

  .cookie-service-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 12px;
    justify-content: space-between;
    padding: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .language-switch {
    margin-left: 0;
  }

  .trust-menu-panel {
    right: 14px;
  }

  .trust-page-shell,
  .trust-footer {
    width: calc(100% - 28px);
  }

  .trust-page-shell {
    padding-top: 44px;
  }

  .trust-cta-band {
    grid-template-columns: 1fr;
  }

  .lang-button {
    min-width: 34px;
  }

  .hero-section,
  .flow-section,
  .result-section,
  .software-section,
  .architecture-section,
  .backend-section,
  .trial-section,
  .system-strip,
  .award-strip {
    width: calc(100% - 28px);
  }

  .hero-section {
    max-width: 362px;
    margin-right: auto;
    margin-left: 14px;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
  }

  .trust-row,
  .deployment-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .trust-row span {
    width: 100%;
  }

  .assurance-panel {
    padding: 14px;
  }

  .assurance-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .deployment-row article {
    min-width: 0;
    width: 100%;
  }

  .intake-panel,
  .trial-section {
    padding: 20px;
  }

  .form-grid,
  .custom-answer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .conversation-shell {
    min-height: 560px;
  }

  .conversation-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .messages {
    min-height: 380px;
    padding: 18px;
  }

  .message {
    width: 100%;
  }

  .choice-area {
    padding: 16px 18px 18px;
  }

  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .award-strip {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 58px;
    padding: 22px 20px;
  }

  .award-strip img {
    width: 60px;
    height: 60px;
  }

  .award-strip p {
    font-size: 1rem;
  }
}
