:root {
  color-scheme: light;
  --ink: #161b18;
  --muted: #68716c;
  --line: #e3e7e4;
  --surface: #ffffff;
  --sidebar: #f5f7f5;
  --soft: #eef3f0;
  --accent: #176b50;
  --accent-dark: #0d4f3a;
  --danger: #9a503d;
  --sidebar-width: 252px;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
}

body {
  min-width: 320px;
}

button,
textarea,
input {
  font: inherit;
}

button {
  letter-spacing: 0;
}

a {
  color: inherit;
}

.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;
}

.app-shell {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
}

.conversation-sidebar {
  position: relative;
  z-index: 40;
  min-width: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 58px auto minmax(0, 1fr) auto;
  border-right: 1px solid var(--line);
  background: var(--sidebar);
}

.sidebar-head {
  height: 58px;
  padding: 0 16px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.icon-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--ink);
  background: #e7ece9;
}

.icon-button svg,
.new-chat-button svg,
.conversation-delete svg,
.feedback-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.new-chat-button {
  min-height: 42px;
  margin: 4px 12px 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d6ddd8;
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  font-size: 14px;
  font-weight: 620;
  cursor: pointer;
}

.new-chat-button:hover,
.new-chat-button:focus-visible {
  border-color: #b6c7bd;
  background: #fbfcfb;
}

.conversation-list {
  min-height: 0;
  overflow-y: auto;
  padding: 0 8px 16px;
}

.conversation-empty {
  display: none;
  margin: 8px 20px;
  color: #8b938e;
  font-size: 12px;
}

.conversation-empty.is-visible {
  display: block;
}

.conversation-row {
  position: relative;
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  border-radius: 6px;
}

.conversation-row:hover {
  background: #e9eeeb;
}

.conversation-row.is-current {
  background: #e3ebe6;
}

.conversation-select {
  min-width: 0;
  height: 52px;
  padding: 7px 4px 7px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.conversation-select span,
.conversation-select small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-select span {
  font-size: 13px;
  font-weight: 560;
}

.conversation-select small {
  color: var(--muted);
  font-size: 11px;
}

.conversation-delete {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 5px;
  color: var(--muted);
  background: transparent;
  opacity: 0;
  cursor: pointer;
}

.conversation-row:hover .conversation-delete,
.conversation-delete:focus-visible {
  opacity: 1;
}

.conversation-delete:hover {
  color: var(--danger);
  background: #f3e9e6;
}

.conversation-delete svg {
  width: 16px;
  height: 16px;
}

.sidebar-foot {
  padding: 10px 8px max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.account-button {
  width: 100%;
  min-height: 48px;
  padding: 6px 8px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.account-button:hover,
.account-button:focus-visible {
  background: #e7ece9;
}

.account-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd9d1;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
}

.account-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-copy strong,
.account-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-copy strong {
  font-size: 12px;
  font-weight: 620;
}

.account-copy small {
  color: var(--muted);
  font-size: 10px;
}

.workspace {
  min-width: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
}

.app-header {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 58px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
}

.sidebar-trigger {
  visibility: hidden;
}

.header-title {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atlas-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.atlas-link:hover,
.atlas-link:focus-visible,
.atlas-link.is-current {
  color: var(--accent-dark);
}

.chat-main {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.message-scroll {
  min-height: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 36px 24px 200px;
}

.empty-state {
  width: min(100%, 680px);
  min-height: calc(100dvh - 330px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid #cdd8d1;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--soft);
  font-size: 17px;
  font-weight: 760;
}

.brand-seal.small {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  font-size: 14px;
}

.empty-state h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: 0;
}

.empty-state p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.availability {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.availability::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #a5ada8;
  vertical-align: 1px;
}

.availability.is-live::before {
  background: #2b8a63;
}

.availability.is-offline::before {
  background: var(--danger);
}

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

.message {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
}

.message + .message {
  border-top: 1px solid #edf0ee;
}

.message-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #d9dfdb;
  border-radius: 50%;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 700;
}

.message.is-assistant .message-avatar {
  border-color: #cbd9d1;
  color: var(--accent-dark);
  background: var(--soft);
}

.message-content {
  min-width: 0;
}

.message-role {
  display: block;
  margin: 5px 0 9px;
  font-size: 13px;
}

.message-body {
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.message-body p {
  margin: 0 0 12px;
}

.message-body h3 {
  margin: 20px 0 8px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 680;
  letter-spacing: 0;
}

.message-body h3:first-child {
  margin-top: 0;
}

.message-body p:last-child,
.message-body ul:last-child {
  margin-bottom: 0;
}

.message-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.message-body li + li {
  margin-top: 7px;
}

.message-body code {
  padding: 1px 4px;
  border-radius: 4px;
  background: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.message.is-loading .message-body {
  color: var(--muted);
}

.message.is-loading .message-body::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}

.message-sources {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.message-sources summary {
  width: fit-content;
  cursor: pointer;
  color: var(--accent-dark);
}

.message-sources .source-group {
  margin-top: 12px;
}

.message-sources .source-group strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.message-sources ol {
  margin: 8px 0 0;
  padding-left: 22px;
}

.message-sources li + li {
  margin-top: 9px;
}

.message-sources a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.message-sources small {
  display: block;
  margin-top: 2px;
}

.retrieval-scope {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.retrieval-scope.is-warning {
  color: #8a5a14;
}

.message-actions {
  min-height: 30px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.message-actions[hidden] {
  display: none;
}

.feedback-button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 5px;
  color: #7d8781;
  background: transparent;
  cursor: pointer;
}

.feedback-button:hover,
.feedback-button:focus-visible,
.feedback-button.is-selected {
  color: var(--accent-dark);
  background: var(--soft);
}

.feedback-button svg {
  width: 16px;
  height: 16px;
}

.composer-dock {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: var(--sidebar-width);
  padding: 28px 24px 16px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0%), #fff 26%);
}

.composer {
  width: min(100%, 780px);
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  border: 1px solid #cfd6d2;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgb(34 53 42 / 10%);
}

.composer:focus-within {
  border-color: #7fa692;
  box-shadow: 0 8px 30px rgb(34 53 42 / 12%);
}

.composer-field {
  min-width: 0;
  flex: 1;
}

.composer textarea {
  width: 100%;
  min-height: 40px;
  max-height: 180px;
  resize: none;
  padding: 9px 0 7px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  line-height: 1.5;
}

.composer textarea::placeholder {
  color: #909994;
}

.send-button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

.send-button:hover:not(:disabled),
.send-button:focus-visible:not(:disabled) {
  background: var(--accent-dark);
}

.send-button:disabled {
  color: #9ea6a1;
  background: #e5e8e6;
  cursor: default;
}

.send-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.composer-status {
  width: min(100%, 780px);
  margin: 9px auto 0;
  color: #8b938e;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.composer-status a,
.learning-consent a {
  color: var(--accent);
  text-decoration: none;
}

.composer-status a:hover,
.learning-consent a:hover {
  text-decoration: underline;
}

.account-dialog {
  width: min(100% - 32px, 430px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 18px 60px rgb(28 38 32 / 18%);
}

.account-dialog::backdrop {
  background: rgb(18 24 20 / 28%);
}

.dialog-close-row {
  position: absolute;
  top: 10px;
  right: 10px;
}

.account-panel {
  padding: 34px;
}

.account-panel h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 660;
  letter-spacing: 0;
}

.account-panel > p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 18px;
  padding: 3px;
  border: 1px solid #d8dedb;
  border-radius: 6px;
  background: #f3f5f4;
}

.auth-mode-tabs[hidden] {
  display: none;
}

.auth-mode-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.auth-mode-tabs button.is-active {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 1px 3px rgb(28 38 32 / 9%);
  font-weight: 620;
}

.email-form label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.email-form label[hidden] {
  display: none;
}

.email-form label + label {
  margin-top: 12px;
}

.email-form input {
  width: 100%;
  height: 44px;
  margin-top: 7px;
  padding: 0 12px;
  border: 1px solid #cfd6d2;
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 14px;
}

.email-form input:focus {
  border-color: #7fa692;
}

.email-form input:focus-visible,
.auth-mode-tabs button:focus-visible,
.email-form button:focus-visible,
.privacy-actions button:focus-visible,
.access-summary button:focus-visible,
.text-button:focus-visible {
  outline: 2px solid #245e48;
  outline-offset: 2px;
}

.email-form button {
  width: 100%;
  height: 44px;
  margin-top: 12px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
  font-weight: 620;
  cursor: pointer;
}

.email-form button:disabled {
  color: #9ea6a1;
  background: #e5e8e6;
}

.email-form .auth-link {
  width: auto;
  height: auto;
  margin-top: 13px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  font-size: 12px;
  font-weight: 500;
}

.email-form .auth-link:hover {
  text-decoration: underline;
}

.recovery-form[hidden],
.auth-form[hidden] {
  display: none;
}

.access-summary {
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--line);
}

.access-summary[hidden] {
  display: none;
}

.access-summary strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.access-summary p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.access-summary button {
  min-height: 40px;
  margin-top: 12px;
  padding: 7px 12px;
  border: 1px solid #cfd6d2;
  border-radius: 6px;
  color: var(--accent);
  background: var(--surface);
  font-size: 12px;
  font-weight: 620;
  cursor: pointer;
}

.access-summary button[hidden] {
  display: none;
}

.learning-consent {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.learning-consent[hidden] {
  display: none;
}

.learning-consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.learning-consent input:disabled + span {
  color: #9ba39e;
}

.operational-notice {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.privacy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.privacy-actions[hidden] {
  display: none;
}

.privacy-actions button {
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid #cfd6d2;
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  font-size: 12px;
  cursor: pointer;
}

.privacy-actions button:hover {
  background: #f4f6f5;
}

.privacy-actions .danger-action {
  border-color: #d9b8ae;
  color: var(--danger);
}

.privacy-actions .full-row {
  grid-column: 1 / -1;
}

.text-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--danger);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.dialog-status {
  min-height: 20px;
  margin: 14px 0 0 !important;
  color: var(--muted);
  font-size: 12px !important;
}

.mobile-only,
.sidebar-scrim {
  display: none;
}

.atlas-body {
  min-height: 100dvh;
  background: #f7f8f7;
}

.privacy-body {
  min-height: 100dvh;
  background: #f7f8f7;
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
}

.privacy-back {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.privacy-back:hover {
  color: var(--ink);
}

.privacy-main {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 64px 0 96px;
}

.privacy-main h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 680;
  letter-spacing: 0;
}

.privacy-version {
  margin: 10px 0 42px;
  color: var(--muted);
  font-size: 13px;
}

.privacy-main section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.privacy-main h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0;
}

.privacy-main section p {
  margin: 0;
  color: #414a45;
  font-size: 15px;
  line-height: 1.85;
}

.atlas-header {
  position: sticky;
  top: 0;
  display: flex;
  grid-template-columns: none;
  justify-content: space-between;
}

.atlas-main {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.atlas-intro {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 720;
}

.atlas-intro h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: 0;
}

.atlas-intro > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.atlas-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 24px;
}

.atlas-placeholder {
  min-width: 0;
  margin: 0;
}

.placeholder-canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c2bc;
  background:
    linear-gradient(#e9eeeb 1px, transparent 1px),
    linear-gradient(90deg, #e9eeeb 1px, transparent 1px),
    #f2f5f3;
  background-size: 32px 32px;
  color: #718079;
}

.placeholder-index {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 12px;
  font-weight: 720;
}

.placeholder-line {
  position: absolute;
  width: 54%;
  height: 1px;
  background: #c2cbc5;
}

.placeholder-canvas strong {
  z-index: 1;
  padding: 8px 12px;
  background: #f2f5f3;
  font-size: 13px;
  font-weight: 600;
}

.atlas-placeholder figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 620;
}

@media (max-width: 820px) {
  .app-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .conversation-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(86vw, 300px);
    min-height: 100dvh;
    transform: translateX(-102%);
    transition: transform 160ms ease-out;
    box-shadow: 16px 0 46px rgb(25 35 29 / 12%);
  }

  .conversation-sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-scrim {
    position: fixed;
    z-index: 35;
    inset: 0;
    display: block;
    background: rgb(18 24 20 / 28%);
  }

  .sidebar-scrim[hidden] {
    display: none;
  }

  .mobile-only {
    display: grid;
  }

  .sidebar-trigger {
    visibility: visible;
  }

  .composer-dock {
    left: 0;
  }
}

@media (max-width: 720px) {
  .app-header {
    padding: 0 12px;
  }

  .message-scroll {
    padding: 24px 18px 170px;
  }

  .empty-state {
    min-height: calc(100dvh - 280px);
  }

  .empty-state h1 {
    font-size: 30px;
  }

  .empty-state p {
    font-size: 15px;
  }

  .message {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    padding: 18px 0;
  }

  .message-avatar {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .message-role {
    margin-top: 3px;
  }

  .message-body {
    font-size: 14px;
    line-height: 1.72;
  }

  .composer-dock {
    padding: 22px 12px max(10px, env(safe-area-inset-bottom));
  }

  .composer {
    min-height: 54px;
    padding-left: 14px;
  }

  .composer textarea {
    font-size: 16px;
  }

  .account-panel {
    padding: 30px 24px;
  }

  .privacy-header {
    padding: 0 16px;
  }

  .privacy-main {
    width: min(100% - 32px, 720px);
    padding: 40px 0 72px;
  }

  .privacy-main h1 {
    font-size: 28px;
  }

  .atlas-main {
    width: min(100% - 36px, 1180px);
    padding: 48px 0 72px;
  }

  .atlas-intro h1 {
    font-size: 36px;
  }

  .atlas-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
