:root {
  --landing-bg: #05070d;
  --landing-bg-deep: #03050a;
  --landing-surface: #0b1020;
  --landing-surface-soft: rgba(16, 24, 42, 0.72);
  --landing-blue: #2379ff;
  --landing-blue-soft: #6ea2ff;
  --landing-blue-light: #6ea2ff;
  --landing-cyan: #ff0877;
  --landing-success: #6cf0b0;
  --landing-text: #f9fbff;
  --landing-muted: #c0ccd6;
  --landing-muted-dark: #8499a8;
  --landing-line: rgba(113, 143, 189, 0.22);
  --landing-line-strong: rgba(113, 143, 189, 0.65);
  --landing-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --landing-radius: 2px;
  --landing-font: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body.landing-page {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--landing-text);
  background:
    radial-gradient(circle at 78% 8%, rgba(35, 123, 219, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 36%, rgba(27, 169, 164, 0.06), transparent 32rem),
    var(--landing-bg);
  font-family: var(--landing-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.landing-page::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(119, 168, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 168, 224, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

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

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page button,
.landing-page a,
.landing-page summary {
  -webkit-tap-highlight-color: transparent;
}

.landing-page button,
.landing-page summary {
  font: inherit;
}

.landing-page main {
  position: relative;
  overflow: clip;
}

.landing-shell {
  width: min(100% - 56px, 1400px);
  margin-inline: auto;
}

.landing-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  pointer-events: none;
}

.landing-glow {
  position: fixed;
  z-index: -2;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.landing-glow-one {
  top: -18rem;
  right: -8rem;
  background: var(--landing-blue);
}

.landing-glow-two {
  top: 45%;
  left: -24rem;
  background: var(--landing-cyan);
}

.landing-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: #00101b;
  background: var(--landing-cyan);
  font-size: 0.86rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.landing-page :focus-visible {
  outline: 3px solid var(--landing-cyan);
  outline-offset: 4px;
}

/* Header */
.landing-header {
  position: fixed;
  z-index: 1000;
  top: max(22px, calc(env(safe-area-inset-top, 0px) + 12px));
  right: 0;
  left: 0;
  transition: top 0.25s ease;
}

.landing-nav-shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(142, 188, 239, 0.17);
  border-radius: 17px;
  background: rgba(3, 10, 27, 0.7);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px) saturate(130%);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-header.is-scrolled {
  top: max(14px, calc(env(safe-area-inset-top, 0px) + 8px));
}

.landing-header.is-scrolled .landing-nav-shell {
  border-color: rgba(142, 188, 239, 0.26);
  background: rgba(2, 7, 22, 0.9);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.34);
}

.landing-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.landing-brand img {
  display: block;
  width: 154px;
  height: auto;
}

.landing-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-nav-links,
.landing-nav-actions {
  display: flex;
  align-items: center;
}

.landing-nav-links {
  gap: 28px;
  margin-left: auto;
}

.landing-nav-actions {
  gap: 14px;
}

.landing-nav-links a,
.landing-login-link {
  position: relative;
  color: #bdcadb;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.landing-nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--landing-cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.landing-nav-links a:hover,
.landing-login-link:hover {
  color: var(--landing-text);
}

.landing-nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.landing-translate {
  display: flex;
  min-width: 26px;
  align-items: center;
  justify-content: center;
}

#gt-mordadam-43217984 {
  min-height: 22px;
  isolation: isolate;
}

.landing-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--landing-line);
  border-radius: 11px;
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.landing-menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.22s ease;
}

.landing-menu-toggle span:first-child { transform: translateY(-4px); }
.landing-menu-toggle span:last-child { transform: translateY(4px); }
.landing-menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.landing-menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

/* Shared controls */
.landing-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.landing-button span {
  font-size: 1.04rem;
  transition: transform 0.2s ease;
}

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

.landing-button:hover span {
  transform: translate(2px, -2px);
}

.landing-button-primary {
  border-color: rgba(158, 213, 255, 0.38);
  color: #fff;
  background: linear-gradient(135deg, #177ee3, var(--landing-blue));
  box-shadow: 0 12px 32px rgba(32, 142, 246, 0.27), inset 0 1px rgba(255, 255, 255, 0.24);
}

.landing-button-primary:hover {
  border-color: rgba(198, 229, 255, 0.7);
  background: linear-gradient(135deg, #238ff5, #48abff);
  box-shadow: 0 17px 38px rgba(32, 142, 246, 0.36), inset 0 1px rgba(255, 255, 255, 0.28);
}

.landing-button-secondary {
  border-color: var(--landing-line-strong);
  color: #d9e7f7;
  background: rgba(255, 255, 255, 0.025);
}

.landing-button-secondary:hover {
  border-color: rgba(142, 199, 255, 0.56);
  color: #fff;
  background: rgba(85, 158, 230, 0.09);
}

.landing-button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 9px;
  font-size: 0.82rem;
}

.landing-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--landing-blue-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.landing-eyebrow span {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--landing-cyan), var(--landing-blue));
  box-shadow: 0 0 12px rgba(87, 230, 215, 0.5);
}

.landing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(87, 230, 215, 0.38);
  color: #dffbfa;
  font-size: 0.83rem;
  font-weight: 700;
  padding-bottom: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.landing-text-link:hover {
  border-color: var(--landing-cyan);
  color: var(--landing-cyan);
}

/* Hero */
.landing-hero {
  position: relative;
  padding: 178px 0 0;
}

.landing-hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(1500px, 100%);
  height: 790px;
  background: radial-gradient(ellipse at 70% 30%, rgba(35, 129, 226, 0.1), transparent 53%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.landing-hero-grid {
  position: absolute;
  z-index: -2;
  top: 90px;
  right: -6%;
  width: 58%;
  height: 650px;
  border-left: 1px solid rgba(108, 167, 226, 0.08);
  background-image:
    linear-gradient(rgba(93, 158, 222, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 158, 222, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.65;
  mask-image: radial-gradient(ellipse at center, black 18%, transparent 72%);
  transform: perspective(700px) rotateY(-8deg);
}

.landing-hero-layout {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.landing-hero-copy h1,
.landing-section-heading h2,
.landing-trust-copy h2,
.landing-audience-copy h2,
.landing-faq-intro h2,
.landing-cta-panel h2 {
  margin: 0;
  color: var(--landing-text);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.landing-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3.35rem, 5.15vw, 5.4rem);
}

.landing-hero-copy h1 em,
.landing-section-heading h2 em,
.landing-trust-copy h2 em,
.landing-audience-copy h2 em,
.landing-faq-intro h2 em,
.landing-cta-panel h2 em {
  color: var(--landing-blue);
  font-style: normal;
}

.landing-hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--landing-muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.7;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.landing-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 32px;
}

.landing-hero-tags span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6f86a3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.landing-hero-tags span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin-left: 9px;
  background: rgba(87, 230, 215, 0.6);
  content: "";
}

/* Regulatory console */
.regulatory-console {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(104, 175, 242, 0.28);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(9, 26, 56, 0.97), rgba(3, 11, 28, 0.98));
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.48), 0 0 90px rgba(35, 145, 244, 0.08), inset 0 1px rgba(255, 255, 255, 0.05);
}

.regulatory-console::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(79, 178, 255, 0.24), transparent 35%, rgba(87, 230, 215, 0.11));
  content: "";
  filter: blur(14px);
}

.console-topbar {
  display: grid;
  height: 47px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--landing-line);
  color: #7790ae;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29425f;
}

.console-dots i:first-child { background: #ff756c; }
.console-dots i:nth-child(2) { background: #f5bf5e; }
.console-dots i:last-child { background: var(--landing-cyan); }

.console-live {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: var(--landing-cyan);
}

.console-live i,
.console-analysis-head small i,
.trust-console-head small i,
.landing-system-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--landing-cyan);
  box-shadow: 0 0 12px rgba(87, 230, 215, 0.8);
  animation: landing-pulse 2.2s ease-in-out infinite;
}

.console-query {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin: 17px;
  padding: 11px 14px;
  border: 1px solid rgba(102, 171, 237, 0.23);
  border-radius: 11px;
  background: rgba(2, 10, 26, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.console-query-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(87, 230, 215, 0.22);
  border-radius: 8px;
  color: var(--landing-cyan);
  background: rgba(87, 230, 215, 0.06);
  font-size: 1.3rem;
}

.console-query small {
  display: block;
  margin-bottom: 3px;
  color: #607997;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.console-query p {
  margin: 0;
  color: #dce8f6;
  font-size: 0.77rem;
  font-weight: 500;
}

.console-query kbd {
  padding: 5px 8px;
  border: 1px solid rgba(126, 177, 227, 0.2);
  border-radius: 6px;
  color: #738da9;
  background: rgba(255, 255, 255, 0.025);
  font-family: inherit;
  font-size: 0.65rem;
  box-shadow: none;
}

.console-workspace {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 280px;
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.console-sources {
  padding: 18px 13px;
  border-right: 1px solid var(--landing-line);
  background: rgba(2, 8, 22, 0.42);
}

.console-sources > p {
  margin: 0 7px 13px;
  color: #58708d;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-source {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  margin-bottom: 6px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #8197b1;
  background: rgba(255, 255, 255, 0.018);
}

.console-source.is-active {
  border-color: rgba(46, 155, 255, 0.24);
  color: #dcecff;
  background: linear-gradient(90deg, rgba(46, 155, 255, 0.13), rgba(46, 155, 255, 0.025));
}

.console-source span {
  color: #526985;
  font-size: 0.48rem;
  font-weight: 700;
}

.console-source strong {
  overflow: hidden;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-source i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d4b68;
}

.console-source.is-active i {
  background: var(--landing-cyan);
  box-shadow: 0 0 9px rgba(87, 230, 215, 0.65);
}

.console-analysis {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background-image:
    linear-gradient(rgba(89, 144, 201, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 144, 201, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.console-analysis-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7088a4;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-analysis-head small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--landing-cyan);
  font-size: inherit;
}

.console-answer {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 17px;
  border: 1px solid rgba(106, 173, 235, 0.21);
  border-radius: 11px;
  background: linear-gradient(140deg, rgba(11, 34, 67, 0.8), rgba(4, 14, 34, 0.88));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.console-ai-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(87, 230, 215, 0.28);
  border-radius: 8px;
  color: var(--landing-cyan);
  background: rgba(87, 230, 215, 0.07);
  font-size: 0.56rem;
  font-weight: 800;
}

.console-answer strong {
  color: #e7f3ff;
  font-size: 0.68rem;
}

.console-answer p {
  margin: 8px 0 0;
  color: #91a7bf;
  font-size: 0.6rem;
  line-height: 1.6;
}

.console-answer-lines {
  display: grid;
  gap: 6px;
  margin-top: 13px;
}

.console-answer-lines i {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(89, 150, 214, 0.32), rgba(89, 150, 214, 0.08));
}

.console-answer-lines i:nth-child(2) { width: 91%; }
.console-answer-lines i:nth-child(3) { width: 68%; }

.console-citations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.console-citations span {
  padding: 5px 7px;
  border: 1px solid rgba(87, 230, 215, 0.13);
  border-radius: 5px;
  color: #69978f;
  background: rgba(87, 230, 215, 0.035);
  font-size: 0.45rem;
  font-weight: 700;
}

.console-scan {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 230, 215, 0.7), transparent);
  box-shadow: 0 0 12px rgba(87, 230, 215, 0.46);
  animation: console-scan 5.5s ease-in-out infinite;
}

.console-pipeline {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.console-pipeline span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #5f7792;
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.console-pipeline span i {
  color: #6d8c89;
  font-style: normal;
}

.console-pipeline span.is-current,
.console-pipeline span.is-current i {
  color: var(--landing-cyan);
}

.console-pipeline b {
  width: 24px;
  height: 1px;
  margin: 0 8px;
  background: rgba(119, 168, 216, 0.17);
}

.console-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(110, 186, 247, 0.24);
  border-radius: 9px;
  background: rgba(4, 15, 35, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  animation: console-float 5s ease-in-out infinite;
}

.console-float-source {
  bottom: 74px;
  left: -35px;
}

.console-float-status {
  top: 75px;
  right: -25px;
  animation-delay: -2.5s;
}

.console-float > i,
.console-float > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 7px;
  color: var(--landing-cyan);
  background: rgba(87, 230, 215, 0.08);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 800;
}

.console-float > span {
  width: auto;
  padding-inline: 6px;
  color: var(--landing-blue-soft);
  background: rgba(46, 155, 255, 0.08);
}

.console-float p { margin: 0; }
.console-float small { display: block; color: #58718e; font-size: 0.42rem; font-weight: 800; letter-spacing: 0.09em; }
.console-float strong { display: block; margin-top: 2px; color: #bed0e2; font-size: 0.51rem; font-weight: 600; }

/* Metrics */
.landing-metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.landing-metrics > div {
  min-height: 118px;
  padding: 26px 24px;
}

.landing-metrics > div + div {
  border-left: 1px solid var(--landing-line);
}

.landing-metrics-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-metrics-intro span {
  color: var(--landing-blue-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.landing-metrics-intro p {
  max-width: 220px;
  margin: 7px 0 0;
  color: #8195ae;
  font-size: 0.78rem;
}

.landing-metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-metric strong {
  color: #eef7ff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.landing-metric span {
  color: #7187a5;
  font-size: 0.62rem;
  line-height: 1.4;
}

/* Shared sections */
.landing-section {
  position: relative;
  padding: 150px 0;
}

.landing-section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.landing-section-heading h2,
.landing-trust-copy h2,
.landing-audience-copy h2,
.landing-faq-intro h2,
.landing-cta-panel h2 {
  font-size: clamp(2.45rem, 4.5vw, 4.25rem);
}

.landing-section-heading > p,
.landing-audience-copy > p,
.landing-faq-intro > p,
.landing-cta-panel > div > p:last-child {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Flow */
.landing-flow-section {
  padding-top: 170px;
}

.landing-flow-section::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: -10rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(27, 135, 207, 0.06);
  content: "";
  filter: blur(110px);
}

.landing-flow {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.landing-flow li {
  position: relative;
  min-height: 282px;
  padding: 28px;
}

.landing-flow li + li {
  border-left: 1px solid var(--landing-line);
}

.landing-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 82px;
  right: -11px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  color: #5f7895;
  background: var(--landing-bg);
  content: "→";
  font-size: 0.57rem;
}

.flow-number {
  color: #4b6584;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.flow-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 28px;
  place-items: center;
  border: 1px solid rgba(77, 167, 247, 0.28);
  border-radius: 14px;
  color: var(--landing-blue-soft);
  background: linear-gradient(145deg, rgba(46, 155, 255, 0.11), rgba(87, 230, 215, 0.035));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 12px 34px rgba(0, 0, 0, 0.18);
  font-size: 1.25rem;
  font-weight: 600;
}

.landing-flow h3 {
  margin: 24px 0 9px;
  color: #edf6ff;
  font-size: 1.08rem;
  font-weight: 600;
}

.landing-flow p {
  margin: 0;
  color: #7e93ad;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Features */
.landing-resources-section {
  background: linear-gradient(180deg, transparent, rgba(4, 15, 35, 0.52) 22%, rgba(4, 15, 35, 0.52) 78%, transparent);
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.landing-feature-card {
  position: relative;
  min-height: 322px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--landing-line);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(8, 24, 51, 0.78), rgba(3, 11, 27, 0.86));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-feature-card::after {
  position: absolute;
  top: -100%;
  left: -45%;
  width: 40%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(106, 192, 255, 0.055), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(22deg);
  transition: left 0.7s ease;
}

.landing-feature-card:hover {
  border-color: rgba(110, 181, 247, 0.34);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.landing-feature-card:hover::after { left: 120%; }

.feature-index {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #465f7e;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-icon {
  position: relative;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  border: 1px solid rgba(83, 173, 253, 0.27);
  border-radius: 14px;
  background: rgba(46, 155, 255, 0.065);
}

.feature-icon-radar::before,
.feature-icon-radar::after {
  position: absolute;
  border: 1px solid rgba(87, 230, 215, 0.46);
  border-radius: 50%;
  content: "";
}

.feature-icon-radar::before { width: 29px; height: 29px; }
.feature-icon-radar::after { width: 13px; height: 13px; }
.feature-icon-radar i { width: 3px; height: 3px; border-radius: 50%; background: var(--landing-cyan); box-shadow: 0 0 8px var(--landing-cyan); }

.feature-icon-file i {
  position: relative;
  width: 25px;
  height: 31px;
  border: 1px solid var(--landing-blue-soft);
  border-radius: 3px;
}

.feature-icon-file i::before,
.feature-icon-file i::after {
  position: absolute;
  right: 5px;
  left: 5px;
  height: 1px;
  background: rgba(117, 188, 255, 0.7);
  content: "";
}

.feature-icon-file i::before { top: 12px; }
.feature-icon-file i::after { top: 18px; }
.feature-icon-file b { position: absolute; right: 14px; bottom: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--landing-cyan); box-shadow: 0 0 9px rgba(87, 230, 215, 0.65); }

.feature-icon-compare { gap: 5px; }
.feature-icon-compare i { position: relative; width: 16px; height: 27px; border: 1px solid rgba(117, 188, 255, 0.7); border-radius: 3px; }
.feature-icon-compare i:first-child { transform: translateY(-3px); }
.feature-icon-compare i:last-child { border-color: rgba(87, 230, 215, 0.7); transform: translateY(3px); }

.feature-icon-source { align-items: flex-start; gap: 4px; padding-top: 13px; }
.feature-icon-source i { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(117, 188, 255, 0.34); border-radius: 5px; color: var(--landing-blue-soft); font-size: 0.49rem; font-style: normal; font-weight: 800; }
.feature-icon-source i:last-child { border-color: rgba(87, 230, 215, 0.36); color: var(--landing-cyan); transform: translateY(9px); }

.feature-icon-monitor i { position: absolute; bottom: 16px; left: 14px; width: 30px; height: 18px; border-bottom: 1px solid rgba(117, 188, 255, 0.5); }
.feature-icon-monitor i::before { position: absolute; bottom: 4px; left: 0; width: 100%; height: 16px; background: linear-gradient(135deg, transparent 0 28%, var(--landing-blue) 29% 33%, transparent 34% 52%, var(--landing-cyan) 53% 57%, transparent 58%); content: ""; }
.feature-icon-monitor b { position: absolute; top: 13px; right: 13px; width: 5px; height: 5px; border-radius: 50%; background: var(--landing-cyan); box-shadow: 0 0 8px rgba(87, 230, 215, 0.7); }

.feature-icon-levels { align-items: flex-end; gap: 4px; padding-bottom: 13px; }
.feature-icon-levels i { width: 5px; border-radius: 2px; background: linear-gradient(to top, var(--landing-blue), var(--landing-cyan)); }
.feature-icon-levels i:first-child { height: 9px; opacity: 0.4; }
.feature-icon-levels i:nth-child(2) { height: 16px; opacity: 0.58; }
.feature-icon-levels i:nth-child(3) { height: 23px; opacity: 0.76; }
.feature-icon-levels i:last-child { height: 31px; }

.landing-feature-card h3 {
  margin: 0 0 12px;
  color: #edf6ff;
  font-size: 1.08rem;
  font-weight: 600;
}

.landing-feature-card p {
  margin: 0;
  color: #879bb4;
  font-size: 0.84rem;
  line-height: 1.72;
}

/* Trust */
.landing-trust-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 100px;
}

.landing-trust-console {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--landing-line-strong);
  border-radius: var(--landing-radius);
  background:
    linear-gradient(rgba(82, 151, 217, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 151, 217, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(31, 151, 223, 0.14), transparent 35%),
    linear-gradient(155deg, rgba(8, 26, 55, 0.94), rgba(2, 9, 24, 0.98));
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: var(--landing-shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.trust-console-head {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--landing-line);
  color: #738aa5;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.trust-console-head small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--landing-cyan);
  font-size: inherit;
}

.trust-console-core {
  position: relative;
  display: grid;
  height: 340px;
  place-items: center;
}

.trust-orbit {
  position: absolute;
  border: 1px solid rgba(93, 181, 245, 0.16);
  border-radius: 50%;
}

.trust-orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--landing-cyan);
  box-shadow: 0 0 12px rgba(87, 230, 215, 0.8);
  content: "";
}

.trust-orbit-one { width: 238px; height: 238px; animation: landing-rotate 14s linear infinite; }
.trust-orbit-two { width: 170px; height: 170px; border-style: dashed; animation: landing-rotate 10s linear infinite reverse; }

.trust-core {
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(87, 230, 215, 0.46);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 230, 215, 0.15), rgba(4, 17, 36, 0.92));
  box-shadow: 0 0 50px rgba(46, 155, 255, 0.18), inset 0 0 30px rgba(87, 230, 215, 0.08);
}

.trust-core span { color: #e5fffc; font-size: 1.45rem; font-weight: 600; letter-spacing: -0.04em; }
.trust-core small { color: var(--landing-cyan); font-size: 0.39rem; font-weight: 800; letter-spacing: 0.14em; }

.trust-console-log {
  margin: 0 20px 20px;
  padding: 8px 14px;
  border: 1px solid rgba(103, 169, 230, 0.17);
  border-radius: 10px;
  background: rgba(1, 8, 21, 0.78);
}

.trust-console-log p {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 0;
  color: #748da8;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
}

.trust-console-log p + p { border-top: 1px solid rgba(112, 166, 219, 0.08); }
.trust-console-log p span { color: #405b77; }
.trust-console-log p strong { color: var(--landing-cyan); font-size: 0.5rem; letter-spacing: 0.07em; }

.landing-trust-lead {
  margin: 26px 0 0;
  color: var(--landing-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.landing-trust-list {
  margin: 36px 0 30px;
  padding: 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.landing-trust-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--landing-line);
}

.landing-trust-list li > span {
  color: #4e6988;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.landing-trust-list strong,
.landing-trust-list small {
  display: block;
}

.landing-trust-list strong {
  color: #e7f1fb;
  font-size: 0.9rem;
  font-weight: 600;
}

.landing-trust-list small {
  margin-top: 5px;
  color: #8196af;
  font-size: 0.76rem;
  line-height: 1.6;
}

/* Audience */
.landing-audience-section {
  border-top: 1px solid rgba(118, 170, 222, 0.08);
  border-bottom: 1px solid rgba(118, 170, 222, 0.08);
  background: rgba(3, 11, 28, 0.38);
}

.landing-audience-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 100px;
}

.landing-audience-copy > p:last-child {
  max-width: 500px;
  margin-top: 26px;
}

.landing-audience-list {
  border-top: 1px solid var(--landing-line);
}

.landing-audience-list span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  border-bottom: 1px solid var(--landing-line);
  color: #cbd9e8;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding 0.2s ease, background 0.2s ease;
}

.landing-audience-list span:hover {
  padding-inline: 12px;
  color: #fff;
  background: linear-gradient(90deg, rgba(46, 155, 255, 0.055), transparent);
}

.landing-audience-list i {
  color: var(--landing-blue);
  font-style: normal;
}

/* FAQ */
.landing-faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 110px;
}

.landing-faq-intro {
  position: sticky;
  top: 126px;
}

.landing-faq-intro > p {
  max-width: 410px;
  margin: 26px 0;
}

.landing-faq-list {
  border-top: 1px solid var(--landing-line-strong);
}

.landing-faq-list details {
  border-bottom: 1px solid var(--landing-line);
}

.landing-faq-list summary {
  display: grid;
  min-height: 88px;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 8px;
  color: #dce8f5;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  list-style: none;
  transition: color 0.2s ease;
}

.landing-faq-list summary::-webkit-details-marker { display: none; }
.landing-faq-list summary > span { color: #547191; font-size: 0.56rem; font-weight: 800; letter-spacing: 0.12em; }

.landing-faq-list summary > i {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
}

.landing-faq-list summary > i::before,
.landing-faq-list summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--landing-blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.landing-faq-list summary > i::after { transform: translate(-50%, -50%) rotate(90deg); }
.landing-faq-list details[open] summary { color: var(--landing-blue-soft); }
.landing-faq-list details[open] summary > i::after { transform: translate(-50%, -50%) rotate(0); }

.landing-faq-list details > div {
  padding: 0 34px 26px 46px;
}

.landing-faq-list details p {
  max-width: 650px;
  margin: 0;
  color: #879bb3;
  font-size: 0.85rem;
  line-height: 1.75;
}

/* Final CTA */
.landing-final-cta {
  padding: 30px 0 150px;
}

.landing-cta-panel {
  position: relative;
  display: grid;
  min-height: 405px;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 70px 78px;
  border: 1px solid rgba(87, 169, 244, 0.33);
  border-radius: var(--landing-radius);
  background:
    radial-gradient(circle at 85% 50%, rgba(87, 230, 215, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(8, 35, 73, 0.96), rgba(3, 13, 34, 0.98));
  box-shadow: var(--landing-shadow), inset 0 1px rgba(255, 255, 255, 0.05);
}

.landing-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(89, 155, 218, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 155, 218, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at 75% 50%, black, transparent 62%);
  pointer-events: none;
}

.landing-cta-panel > *:not(.landing-cta-grid) { position: relative; z-index: 1; }
.landing-cta-panel > div > p:last-child { margin-top: 23px; }

.landing-round-cta {
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(180, 224, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #177ee3, #2e9bff 55%, #39b9c4);
  box-shadow: 0 20px 58px rgba(32, 145, 240, 0.32), inset 0 1px rgba(255, 255, 255, 0.27);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-round-cta b {
  position: absolute;
  top: 32px;
  right: 38px;
  font-size: 1.05rem;
  font-weight: 400;
}

.landing-round-cta:hover {
  box-shadow: 0 26px 72px rgba(32, 145, 240, 0.42), inset 0 1px rgba(255, 255, 255, 0.3);
  transform: rotate(-3deg) scale(1.035);
}

/* Footer */
.landing-footer {
  position: relative;
  padding: 72px 0 26px;
  border-top: 1px solid var(--landing-line);
  background: #01040d;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.65fr 0.8fr 0.85fr;
  gap: 60px;
  padding-bottom: 65px;
}

.landing-footer-brand img {
  width: 142px;
  height: auto;
}

.landing-footer-brand p {
  max-width: 280px;
  margin: 18px 0 20px;
  color: #7c91aa;
  font-size: 0.86rem;
}

.landing-footer-brand > span {
  color: #4f6885;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.landing-footer-brand > span a { color: var(--landing-blue-soft); }

.landing-footer-column,
.landing-footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.landing-footer-column strong,
.landing-footer-contact > strong {
  margin-bottom: 7px;
  color: #55708f;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.landing-footer-column a,
.landing-footer-contact > a {
  color: #8ea2b9;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.landing-footer-column a:hover,
.landing-footer-contact > a:hover { color: #fff; }

.landing-socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.landing-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  color: #7288a2;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-socials a:hover {
  border-color: rgba(87, 230, 215, 0.3);
  color: var(--landing-cyan);
  transform: translateY(-2px);
}

.landing-socials svg { width: 15px; height: 15px; fill: currentColor; }

.landing-footer-bottom {
  display: flex;
  min-height: 52px;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(116, 165, 214, 0.1);
  color: #415a77;
  font-size: 0.72rem;
}

.landing-system-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #52746e;
}

/* PredictAI family system: Aria keeps its own product expression while using
   the same palette, editorial contrast and precise geometry as the parent. */
.landing-page ::selection { color: var(--landing-bg); background: var(--landing-cyan); }
.landing-brand { gap: 13px; }
.landing-brand-signature {
  padding-left: 13px;
  border-left: 1px solid var(--landing-line);
  color: var(--landing-muted-dark);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.landing-brand-signature strong { color: var(--landing-blue-soft); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.landing-nav-shell,
.landing-nav,
.landing-menu-toggle,
.landing-button,
.regulatory-console,
.console-query,
.console-source,
.console-answer,
.landing-feature-card,
.flow-symbol,
.landing-trust-console,
.trust-console-log { border-radius: 2px; }
.landing-nav-shell {
  border-color: var(--landing-line);
  background: rgba(5, 7, 13, 0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.landing-button-primary {
  border-color: var(--landing-blue);
  color: var(--landing-bg);
  background: var(--landing-blue);
  box-shadow: 0 14px 34px rgba(35, 121, 255, 0.2);
}
.landing-button-primary span { color: var(--landing-cyan); }
.landing-button-primary:hover {
  border-color: var(--landing-blue-light);
  color: var(--landing-bg);
  background: var(--landing-blue-light);
  box-shadow: 0 18px 42px rgba(35, 121, 255, 0.3);
}
.landing-button-secondary { border-color: var(--landing-line); background: rgba(255, 255, 255, 0.018); }
.landing-hero-copy h1 em,
.landing-section-heading h2 em,
.landing-trust-copy h2 em,
.landing-audience-copy h2 em,
.landing-faq-intro h2 em,
.landing-cta-panel h2 em {
  color: var(--landing-cyan);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}
.landing-eyebrow { color: var(--landing-blue); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; }
.landing-eyebrow span { background: var(--landing-blue); box-shadow: none; }
.landing-hero::before {
  position: absolute;
  z-index: -2;
  top: -8rem;
  right: -19rem;
  width: 52rem;
  height: 52rem;
  border: 1px solid rgba(35, 121, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(35, 121, 255, 0.012), 0 0 0 17rem rgba(35, 121, 255, 0.009);
  content: "";
}
.regulatory-console {
  border-color: rgba(35, 121, 255, 0.28);
  background: linear-gradient(145deg, rgba(16, 24, 42, 0.9), rgba(5, 7, 13, 0.98));
}
.console-live,
.console-analysis-head small { color: var(--landing-success); }
.console-live i,
.console-analysis-head small i,
.landing-system-status i { background: var(--landing-success); box-shadow: 0 0 12px rgba(108, 240, 176, 0.65); }
.console-source.is-active { border-color: rgba(35, 121, 255, 0.32); background: rgba(35, 121, 255, 0.11); box-shadow: inset 2px 0 var(--landing-cyan); }
.landing-metrics { border-color: var(--landing-line); background: rgba(16, 24, 42, 0.52); }
.landing-metric strong { color: var(--landing-text); }

.landing-resources-section {
  color: #05070d;
  background: #f4f7fb;
}
.landing-resources-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(35, 121, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(35, 121, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}
.landing-resources-section .landing-section-heading,
.landing-resources-section .landing-feature-grid { position: relative; z-index: 1; }
.landing-resources-section .landing-section-heading h2 { color: #05070d; }
.landing-resources-section .landing-section-heading h2 em { color: #c7005d; }
.landing-resources-section .landing-section-heading > p { color: #5f6f7a; }
.landing-resources-section .landing-eyebrow { color: #1859c9; }
.landing-resources-section .landing-feature-card {
  border-color: #cbd5df;
  color: #05070d;
  background: rgba(249, 251, 255, 0.96);
  box-shadow: 0 14px 38px rgba(11, 16, 32, 0.045);
}
.landing-resources-section .landing-feature-card:hover { border-color: rgba(35, 121, 255, 0.55); box-shadow: 0 28px 64px rgba(11, 16, 32, 0.11); }
.landing-resources-section .landing-feature-card h3 { color: #0b1020; }
.landing-resources-section .landing-feature-card p { color: #5f6f7a; }
.landing-resources-section .feature-index { color: #71869a; }
.landing-resources-section .feature-icon { border-color: rgba(35, 121, 255, 0.24); background: rgba(35, 121, 255, 0.07); }
.landing-cta-panel { border-color: rgba(35, 121, 255, 0.36); background: radial-gradient(circle at 84% 50%, rgba(255, 8, 119, 0.09), transparent 27%), linear-gradient(145deg, #10182a, #05070d); }
.landing-round-cta { border-color: var(--landing-blue); color: var(--landing-bg); background: var(--landing-blue); box-shadow: 0 22px 58px rgba(35, 121, 255, 0.26), inset 0 -3px var(--landing-cyan); }
.landing-round-cta b { color: var(--landing-cyan); }
.landing-footer { background: var(--landing-bg-deep); }

/* Progressive enhancement: content is never hidden. */
.landing-page [data-reveal] {
  transform: translateY(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-js .landing-page [data-reveal]:not(.is-visible) {
  transform: translateY(14px);
}

.landing-js .landing-page [data-reveal].is-visible {
  transform: translateY(0);
}

/* Translate isolation */
html,
body,
html.translated-ltr,
html.translated-rtl,
html.translated-ltr body,
html.translated-rtl body {
  top: 0 !important;
  margin-top: 0 !important;
}

iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-menu-frame.skiptranslate,
#goog-gt-tt,
.goog-tooltip,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

#gt-mordadam-43217984,
#gt-mordadam-43217984 * {
  transform: none;
}

/* Animations */
@keyframes console-scan {
  0%, 12% { top: 0; opacity: 0; }
  20% { opacity: 0.75; }
  76% { opacity: 0.75; }
  88%, 100% { top: 100%; opacity: 0; }
}

@keyframes console-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes landing-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.76); }
}

@keyframes landing-rotate {
  to { transform: rotate(360deg); }
}

/* Full HD uses the available canvas instead of scaling a tablet-sized layout
   into the center of the screen. Content measures still stay readable. */
@media (min-width: 1600px) {
  .landing-hero { padding-top: 188px; }
  .landing-hero-layout { min-height: 680px; gap: 88px; }
  .landing-hero-lead { font-size: 1.125rem; }
  .regulatory-console { min-height: 560px; }
  .console-workspace { min-height: 310px; }
  .landing-metrics { margin-top: 64px; }
}

/* Responsive */
@media (max-width: 1160px) {
  .landing-hero-layout { grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr); gap: 42px; }
  .landing-hero-copy h1 { font-size: clamp(3.25rem, 5.4vw, 4.7rem); }
  .console-float-source { left: -14px; }
  .console-float-status { right: -12px; }
  .landing-metrics > div { padding-inline: 17px; }
  .landing-trust-layout { gap: 68px; }
  .landing-audience-layout,
  .landing-faq-layout { gap: 72px; }
}

@media (max-width: 1024px) {
  .landing-nav-links { gap: 18px; }
  .landing-nav-actions { gap: 10px; }
  .landing-translate { display: none; }
  .landing-feature-card { padding: 25px; }
  .landing-footer-grid { grid-template-columns: 1.4fr repeat(3, 0.75fr); gap: 36px; }
}

@media (max-width: 960px) {
  .landing-shell { width: min(100% - 36px, 760px); }
  .landing-header { top: max(16px, calc(env(safe-area-inset-top, 0px) + 8px)); }
  .landing-nav-shell { position: relative; min-height: 62px; padding: 8px 9px 8px 16px; }
  .landing-brand img { width: 142px; }
  .landing-brand-signature { display: none; }
  .landing-menu-toggle { position: relative; display: flex; align-items: center; justify-content: center; }
  .landing-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(139, 189, 238, 0.25);
    border-radius: 15px;
    background: rgba(3, 10, 27, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(20px);
  }
  .landing-nav.is-open { display: flex; }
  .landing-nav-links,
  .landing-nav-actions { align-items: stretch; flex-direction: column; gap: 0; margin: 0; }
  .landing-nav-links a,
  .landing-login-link { display: flex; min-height: 48px; align-items: center; border-bottom: 1px solid var(--landing-line); font-size: 0.86rem; }
  .landing-nav-links a::after { display: none; }
  .landing-nav-actions { gap: 10px; }
  .landing-nav-actions .landing-login-link { border-bottom: 0; }
  .landing-nav-actions .landing-button { width: 100%; }
  .landing-translate { display: flex; min-height: 36px; justify-content: flex-start; }
  body.menu-open { overflow: hidden; }

  .landing-hero { padding-top: max(150px, calc(env(safe-area-inset-top, 0px) + 142px)); }
  .landing-hero-layout { grid-template-columns: 1fr; gap: 52px; }
  .landing-hero-copy { max-width: 690px; padding: 26px 0 0; }
  .landing-hero-copy h1 { max-width: 700px; font-size: clamp(3.5rem, 9vw, 5rem); }
  .landing-hero-lead { max-width: 650px; }
  .regulatory-console { max-width: 700px; margin: 0 auto; }
  .landing-hero-grid { top: 510px; width: 110%; }
  .landing-metrics { grid-template-columns: repeat(4, 1fr); margin-top: 96px; }
  .landing-metrics-intro { grid-column: 1 / -1; min-height: 92px !important; border-bottom: 1px solid var(--landing-line); }
  .landing-metrics > div:nth-child(2) { border-left: 0; }

  .landing-section { padding: 120px 0; }
  .landing-section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 48px; }
  .landing-section-heading > p { max-width: 620px; }
  .landing-flow { grid-template-columns: repeat(2, 1fr); }
  .landing-flow li:nth-child(3) { border-left: 0; border-top: 1px solid var(--landing-line); }
  .landing-flow li:nth-child(4) { border-top: 1px solid var(--landing-line); }
  .landing-flow li:nth-child(2)::after { display: none; }
  .landing-feature-grid { grid-template-columns: repeat(2, 1fr); }

  .landing-trust-layout { grid-template-columns: 1fr; gap: 68px; }
  .landing-trust-console { width: min(100%, 620px); min-height: 550px; margin-inline: auto; }
  .landing-trust-copy { max-width: 690px; }
  .landing-audience-layout { grid-template-columns: 1fr; gap: 55px; }
  .landing-faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .landing-faq-intro { position: static; }
  .landing-faq-intro > p { max-width: 620px; }
  .landing-cta-panel { padding: 58px; }
  .landing-footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr); }
  .landing-footer-contact { grid-column: 2 / 3; }
}

@media (max-width: 700px) {
  .landing-shell { width: min(100% - 28px, 620px); }
  .landing-hero { padding-top: 126px; }
  .landing-hero-copy h1 { font-size: clamp(2.8rem, 13.2vw, 4.25rem); }
  .landing-hero-lead { font-size: 0.97rem; }
  .landing-hero-tags { gap: 8px 12px; }
  .landing-hero-tags span:not(:last-child)::after { margin-left: 3px; }

  .console-topbar { grid-template-columns: auto 1fr auto; gap: 10px; }
  .console-topbar > span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .console-query { margin: 12px; }
  .console-workspace { grid-template-columns: 1fr; }
  .console-sources { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; padding: 12px; border-right: 0; border-bottom: 1px solid var(--landing-line); }
  .console-sources > p { grid-column: 1 / -1; margin: 0 4px 6px; }
  .console-source { margin: 0; }
  .console-analysis { min-height: 255px; }
  .console-pipeline { padding-inline: 10px; }
  .console-pipeline b { width: 10px; margin-inline: 5px; }
  .console-float { display: none; }

  .landing-metrics { grid-template-columns: repeat(2, 1fr); }
  .landing-metrics > div { min-height: 105px; }
  .landing-metrics > div:nth-child(4) { border-left: 0; border-top: 1px solid var(--landing-line); }
  .landing-metrics > div:nth-child(5) { border-top: 1px solid var(--landing-line); }

  .landing-section-heading h2,
  .landing-trust-copy h2,
  .landing-audience-copy h2,
  .landing-faq-intro h2,
  .landing-cta-panel h2 { font-size: clamp(2.25rem, 10.5vw, 3.45rem); }
  .landing-flow li { min-height: 245px; padding: 22px; }
  .landing-feature-grid { grid-template-columns: 1fr; }
  .landing-feature-card { min-height: 290px; }
  .landing-cta-panel { min-height: 530px; grid-template-columns: 1fr; justify-items: start; padding: 44px 34px; }
  .landing-round-cta { width: 148px; height: 148px; justify-self: end; font-size: 0.95rem; }
  .landing-round-cta b { top: 25px; right: 31px; }
  .landing-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-footer-brand { grid-column: 1 / -1; }
  .landing-footer-contact { grid-column: auto; }
}

@media (max-width: 480px) {
  .landing-shell { width: min(100% - 22px, 440px); }
  .landing-nav-shell { border-radius: 14px; }
  .landing-brand img { width: 128px; }
  .landing-menu-toggle { width: 42px; height: 42px; }
  .landing-hero-copy h1 { font-size: clamp(2.65rem, 13.5vw, 3.6rem); }
  .landing-hero-actions { align-items: stretch; flex-direction: column; }
  .landing-hero-actions .landing-button { width: 100%; }
  .landing-hero-tags span { font-size: 0.52rem; }
  .landing-hero-tags span::after { display: none; }

  .console-topbar { height: 43px; padding-inline: 11px; }
  .console-query { grid-template-columns: auto 1fr; min-height: 72px; padding: 9px; }
  .console-query kbd { display: none; }
  .console-query p { font-size: 0.69rem; }
  .console-sources { grid-template-columns: 1fr; }
  .console-analysis { padding: 13px; }
  .console-analysis-head small { display: none; }
  .console-answer { margin-top: 14px; padding: 13px; }
  .console-citations span:last-child { display: none; }
  .console-pipeline span { font-size: 0.39rem; }
  .console-pipeline b { width: 5px; margin-inline: 3px; }

  .landing-metrics > div { padding: 20px 14px; }
  .landing-metric { align-items: flex-start; flex-direction: column; gap: 4px; }
  .landing-metric span br { display: none; }
  .landing-flow { grid-template-columns: 1fr; }
  .landing-flow li { min-height: auto; padding: 24px 20px 28px; }
  .landing-flow li + li { border-top: 1px solid var(--landing-line); border-left: 0; }
  .landing-flow li::after { display: none; }
  .flow-symbol { width: 50px; height: 50px; margin-top: 20px; }
  .landing-trust-console { min-height: 510px; }
  .trust-console-core { height: 300px; }
  .trust-orbit-one { width: 206px; height: 206px; }
  .trust-orbit-two { width: 145px; height: 145px; }
  .trust-core { width: 92px; height: 92px; }
  .trust-console-log { margin-inline: 12px; padding-inline: 10px; }
  .trust-console-log p { grid-template-columns: 20px 1fr auto; font-size: 0.52rem; }
  .landing-trust-list li { grid-template-columns: 30px 1fr; }
  .landing-audience-list span { min-height: 58px; font-size: 0.82rem; }
  .landing-faq-list summary { min-height: 82px; grid-template-columns: 30px 1fr 20px; font-size: 0.84rem; }
  .landing-faq-list details > div { padding: 0 20px 24px 38px; }
  .landing-cta-panel { min-height: 500px; padding: 38px 25px; }
  .landing-final-cta { padding-bottom: 100px; }
  .landing-footer { padding-top: 55px; }
  .landing-footer-grid { gap: 38px 24px; }
  .landing-footer-contact { grid-column: 1 / -1; }
  .landing-footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .landing-page [data-reveal] { transform: none !important; }
}

@media (prefers-contrast: more) {
  :root {
    --landing-muted: #ced9e8;
    --landing-muted-dark: #9eb0c6;
    --landing-line: rgba(184, 219, 255, 0.35);
    --landing-line-strong: rgba(184, 219, 255, 0.62);
  }
}
