@import url("/base.css");
:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #17241f;
  background: #fff;
  font-synthesis: none;
  --ink: #17241f;
  --muted: #67716f;
  --lime: #c3f463;
  --line: #e1e6e3;
  --green: #326546;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 550;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(42px, 5.5vw, 78px);
}
h2 {
  font-size: clamp(32px, 4vw, 49px);
}
h3 {
  font-size: 23px;
}
p {
  color: var(--muted);
}
.wrap {
  max-width: 1192px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.site-nav {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -1.4px;
}
.brand-dot {
  color: #659e39;
  font-size: 32px;
}
.brand.small {
  font-size: 22px;
}
.brand.small b {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 450;
  color: #78827b;
  border-left: 1px solid var(--line);
  padding-left: 14px;
  margin-left: 6px;
}
.site-nav nav {
  display: flex;
  gap: 33px;
  font-size: 14px;
  font-weight: 500;
}
.button,
button.primary,
button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 12px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover,
button.primary:hover {
  transform: translateY(-1px);
}
.dark,
button.primary {
  background: var(--ink);
  color: white;
}
.lime {
  background: var(--lime);
  color: #17241f;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 22px;
  align-items: center;
}
.hero {
  text-align: center;
  padding-top: 76px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 11px 5px 5px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.mini-mark {
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  width: 23px;
  height: 23px;
  line-height: 23px;
}
.hero h1 span {
  color: #7b887f;
}
.hero-copy {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.7;
  margin: 25px auto 27px;
}
.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.hero-notes {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 26px 0 42px;
  font-size: 12px;
  color: #7a837e;
}
.hero-notes span:before {
  content: "✓";
  margin-right: 7px;
  color: #5f8756;
}
.product-visual {
  text-align: left;
  border: 1px solid #d4dbd6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 65px -35px #24322c55;
}
.visual-head {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: #f9fbf9;
  border-bottom: 1px solid var(--line);
}
.demo-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #7a837e;
}
.visual-columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.terminal {
  background: #17211e;
  color: #e3eade;
  padding: 22px 30px;
  font:
    14px/1.85 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.terminal p {
  color: #f1f5f0;
  margin: 15px 0;
}
.terminal-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #8a998e;
  font-size: 11px;
  margin-bottom: 24px;
}
.terminal-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54665b;
}
.terminal-bar span {
  margin-left: auto;
}
.muted-code {
  color: #809486;
}
.prompt {
  color: var(--lime);
}
.terminal p.terminal-success {
  color: #bedb9e;
  font-size: 12px;
  line-height: 2;
}
.terminal-bottom {
  color: #7e9687;
  border-top: 1px solid #334339;
  padding-top: 15px;
  font-size: 11px;
}
.vault-preview {
  padding: 26px 32px;
}
.section-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 650;
  color: #6b7a70;
  margin-bottom: 20px;
}
.vault-preview .section-kicker {
  margin-bottom: 12px;
}
.vault-preview h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
}
.preview-secret {
  letter-spacing: 3px;
  margin: 17px 0;
  color: #5d7064;
}
.permission-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  align-items: center;
  margin: 12px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  background: #eef1ee;
  color: #6a756e;
  font-size: 11px;
  line-height: 1.5;
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 550;
  white-space: nowrap;
}
.pill.green {
  background: #e9f2de;
  color: #426729;
}
.pill.red {
  background: #fee8e6;
  color: #9a3932;
}
.audit-preview {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-family: monospace;
  font-size: 12px;
  color: #476846;
}
.audit-preview span {
  float: right;
  font-family: inherit;
  font-size: 10px;
  color: #7a837e;
}
.benefit-section {
  padding-top: 112px;
  padding-bottom: 90px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-top: 55px;
}
.feature-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.feature-number {
  font-size: 11px;
  color: #7a837e;
  letter-spacing: 0.1em;
}
.feature-grid h3 {
  margin: 24px 0 18px;
  line-height: 1.25;
}
.feature-grid p {
  font-size: 14px;
  line-height: 1.85;
}
.security-band {
  background: #17241f;
  padding: 68px 0;
  color: white;
}
.security-band .section-kicker {
  color: #abc3ab;
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.security-grid p {
  color: #c7d1c9;
  font-size: 15px;
}
.security-grid .small-note {
  font-size: 12px;
  color: #92a797;
  margin: 20px 0;
}
.security-grid .text-link {
  color: var(--lime);
}
.products-section {
  padding-top: 96px;
  padding-bottom: 80px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 27px;
}
.product-card.current {
  border-color: #a8c98d;
  background: #f8fcf2;
}
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.product-symbol {
  font-size: 28px;
}
.product-card h3 {
  font-size: 23px;
  margin-bottom: 15px;
}
.product-card p {
  font-size: 14px;
  min-height: 92px;
}
.product-card a,
.coming-text {
  font-size: 12px;
  font-weight: 600;
}
.coming-text {
  color: #8c938e;
}
.roadmap-note {
  font-size: 12px;
  color: #7a837e;
  margin-top: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.roadmap-note span {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #435b45;
  margin-right: 20px;
}
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 86px;
}
.footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 28px;
  padding-bottom: 28px;
  font-size: 12px;
  color: #7c857f;
}
.footer .brand {
  color: var(--ink);
  font-size: 23px;
}
.footer a:last-child {
  margin-left: auto;
}
.docs {
  max-width: 850px;
  padding-top: 64px;
  padding-bottom: 70px;
}
.docs h1 {
  font-size: 54px;
  margin-bottom: 20px;
}
.docs h2 {
  font-size: 28px;
  margin: 42px 0 15px;
}
.docs p,
.docs li {
  font-size: 16px;
  line-height: 1.9;
  margin: 14px 0;
}
.docs code {
  font:
    13px ui-monospace,
    monospace;
  background: #eef2ef;
  padding: 2px 5px;
  border-radius: 3px;
  color: #284631;
}
.docs pre {
  padding: 24px;
  background: #17241f;
  border-radius: 8px;
  overflow: auto;
}
.docs pre code {
  background: none;
  color: #d9ebc9;
  padding: 0;
  line-height: 2;
}
.lead {
  font-size: 19px !important;
}
/* Dashboard */
.dashboard {
  background: #f6f8fa;
  color: #202e29;
  font-size: 14px;
}
.app-shell {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  background: #17241f;
  color: #a4b5aa;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand {
  color: #f3f7f1;
  font-size: 28px;
  padding: 0 11px;
}
.product-switch {
  margin: 35px 5px 22px;
  border: 1px solid #3a4a40;
  border-radius: 7px;
  padding: 10px 12px;
  color: #e7eee8;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.product-switch span:first-child {
  color: var(--lime);
  font-size: 18px;
}
.product-switch .pill {
  margin-left: auto;
  background: #304332;
  color: #bfd899;
  font-size: 10px;
}
.sidebar-label {
  font-size: 10px;
  letter-spacing: 0.13em;
  padding: 13px;
  color: #859d8d;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.side-nav button {
  border: 0;
  border-radius: 6px;
  text-align: left;
  color: #a4b5aa;
  background: transparent;
  padding: 11px 14px;
  font-size: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.side-nav button.active {
  background: #2b3c30;
  color: #d6f6a8;
}
.nav-icon {
  width: 18px;
  text-align: center;
  font-size: 16px;
}
.side-soon {
  display: flex;
  align-items: center;
  padding: 12px;
  font-size: 12px;
  color: #839788;
  gap: 8px;
}
.side-soon .pill {
  margin-left: auto;
  font-size: 9px;
  background: #26372c;
  color: #849988;
}
.side-footer {
  margin-top: auto;
  padding: 24px 12px 0;
  font-size: 11px;
}
.side-footer a {
  display: block;
  margin: 8px 0;
  color: #b1c2b7;
}
.side-footer small {
  color: #72907d;
}
.app-main {
  min-width: 0;
}
.topbar {
  height: 79px;
  border-bottom: 1px solid #e1e6e9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  gap: 18px;
}
.org-select {
  display: flex;
  align-items: center;
  gap: 12px;
}
.org-icon,
.avatar {
  height: 32px;
  width: 32px;
  border-radius: 7px;
  background: #edf2e8;
  color: #466042;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 650;
}
.org-select select {
  border: 0;
  background: #fff;
  color: #23362b;
  font-size: 13px;
  max-width: 230px;
}
.account-area {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7e8982;
  font-size: 12px;
}
.avatar {
  border-radius: 50%;
  background: #e6edee;
  color: #466263;
}
.plain-button {
  border: 0;
  background: transparent;
  color: #708077;
  padding: 5px;
  font-size: 12px;
}
.main-content {
  max-width: 1400px;
  padding: 36px 38px 70px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 11px;
  color: #839188;
  margin-bottom: 22px;
}
.breadcrumb span {
  padding: 0 8px;
  color: #b0bbb4;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 27px;
}
.page-heading h1 {
  font-size: 31px;
  letter-spacing: -0.04em;
}
.page-heading p {
  font-size: 13px;
  margin-top: 10px;
  max-width: 640px;
}
.page-heading button {
  white-space: nowrap;
}
.env-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 23px;
  flex-wrap: wrap;
}
.env-bar select {
  padding: 8px 33px 8px 12px;
  border: 1px solid #dce3df;
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  color: #46564c;
}
.env-label {
  font-size: 11px;
  color: #8a968e;
}
.env-bar .divider {
  height: 20px;
  width: 1px;
  background: #d8e0da;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 27px;
}
.stat-card {
  background: white;
  border: 1px solid #e2e7e3;
  border-radius: 8px;
  padding: 19px 22px;
}
.stat-card .stat-label {
  font-size: 11px;
  color: #78877d;
}
.stat-value {
  font-size: 28px;
  letter-spacing: -0.05em;
  margin-top: 6px;
  font-weight: 500;
}
.stat-note {
  font-size: 10px;
  color: #8a978f;
  margin-top: 5px;
}
.stat-value.text {
  font-size: 17px;
  line-height: 2.7;
  letter-spacing: -0.02em;
}
.panel {
  border: 1px solid #e0e7e2;
  background: white;
  border-radius: 9px;
  overflow: hidden;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 22px;
  border-bottom: 1px solid #e7ece8;
  gap: 16px;
}
.panel-header h2 {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.panel-header input {
  width: 235px;
  border: 1px solid #e0e6e1;
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 12px;
}
.table-scroll {
  position: relative;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
}
th {
  font-size: 10px;
  font-weight: 550;
  color: #7e8e83;
  padding: 12px 22px;
  background: #fafcfb;
  border-bottom: 1px solid #e6ebe7;
  letter-spacing: 0.03em;
}
td {
  padding: 16px 22px;
  border-bottom: 1px solid #eef1ef;
  font-size: 12px;
  color: #6e7e73;
}
tr:last-child td {
  border-bottom: 0;
}
td:first-child {
  color: #334b3b;
}
.secret-key {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 12px;
  display: block;
  font-weight: 550;
}
.secret-dot {
  color: #9cab9d;
  margin-right: 8px;
}
.subcell {
  display: block;
  font-size: 10px;
  color: #9ca89f;
  margin-top: 4px;
}
.row-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.row-actions button {
  padding: 5px 8px;
  border: 1px solid #e1e8e2;
  border-radius: 5px;
  background: white;
  color: #60725f;
  font-size: 11px;
}
.row-actions button:hover {
  background: #f0f5eb;
}
.row-actions button.danger {
  color: #a75348;
}
.panel-footer {
  font-size: 10px;
  padding: 13px 22px;
  color: #8c998f;
  background: #fcfdfc;
  border-top: 1px solid #e7ece8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-strip {
  margin-top: 23px;
  border: 1px solid #dce6d9;
  background: #eff5eb;
  border-radius: 7px;
  padding: 14px 18px;
  font-size: 11px;
  color: #6a7f61;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.info-strip b {
  font-weight: 550;
  color: #4e6743;
}
.empty-state {
  text-align: center;
  padding: 64px 25px;
}
.empty-state .empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f0f5e9;
  color: #749152;
  margin: 0 auto 19px;
  font-size: 25px;
}
.empty-state h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.empty-state p {
  max-width: 450px;
  margin: 0 auto 23px;
  font-size: 13px;
}
.empty-state button {
  font-size: 12px;
}
.loading-page {
  display: grid;
  place-items: center;
  min-height: 70vh;
  color: #708477;
}
.skeleton {
  padding: 60px 25px;
  color: #84968a;
}
.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-story {
  background: #17241f;
  color: #f1f6ed;
  padding: 50px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-story .brand {
  position: absolute;
  top: 42px;
  font-size: 30px;
}
.login-story h1 {
  font-size: 50px;
}
.login-story p {
  color: #9fb2a2;
  margin: 25px 0;
  max-width: 420px;
}
.login-story .pill {
  align-self: flex-start;
  background: #304330;
  color: #c6e9a5;
  margin-bottom: 25px;
}
.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
}
.login-card {
  max-width: 370px;
  width: 100%;
}
.login-card h2 {
  font-size: 30px;
}
.login-card p {
  margin: 15px 0 25px;
}
.login-card .button {
  width: 100%;
}
.local-logins {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
}
.local-logins p {
  font-size: 12px;
}
.local-logins button {
  margin-bottom: 10px;
  width: 100%;
}
.local-banner {
  background: #fff6d9;
  border-bottom: 1px solid #eedda5;
  color: #886f32;
  text-align: center;
  font-size: 11px;
  padding: 6px 15px;
}
.onboarding {
  max-width: 560px;
  margin: 80px auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px;
  border-radius: 12px;
}
.onboarding h1 {
  font-size: 30px;
}
.onboarding p {
  margin: 15px 0 25px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 18px;
  font-size: 12px;
  color: #526a58;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  padding: 10px 12px;
  border: 1px solid #d6e0d8;
  border-radius: 6px;
  color: #263e2e;
  background: #fff;
  width: 100%;
  font-size: 14px;
}
.field textarea {
  min-height: 110px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  resize: vertical;
}
.field small {
  font-weight: 400;
  color: #8a9b8f;
  font-size: 11px;
}
.check-field {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}
.check-field input {
  width: 16px;
  height: 16px;
}
.form-error {
  color: #a74038;
  font-size: 12px;
  margin: 12px 0;
}
.form-error:empty {
  display: none;
}
button.secondary {
  border: 1px solid #dce4dd;
  background: white;
  color: #52684f;
  font-size: 12px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}
dialog {
  padding: 30px;
  border: 1px solid #cfdccf;
  border-radius: 12px;
  width: min(530px, calc(100vw - 32px));
  max-height: 90vh;
  box-shadow: 0 25px 100px #102b2744;
  color: var(--ink);
}
dialog::backdrop {
  background: #10251e66;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 25px;
  margin-bottom: 12px;
}
dialog .modal-description {
  font-size: 13px;
  margin-bottom: 25px;
}
dialog .modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: transparent;
  border: 0;
  font-size: 24px;
  color: #7e8c82;
}
.sensitive {
  background: #f0f5ed;
  border: 1px solid #d9e5d2;
  padding: 16px;
  font:
    12px/1.8 ui-monospace,
    monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  border-radius: 6px;
  user-select: all;
  max-height: 250px;
  overflow: auto;
}
.help-note {
  font-size: 11px;
  color: #81967e;
  margin-top: 15px;
}
.danger-button {
  background: #a54338 !important;
  color: white !important;
}
#toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: #203b29;
  color: white;
  padding: 12px 23px;
  border-radius: 7px;
  font-size: 13px;
  box-shadow: 0 10px 35px #10251833;
  z-index: 5;
  display: none;
  max-width: 90vw;
}
#toast.visible {
  display: block;
}
.skip-link {
  position: fixed;
  left: 10px;
  top: -100px;
  padding: 12px;
  background: white;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.error-panel {
  padding: 28px;
  background: #fff4f2;
  border: 1px solid #ecc8c0;
  color: #9b4e41;
  border-radius: 8px;
}
.error-panel p {
  color: inherit;
  margin-bottom: 15px;
}
.audit-action {
  font-family: ui-monospace, monospace;
  font-size: 11px;
}
.team-avatar {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9f1e2;
  margin-right: 8px;
  font-size: 11px;
}
.setup-code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #17241f;
  color: #d1e9b9;
  padding: 20px;
  border-radius: 7px;
  font:
    12px/1.9 ui-monospace,
    monospace;
  margin-top: 18px;
}
.wide-note {
  font-size: 12px;
  margin: 16px 0;
  color: #7a8f7d;
}
.inline-actions {
  display: flex;
  gap: 10px;
}
.view-only {
  font-size: 12px;
  color: #7c8a80;
}
@media (min-width: 1600px) {
  .main-content {
    padding-top: 50px;
  }
  .hero {
    padding-top: 95px;
  }
}
@media (max-width: 1000px) {
  .app-shell {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .main-content {
    padding: 28px 24px;
  }
  .topbar {
    padding: 0 24px;
  }
  .account-area > span {
    display: none;
  }
  .row-actions {
    flex-wrap: wrap;
  }
  td,
  th {
    padding-left: 15px;
    padding-right: 15px;
  }
  .visual-columns {
    grid-template-columns: 1fr 1fr;
  }
  .terminal {
    padding: 20px;
    font-size: 12px;
  }
  .vault-preview {
    padding: 24px;
  }
  .product-card {
    padding: 22px;
  }
  .hero h1 {
    font-size: 60px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .site-nav {
    height: 80px;
  }
  .site-nav nav {
    display: none;
  }
  .site-nav .button {
    padding: 10px 12px;
  }
  .hero {
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-notes {
    gap: 15px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .visual-columns {
    grid-template-columns: 1fr;
  }
  .vault-preview {
    padding: 24px;
  }
  .demo-label {
    font-size: 8px;
  }
  .feature-grid,
  .product-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .benefit-section,
  .products-section {
    padding-top: 65px;
    padding-bottom: 60px;
  }
  .feature-grid {
    margin-top: 35px;
  }
  .feature-grid h3 {
    margin: 15px 0;
  }
  .security-grid {
    gap: 28px;
  }
  .product-card p {
    min-height: 0;
    margin-bottom: 24px;
  }
  .final-cta {
    display: block;
    padding-bottom: 55px;
  }
  .final-cta .button {
    margin-top: 25px;
  }
  .footer {
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer > span {
    display: none;
  }
  .app-shell {
    display: block;
  }
  .sidebar {
    position: relative;
    height: auto;
    padding: 14px 16px;
    gap: 15px;
  }
  .sidebar .brand {
    font-size: 23px;
    padding: 0;
  }
  .product-switch,
  .sidebar-label,
  .side-soon,
  .side-footer {
    display: none;
  }
  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .side-nav button {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }
  .side-nav .nav-icon {
    font-size: 13px;
  }
  .topbar {
    height: 64px;
    padding: 0 18px;
  }
  .org-select select {
    max-width: 170px;
  }
  .account-area {
    gap: 6px;
  }
  .main-content {
    padding: 26px 18px 45px;
  }
  .page-heading {
    align-items: flex-start;
  }
  .page-heading h1 {
    font-size: 27px;
  }
  .page-heading p {
    font-size: 12px;
  }
  .page-heading button {
    font-size: 11px;
    padding: 9px 12px;
  }
  .breadcrumb {
    margin-bottom: 15px;
  }
  .stats {
    gap: 9px;
  }
  .stat-card {
    padding: 12px;
  }
  .stat-value {
    font-size: 24px;
  }
  .stat-label,
  .stat-note {
    font-size: 9px !important;
  }
  .stat-value.text {
    font-size: 12px;
    line-height: 3.2;
  }
  .panel-header {
    padding: 14px;
    flex-wrap: wrap;
  }
  .panel-header input {
    width: 100%;
  }
  .row-actions {
    flex-wrap: nowrap;
  }
  td,
  th {
    padding: 13px;
  }
  .login-shell {
    display: block;
  }
  .login-story {
    padding: 90px 30px 35px;
  }
  .login-story .brand {
    top: 22px;
  }
  .login-story h1 {
    font-size: 36px;
  }
  .login-content {
    padding: 40px 24px;
  }
  .login-story p {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .onboarding {
    margin: 30px 20px;
    padding: 25px;
  }
  .docs h1 {
    font-size: 42px;
  }
  .account-area .avatar {
    display: none;
  }
  .audit-preview span {
    float: none;
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.heading-actions{display:flex;gap:10px;flex-wrap:wrap}.import-names{max-height:240px;overflow:auto;display:grid;gap:10px;padding:12px;border:1px solid var(--line,#d9e3dc);border-radius:10px}.import-names label{display:flex;gap:10px;align-items:center}.import-names code{overflow-wrap:anywhere}.field select{padding:12px;border:1px solid #c8d6ce;border-radius:8px;background:#fff}.login-card .form-error{margin-top:18px}
.docs-content{max-width:880px;padding:45px 0 80px}.docs-content h1{font-size:clamp(36px,6vw,58px);letter-spacing:-2px;line-height:1.12;margin:25px 0}.docs-content section{margin-top:54px;scroll-margin-top:24px}.docs-content section h2{font-size:27px;letter-spacing:-.8px}.docs-content p{line-height:1.8;color:#526358}.docs-content pre{padding:22px;border-radius:12px;background:#173b2e;color:#def5b0;overflow:auto;font-size:12px;line-height:1.9}.docs-content code{overflow-wrap:anywhere}.docs-content p code{font-size:.9em;background:#e8ede4;padding:2px 5px;border-radius:4px}.docs-content pre code{overflow-wrap:normal}
