@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap";
:root {
  font-family: Inter, system-ui, sans-serif;
  color: #0a1b35;
  background: #f5f8fb;
  font-synthesis: none;
  --nav: #031a2b;
  --nav2: #06263b;
  --ink: #0a1b35;
  --muted: #667792;
  --line: #dce6ee;
  --cyan: #12c9ee;
  --blue: #087bf0;
  --green: #19b879;
  --red: #df3d46;
  --paper: #fff;
  --soft: #f5f8fb;
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(18, 201, 238, 0.35);
  outline-offset: 2px;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.primary,
.secondary,
.ghost,
.outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  transition: 0.18s ease;
}
.primary {
  background: #12c9ee;
  color: #001a28;
  box-shadow: 0 8px 24px #12c9ee33;
}
.primary:hover {
  background: #43daf5;
  transform: translateY(-1px);
}
.secondary {
  border: 1px solid #bfd0de;
  background: #fff;
}
.secondary:hover {
  border-color: #0f8dcc;
  background: #f5fbfe;
}
.ghost:hover {
  background: #edf4f8;
}
.large {
  padding: 15px 21px;
}
.full {
  width: 100%;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #0a83b9;
}
.eyebrow.danger {
  color: var(--red);
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family:
    Space Grotesk,
    Inter,
    sans-serif;
}
.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}
.icon-button:hover {
  background: #edf4f8;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.brand span {
  display: grid;
  text-align: left;
  color: #fff;
}
.brand strong {
  font-family: Space Grotesk;
  font-size: 20px;
  letter-spacing: 0.18em;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #a9c7d8;
}
.brand.compact span {
  display: none;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.avatar.initials {
  background: #d7eef6;
  color: #064765;
  font-size: 12px;
  font-weight: 800;
}
.avatar.small {
  width: 25px;
  height: 25px;
}
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.live-dot:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.marketing {
  background: #fff;
}
.marketing-nav {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #031a2bf7;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  border-bottom: 1px solid #17445b;
}
.marketing-nav nav {
  display: flex;
  gap: 34px;
  margin: auto;
  color: #bcd0db;
  font-size: 14px;
}
.marketing-nav nav a:hover {
  color: #fff;
}
.nav-actions {
  display: flex;
  gap: 8px;
}
.marketing-nav .ghost {
  color: #fff;
}
.hero {
  min-height: 760px;
  background: #031a2b;
  color: #fff;
  padding: 92px 5vw 80px;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(580px, 1.14fr);
  gap: 7vw;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  margin: 24px 0 30px;
  text-transform: uppercase;
}
.hero-copy > p {
  font-size: 20px;
  line-height: 1.65;
  color: #abc2d0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}
.hero-copy > small {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #89a8b9;
}
.hero-preview {
  background: #fff;
  color: var(--ink);
  border: 1px solid #1d4c62;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 90px #00000059;
  transform: perspective(1200px) rotateY(-3deg);
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Space Grotesk;
  font-size: 24px;
  font-weight: 700;
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  margin: 20px 0;
}
.preview-stats span {
  padding: 15px 8px;
  display: grid;
  color: var(--muted);
  font-size: 12px;
}
.preview-stats strong {
  font-size: 22px;
  color: var(--ink);
}
.preview-aura {
  display: flex;
  gap: 15px;
  background: #061e30;
  color: #fff;
  padding: 20px;
  border-radius: 13px;
  align-items: center;
}
.preview-aura img {
  width: 45px;
}
.preview-aura div {
  display: grid;
  gap: 6px;
}
.preview-aura small {
  color: var(--cyan);
  letter-spacing: 0.14em;
}
.preview-aura strong {
  font-size: 16px;
  line-height: 1.5;
}
.preview-rows {
  display: grid;
  margin-top: 10px;
}
.preview-rows span {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 13px;
}
.preview-rows b {
  font-size: 11px;
  color: var(--muted);
}
.one-workspace,
.cinematic,
.comparison,
.pricing {
  padding: 110px 7vw;
  text-align: center;
}
.one-workspace h2,
.cinematic h2,
.comparison h2,
.pricing h2 {
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.045em;
  margin: 15px 0;
}
.one-workspace > p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.product-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.product-strip span {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}
.cinematic {
  background: #031a2b;
  color: #fff;
}
.cinematic h2 {
  text-transform: uppercase;
}
.shield-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1050px;
  margin: 55px auto 35px;
}
.shield-row button {
  border: 1px solid #1f4c63;
  padding: 30px 15px;
  border-radius: 12px;
  color: #fff;
  display: grid;
  place-items: center;
  gap: 12px;
}
.shield-row button:hover {
  border-color: var(--cyan);
  background: #082b40;
  transform: translateY(-3px);
}
.shield-row svg {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}
.shield-row small {
  color: var(--green);
}
.cinematic > p {
  color: #b9ceda;
  font-size: 18px;
}
.threat-demo {
  padding: 100px 9vw;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12vw;
  align-items: center;
  background: #f7fafc;
}
.threat-demo h2 {
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 16px 0;
}
.threat-demo p {
  color: var(--muted);
  line-height: 1.6;
}
.threat-demo ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.threat-demo li {
  display: flex;
  gap: 9px;
}
.threat-demo li svg {
  color: var(--green);
}
.risk-card {
  background: #fff;
  border: 1px solid #f0c1c4;
  border-top: 4px solid var(--red);
  padding: 35px;
  border-radius: 16px;
  display: grid;
  gap: 14px;
}
.risk-card > span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 800;
}
.risk-card > strong {
  font-family: Space Grotesk;
  font-size: 76px;
}
.risk-card > strong small {
  font-size: 20px;
  color: var(--muted);
}
.feature-grid {
  padding: 100px 7vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-grid article {
  text-align: left;
  padding: 28px;
  border-top: 1px solid var(--line);
}
.feature-grid svg {
  color: var(--blue);
  width: 30px;
  height: 30px;
}
.feature-grid h3 {
  font-size: 22px;
  margin: 22px 0 10px;
}
.feature-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.compare-table {
  max-width: 980px;
  margin: 40px auto 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}
.compare-table > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-table > div:last-child {
  border: 0;
}
.compare-table span,
.compare-table strong {
  padding: 16px 22px;
}
.compare-table > div:first-child {
  background: #031a2b;
  color: #fff;
}
.ieta-cell {
  color: #0576a8;
  font-weight: 800;
  background: #eefbfe;
}
.comparison > small {
  color: var(--muted);
}
.pricing {
  background: #f6f9fb;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 45px auto 22px;
  max-width: 1200px;
  text-align: left;
}
.price-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.price-grid article.featured {
  border: 2px solid var(--cyan);
  box-shadow: 0 15px 40px #0553701f;
}
.price-grid article > b {
  color: #0576a8;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.price-grid h3 {
  font-size: 26px;
  margin-top: 16px;
}
.price-grid article > strong {
  font-family: Space Grotesk;
  font-size: 34px;
}
.price-grid article > strong small {
  font-size: 12px;
  color: var(--muted);
}
.price-grid p {
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.pricing-note {
  color: var(--muted);
  font-size: 13px;
}
.privacy {
  padding: 90px 10vw;
  display: flex;
  gap: 35px;
  align-items: center;
}
.privacy > svg {
  width: 85px;
  height: 85px;
  color: var(--green);
}
.privacy h2 {
  font-size: 44px;
  margin: 12px 0;
}
.privacy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.final-cta {
  padding: 100px 8vw;
  background: #061e30;
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-size: 72px;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.final-cta p {
  color: var(--cyan);
  font-size: 22px;
}
.marketing > footer {
  padding: 35px 5vw;
  background: #03131f;
  color: #8ba5b5;
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 11px;
}
.marketing > footer .brand {
  margin-right: auto;
}
.hero-actions .secondary {
  color: var(--ink) !important;
}
html body a.ieta-aura-conversations-launcher {
  display: none !important;
}
.live-principles {
  display: grid;
  gap: 0;
}
.principle-row {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.principle-row:last-child {
  border-bottom: 0;
}
.principle-row > svg:first-child {
  color: var(--blue);
  width: 27px;
  height: 27px;
}
.principle-row > svg:last-child {
  color: var(--green);
}
.principle-row span {
  display: grid;
  gap: 4px;
}
.principle-row small {
  color: var(--muted);
}
.session-required {
  min-height: 100vh;
  background: #031a2b;
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 30px;
}
.session-required > img {
  width: 78px;
  margin-bottom: 24px;
}
.session-required h1 {
  font-size: clamp(38px, 6vw, 68px);
  margin: 18px 0;
}
.session-required p {
  max-width: 600px;
  color: #a9c3d1;
  font-size: 18px;
  line-height: 1.65;
}
.session-required .primary {
  margin-top: 18px;
}
.source-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 31px;
  padding: 0 10px;
  border: 1px solid #9cdff0;
  border-radius: 999px;
  color: #047aa9;
  background: #effbfe;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.module-label {
  padding: 9px 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.sync-error {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff7e7;
  border: 1px solid #efd49a;
  border-radius: 10px;
  padding: 14px;
  margin: 14px;
}
.sync-error > svg {
  color: #b76d00;
  width: 26px;
  height: 26px;
}
.sync-error span {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.sync-error small {
  color: #795b29;
}
.sync-error button {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #075f88;
  font-weight: 700;
}
.loading-state.compact {
  padding: 16px;
}
.loading-state.compact span {
  height: 68px;
}
.loading-state.compact span:nth-child(2) {
  height: 68px;
}
.live-record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.record-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  min-height: 130px;
}
.record-card > svg {
  color: var(--blue);
  width: 27px;
  height: 27px;
}
.record-card h3 {
  font-size: 15px;
  margin: 2px 0 8px;
}
.record-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.record-card small {
  color: #8798a7;
  font-size: 10px;
}
.context-sidebar > button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 9px;
  border-radius: 9px;
  text-align: left;
}
.context-sidebar > button:hover,
.context-sidebar > button.selected {
  background: #dff5fc;
}
.context-sidebar > button > span:nth-child(2) {
  display: grid;
  min-width: 0;
}
.context-sidebar > button strong {
  font-size: 12px;
}
.context-sidebar > button small {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.icon-button:disabled,
.send:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.comparison {
  background: linear-gradient(180deg, #f6fafc, #fff);
  overflow: hidden;
}
.comparison-intro {
  max-width: 880px;
  margin: 0 auto;
}
.comparison-intro h2 {
  text-transform: uppercase;
  line-height: 0.96;
}
.comparison-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto;
}
.platform-landscape {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 52px auto 34px;
  text-align: left;
}
.platform-landscape article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 35px #052b420d;
}
.platform-landscape small {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #758899;
  font-weight: 800;
}
.platform-landscape h3 {
  font-size: 20px;
  margin: 16px 0 10px;
}
.platform-landscape p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.platform-landscape .ieta-platform {
  grid-column: 1/-1;
  min-height: auto;
  background: #041f32;
  color: #fff;
  border-color: #167896;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}
.ieta-platform small {
  color: var(--cyan);
}
.ieta-platform h3 {
  font-size: 25px;
  margin: 0;
}
.ieta-platform p {
  color: #a8c7d6;
}
.comparison blockquote {
  max-width: 980px;
  margin: 44px auto;
  padding: 4px 32px;
  border-left: 4px solid var(--cyan);
  font-family:
    Space Grotesk,
    Inter,
    sans-serif;
  font-size: clamp(24px, 3vw, 39px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: left;
  color: #08243a;
}
.comparison-table-wrap {
  max-width: 1320px;
  margin: 46px auto 18px;
  border: 1px solid #cddce5;
  border-radius: 16px;
  background: #fff;
  overflow: auto;
  box-shadow: 0 18px 55px #03243914;
}
.comparison table {
  width: 100%;
  min-width: 1160px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}
.comparison th,
.comparison td {
  padding: 16px 18px;
  border-right: 1px solid #e2eaf0;
  border-bottom: 1px solid #e2eaf0;
  font-size: 14px;
  line-height: 1.4;
  vertical-align: middle;
}
.comparison thead th {
  background: #031a2b;
  color: #fff;
  font-family: Space Grotesk;
  font-size: 14px;
  white-space: nowrap;
}
.comparison thead th:nth-child(2) {
  background: #075475;
  color: #fff;
}
.comparison tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 235px;
  background: #fff;
  font-weight: 700;
}
.comparison tbody tr:nth-child(2n) th,
.comparison tbody tr:nth-child(2n) td {
  background: #f9fbfc;
}
.comparison tbody tr:nth-child(2n) .ieta-cell {
  background: #e8f8fc;
}
.comparison .ieta-cell {
  background: #f0fbfd;
  color: #045b7f;
  font-weight: 800;
}
.comparison tr:last-child th,
.comparison tr:last-child td {
  border-bottom: 0;
}
.comparison th:last-child,
.comparison td:last-child {
  border-right: 0;
}
.comparison .status {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid #9eddeb;
  border-radius: 999px;
  background: #fff;
  color: #075d7d;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.comparison-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 20px;
  padding: 13px 18px;
  border: 1px solid #90aebe;
  border-radius: 10px;
  color: #075d7d;
  font-weight: 800;
}
.comparison-toggle:hover {
  border-color: var(--cyan);
  background: #effbfe;
}
.comparison-toggle svg {
  transition: transform 0.2s ease;
}
.comparison-toggle svg.rotate {
  transform: rotate(180deg);
}
.comparison-note {
  display: block;
  max-width: 940px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
}
.auth-page > aside {
  background: #031a2b;
  color: #fff;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-page aside h1 {
  font-size: 60px;
  letter-spacing: -0.05em;
  margin: 20px 0;
}
.auth-page aside p {
  font-size: 18px;
  color: #a9c3d1;
}
.auth-page aside > small {
  display: flex;
  gap: 8px;
  color: #96b1c0;
}
.auth-page > main {
  padding: 40px 9vw;
}
.back-link {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}
.flip {
  transform: rotate(180deg);
}
.auth-page form {
  max-width: 460px;
  margin: 10vh auto 0;
}
.auth-page form > img {
  width: 56px;
}
.auth-page form h2 {
  font-size: 34px;
  margin: 20px 0 8px;
}
.auth-page form > p {
  color: var(--muted);
  margin-bottom: 30px;
}
.auth-page label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  margin: 18px 0;
}
.auth-page input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  outline: 0;
}
.password-input {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.password-input input {
  border: 0;
}
.password-input button {
  padding: 0 15px;
  color: var(--blue);
}
.auth-page .submit {
  width: 100%;
  margin: 10px 0 20px;
}
.auth-page form > small {
  display: block;
  text-align: center;
  color: var(--muted);
}
.workspace-shell {
  height: 100vh;
  display: grid;
  grid-template-columns: 100px 1fr;
  background: #f6f9fb;
  overflow: hidden;
}
.side-rail {
  background: #031a2b;
  color: #bdd0dc;
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  z-index: 8;
}
.side-rail > .brand {
  justify-content: center;
  margin-bottom: 10px;
}
.side-rail nav {
  display: grid;
  overflow: auto;
}
.side-rail nav button,
.rail-bottom > button {
  position: relative;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 9px 4px;
  color: #bed0dc;
  font-size: 10px;
  border-left: 3px solid transparent;
}
.side-rail nav button svg,
.rail-bottom > button svg {
  width: 22px;
  height: 22px;
}
.side-rail nav button.active {
  background: #08405f;
  color: #fff;
  border-left-color: var(--cyan);
}
.side-rail nav button b {
  position: absolute;
  right: 15px;
  top: 5px;
  background: var(--cyan);
  color: #012033;
  border-radius: 999px;
  padding: 1px 5px;
  font-size: 9px;
}
.rail-bottom {
  margin-top: auto;
  position: relative;
  display: grid;
}
.profile-menu {
  position: absolute;
  left: 85px;
  bottom: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  width: 150px;
  box-shadow: 0 15px 40px #0422362e;
}
.profile-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 7px;
}
.profile-menu button:hover {
  background: #edf5f8;
}
.workspace-area {
  min-width: 0;
  display: grid;
  grid-template-rows: 58px 1fr;
  height: 100vh;
}
.topbar {
  display: flex;
  align-items: center;
  background: #062239;
  color: #fff;
  padding: 0 22px;
  border-bottom: 1px solid #16455d;
}
.mobile-brand {
  display: none;
}
.global-search {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #315469;
  border-radius: 9px;
  padding: 8px 12px;
  width: min(520px, 45vw);
  margin: auto;
}
.global-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  flex: 1;
  min-width: 0;
}
.global-search input::placeholder {
  color: #9fb6c3;
}
.global-search kbd {
  font: 11px Inter;
  background: #183b50;
  border-radius: 4px;
  padding: 3px 6px;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
}
.availability {
  display: flex;
  gap: 7px;
  align-items: center;
  border: 1px solid #315469;
  border-radius: 9px;
  padding: 8px 12px;
}
.availability i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.top-actions .icon-button {
  color: #fff;
  position: relative;
}
.top-actions .icon-button b {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #ff4949;
  border-radius: 50%;
  right: 7px;
  top: 6px;
}
.page {
  overflow: auto;
  padding: 30px 34px 60px;
}
.page-header {
  display: flex;
  align-items: flex-start;
}
.page-header > div:first-child {
  flex: 1;
}
.team-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}
.team-actions .primary,
.team-actions .secondary {
  min-height: 42px;
  white-space: nowrap;
}
.page-header h1 {
  font-size: 36px;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.page-header p {
  color: var(--muted);
}
.prototype-badge {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #047aa9;
  border: 1px solid #9cdff0;
  border-radius: 999px;
  padding: 7px 10px;
}
.search-notice {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  background: #e9f8fc;
  border: 1px solid #b4e8f3;
  border-radius: 10px;
  margin: 10px 0 20px;
}
.search-notice button {
  margin-left: auto;
}
.loading-state {
  padding: 35px;
  display: grid;
  gap: 16px;
}
.loading-state span {
  height: 100px;
  border-radius: 12px;
  background: #e8eef2;
  animation: pulse 1s infinite alternate;
}
.loading-state span:nth-child(2) {
  height: 260px;
}
.loading-state span:nth-child(3) {
  height: 150px;
}
@keyframes pulse {
  to {
    opacity: 0.45;
  }
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.metric {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.metric > svg {
  color: var(--blue);
  width: 27px;
  height: 27px;
}
.metric.green > svg {
  color: var(--green);
}
.metric.red > svg {
  color: var(--red);
}
.metric span {
  display: grid;
}
.metric strong {
  font-family: Space Grotesk;
  font-size: 22px;
}
.metric small {
  color: var(--muted);
  font-size: 11px;
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 12px;
}
.dash-grid > .aura-brief {
  grid-column: 1;
}
.security-score {
  grid-column: 2;
  grid-row: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.security-score header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.security-score header > svg {
  color: var(--green);
  width: 34px;
  height: 34px;
}
.security-score header span {
  display: grid;
}
.security-score header small {
  color: var(--muted);
}
.security-score header > b {
  margin-left: auto;
  font-size: 32px;
}
.security-score header > b small {
  font-size: 11px;
  color: var(--muted);
}
.security-score p {
  color: var(--muted);
  line-height: 1.55;
  margin: 20px 0;
}
.activity-table,
.schedule {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.activity-table > header,
.schedule > header {
  display: flex;
  justify-content: space-between;
}
.activity-table header p {
  font-size: 12px;
  color: var(--muted);
}
.activity-table header button {
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}
.activity-row {
  display: grid;
  grid-template-columns: 28px 1fr auto 18px;
  gap: 9px;
  align-items: center;
  width: 100%;
  padding: 12px 6px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.activity-row:hover {
  background: #f7fafb;
}
.activity-row > span {
  display: grid;
}
.activity-row small {
  color: var(--muted);
}
.activity-row time {
  font-size: 11px;
  color: var(--muted);
}
.schedule {
  display: grid;
  align-content: start;
}
.schedule header button {
  color: var(--blue);
}
.schedule > div {
  display: grid;
  grid-template-columns: 55px 12px 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
}
.schedule time {
  color: var(--muted);
  font-size: 12px;
}
.schedule i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.chat-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: 270px minmax(430px, 1fr) 320px;
  background: #fff;
  overflow: hidden;
}
.context-sidebar {
  border-right: 1px solid var(--line);
  padding: 16px 9px;
  overflow: auto;
}
.context-sidebar > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}
.context-sidebar h2 {
  font-size: 18px;
}
.context-sidebar > label,
.toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px;
}
.context-sidebar > label input,
.toolbar input {
  border: 0;
  outline: 0;
  min-width: 0;
  width: 100%;
}
.context-sidebar section h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9px;
  font-size: 11px;
  margin: 20px 0 6px;
}
.context-sidebar section h3 svg {
  width: 13px;
}
.context-sidebar section > button {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 8px;
  border-radius: 9px;
  text-align: left;
}
.context-sidebar section > button:hover,
.context-sidebar section > button.selected {
  background: #dff5fc;
}
.context-sidebar section > button > span:nth-child(2) {
  display: grid;
  min-width: 0;
}
.context-sidebar section > button strong {
  font-size: 12px;
}
.context-sidebar section > button small {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.context-sidebar section > button > b {
  background: var(--cyan);
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 999px;
}
.mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dceef7;
  color: #126c91;
  font-weight: 700;
  font-size: 11px;
}
.color-1 {
  background: #ece8ff;
  color: #6952a6;
}
.color-2 {
  background: #e3f6ec;
  color: #168357;
}
.conversation {
  min-width: 0;
  display: grid;
  grid-template-rows: 72px 1fr 62px;
  overflow: hidden;
}
.conversation > header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 18px;
}
.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff5fc;
  color: var(--blue);
}
.conversation > header h1 {
  font-size: 19px;
  margin: 0;
}
.conversation > header span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}
.conversation > header span i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #94a7b5;
}
.conversation-actions {
  display: flex;
  margin-left: auto;
}
.message-scroll {
  min-height: 0;
  overflow: auto;
  padding: 18px;
}
.aura-brief {
  background: #061f33;
  color: #fff;
  border: 1px solid #174c68;
  border-radius: 13px;
  overflow: hidden;
  padding: 22px;
}
.brief-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.brief-heading > div {
  display: flex;
  gap: 14px;
}
.brief-heading img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brief-heading span {
  display: grid;
}
.brief-heading span > small {
  letter-spacing: 0.2em;
}
.brief-heading h2 {
  font-size: 24px;
  margin: 8px 0 4px;
}
.brief-heading p {
  color: #87dff1;
}
.brief-heading em {
  font-style: normal;
  font-size: 11px;
}
.outline-dark {
  border: 1px solid var(--cyan);
  color: var(--cyan);
  align-self: flex-start;
}
.brief-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #244c61;
  margin-top: 18px;
  padding-top: 16px;
}
.brief-metrics > span {
  display: grid;
  gap: 4px;
  padding: 0 16px;
  border-right: 1px solid #244c61;
}
.brief-metrics > span:first-child {
  padding-left: 0;
}
.brief-metrics > span:last-child {
  border: 0;
}
.brief-metrics svg {
  color: var(--cyan);
}
.brief-metrics small {
  color: #aac2ce;
  font-size: 11px;
}
.aura-brief > footer {
  display: none;
}
.mobile-followup {
  display: none;
}
.message {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 14px 0;
}
.message > img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}
.message > div > header {
  display: flex;
  gap: 9px;
  align-items: center;
}
.message time {
  color: var(--muted);
  font-size: 11px;
}
.message p {
  font-size: 13px;
  line-height: 1.45;
  margin: 5px 0;
}
.file-attachment,
.task-attachment {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(510px, 100%);
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  text-align: left;
}
.file-attachment > svg:first-child {
  color: var(--blue);
}
.file-attachment > svg:last-child {
  margin-left: auto;
}
.file-attachment span,
.task-attachment span {
  display: grid;
}
.file-attachment small,
.task-attachment small {
  color: var(--muted);
}
.check-ring {
  width: 25px;
  height: 25px;
  border: 2px solid #afbfcb;
  border-radius: 50%;
}
.reaction {
  color: #8b5b00;
  background: #fff3cf;
  border-radius: 999px;
  padding: 3px 8px;
}
.own {
  background: #f4fafc;
  border-radius: 9px;
  padding-inline: 10px;
}
.inline-threat,
.mobile-guard-sheet {
  display: none;
}
.composer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 3px 5px;
}
.composer input {
  border: 0;
  outline: 0;
  min-width: 0;
  flex: 1;
}
.composer .send {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--cyan);
  border-radius: 9px;
}
.guard-panel {
  border-left: 1px solid var(--line);
  overflow: auto;
  padding: 16px;
  background: #fbfdfe;
}
.guard-panel > header {
  display: flex;
  justify-content: space-between;
}
.guard-panel > header > span {
  display: flex;
  gap: 10px;
}
.guard-panel > header > span > svg {
  width: 35px;
  height: 35px;
  color: var(--cyan);
}
.guard-panel header span span {
  display: grid;
}
.guard-panel header small {
  color: var(--muted);
  font-size: 10px;
}
.guard-alert {
  display: flex;
  gap: 10px;
  background: #fff0f0;
  border: 1px solid #f5c2c4;
  border-radius: 10px;
  padding: 13px;
  margin: 18px 0;
}
.guard-alert > svg {
  color: var(--red);
  width: 31px;
  height: 31px;
}
.guard-alert span {
  display: grid;
}
.guard-alert small {
  font-size: 10px;
  line-height: 1.4;
}
.guard-panel > section > small {
  font-weight: 800;
}
.disabled-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eef2f5;
  color: #5d7181;
  padding: 10px;
  border-radius: 7px;
  margin: 7px 0 18px;
  font-size: 10px;
}
.guard-panel h3 {
  font-size: 12px;
  margin-top: 18px;
}
.guard-panel ul {
  font-size: 10px;
  padding-left: 17px;
  line-height: 1.6;
}
.blocked,
.review {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #edf3f6;
  padding: 12px;
  border-radius: 9px;
  margin: 12px 0;
}
.blocked > svg {
  width: 30px;
  height: 30px;
}
.blocked span,
.review span {
  display: grid;
}
.blocked small,
.review small {
  font-size: 9px;
  color: var(--muted);
}
.review {
  background: transparent;
}
.review i {
  width: 10px;
  height: 10px;
  background: #f1ad16;
  border-radius: 50%;
}
.org-score {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}
.org-score > div {
  display: flex;
  justify-content: space-between;
}
.org-score progress {
  width: 100%;
  height: 7px;
  accent-color: var(--green);
}
.org-score p {
  font-size: 10px;
  color: var(--muted);
}
.protected {
  display: grid;
  grid-template-columns: 25px 1fr 8px auto;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
}
.protected i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.guard-panel > footer {
  display: flex;
  gap: 10px;
  background: #e8f4f8;
  padding: 12px;
  border-radius: 9px;
  margin-top: 15px;
}
.guard-panel > footer span {
  display: grid;
}
.guard-panel > footer small {
  font-size: 9px;
  color: var(--muted);
}
.module-grid {
  display: grid;
  grid-template-columns: 180px 1fr 270px;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 590px;
  overflow: hidden;
}
.module-nav {
  padding: 15px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 5px;
}
.module-nav > button:not(.primary) {
  text-align: left;
  padding: 10px;
  border-radius: 7px;
}
.module-nav > button.active {
  background: #e4f5fb;
  color: #0876a6;
  font-weight: 800;
}
.list-surface {
  min-width: 0;
}
.toolbar {
  display: flex;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
.toolbar label {
  flex: 1;
}
.toolbar > button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}
.mail-row {
  display: grid;
  grid-template-columns: 24px 1fr auto 20px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.mail-row:hover {
  background: #f7fafb;
}
.mail-row > span {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 8px;
  min-width: 0;
}
.mail-row small {
  color: var(--muted);
}
.mail-row time {
  font-size: 11px;
  color: var(--muted);
}
.red {
  color: var(--red);
}
.detail-preview {
  padding: 25px;
  border-left: 1px solid var(--line);
}
.detail-preview > svg {
  color: var(--green);
  margin: 25px 0;
}
.detail-preview p {
  color: var(--muted);
  line-height: 1.6;
}
.kanban > header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.segmented {
  background: #e9eff3;
  padding: 4px;
  border-radius: 9px;
}
.segmented button {
  padding: 8px 12px;
  border-radius: 6px;
}
.segmented .active {
  background: #fff;
  font-weight: 700;
}
.kanban-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kanban-grid > section {
  background: #eef3f6;
  border-radius: 12px;
  padding: 12px;
  min-height: 500px;
}
.kanban-grid h3 {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.kanban-grid h3 b {
  background: #d6e2e9;
  border-radius: 999px;
  padding: 2px 7px;
}
.kanban-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin: 9px 0;
}
.task-check {
  width: 22px;
  height: 22px;
  border: 2px solid #aac0cd;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.task-check.checked {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.kanban-grid h4 {
  font-size: 13px;
  margin: 12px 0;
}
.priority {
  font-size: 9px;
  border-radius: 999px;
  padding: 4px 7px;
}
.priority.high {
  color: #b62d36;
  background: #ffe8e9;
}
.priority.medium {
  color: #8b5b00;
  background: #fff3ce;
}
.kanban-grid article footer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  margin-top: 14px;
}
.kanban-grid article footer svg {
  width: 14px;
}
.kanban-grid article footer .avatar {
  margin-left: auto;
}
.security-dashboard .score-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #061f33;
  color: #fff;
  border-radius: 14px;
  padding: 27px 35px;
}
.score-hero h2 {
  margin: 12px 0 0;
}
.score-hero strong {
  font-family: Space Grotesk;
  font-size: 64px;
}
.score-hero strong small {
  font-size: 18px;
  color: #a9c1cf;
}
.score-hero p {
  color: #94c7d3;
}
.score-hero > svg {
  color: var(--cyan);
}
.security-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
}
.security-grid > section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.security-grid header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.protection-row,
.event-row {
  display: grid;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(--line);
  padding: 13px 2px;
  text-align: left;
}
.protection-row {
  grid-template-columns: 30px 1fr auto 20px;
}
.protection-row span {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--green);
  font-size: 11px;
}
.protection-row span i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.event-row {
  grid-template-columns: 10px 1fr auto;
  gap: 9px;
}
.event-row > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93a5b2;
}
.event-row > i.critical {
  background: #cb2631;
}
.event-row > i.high {
  background: #ec8511;
}
.event-row > i.medium {
  background: #e9b31b;
}
.event-row span {
  display: grid;
}
.event-row small,
.event-row time {
  color: var(--muted);
  font-size: 10px;
}
.domain-status {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #061f33;
  color: #fff;
  border-radius: 14px;
  padding: 25px;
}
.domain-status > svg {
  color: var(--cyan);
}
.domain-status h2 {
  margin: 5px 0;
}
.domain-status p {
  color: var(--green);
  display: flex;
  gap: 6px;
}
.domain-status button {
  margin-left: auto;
}
.domain-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12px;
  margin: 12px 0;
}
.domain-grid > section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.steps {
  display: grid;
  margin: 25px 0;
}
.steps span {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  color: var(--muted);
}
.steps b {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5edf2;
}
.steps .done b {
  background: #dff5eb;
  color: var(--green);
}
.steps .current {
  color: var(--ink);
  font-weight: 700;
}
.steps .current b {
  background: var(--cyan);
  color: #001d2c;
}
.dns-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.dns-row span {
  display: grid;
  min-width: 0;
}
.dns-row strong {
  display: flex;
  gap: 7px;
  align-items: center;
}
.dns-row strong svg {
  color: var(--green);
}
.dns-row small {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}
.dns-row button {
  display: flex;
  gap: 6px;
  color: var(--blue);
}
.shield-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #e8f7fa;
  border: 1px solid #bae8f0;
  border-radius: 12px;
  padding: 18px;
}
.shield-banner > svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
}
.shield-banner h2 {
  margin: 0;
}
.shield-banner p {
  margin: 4px 0;
  color: var(--muted);
}
.shield-banner button {
  margin-left: auto;
}
.automation-page {
  position: relative;
  min-height: 600px;
  background: #edf3f6;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}
.automation-toolbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}
.automation-toolbar > div {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: auto;
}
.workflow {
  padding: 55px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.workflow > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.workflow article {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 190px;
  background: #fff;
  border: 1px solid #cbd9e2;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 5px 12px #0c32480f;
}
.workflow article > svg {
  color: var(--blue);
}
.workflow article span {
  display: grid;
  flex: 1;
}
.workflow article small {
  color: var(--muted);
  font-size: 8px;
}
.workflow article strong {
  font-size: 11px;
}
.workflow article > svg:last-child {
  color: var(--muted);
}
.workflow > div > svg {
  color: #7890a0;
}
.automation-page > aside {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
}
.automation-page > aside svg {
  color: var(--green);
}
.automation-page > aside p {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
}
.generic-page .metrics-row {
  grid-template-columns: repeat(4, 1fr);
}
.generic-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  min-height: 430px;
  padding: 25px;
}
.generic-main > header {
  display: flex;
  justify-content: space-between;
}
.generic-main header p {
  color: var(--muted);
}
.empty-state {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}
.empty-state > svg {
  width: 50px;
  height: 50px;
  color: #8fa7b6;
}
.empty-state p {
  max-width: 500px;
  color: var(--muted);
}
.aura-prompts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}
.aura-prompts button {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  text-align: left;
}
.aura-prompts button:hover {
  border-color: var(--cyan);
  background: #f3fbfd;
}
.aura-prompts svg:first-child {
  color: var(--blue);
}
.founder-note {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #071c2b;
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  margin-top: 12px;
}
.founder-note > svg {
  color: var(--cyan);
}
.founder-note div {
  flex: 1;
}
.founder-note p {
  margin: 3px 0;
  color: #9fb8c6;
}
.founder-note > span {
  font-size: 10px;
  color: #8fa8b6;
}
.mobile-nav {
  display: none;
}
.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #062239;
  color: #fff;
  border: 1px solid #1f556e;
  border-radius: 10px;
  padding: 13px 15px;
  box-shadow: 0 16px 45px #00000047;
}
.toast > svg {
  color: var(--green);
}
.toast button {
  color: #fff;
  margin-left: 10px;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00121dad;
  display: grid;
  place-items: center;
  z-index: 90;
  padding: 20px;
}
.modal {
  background: #fff;
  border-radius: 15px;
  width: min(540px, 100%);
  padding: 24px;
}
.modal > header {
  display: flex;
  justify-content: space-between;
}
.modal h2 {
  margin: 7px 0;
}
.modal-copy {
  text-align: center;
  padding: 30px 20px;
}
.modal-copy > svg {
  color: var(--green);
}
.modal-copy p {
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 1180px) {
  .chat-layout {
    grid-template-columns: 230px 1fr;
  }
  .guard-panel {
    display: none;
  }
  .module-grid {
    grid-template-columns: 160px 1fr;
  }
  .detail-preview {
    display: none;
  }
  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-preview {
    transform: none;
    max-width: 900px;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-grid > .aura-brief,
  .security-score {
    grid-column: 1;
    grid-row: auto;
  }
  .security-score {
    display: none;
  }
  .live-record-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  body {
    background: #fff;
  }
  .workspace-shell {
    height: 100dvh;
    display: block;
  }
  .side-rail {
    display: none;
  }
  .workspace-area {
    height: 100dvh;
    grid-template-rows: 66px 1fr 70px;
  }
  .topbar {
    padding: 0 14px;
  }
  .mobile-brand {
    display: block;
  }
  .mobile-brand .brand img {
    width: 37px;
    height: 37px;
  }
  .mobile-brand .brand span {
    display: none;
  }
  .global-search {
    margin-left: auto;
    width: auto;
    border: 0;
    padding: 8px;
  }
  .global-search input,
  .global-search kbd {
    display: none;
  }
  .top-actions > span,
  .top-actions > .avatar {
    display: none;
  }
  .top-actions {
    gap: 2px;
  }
  .page {
    padding: 20px 15px 90px;
  }
  .page-header h1 {
    font-size: 29px;
  }
  .page-header p {
    font-size: 13px;
  }
  .page-header > .source-pill {
    display: none;
  }
  .page-header {
    gap: 14px;
  }
  .team-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .team-actions .primary,
  .team-actions .secondary {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }
  .metrics-row,
  .generic-page .metrics-row {
    grid-template-columns: 1fr 1fr;
  }
  .metric {
    padding: 12px;
  }
  .metric strong {
    font-size: 19px;
  }
  .dash-grid {
    display: block;
  }
  .dash-grid > * {
    margin-bottom: 10px;
  }
  .aura-brief {
    padding: 17px;
  }
  .brief-heading h2 {
    font-size: 21px;
  }
  .brief-heading p {
    font-size: 12px;
  }
  .brief-metrics {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .brief-metrics > span {
    grid-template-columns: 27px 1fr;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #244c61;
  }
  .brief-metrics > span strong,
  .brief-metrics > span small {
    grid-column: 2;
  }
  .activity-table {
    padding: 14px;
  }
  .activity-row {
    grid-template-columns: 26px 1fr 16px;
  }
  .activity-row time {
    display: none;
  }
  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #031a2b;
    color: #a8c2d0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 30;
  }
  .mobile-nav button {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    font-size: 9px;
  }
  .mobile-nav button.active {
    color: var(--cyan);
    background: #07344d;
  }
  .mobile-nav button b {
    position: absolute;
    top: 7px;
    right: 22%;
    background: var(--cyan);
    color: #002334;
    border-radius: 999px;
    padding: 1px 5px;
  }
  .chat-layout {
    display: block;
    height: 100%;
    overflow: hidden;
  }
  .context-sidebar {
    display: none;
  }
  .conversation {
    height: 100%;
    grid-template-rows: 66px 1fr 58px;
  }
  .conversation > header {
    padding: 9px 14px;
  }
  .conversation > header h1 {
    font-size: 20px;
  }
  .conversation > header span {
    font-size: 9px;
  }
  .message-scroll {
    padding: 12px;
  }
  .message {
    grid-template-columns: 35px 1fr;
  }
  .message p {
    font-size: 12px;
  }
  .composer {
    margin: 5px 8px;
  }
  .guard-panel {
    display: none;
  }
  .module-grid {
    display: block;
    min-height: 0;
    border: 0;
  }
  .module-nav {
    display: flex;
    overflow: auto;
    border: 0;
    padding: 0 0 10px;
  }
  .module-nav > button {
    flex: 0 0 auto;
  }
  .module-label {
    display: none;
  }
  .list-surface {
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .mail-row {
    grid-template-columns: 20px 1fr auto;
  }
  .mail-row > span {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mail-row > span small {
    display: none;
  }
  .kanban-grid {
    display: flex;
    overflow: auto;
    scroll-snap-type: x mandatory;
  }
  .kanban-grid > section {
    min-width: 85vw;
    scroll-snap-align: start;
  }
  .aura-prompts {
    grid-template-columns: 1fr;
  }
  .toast {
    left: 12px;
    right: 12px;
    bottom: 82px;
  }
  .hero {
    display: block;
    padding: 60px 22px;
    min-height: auto;
  }
  .hero-copy h1 {
    font-size: 52px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-preview {
    margin-top: 45px;
    padding: 15px;
  }
  .marketing-nav {
    padding: 0 16px;
  }
  .marketing-nav nav,
  .marketing-nav .ghost {
    display: none;
  }
  .marketing-nav .brand span {
    display: none;
  }
  .one-workspace,
  .cinematic,
  .pricing {
    padding: 70px 22px;
  }
  .one-workspace h2,
  .cinematic h2,
  .pricing h2 {
    font-size: 38px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    padding: 70px 22px;
  }
  .marketing > footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .live-record-grid {
    grid-template-columns: 1fr;
  }
  .session-required h1 {
    font-size: 38px;
  }
  .session-required p {
    font-size: 15px;
  }
}
@media (max-width: 1180px) {
  .comparison {
    padding: 85px 4vw;
  }
  .platform-landscape {
    grid-template-columns: 1fr 1fr;
  }
  .platform-landscape .ieta-platform {
    grid-template-columns: 150px 1fr;
  }
}
@media (max-width: 760px) {
  .comparison {
    padding: 68px 18px;
  }
  .comparison-intro h2 {
    font-size: 39px;
  }
  .comparison-intro p {
    font-size: 16px;
  }
  .platform-landscape {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .platform-landscape .ieta-platform {
    display: block;
  }
  .ieta-platform h3 {
    font-size: 21px;
    margin: 12px 0;
  }
  .comparison blockquote {
    margin: 34px 0;
    padding-left: 20px;
    font-size: 24px;
  }
  .comparison-table-wrap {
    margin-top: 34px;
    border-radius: 12px;
  }
  .comparison table {
    min-width: 1020px;
  }
  .comparison th,
  .comparison td {
    padding: 13px 14px;
  }
  .comparison tbody th {
    width: 205px;
  }
  .comparison-note {
    font-size: 12px;
    text-align: left;
  }
}

/* Workspace brand mark: vector-first replacement for the legacy orbital logo. */
@media (max-width: 760px) {
  .workspace-shell:before {
    content: "";
    position: fixed;
    z-index: 9999;
    left: 10px;
    top: 10px;
    width: 48px;
    height: 48px;
    pointer-events: none;
    background: #062239
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='13' y1='10' x2='51' y2='55' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232CE8F3'/%3E%3Cstop offset='.52' stop-color='%235EBAF6'/%3E%3Cstop offset='1' stop-color='%239B7CFF'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='24' y1='18' x2='42' y2='47' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E7FEFF'/%3E%3Cstop offset='.45' stop-color='%2354E7F1'/%3E%3Cstop offset='1' stop-color='%238976FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M32 5.5 53 16v18.7c0 12.9-8.6 20.9-21 25.8-12.4-4.9-21-12.9-21-25.8V16L32 5.5Z' fill='%2306253D' stroke='url(%23a)' stroke-width='2.8'/%3E%3Cpath d='M24 20.5h16M32 20.5v23M24 43.5h16' stroke='url(%23b)' stroke-width='4.5' stroke-linecap='round'/%3E%3Ccircle cx='45.5' cy='18.5' r='3.2' fill='%232CE8F3'/%3E%3C/svg%3E")
      center/40px 40px no-repeat;
    filter: drop-shadow(0 4px 9px rgba(44, 232, 243, 0.18));
  }
}
