:root {
  --aws-orange: #ff9900;
  --aws-orange-dark: #c96f00;
  --ink: #1f2933;
  --navy: #232f3e;
  --slate: #51606f;
  --muted: #697586;
  --line: #d8dee6;
  --soft: #f5f7fa;
  --soft-2: #eef4f8;
  --teal: #0e9f9c;
  --green: #2f9e44;
  --blue: #2563eb;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(31, 41, 51, 0.08);
  --shadow-md: 0 18px 48px rgba(31, 41, 51, 0.14);
  --radius: 8px;
  --header-height: 72px;
}

.uuid-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.uuid-tool-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.uuid-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.uuid-tool-header h1 {
  max-width: 760px;
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.uuid-tool-header p {
  max-width: 780px;
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.uuid-workbench {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.uuid-options,
.uuid-results-card,
.uuid-privacy-note,
.uuid-feature-card,
.uuid-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.uuid-options {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.uuid-options h2,
.uuid-results-header h2,
.uuid-privacy-note h2,
.uuid-feature-section h2,
.uuid-faq h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.uuid-quantity-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 12px;
  align-items: center;
  color: #232f3e;
  font-size: 14px;
  font-weight: 800;
}

.uuid-quantity-control input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #191c1c;
  font-weight: 800;
  text-align: center;
}

.uuid-quantity-control input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.uuid-range {
  width: 100%;
  accent-color: #ff9900;
}

.uuid-option-group {
  display: grid;
  gap: 10px;
}

.uuid-option-group > span {
  color: #232f3e;
  font-size: 14px;
  font-weight: 800;
}

.uuid-toggle {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #232f3e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.uuid-toggle input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #0073bb;
}

.uuid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uuid-actions-vertical {
  display: grid;
  grid-template-columns: 1fr;
}

.uuid-action-button {
  min-height: 44px;
  gap: 8px;
  border-radius: 8px;
}

.uuid-action-button .material-symbols-outlined {
  font-size: 19px;
  line-height: 1;
}

.uuid-clear-button {
  min-height: 44px;
  border-radius: 8px;
}

.uuid-results-card {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.uuid-results-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.uuid-results-header > div:first-child {
  display: grid;
  gap: 8px;
}

.uuid-status {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.uuid-status[data-uuid-status="success"] {
  border-color: rgba(47, 158, 68, 0.24);
  background: rgba(230, 244, 234, 0.92);
  color: #1e8e3e;
}

.uuid-status[data-uuid-status="error"] {
  border-color: rgba(201, 111, 0, 0.28);
  background: rgba(255, 231, 191, 0.74);
  color: #8a5100;
}

.uuid-output {
  min-height: 340px;
  max-height: 520px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
  overflow: auto;
}

.uuid-empty {
  margin: 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.uuid-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
}

.uuid-value {
  min-width: 0;
  color: #191c1c;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.uuid-copy-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #535f70;
}

.uuid-copy-button:hover,
.uuid-copy-button.is-copied {
  border-color: rgba(0, 115, 187, 0.28);
  background: rgba(208, 228, 255, 0.58);
  color: #0062a0;
}

.uuid-copy-button .material-symbols-outlined {
  font-size: 19px;
}

.uuid-privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
}

.uuid-privacy-note .material-symbols-outlined,
.uuid-feature-card .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 22px;
}

.uuid-privacy-note p,
.uuid-feature-card p,
.uuid-faq p {
  margin: 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.uuid-privacy-note p {
  margin-top: 6px;
}

.uuid-feature-section,
.uuid-faq {
  display: grid;
  gap: 24px;
}

.uuid-feature-section h2,
.uuid-faq h2 {
  text-align: center;
}

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

.uuid-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
}

.uuid-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.uuid-faq-list {
  display: grid;
  gap: 12px;
}

.uuid-faq details {
  padding: 18px 20px;
}

.uuid-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #232f3e;
  font-size: 17px;
  line-height: 25px;
  font-weight: 800;
  cursor: pointer;
}

.uuid-faq summary::-webkit-details-marker {
  display: none;
}

.uuid-faq p {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .uuid-workbench {
    grid-template-columns: 1fr;
  }

  .uuid-feature-grid {
    grid-template-columns: 1fr;
  }

  .uuid-feature-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .uuid-tool-page {
    padding: 32px 0 72px;
  }

  .uuid-tool-container {
    width: min(100% - 28px, 1160px);
    gap: 40px;
  }

  .uuid-tool-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .uuid-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .uuid-options,
  .uuid-results-card,
  .uuid-privacy-note,
  .uuid-feature-card {
    padding: 20px;
  }

  .uuid-results-header {
    align-items: stretch;
    flex-direction: column;
  }

  .uuid-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .uuid-output {
    min-height: 300px;
    padding: 12px;
  }

  .uuid-row {
    grid-template-columns: 1fr;
  }

  .uuid-copy-button {
    width: 100%;
  }

  .uuid-privacy-note {
    grid-template-columns: 1fr;
  }
}

/* DNS propagation checker */
.dns-propagation-page {
  padding: 72px 0 96px;
  background: #f8f9f9;
}

.dns-propagation-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 64px;
}

.dns-propagation-hero {
  display: grid;
  gap: 32px;
}

.dns-propagation-header {
  max-width: 790px;
  display: grid;
  gap: 14px;
}

.dns-propagation-header .section-kicker,
.dns-propagation-results-header .section-kicker,
.dns-propagation-about .section-kicker {
  margin: 0;
  color: #8a5100;
}

.dns-propagation-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.dns-propagation-header > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 29px;
}

.dns-propagation-query {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.dns-propagation-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

.dns-propagation-search-icon {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 18px;
  color: #535f70;
  pointer-events: none;
}

.dns-propagation-search-icon::before {
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  line-height: 24px;
  content: "language";
}

.dns-propagation-input {
  width: 100%;
  height: 56px;
  padding: 0 18px 0 56px;
  border: 1px solid #aab7b8;
  border-radius: 6px;
  background: #ffffff;
  color: #191c1c;
  font: 600 16px/24px inherit;
}

.dns-propagation-input::placeholder {
  color: #73808f;
}

.dns-propagation-input:focus {
  border-color: #0073bb;
  box-shadow: 0 0 0 3px rgba(0, 115, 187, 0.14);
  outline: 0;
}

.dns-propagation-submit {
  min-width: 182px;
  min-height: 56px;
  gap: 8px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  background: #ff9900;
  color: #232f3e;
  font-size: 16px;
  font-weight: 800;
}

.dns-propagation-submit:hover {
  background: #e88b00;
  color: #191c1c;
}

.dns-propagation-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.dns-propagation-submit-icon::before {
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 22px;
  content: "travel_explore";
}

.dns-propagation-options {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.dns-propagation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dns-propagation-type {
  min-width: 52px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #232f3e;
  box-shadow: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}

.dns-propagation-type:hover {
  border-color: #0073bb;
  background: #ffffff;
  box-shadow: none;
}

.dns-propagation-type.is-active {
  border-color: #0073bb;
  background: #0073bb;
  color: #ffffff;
}

.dns-propagation-example {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0073bb;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}

.dns-propagation-example:hover {
  color: #8a5100;
  text-decoration: underline;
}

.dns-propagation-provider-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0;
  color: #687687;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 20px;
}

.dns-propagation-provider-note span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: #1d8102;
  box-shadow: 0 0 0 3px rgba(29, 129, 2, 0.12);
}

.dns-propagation-form-error {
  margin: -8px 0 0;
  color: #b12704;
  font-size: 14px;
  font-weight: 700;
}

.dns-propagation-results {
  display: grid;
  gap: 24px;
}

.dns-propagation-results[hidden],
.dns-propagation-state[hidden],
.dns-propagation-results [data-dns-propagation-state][hidden] {
  display: none;
}

.dns-propagation-results-header {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.dns-propagation-results-header > div {
  display: grid;
  gap: 8px;
}

.dns-propagation-results-header h2 {
  margin: 0;
  color: #232f3e;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
}

.dns-propagation-results-header h2 span {
  color: #0073bb;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86em;
}

.dns-propagation-result-type {
  display: inline-flex;
  min-width: 38px;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #232f3e;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 20px;
  vertical-align: 4px;
}

.dns-propagation-refresh {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid #aab7b8;
  border-radius: 50%;
  background: #ffffff;
  color: #232f3e;
}

.dns-propagation-refresh:hover {
  border-color: #0073bb;
  color: #0073bb;
}

.dns-propagation-refresh span::before {
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 22px;
  content: "refresh";
}

.dns-propagation-state {
  min-height: 152px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
}

.dns-propagation-state strong {
  display: block;
  margin-bottom: 6px;
  color: #232f3e;
  font-size: 18px;
}

.dns-propagation-state p {
  margin: 0;
  color: #687687;
}

.dns-propagation-state.is-error {
  border-left: 4px solid #b12704;
}

.dns-propagation-state-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff0ed;
  color: #b12704;
  font-size: 20px;
  font-weight: 800;
}

.dns-propagation-spinner {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 4px solid #d5dada;
  border-top-color: #ff9900;
  border-radius: 50%;
  animation: dns-propagation-spin 0.8s linear infinite;
}

@keyframes dns-propagation-spin {
  to { transform: rotate(360deg); }
}

.dns-propagation-summary {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1.5fr;
  border: 1px solid #d5dada;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
}

.dns-propagation-summary > div {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 20px;
  border-right: 1px solid #e5e8e8;
}

.dns-propagation-summary > div:last-child {
  border-right: 0;
}

.dns-propagation-summary span {
  color: #687687;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.dns-propagation-summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #232f3e;
  font-size: 16px;
  line-height: 23px;
}

.dns-propagation-summary-primary {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.dns-propagation-summary-primary > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.dns-propagation-summary-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2f3f3;
}

.dns-propagation-summary-icon::before {
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  content: "help";
}

.dns-propagation-summary-icon.is-consistent {
  background: #eaf6e7;
  color: #1d8102;
}

.dns-propagation-summary-icon.is-consistent::before {
  content: "check";
}

.dns-propagation-summary-icon.is-inconsistent {
  background: #fff4df;
  color: #8a5100;
}

.dns-propagation-summary-icon.is-inconsistent::before {
  content: "difference";
}

.dns-propagation-summary-icon.is-insufficient {
  color: #687687;
}

.dns-propagation-completed {
  margin: 0;
  padding: 10px 16px;
  border-right: 1px solid #d5dada;
  border-left: 1px solid #d5dada;
  background: #f2f3f3;
  color: #687687;
  font-size: 13px;
  line-height: 20px;
}

.dns-propagation-table-wrap {
  overflow-x: auto;
  border: 1px solid #d5dada;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
}

.dns-propagation-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  table-layout: fixed;
}

.dns-propagation-table th,
.dns-propagation-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e8e8;
  text-align: left;
  vertical-align: top;
}

.dns-propagation-table th {
  background: #f8f9f9;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.dns-propagation-table th:nth-child(1) { width: 18%; }
.dns-propagation-table th:nth-child(2) { width: 15%; }
.dns-propagation-table th:nth-child(3) { width: 42%; }
.dns-propagation-table th:nth-child(4) { width: 12%; }
.dns-propagation-table th:nth-child(5) { width: 13%; }

.dns-propagation-table td {
  color: #3f4b5a;
  font-size: 14px;
  line-height: 21px;
}

.dns-propagation-table tr:last-child td {
  border-bottom: 0;
}

.dns-propagation-resolver {
  color: #232f3e !important;
  font-weight: 800;
}

.dns-propagation-answer {
  overflow-wrap: anywhere;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px !important;
}

.dns-propagation-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.dns-propagation-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.dns-propagation-status.is-resolved { color: #1d8102; }
.dns-propagation-status.is-no-records { color: #8a5100; }
.dns-propagation-status.is-failed { color: #b12704; }

.dns-propagation-about {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid #d5dada;
  border-bottom: 1px solid #d5dada;
}

.dns-propagation-about-copy {
  display: grid;
  gap: 14px;
}

.dns-propagation-about h2,
.dns-propagation-faq h2 {
  margin: 0;
  color: #232f3e;
  font-size: 30px;
  line-height: 39px;
  letter-spacing: 0;
}

.dns-propagation-about-copy > p:not(.section-kicker) {
  margin: 0;
  color: #535f70;
  font-size: 16px;
  line-height: 27px;
}

.dns-propagation-related-link {
  width: fit-content;
  margin-top: 4px;
  color: #0073bb;
  font-weight: 800;
}

.dns-propagation-related-link::after {
  margin-left: 6px;
  content: "→";
}

.dns-propagation-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
}

.dns-propagation-facts > div {
  min-width: 0;
  padding: 22px 14px;
  border-right: 1px solid #e5e8e8;
  text-align: center;
}

.dns-propagation-facts > div:last-child {
  border-right: 0;
}

.dns-propagation-facts span {
  display: block;
  color: #0073bb;
  font-family: "JetBrains Mono", monospace;
  font-size: 25px;
  line-height: 32px;
  font-weight: 800;
}

.dns-propagation-facts p {
  margin: 6px 0 0;
  color: #687687;
  font-size: 12px;
  line-height: 18px;
}

.dns-propagation-faq {
  display: grid;
  gap: 24px;
}

.dns-propagation-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.dns-propagation-faq details {
  align-self: start;
  border-bottom: 1px solid #d5dada;
}

.dns-propagation-faq summary {
  min-height: 62px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.dns-propagation-faq summary::-webkit-details-marker {
  display: none;
}

.dns-propagation-faq details[open] .dns-faq-caret {
  transform: rotate(180deg);
}

.dns-propagation-faq details p {
  margin: 0;
  padding: 0 36px 18px 0;
  color: #535f70;
  font-size: 15px;
  line-height: 25px;
}

@media (max-width: 960px) {
  .dns-propagation-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dns-propagation-summary > div:nth-child(2) {
    border-right: 0;
  }

  .dns-propagation-summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid #e5e8e8;
  }

  .dns-propagation-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .dns-propagation-page {
    padding: 40px 0 72px;
  }

  .dns-propagation-container {
    width: min(100% - 28px, 1160px);
    gap: 48px;
  }

  .dns-propagation-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .dns-propagation-header > p:last-child {
    font-size: 16px;
    line-height: 26px;
  }

  .dns-propagation-query {
    padding: 16px;
  }

  .dns-propagation-search {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dns-propagation-submit {
    width: 100%;
  }

  .dns-propagation-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .dns-propagation-results-header {
    align-items: center;
  }

  .dns-propagation-results-header h2 {
    font-size: 23px;
    line-height: 31px;
  }

  .dns-propagation-summary {
    grid-template-columns: 1fr;
  }

  .dns-propagation-summary > div,
  .dns-propagation-summary > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #e5e8e8;
  }

  .dns-propagation-summary > div:last-child {
    border-bottom: 0;
  }

  .dns-propagation-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .dns-propagation-table {
    min-width: 0;
    display: block;
  }

  .dns-propagation-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .dns-propagation-table tbody {
    display: grid;
    gap: 12px;
  }

  .dns-propagation-table tr {
    display: grid;
    padding: 8px 14px;
    border: 1px solid #d5dada;
    border-radius: 8px;
    background: #ffffff;
  }

  .dns-propagation-table td {
    display: grid;
    grid-template-columns: minmax(102px, 35%) minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e8e8;
    text-align: right;
  }

  .dns-propagation-table td::before {
    color: #687687;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .dns-propagation-table td:last-child {
    border-bottom: 0;
  }

  .dns-propagation-status {
    justify-self: end;
  }

  .dns-propagation-about {
    padding: 40px 0;
  }

  .dns-propagation-about h2,
  .dns-propagation-faq h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .dns-propagation-facts {
    grid-template-columns: 1fr;
  }

  .dns-propagation-facts > div {
    border-right: 0;
    border-bottom: 1px solid #e5e8e8;
  }

  .dns-propagation-facts > div:last-child {
    border-bottom: 0;
  }

  .dns-propagation-faq-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dns-propagation-spinner {
    animation-duration: 1.8s;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.wide-container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 222, 230, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-home {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-title,
.brand-promo {
  color: inherit;
  text-decoration: none;
}

.brand-promo {
  color: var(--muted);
  font-weight: 700;
}

.brand-promo:hover,
.brand-promo:focus-visible {
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.nav > a,
.tools-menu-trigger {
  position: relative;
  padding: 26px 0;
}

.nav > a:hover,
.nav > a[aria-current="page"],
.tools-menu-trigger:hover,
.tools-menu-trigger[aria-current="page"],
.tools-menu:focus-within .tools-menu-trigger {
  color: var(--navy);
}

.nav > a[aria-current="page"]::after,
.tools-menu-trigger[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  background: var(--aws-orange);
}

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

.tools-menu {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.tools-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
}

.tools-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  white-space: nowrap;
  transition: color 160ms ease;
}

.tools-menu-caret {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.tools-menu:hover .tools-menu-caret,
.tools-menu:focus-within .tools-menu-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.tools-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  min-width: 132px;
  padding: 6px;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  backdrop-filter: blur(16px);
}

.tools-menu:hover .tools-submenu,
.tools-menu:focus-within .tools-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.tools-submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.tools-submenu a:hover,
.tools-submenu a[aria-current="page"] {
  background: rgba(255, 153, 0, 0.12);
  color: var(--navy);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher a {
  color: var(--aws-orange-dark);
}

.language-current {
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-button span::before {
  transform: translateY(-6px);
}

.menu-button span::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.button.primary {
  background: var(--aws-orange);
  color: var(--navy);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.button.linkish {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--aws-orange-dark);
  box-shadow: none;
}

.button.linkish:hover {
  transform: none;
}

.hero {
  position: relative;
  min-height: calc(86svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 153, 0, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(10, 16, 24, 0.9), rgba(18, 26, 36, 0.58) 44%, rgba(9, 15, 24, 0.9) 100%),
    linear-gradient(90deg, rgba(10, 16, 24, 0.68), rgba(35, 47, 62, 0.18) 50%, rgba(10, 16, 24, 0.68));
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 62%, rgba(5, 9, 15, 0.32) 100%),
    radial-gradient(ellipse at center, transparent 38%, rgba(4, 8, 14, 0.44) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 98px 0 106px;
  text-align: center;
}

html[lang="en"] .hero-content {
  width: min(1120px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffc36f;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.18);
  color: var(--aws-orange);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--aws-orange);
}

html[lang="en"] .hero h1 {
  font-size: 54px;
}

html[lang="en"] .hero h1 span {
  white-space: nowrap;
}

.hero h1 .hero-title-main {
  color: var(--white);
}

.hero p {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.hero .hero-actions .button {
  min-width: 196px;
  min-height: 58px;
  padding: 0 34px;
  font-size: 17px;
  border-radius: 8px;
}

.hero .hero-actions .button.primary {
  box-shadow: 0 18px 38px rgba(255, 153, 0, 0.28);
}

.hero .hero-actions .button.secondary {
  border-width: 2px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
}

.proof-item {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 3px;
  background: rgba(17, 24, 32, 0.82);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.86;
}

.proof-item svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero p.hero-trust {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section.navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header.centered {
  display: block;
  text-align: center;
}

.section-header.centered .section-lead {
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--aws-orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section.navy .section-kicker {
  color: #ffd28a;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section.navy .section-title {
  color: var(--white);
}

.section-lead {
  max-width: 610px;
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 17px;
}

.section.navy .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(31, 41, 51, 0.02);
}

.card.pad {
  padding: 24px;
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.feature-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.feature-card h3,
.service-card h3,
.solution-card h3,
.pricing-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.solution-card p,
.pricing-row p {
  margin: 0;
  color: var(--slate);
}

.service-flow-section {
  border-top: 1px solid rgba(216, 222, 230, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 251, 253, 0.96) 34%, rgba(238, 244, 248, 0.98) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 153, 0, 0.08), transparent 36%);
}

.service-flow-header {
  margin-bottom: 42px;
}

.service-flow-header .section-title {
  font-size: 32px;
}

.service-flow-header .section-lead {
  margin-top: 12px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
}

.service-flow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.service-flow-timeline::before {
  position: absolute;
  top: 20px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 153, 0, 0.18), rgba(255, 153, 0, 0.5), rgba(255, 153, 0, 0.18));
  content: "";
}

.service-flow-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.service-flow-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 153, 0, 0.28);
  border-radius: 8px;
  background: #fff7eb;
  box-shadow: 0 6px 16px rgba(201, 111, 0, 0.13);
  color: var(--aws-orange-dark);
  font-size: 24px;
  line-height: 1;
}

.service-flow-step h3 {
  margin: 26px 0 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.service-flow-step p {
  max-width: 290px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 153, 0, 0.16);
  color: var(--navy);
  font-weight: 900;
}

.icon.teal {
  background: rgba(14, 159, 156, 0.14);
}

.icon.green {
  background: rgba(47, 158, 68, 0.14);
}

.icon.blue {
  background: rgba(37, 99, 235, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.service-card.highlight {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.service-card.highlight h3,
.service-card.highlight p {
  color: var(--white);
}

.service-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card.highlight::before {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.11);
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  content: "AI";
}

.service-card > * {
  position: relative;
}

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

.list li {
  display: flex;
  gap: 10px;
  color: var(--slate);
}

.section.navy .list li,
.service-card.highlight .list li {
  color: rgba(255, 255, 255, 0.78);
}

.list li::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(47, 158, 68, 0.15);
  color: var(--green);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 46px;
  align-items: center;
}

.visual-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  background: var(--soft-2);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.code-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #101820;
  box-shadow: var(--shadow-md);
}

.code-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
}

.code-dot:nth-child(2) {
  background: #ffbd2e;
}

.code-dot:nth-child(3) {
  background: #27c93f;
}

.code-window pre {
  margin: 0;
  padding: 22px;
  color: #e8f1f5;
  overflow-x: auto;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.code-window code {
  display: block;
  min-width: 0;
}

.code-window .accent {
  color: #ffbf5f;
}

.code-window .cyan {
  color: #69e0da;
}

.page-hero {
  padding: 68px 0 48px;
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: center;
}

.service-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
}

.page-hero p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.service-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  margin-bottom: 4px;
  padding: 2px 5px;
  border: 0.5px solid rgba(255, 153, 0, 0.42);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--aws-orange-dark);
  font-size: 4px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  transform: scale(0.65);
  transform-origin: left center;
}

.service-hero-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aws-orange);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.12);
}

.service-hero-title span {
  display: block;
}

.service-hero-title-accent {
  color: var(--aws-orange-dark);
}

html[lang="en"] .service-hero-title {
  font-size: 46px;
}

.service-hero .service-hero-body {
  max-width: 760px;
  line-height: 1.72;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.solution-card {
  overflow: hidden;
}

.solution-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.solution-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 8px;
  background: var(--soft-2);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
}

.pricing-band {
  display: grid;
  gap: 14px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pricing-row > * {
  min-width: 0;
}

.price {
  color: var(--aws-orange-dark);
  font-size: 28px;
  font-weight: 900;
  white-space: nowrap;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 32px;
  align-items: start;
}

.form-panel {
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea,
.search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field input,
.field select {
  height: 46px;
  padding: 0 13px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px 13px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 159, 156, 0.13);
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--green);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-item {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.side-item strong {
  color: var(--navy);
}

.side-item span {
  color: var(--slate);
}

.faq-tools {
  max-width: 760px;
  margin: 28px 0 0;
}

.search-input {
  height: 52px;
  padding: 0 16px;
  font-size: 16px;
}

.faq-group {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-group h2 {
  margin: 26px 0 2px;
  color: var(--navy);
  font-size: 24px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--aws-orange-dark);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--slate);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.cta-band h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.cta-band p {
  max-width: 640px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.contact-card {
  min-height: 318px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-card-header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 153, 0, 0.16);
  color: var(--navy);
}

.contact-channel-icon.teal {
  background: rgba(34, 158, 217, 0.13);
  color: #229ed9;
}

.contact-channel-icon.green {
  background: rgba(37, 211, 102, 0.14);
  color: #128c7e;
}

.contact-channel-icon.blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
}

.contact-channel-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel-icon.is-social-brand {
  border-radius: 999px;
  background: var(--contact-brand-color);
  color: var(--white);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--contact-brand-color) 28%, transparent);
}

.contact-channel-icon.teal.is-social-brand {
  --contact-brand-color: #229ed9;
}

.contact-channel-icon.green.is-social-brand {
  --contact-brand-color: #25d366;
}

.contact-channel-icon.is-social-brand svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: none;
}

.contact-card-title {
  min-width: 0;
}

.contact-card-title strong {
  color: var(--navy);
  font-size: 18px;
}

.contact-methods {
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-qr {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-qr-frame {
  --contact-qr-color: var(--blue);
  --contact-qr-soft: color-mix(in srgb, var(--contact-qr-color) 7%, var(--white));
  position: relative;
  width: min(100%, 188px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--contact-qr-color) 28%, var(--line));
  border-radius: 8px;
  background: var(--white);
  box-shadow:
    0 14px 32px rgba(31, 41, 51, 0.1),
    0 0 0 6px var(--contact-qr-soft);
}

.contact-qr-frame.is-email {
  --contact-qr-color: #2563eb;
}

.contact-qr-frame.is-telegram {
  --contact-qr-color: #229ed9;
}

.contact-qr-frame.is-ws {
  --contact-qr-color: #25d366;
}

.contact-qr-image {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-qr-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.16);
  transform: translate(-50%, -50%);
}

.contact-qr-logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}

.contact-qr-logo.is-whatsapp {
  border-color: var(--white);
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
}

.contact-qr-logo.is-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.contact-qr-frame.is-scan-priority {
  width: min(100%, 212px);
  padding: 14px;
  border-color: color-mix(in srgb, var(--contact-qr-color) 42%, var(--line));
}

.contact-qr-frame.is-scan-priority .contact-qr-image {
  border-radius: 0;
  image-rendering: pixelated;
}

.contact-value-row {
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-value {
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 32px);
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--aws-orange-dark);
}

.contact-copy-button {
  width: 26px;
  height: 26px;
  min-height: 26px;
  display: inline-flex;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.contact-copy-button:hover,
.contact-copy-button.is-copied {
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue);
}

.contact-copy-button .material-symbols-outlined {
  font-size: 16px;
}

.tool-hero .page-hero-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
}

.tool-hero-panel {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.tool-panel-bar {
  display: flex;
  gap: 8px;
}

.tool-panel-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aws-orange);
}

.tool-panel-bar span:nth-child(2) {
  background: var(--teal);
}

.tool-panel-bar span:nth-child(3) {
  background: var(--green);
}

.tool-panel-lines {
  display: grid;
  gap: 12px;
}

.tool-panel-lines span {
  height: 12px;
  border-radius: 8px;
  background: var(--soft-2);
}

.tool-panel-lines span:nth-child(1) {
  width: 82%;
}

.tool-panel-lines span:nth-child(2) {
  width: 66%;
}

.tool-panel-lines span:nth-child(3) {
  width: 74%;
}

.tool-panel-result {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(14, 159, 156, 0.22);
  border-radius: 8px;
  background: rgba(14, 159, 156, 0.08);
}

.tool-panel-result strong {
  color: var(--navy);
  font-size: 22px;
}

.tool-panel-result span {
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tool-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
}

.tool-card-body {
  display: grid;
  gap: 14px;
  flex: 1;
}

.tool-card h3,
.mini-tool h3,
.whois-result h2,
.whois-raw h3 {
  margin: 0;
  color: var(--navy);
}

.tool-card p,
.mini-tool p {
  margin: 0;
  color: var(--slate);
}

.knowledge-stitch-shell {
  display: grid;
  gap: 48px;
  padding: 34px 0 70px;
  background: #f8f9f9;
}

.knowledge-stitch-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.knowledge-stitch-hero {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.knowledge-stitch-copy {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  gap: 20px;
}

.knowledge-stitch-copy .section-kicker {
  margin: 0;
  color: #8a5100;
}

.knowledge-stitch-copy h1 {
  max-width: 800px;
  margin: 0;
  color: #191c1c;
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 850;
}

.knowledge-stitch-copy > p {
  max-width: 720px;
  margin: 0;
  color: #554434;
  font-size: 18px;
  line-height: 1.56;
}

.knowledge-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.knowledge-hero-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  color: #232f3e;
  font-size: 12px;
  font-weight: 850;
}

.knowledge-search {
  width: min(680px, 100%);
  min-height: 56px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 4px;
  padding: 0 18px;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.06);
}

.knowledge-search span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #554434;
  border-radius: 50%;
}

.knowledge-search span::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #554434;
  content: "";
  transform: rotate(45deg);
}

.knowledge-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #191c1c;
  background: transparent;
  font-size: 16px;
}

.knowledge-search:focus-within {
  border-color: #0062a0;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.08), 0 0 0 3px rgba(108, 182, 255, 0.24);
}

.knowledge-category-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.knowledge-category-card {
  min-width: 0;
  min-height: 286px;
  display: grid;
  grid-template-rows: 132px auto auto 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  color: #232f3e;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.045);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.knowledge-category-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 6px;
  background: #edf3f8;
}

.knowledge-category-card span {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  background: #fff4df;
  color: #8a5100;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.knowledge-category-card strong {
  color: #191c1c;
  font-size: 19px;
  line-height: 1.22;
}

.knowledge-category-card p {
  margin: 0;
  color: #554434;
  font-size: 14px;
  line-height: 1.55;
}

.knowledge-category-card:hover {
  border-color: #ccd5df;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(35, 47, 62, 0.09);
}

.knowledge-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.knowledge-feature-card {
  min-height: 420px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid #e1e6ec;
  border-radius: 12px;
  background: #2e3131;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.knowledge-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 280ms ease;
}

.knowledge-feature-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46, 49, 49, 0.04) 0%, rgba(46, 49, 49, 0.2) 34%, rgba(46, 49, 49, 0.92) 100%),
    linear-gradient(90deg, rgba(17, 24, 32, 0.48), rgba(17, 24, 32, 0.08));
  content: "";
}

.knowledge-feature-card:hover,
.knowledge-spotlight-card:hover,
.knowledge-latest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(35, 47, 62, 0.12);
}

.knowledge-feature-card:hover img {
  transform: scale(1.05);
}

.knowledge-feature-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 32px;
}

.feature-badge {
  justify-self: start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: #ff9900;
  color: #653a00;
  font-size: 12px;
  font-weight: 900;
}

.knowledge-feature-content h2,
.knowledge-feature-content p {
  margin: 0;
}

.knowledge-feature-content h2 {
  max-width: 840px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
}

.knowledge-feature-content p {
  max-width: 760px;
  color: #e7e8e8;
  font-size: 16px;
  line-height: 1.55;
}

.knowledge-spotlight-list {
  display: grid;
  gap: 24px;
}

.knowledge-spotlight-card {
  min-height: 198px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 24px;
  border: 1px solid #e1e6ec;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.knowledge-spotlight-card:hover {
  border-color: #ccd5df;
}

.knowledge-spotlight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #d0e4ff;
  color: #004675;
  font-size: 14px;
  font-weight: 900;
}

.knowledge-card-eyebrow {
  display: block;
  color: #0062a0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.knowledge-spotlight-card h3,
.knowledge-latest-card h3,
.knowledge-article-card h3,
.knowledge-article-card h2,
.article-body h2 {
  margin: 0;
  color: var(--navy);
}

.knowledge-spotlight-card h3 {
  font-size: 24px;
  line-height: 1.25;
}

.knowledge-spotlight-card p,
.knowledge-latest-card p,
.knowledge-article-card p {
  margin: 0;
  color: #554434;
}

.knowledge-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a5100;
  font-weight: 850;
}

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

.knowledge-article-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.knowledge-article-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #e1e6ec;
  background: #edf3f8;
}

.knowledge-article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.knowledge-article-card:hover .knowledge-article-card-image img {
  transform: scale(1.04);
}

.knowledge-article-card-body {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.knowledge-article-card-body .button {
  margin-top: auto;
  align-self: start;
}

.knowledge-category-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 40px;
  align-items: center;
}

.knowledge-category-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #edf3f8;
  box-shadow: 0 14px 34px rgba(35, 47, 62, 0.1);
}

.knowledge-category-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.knowledge-latest-section {
  display: grid;
  gap: 24px;
}

.knowledge-latest-section > h2 {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e9ee;
  color: #191c1c;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.knowledge-latest-list {
  display: grid;
  gap: 24px;
}

.knowledge-latest-card {
  display: grid;
  grid-template-columns: 192px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid #e1e6ec;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.knowledge-latest-image {
  min-height: 132px;
  overflow: hidden;
  border-radius: 8px;
  background: #e1e3e3;
}

.knowledge-latest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.knowledge-latest-card:hover {
  border-color: #ccd5df;
}

.knowledge-latest-card:hover .knowledge-latest-image img {
  transform: scale(1.05);
}

.knowledge-latest-body {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 10px;
}

.knowledge-latest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: #554434;
  font-size: 12px;
  font-weight: 800;
}

.knowledge-latest-meta span:first-child {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  background: #ff9900;
  color: #653a00;
  text-transform: uppercase;
}

.knowledge-latest-card h3 {
  font-size: 24px;
  line-height: 1.25;
}

.knowledge-latest-card h3 a:hover {
  color: #8a5100;
}

.knowledge-latest-card p {
  max-width: 820px;
  line-height: 1.55;
}

.knowledge-latest-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  color: #535f70;
  font-size: 13px;
  font-weight: 800;
}

.knowledge-latest-footer a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #8a5100;
}

.knowledge-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid #e5e9ee;
}

.knowledge-page-link,
.knowledge-page-number {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  color: #554434;
  font-weight: 850;
}

.knowledge-page-number {
  width: 40px;
  padding: 0;
  border-color: #8a5100;
  background: #8a5100;
  color: #ffffff;
}

.knowledge-page-link.is-disabled {
  opacity: 0.72;
  cursor: default;
}

.knowledge-article-page {
  background: #f8f9f9;
  font-family: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.article-shell {
  padding: 64px 0 0;
}

.article-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--aws-orange-dark);
}

.breadcrumb a:hover {
  color: var(--navy);
}

.article-breadcrumb {
  margin-bottom: 34px;
  color: #697586;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.article-breadcrumb .material-symbols-outlined {
  color: #9aa4b2;
  font-size: 17px;
  line-height: 1;
}

.article-header {
  display: grid;
  gap: 20px;
}

.article-category-pill {
  justify-self: start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.16);
  color: #8a5100;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.article-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0;
}

.article-deck {
  margin: 0;
  color: #51606f;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.62;
}

.article-byline {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  padding-top: 8px;
}

.article-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.article-avatar img {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
}

.article-author {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.article-author strong {
  color: #232f3e;
  font-size: 15px;
  font-weight: 900;
}

.article-author span {
  color: #697586;
  font-size: 13px;
  font-weight: 700;
}

.article-meta-line {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #697586;
  font-size: 13px;
  font-weight: 800;
}

.article-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta-line .material-symbols-outlined {
  color: #8a5100;
  font-size: 18px;
}

.article-visual {
  margin: 40px 0 0;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 230, 0.9);
  border-radius: 12px;
  background: #e8eef5;
  box-shadow: 0 18px 48px rgba(35, 47, 62, 0.14);
}

.article-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-body {
  min-width: 0;
  display: grid;
  gap: 40px;
  padding: 48px 0 0;
}

.article-summary {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(216, 222, 230, 0.88);
  border-left: 4px solid #ff9900;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.05);
}

.article-summary span {
  color: #8a5100;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-summary p {
  margin: 0;
  color: #232f3e;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.article-prose-section {
  display: grid;
  gap: 18px;
}

.article-body h2,
.article-body h3,
.article-body p {
  margin: 0;
}

.article-body h2 {
  color: #232f3e;
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: 0;
}

.article-body h3 {
  margin-top: 4px;
  color: #232f3e;
  font-size: 22px;
  line-height: 1.28;
}

.article-body p {
  color: #364454;
  font-size: 18px;
  line-height: 1.82;
}

.article-body code {
  padding: 2px 6px;
  border: 1px solid rgba(216, 222, 230, 0.78);
  border-radius: 4px;
  background: rgba(35, 47, 62, 0.06);
  color: #8a5100;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.article-callout {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  margin: 8px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 153, 0, 0.28);
  border-left: 4px solid #ff9900;
  border-radius: 8px;
  background: #fff8ec;
}

.article-callout > .material-symbols-outlined {
  color: #8a5100;
  font-size: 28px;
}

.article-callout h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.article-callout p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.article-code-window {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.2);
  border-radius: 8px;
  background: #101820;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.18);
}

.article-code-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.article-code-copy {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
}

.article-code-copy:hover {
  border-color: rgba(255, 153, 0, 0.62);
  color: #ffbf5f;
}

.article-code-copy .material-symbols-outlined {
  font-size: 19px;
}

.article-code-window pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #e8f1f5;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.75;
}

.article-code-window code {
  display: block;
  width: max-content;
  min-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.article-takeaways {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(216, 222, 230, 0.88);
  border-radius: 8px;
  background: #ffffff;
}

.article-takeaways ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-takeaways li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #364454;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.article-takeaways .material-symbols-outlined {
  color: #2f9e44;
  font-size: 23px;
  line-height: 1.3;
}

.article-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
}

.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4f8;
  color: #51606f;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.article-action-list {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.article-action-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 8px;
  background: #ffffff;
  color: #232f3e;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.article-action-button:hover,
.article-action-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 153, 0, 0.55);
  background: rgba(255, 153, 0, 0.14);
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
}

.article-action-button .material-symbols-outlined {
  font-size: 21px;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 56px 0 0;
  padding: 30px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 153, 0, 0.16), rgba(255, 255, 255, 0) 42%),
    #232f3e;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(35, 47, 62, 0.18);
}

.article-cta div {
  min-width: 0;
}

.article-cta p {
  margin: 0 0 8px;
  color: #ffd28a;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.14;
  letter-spacing: 0;
}

.article-cta span {
  display: block;
  max-width: 560px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.article-cta .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.article-related-section {
  padding: 72px 0 84px;
}

.article-related-header h2 {
  margin: 0 0 24px;
  color: #232f3e;
  font-size: 34px;
  line-height: 1.14;
}

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

.article-related-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(31, 41, 51, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(31, 41, 51, 0.14);
}

.article-related-image {
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 222, 230, 0.82);
  background: #eef4f8;
}

.article-related-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-related-card:hover .article-related-image img {
  transform: scale(1.045);
}

.article-related-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.article-related-body span {
  color: #8a5100;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-related-body h3,
.article-related-body p {
  margin: 0;
}

.article-related-body h3 {
  color: #232f3e;
  font-size: 21px;
  line-height: 1.22;
}

.article-related-body p {
  color: #51606f;
  font-size: 15px;
  line-height: 1.58;
}

.article-related-body strong {
  margin-top: 4px;
  color: #8a5100;
  font-size: 14px;
  font-weight: 900;
}

.article-mobile-nav {
  display: none;
}

.mini-tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.mini-tool {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--aws-orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.back-link::before {
  content: "←";
}

.whois-query {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.whois-query label {
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
}

.whois-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.dns-field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.28fr);
  gap: 14px;
}

.dns-field-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.dns-field-grid label span {
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
}

.dns-select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--slate) 50%),
    linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 13px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.dns-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 42px 0 104px;
  background: var(--soft);
}

.dns-tool-container {
  display: grid;
  gap: 22px;
}

.dns-tool-header {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.dns-tool-header h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}

.dns-tool-header p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  font-weight: 600;
}

.dns-query {
  display: grid;
  gap: 24px;
  padding: 20px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dns-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dns-type-pill {
  min-width: 48px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(35, 47, 62, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--slate);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(35, 47, 62, 0.04);
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.dns-type-pill:hover,
.dns-type-pill.is-active {
  border-color: rgba(255, 153, 0, 0.46);
  background: rgba(255, 153, 0, 0.12);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(255, 153, 0, 0.12);
}

.dns-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.dns-search-panel {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 0 10px 0 24px;
  border: 1px solid rgba(35, 47, 62, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(35, 47, 62, 0.08);
}

.dns-search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  position: relative;
}

.dns-search-icon::before,
.dns-search-icon::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--teal);
}

.dns-search-icon::before {
  top: 7px;
  left: -3px;
  right: -3px;
  height: 2px;
}

.dns-search-icon::after {
  top: -3px;
  bottom: -3px;
  left: 7px;
  width: 2px;
}

.dns-search-input {
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  font-weight: 700;
}

.dns-search-input:focus {
  border-color: transparent;
  box-shadow: none;
}

.dns-submit-button {
  min-width: 102px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--aws-orange);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.dns-submit-button:hover {
  background: #ffad33;
}

.dns-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.whois-result {
  min-height: 248px;
  padding: 28px;
}

.dns-result {
  min-height: 0;
  padding: 22px;
  border-color: rgba(215, 222, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 56px rgba(35, 47, 62, 0.08);
}

.dns-result[hidden] {
  display: none;
}

.whois-result [data-whois-state] {
  display: none;
}

.dns-result [data-dns-state] {
  display: none;
}

.whois-result [data-whois-state="idle"] {
  display: grid;
}

.dns-result [data-dns-state="idle"] {
  display: grid;
}

.whois-result.is-loading [data-whois-state],
.whois-result.is-error [data-whois-state],
.whois-result.is-success [data-whois-state] {
  display: none;
}

.dns-result.is-loading [data-dns-state],
.dns-result.is-error [data-dns-state],
.dns-result.is-empty [data-dns-state],
.dns-result.is-success [data-dns-state] {
  display: none;
}

.whois-result.is-loading [data-whois-state="loading"],
.whois-result.is-error [data-whois-state="error"],
.whois-result.is-success [data-whois-state="success"] {
  display: grid;
}

.dns-result.is-loading [data-dns-state="loading"],
.dns-result.is-error [data-dns-state="error"],
.dns-result.is-empty [data-dns-state="empty"],
.dns-result.is-success [data-dns-state="success"] {
  display: grid;
}

.whois-state {
  display: grid;
  align-content: center;
  min-height: 190px;
  gap: 12px;
  text-align: center;
}

.dns-state {
  min-height: 176px;
}

.whois-state p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--slate);
}

.whois-state.error {
  color: #b42318;
}

.whois-state.error h2,
.whois-state.error p {
  color: #b42318;
}

.whois-success {
  display: grid;
  gap: 22px;
}

.dns-success {
  gap: 22px;
}

.dns-result-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.dns-result-eyebrow {
  color: var(--aws-orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dns-result-header h2 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.dns-result-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.dns-result-tag {
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border: 1px solid rgba(35, 47, 62, 0.1);
  border-radius: 8px;
  background: var(--soft);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.dns-result-tag strong {
  color: var(--navy);
}

.dns-result-tag.is-type {
  border-color: rgba(255, 153, 0, 0.34);
  background: rgba(255, 153, 0, 0.13);
  color: var(--navy);
}

.dns-result-tag.is-resolver {
  border-color: rgba(14, 159, 156, 0.24);
  background: rgba(14, 159, 156, 0.08);
}

.whois-result-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.source-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(14, 159, 156, 0.24);
  border-radius: 8px;
  background: rgba(14, 159, 156, 0.08);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.source-badge strong {
  margin-left: 4px;
  color: var(--navy);
}

.dns-chain-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(35, 47, 62, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 153, 0, 0.08), rgba(14, 159, 156, 0.07)),
    var(--white);
}

.dns-chain-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dns-chain-title span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.dns-chain-title strong {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  background: rgba(35, 47, 62, 0.08);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
}

.dns-chain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dns-chain-item {
  position: relative;
  max-width: min(100%, 360px);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 47, 62, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.dns-chain-item:not(:last-child)::after {
  width: 18px;
  height: 1px;
  margin-right: -28px;
  background: rgba(35, 47, 62, 0.22);
  content: "";
}

.dns-chain-badge {
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.dns-chain-item.is-query .dns-chain-badge {
  background: var(--aws-orange);
  color: var(--navy);
}

.dns-chain-item.is-hop .dns-chain-badge {
  background: var(--teal);
}

.dns-chain-item.is-answer .dns-chain-badge {
  background: var(--green);
}

.dns-chain-content {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.dns-chain-content strong,
.dns-chain-content span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.dns-chain-content strong {
  color: var(--navy);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.dns-chain-content span {
  color: var(--slate);
  font-size: 12px;
  font-weight: 750;
}

.dns-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.dns-meta-list > div {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.dns-meta-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dns-meta-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
  font-weight: 750;
}

.dns-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.dns-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.dns-table th,
.dns-table td {
  min-width: 0;
  padding: 13px 22px;
  border-bottom: 1px solid #dde5ef;
  text-align: left;
  vertical-align: middle;
}

.dns-table th {
  color: var(--slate);
  background: transparent;
  font-size: 16px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.dns-table td {
  color: var(--ink);
  overflow-wrap: anywhere;
  font-weight: 700;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.dns-table tr:last-child td {
  border-bottom: 0;
}

.dns-table [data-dns-cell="type"] {
  font-family: inherit;
}

.dns-table [data-dns-cell="resolver"] {
  font-family: inherit;
  color: #334155;
}

.dns-value-cell {
  min-width: 220px;
  max-width: 520px;
  white-space: normal;
  word-break: break-word;
}

.dns-source-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dns-source-cell::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.16);
  content: "";
}

.dns-record-badge {
  min-width: 48px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 153, 0, 0.32);
  border-radius: 8px;
  background: rgba(255, 153, 0, 0.12);
  color: var(--navy);
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
}

.dns-record-badge.is-cname,
.dns-record-badge.is-ns {
  border-color: rgba(14, 159, 156, 0.25);
  background: rgba(14, 159, 156, 0.09);
}

.dns-record-badge.is-mx,
.dns-record-badge.is-txt {
  border-color: rgba(47, 158, 68, 0.22);
  background: rgba(47, 158, 68, 0.08);
}

.dns-guide {
  display: grid;
  gap: 26px;
  padding: 36px 22px 32px;
  border-color: rgba(215, 222, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 56px rgba(35, 47, 62, 0.08);
}

.dns-guide-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dns-guide-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.dns-guide-icon {
  width: 14px;
  height: 16px;
  border: 1.8px solid var(--aws-orange);
  border-radius: 50% / 22%;
  position: relative;
}

.dns-guide-icon::before,
.dns-guide-icon::after {
  position: absolute;
  right: 1px;
  left: 1px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--aws-orange);
  content: "";
}

.dns-guide-icon::before {
  top: 4px;
}

.dns-guide-icon::after {
  bottom: 4px;
}

.dns-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(56px, auto));
  grid-auto-flow: column;
  column-gap: 14px;
}

.dns-guide-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid #dde5ef;
}

.dns-guide-row strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.dns-guide-row span {
  justify-self: end;
  color: var(--slate);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  text-align: right;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list span {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 800;
}

.whois-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 48px 0 64px;
  background: #f8f9f9;
}

.whois-tool-page .whois-tool-container {
  display: grid;
  gap: 48px;
  max-width: 1160px;
}

.whois-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.whois-tool-header .section-kicker {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whois-tool-header h1 {
  margin: 0;
  color: #111827;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.whois-tool-header p {
  margin: 0;
  max-width: 576px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
  text-wrap: balance;
}

.whois-query-card {
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.whois-query {
  display: grid;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.whois-search-panel {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.whois-search-panel:focus-within {
  border-color: var(--aws-orange);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.18), 0 10px 24px rgba(35, 47, 62, 0.08);
}

.whois-search-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.whois-search-icon svg,
.whois-success-icon svg,
.whois-card-icon svg,
.whois-raw summary svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.whois-search-input {
  min-width: 0;
  height: 48px;
  padding: 0 2px;
  border: 0;
  outline: none;
  background: transparent;
  color: #111827;
  font-size: 14px;
  line-height: 1.4;
}

.whois-search-input:focus {
  border-color: transparent;
  box-shadow: none;
}

.whois-search-input::placeholder {
  color: #6b7280;
}

.whois-submit-button {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--aws-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.whois-submit-button:hover {
  background: #cc7a00;
}

.whois-tool-search p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 650;
}

.whois-examples {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

.whois-examples strong {
  color: #6b7280;
  font-weight: 700;
}

.whois-examples div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.whois-examples button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--aws-orange);
  font-size: 14px;
  font-weight: 700;
}

.whois-examples button:hover {
  text-decoration: underline;
}

.whois-result {
  display: grid;
  gap: 24px;
  min-height: 0;
  padding: 0;
}

.whois-result[hidden] {
  display: none;
}

.whois-result [data-whois-state] {
  display: none;
}

.whois-result.is-loading [data-whois-state],
.whois-result.is-error [data-whois-state],
.whois-result.is-success [data-whois-state] {
  display: none;
}

.whois-result.is-loading [data-whois-state="loading"],
.whois-result.is-error [data-whois-state="error"],
.whois-result.is-success [data-whois-state="success"] {
  display: grid;
}

.whois-state {
  align-content: center;
  min-height: 136px;
  gap: 10px;
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.whois-state h2 {
  margin: 0;
  color: #111827;
  font-size: 20px;
}

.whois-state p {
  margin: 0 auto;
  max-width: 520px;
  color: #4b5563;
  font-size: 14px;
}

.whois-state.error h2,
.whois-state.error p {
  color: #b42318;
}

.whois-success {
  gap: 24px;
}

.whois-result-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.whois-result-summary-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whois-success-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
}

.whois-success-icon svg {
  width: 24px;
  height: 24px;
}

.whois-result-summary h2 {
  margin: 0;
  color: #111827;
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.whois-result-summary p,
.whois-result-updated p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
}

.whois-result-updated {
  flex: 0 0 auto;
  display: grid;
  gap: 3px;
  text-align: right;
}

.whois-result-updated p {
  color: #9ca3af;
}

.whois-result-updated time {
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.whois-result-stack {
  display: grid;
  gap: 24px;
}

.whois-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 16px;
}

.whois-feature-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  padding: 12px;
  border: 1px solid #f9fafb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  text-align: center;
}

.whois-feature-icon {
  position: relative;
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.08);
  color: #f97316;
}

.whois-feature-icon::before,
.whois-feature-icon::after {
  position: absolute;
  content: "";
}

.whois-feature-icon.search::before {
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.whois-feature-icon.search::after {
  width: 7px;
  height: 1.5px;
  margin: 12px 0 0 12px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.whois-feature-icon.shield::before {
  width: 16px;
  height: 19px;
  border: 1.5px solid currentColor;
  clip-path: polygon(50% 0, 100% 16%, 88% 78%, 50% 100%, 12% 78%, 0 16%);
}

.whois-feature-icon.shield::after {
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.whois-feature-icon.bolt::before {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.whois-feature-icon.bolt::after {
  width: 8px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(48% 0, 100% 0, 64% 40%, 94% 40%, 34% 100%, 48% 55%, 12% 55%);
}

.whois-feature-icon.globe::before {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, currentColor 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, currentColor 47% 53%, transparent 53%);
}

.whois-feature-icon.globe::after {
  width: 10px;
  height: 20px;
  border-right: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  border-radius: 50%;
}

.whois-feature-card h2 {
  margin: 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.whois-feature-card p {
  margin: 0;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.35;
}

.whois-result-card {
  display: grid;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.whois-result-card header {
  padding: 16px 24px;
  border-bottom: 1px solid #f9fafb;
  background: rgba(249, 250, 251, 0.5);
}

.whois-result-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.whois-card-icon {
  width: 16px;
  height: 16px;
  color: var(--aws-orange);
}

.whois-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  padding: 24px;
}

.whois-info-grid-compact {
  gap: 24px;
}

.whois-info-item {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.whois-info-item p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.whois-info-item strong {
  min-width: 0;
  color: #111827;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.whois-info-item [data-whois-field="expiresAt"] {
  color: var(--aws-orange);
  font-weight: 900;
}

.whois-status-value {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.whois-status-value span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.whois-status-value strong {
  font-weight: 900;
}

.whois-name-server-list {
  display: grid;
  gap: 4px;
  color: #111827;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.45;
}

.whois-name-server-list span {
  display: block;
}

.whois-raw {
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.whois-raw summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #111827;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.whois-raw summary::-webkit-details-marker {
  display: none;
}

.whois-raw summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.15s ease;
}

.whois-raw[open] summary svg {
  transform: rotate(180deg);
}

.whois-raw div {
  background: #111827;
  overflow-x: auto;
}

.whois-raw p {
  margin: 0;
  padding: 16px 24px 0;
  color: #9ca3af;
  font-size: 12px;
}

.whois-raw pre {
  max-height: 420px;
  min-width: 100%;
  margin: 0;
  padding: 24px;
  overflow: auto;
  color: #d1d5db;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
}

.whois-faq-section {
  display: grid;
  gap: 24px;
}

.whois-faq-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.whois-faq-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.whois-faq-heading span {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--aws-orange);
}

.whois-faq-list {
  display: grid;
  gap: 16px;
}

.whois-faq-list .faq-item {
  border-color: #f3f4f6;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.whois-faq-list .faq-item summary {
  position: relative;
  min-height: auto;
  padding: 16px 64px 16px 24px;
  color: #111827;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.whois-faq-list .faq-item summary::after {
  right: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.08);
  color: var(--aws-orange-dark);
  content: "+";
  font-size: 18px;
}

.whois-faq-list .faq-item[open] summary::after {
  content: "-";
  transform: none;
}

.whois-faq-list .faq-item p {
  padding: 12px 24px 16px;
  border-top: 1px solid #f9fafb;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 48px 0 32px;
  background: #111820;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(120px, 0.75fr)) minmax(180px, 1fr);
  gap: 32px;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  display: block;
}

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

.footer-links a:hover {
  color: var(--aws-orange);
}

.footer-contact-list {
  gap: 10px;
}

.footer-contact-link {
  display: inline-grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.footer-contact-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 153, 0, 0.9);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-contact-link strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-contact-link:hover {
  color: var(--aws-orange);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-align: center;
}

.mobile-bottom-nav {
  display: none;
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 34;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  isolation: isolate;
}

.floating-contact-board {
  position: absolute;
  right: 78px;
  bottom: 0;
  width: 452px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 10px;
  border: 1px solid rgba(216, 222, 230, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.floating-contact:hover .floating-contact-board,
.floating-contact:focus-within .floating-contact-board {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  visibility: visible;
}

.floating-contact-board::after {
  position: absolute;
  right: -8px;
  bottom: 25px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(216, 222, 230, 0.9);
  border-right: 1px solid rgba(216, 222, 230, 0.9);
  background: rgba(255, 255, 255, 0.98);
  content: "";
  transform: rotate(45deg);
}

.floating-contact-qr-tile {
  --floating-contact-color: var(--blue);
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px 12px 12px;
  text-align: center;
}

.floating-contact-qr-tile + .floating-contact-qr-tile {
  border-left: 1px solid #eef2f6;
}

.floating-contact-qr-tile.is-telegram,
.floating-contact-item.is-telegram {
  --floating-contact-color: #229ed9;
  --floating-contact-soft: rgba(34, 158, 217, 0.12);
}

.floating-contact-qr-tile.is-whatsapp,
.floating-contact-item.is-whatsapp {
  --floating-contact-color: #25d366;
  --floating-contact-soft: rgba(37, 211, 102, 0.14);
}

.floating-contact-qr-tile.is-whatsapp {
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.08);
}

.floating-contact-tile-header {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
}

.floating-contact-tile-header strong {
  display: block;
  text-align: center;
}

.floating-contact-tile-header strong {
  font-size: 17px;
  line-height: 21px;
  font-weight: 900;
}

.floating-contact-tile-icon {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--floating-contact-soft);
  color: var(--floating-contact-color);
}

.floating-contact-tile-icon.is-social-brand {
  background: var(--floating-contact-color);
  color: var(--white);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--floating-contact-color) 28%, transparent);
}

.floating-contact-tile-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact-tile-icon svg.social-contact-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.floating-contact-actions {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.floating-contact-label {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.floating-contact-list {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.floating-contact-item {
  --floating-contact-color: var(--blue);
  --floating-contact-soft: rgba(37, 99, 235, 0.14);
}

.floating-contact-trigger {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--floating-contact-color) 82%, white), var(--floating-contact-color));
  color: var(--white);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--floating-contact-color) 30%, transparent);
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.floating-contact-trigger:hover,
.floating-contact-trigger:focus-visible {
  box-shadow: 0 18px 38px color-mix(in srgb, var(--floating-contact-color) 38%, transparent);
  outline: 0;
  transform: translateY(-2px);
}

.floating-contact-icon,
.floating-contact-icon svg {
  width: 30px;
  height: 30px;
}

.floating-contact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact-icon svg.social-contact-icon {
  fill: currentColor;
  stroke: none;
}

.floating-contact-qr {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid color-mix(in srgb, var(--floating-contact-color) 24%, var(--line));
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 0 0 5px var(--floating-contact-soft);
  overflow: hidden;
  isolation: isolate;
}

.floating-contact-qr::before {
  position: absolute;
  inset: 7px;
  z-index: 1;
  border-radius: 4px;
  background: var(--floating-contact-color);
  content: "";
  mix-blend-mode: lighten;
  opacity: 0.9;
  pointer-events: none;
}

.floating-contact-qr-image {
  position: relative;
  z-index: 0;
  width: 118px;
  height: 118px;
  border-radius: 4px;
  background: var(--white);
}

.floating-contact-qr.is-scan-priority {
  width: 166px;
  height: 166px;
  padding: 10px;
  border-color: rgba(37, 211, 102, 0.34);
  background: var(--white);
}

.floating-contact-qr.is-scan-priority::before {
  display: none;
}

.floating-contact-qr.is-scan-priority .floating-contact-qr-image {
  width: 146px;
  height: 146px;
  border-radius: 0;
  image-rendering: pixelated;
}

.floating-contact-qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 1px solid rgba(216, 222, 230, 0.95);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(31, 41, 51, 0.16);
  transform: translate(-50%, -50%);
}

.floating-contact-qr-logo img {
  width: 28px;
  height: 28px;
}

.floating-contact-qr-logo.is-whatsapp {
  padding: 0;
  border: 5px solid var(--white);
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
}

.floating-contact-qr-logo.is-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.floating-contact-id {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.floating-contact-id strong {
  max-width: 100%;
  color: var(--navy);
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .floating-contact {
    right: 14px;
    bottom: 112px;
    display: grid;
    justify-items: end;
  }

  .floating-contact-board {
    right: 0;
    bottom: calc(100% + 12px);
    width: min(388px, calc(100vw - 28px));
    transform: translateY(10px) scale(0.98);
    transform-origin: right bottom;
  }

  .floating-contact:hover .floating-contact-board,
  .floating-contact:focus-within .floating-contact-board {
    transform: translateY(0) scale(1);
  }

  .floating-contact-board::after {
    right: 22px;
    bottom: -8px;
    border-top: 0;
    border-right: 1px solid rgba(216, 222, 230, 0.9);
    border-bottom: 1px solid rgba(216, 222, 230, 0.9);
  }

  .floating-contact-list {
    gap: 10px;
  }

  .floating-contact-trigger {
    width: 54px;
    height: 54px;
  }

  .floating-contact-label {
    display: none;
  }

  .floating-contact-qr {
    width: 122px;
    height: 122px;
  }

  .floating-contact-qr-image {
    width: 108px;
    height: 108px;
  }

  .floating-contact-qr.is-scan-priority {
    width: 144px;
    height: 144px;
    padding: 9px;
  }

  .floating-contact-qr.is-scan-priority .floating-contact-qr-image {
    width: 126px;
    height: 126px;
  }

  .floating-contact-qr-tile {
    padding: 12px 8px 10px;
  }

  .floating-contact-tile-header {
    gap: 6px;
  }

  .floating-contact-tile-header strong {
    font-size: 15px;
    line-height: 19px;
  }
}

@media (max-width: 380px) {
  .floating-contact-board {
    width: min(326px, calc(100vw - 28px));
  }

  .floating-contact-qr {
    width: 112px;
    height: 112px;
  }

  .floating-contact-qr-image {
    width: 98px;
    height: 98px;
  }

  .floating-contact-qr.is-scan-priority {
    width: 128px;
    height: 128px;
    padding: 8px;
  }

  .floating-contact-qr.is-scan-priority .floating-contact-qr-image {
    width: 112px;
    height: 112px;
  }

  .floating-contact-tile-icon {
    display: none;
  }
}

@media (max-width: 1180px) {
  html[lang="en"] .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 112px;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 8px 14px;
    padding: 10px 0;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    position: static;
    order: 3;
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav > a,
  .tools-menu-trigger {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
  }

  .nav > a[aria-current="page"],
  .tools-menu-trigger[aria-current="page"] {
    background: rgba(255, 153, 0, 0.14);
  }

  .nav > a[aria-current="page"]::after,
  .tools-menu-trigger[aria-current="page"]::after {
    display: none;
  }

  .menu-button {
    display: none;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .tools-submenu {
    top: calc(100% + 4px);
  }

  .language-switcher {
    min-height: 32px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  html[lang="en"] .service-hero-title {
    font-size: 38px;
  }

  html[lang="en"] .hero h1 {
    font-size: 37px;
  }

  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-flow-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .service-flow-timeline::before {
    display: none;
  }

  .split,
  .page-hero-inner,
  .form-layout,
  .tool-hero .page-hero-inner,
  .knowledge-feature-layout,
  .knowledge-category-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-inner .visual-frame {
    max-width: 640px;
  }

  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-latest-card {
    grid-template-columns: 156px minmax(0, 1fr);
  }

  .article-side {
    position: static;
  }

  .whois-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .knowledge-latest-card {
    grid-template-columns: 1fr;
  }

  .knowledge-latest-image {
    min-height: 210px;
  }

  .dns-field-grid {
    grid-template-columns: 1fr;
  }

  .dns-search-panel {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 14px 18px;
  }

  .whois-search-panel {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .dns-submit-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .whois-examples {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 108px;
  }

  body {
    padding-bottom: 70px;
  }

  body.page-whois,
  body.page-dns {
    padding-bottom: 0;
  }

  .container,
  .wide-container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 10px;
    line-height: 1.12;
  }

  html[lang="en"] .brand-text {
    font-size: 9.5px;
  }

  .header-actions {
    margin-left: 0;
  }

  .nav {
    justify-content: space-between;
    gap: 4px;
    padding: 0 2px;
  }

  .nav > a,
  .tools-menu-trigger {
    padding: 7px 8px;
    font-size: 12px;
  }

  html[lang="en"] .nav {
    gap: 2px;
  }

  html[lang="en"] .nav > a,
  html[lang="en"] .tools-menu-trigger {
    padding: 7px 5px;
    font-size: 11px;
  }

  .hero {
    min-height: calc(88svh - var(--header-height));
  }

  .hero-media::after {
    background:
      radial-gradient(circle at 50% 32%, rgba(255, 153, 0, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(10, 16, 24, 0.9), rgba(18, 26, 36, 0.5) 44%, rgba(9, 15, 24, 0.84) 100%),
      linear-gradient(90deg, rgba(10, 16, 24, 0.58), rgba(35, 47, 62, 0.16));
  }

  .hero-content {
    padding: 54px 0 68px;
  }

  .hero h1,
  .page-hero h1,
  .article-header h1 {
    font-size: 34px;
  }

  html[lang="en"] .service-hero-title {
    font-size: 30px;
  }

  html[lang="en"] .hero h1 {
    font-size: 28px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-band,
  .article-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .hero-actions {
    gap: 12px;
    margin-top: 34px;
  }

  .hero .hero-actions .button {
    min-height: 58px;
    padding: 0 22px;
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .proof-item {
    flex: 0 0 26px;
  }

  .code-window pre {
    padding: 18px;
  }

  .code-window code {
    width: max-content;
    min-width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    display: grid;
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-flow-header .section-title {
    font-size: 27px;
  }

  .service-flow-timeline {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-flow-step {
    gap: 14px;
  }

  .service-flow-step h3 {
    margin-top: 10px;
    font-size: 20px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .knowledge-article-grid,
  .article-related-grid,
  .knowledge-category-grid,
  .field-grid,
  .footer-grid,
  .contact-grid,
  .mini-tool-grid,
  .dns-guide-grid,
  .dns-meta-list,
  .whois-feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-qr-frame {
    width: min(100%, 180px);
    padding: 10px;
  }

  .contact-qr-logo {
    width: 40px;
    height: 40px;
    border-width: 5px;
  }

  .contact-copy-button {
    width: 26px;
  }

  .tool-hero-panel {
    min-height: 240px;
    padding: 20px;
  }

  .tool-card,
  .mini-tool {
    padding: 20px;
  }

  .knowledge-stitch-shell {
    gap: 42px;
    padding: 38px 0 54px;
  }

  .knowledge-stitch-container {
    width: min(100% - 28px, 1280px);
  }

  .knowledge-stitch-copy h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .knowledge-feature-card {
    min-height: 360px;
  }

  .knowledge-category-card {
    min-height: 0;
  }

  .knowledge-feature-content {
    padding: 22px;
  }

  .knowledge-feature-content h2 {
    font-size: 26px;
  }

  .knowledge-spotlight-card {
    min-height: 0;
    padding: 20px;
  }

  .knowledge-latest-card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 20px;
  }

  .knowledge-latest-image {
    min-height: 180px;
  }

  .knowledge-latest-card h3 {
    font-size: 22px;
  }

  .knowledge-pagination {
    flex-wrap: wrap;
  }

  .article-shell {
    padding-top: 38px;
  }

  .article-container {
    width: min(100% - 28px, 1160px);
  }

  .article-breadcrumb {
    margin-bottom: 26px;
  }

  .article-deck,
  .article-body p {
    font-size: 16px;
  }

  .article-visual img {
    height: 300px;
  }

  .article-body {
    gap: 34px;
    padding-top: 40px;
  }

  .article-body h2 {
    font-size: 25px;
  }

  .article-body h3 {
    font-size: 20px;
  }

  .article-footer-actions {
    display: grid;
  }

  .article-action-list {
    justify-content: start;
  }

  .article-cta {
    margin-top: 46px;
    padding: 24px;
  }

  .article-cta h2,
  .article-related-header h2 {
    font-size: 25px;
  }

  .article-related-section {
    padding: 56px 0 64px;
  }

  .dns-tool-page {
    padding: 32px 0 72px;
  }

  .whois-tool-page {
    padding: 36px 0 56px;
  }

  .dns-guide-grid {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .dns-tool-container,
  .whois-tool-container {
    gap: 36px;
  }

  .dns-tool-header h1 {
    font-size: 36px;
  }

  .dns-type-pills {
    gap: 8px;
  }

  .dns-type-pill {
    min-width: 0;
    padding: 0 13px;
  }

  .dns-search-panel {
    gap: 14px;
  }

  .whois-search-panel {
    gap: 14px;
  }

  .dns-search-input {
    min-width: 0;
    font-size: 18px;
  }

  .dns-result,
  .dns-guide {
    padding: 18px;
  }

  .dns-result-header {
    grid-template-columns: 1fr;
  }

  .dns-result-tags {
    justify-content: flex-start;
  }

  .dns-chain-list {
    display: grid;
  }

  .dns-chain-item {
    max-width: 100%;
  }

  .dns-chain-item:not(:last-child)::after {
    display: none;
  }

  .dns-table {
    min-width: 0;
    table-layout: fixed;
  }

  .dns-table th:nth-child(1),
  .dns-table td:nth-child(1) {
    width: 76px;
  }

  .dns-table th:nth-child(3),
  .dns-table td:nth-child(3) {
    width: 74px;
  }

  .dns-table th[data-dns-column="resolver"],
  .dns-table td[data-dns-cell="resolver"] {
    display: none;
  }

  .dns-value-cell {
    min-width: 0;
  }

  .dns-table th,
  .dns-table td {
    padding: 12px 10px;
  }

  .dns-table th {
    font-size: 14px;
  }

  .dns-guide-row {
    grid-template-columns: minmax(70px, 0.3fr) minmax(0, 1fr);
    gap: 12px;
  }

  .source-badge {
    justify-self: start;
    white-space: normal;
  }

  .whois-query-card,
  .whois-info-grid,
  .whois-result-card header,
  .whois-raw summary,
  .whois-raw p,
  .whois-raw pre {
    padding-right: 18px;
    padding-left: 18px;
  }

  .whois-tool-header h1 {
    font-size: 30px;
  }

  .whois-result-summary {
    display: grid;
    align-items: start;
  }

  .whois-result-updated {
    text-align: left;
  }

  .whois-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .whois-faq-list .faq-item summary {
    min-height: auto;
    padding: 16px 58px 16px 18px;
    font-size: 15px;
  }

  .whois-faq-list .faq-item summary::after {
    right: 18px;
  }

  .whois-faq-list .faq-item p {
    padding: 12px 18px 16px;
    font-size: 14px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 24px;
    white-space: normal;
  }

  .form-panel {
    padding: 22px;
  }

  .cta-band {
    padding: 24px;
  }

  .cta-band h2 {
    font-size: 24px;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 21;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(216, 222, 230, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    display: grid;
    gap: 3px;
    place-items: center;
    min-height: 46px;
    border-radius: 8px;
    color: var(--slate);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    background: rgba(255, 153, 0, 0.16);
    color: var(--navy);
  }

  body.page-whois .mobile-bottom-nav,
  body.page-dns .mobile-bottom-nav {
    display: none;
  }

  body.article-detail-page .mobile-bottom-nav {
    display: none;
  }

  .article-mobile-nav {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 22;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(216, 222, 230, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
  }

  .article-mobile-nav a {
    display: grid;
    gap: 3px;
    place-items: center;
    min-height: 46px;
    border-radius: 8px;
    color: #51606f;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .article-mobile-nav a[aria-current="page"] {
    background: rgba(255, 153, 0, 0.16);
    color: #232f3e;
  }
}

@media (max-width: 480px) {
  html[lang="en"] .hero h1 {
    font-size: 19px;
  }
}

@media (max-width: 380px) {
  html[lang="en"] .hero h1 {
    font-size: 17px;
  }
}

body.page-passwordGenerator {
  background: #f8f9f9;
}

body.page-passwordGenerator .site-shell {
  background: #f8f9f9;
}

body.page-timestampConverter .site-shell {
  background: #f8f9f9;
}

body.page-baseConverter .site-shell {
  background: #f8f9f9;
}

.base-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.base-tool-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.base-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.base-tool-header h1 {
  max-width: 760px;
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.base-tool-header p {
  max-width: 780px;
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.base-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.base-input-card,
.base-result-card,
.base-privacy-note,
.base-feature-card,
.base-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.base-input-card,
.base-result-card {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.base-card-header {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.base-card-header h2,
.base-privacy-note h2,
.base-feature-section h2,
.base-faq h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.base-card-header p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.base-status {
  flex: 0 0 auto;
  max-width: 220px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: center;
}

.base-status.is-success {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.base-status.is-error {
  border-color: rgba(201, 111, 0, 0.28);
  background: rgba(255, 231, 191, 0.74);
  color: #8a5100;
}

.base-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.base-field {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: #232f3e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.base-field input,
.base-field select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #191c1c;
  font-size: 15px;
  font-weight: 700;
}

.base-field input {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.base-field select {
  font-weight: 800;
}

.base-field input:focus,
.base-field select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.base-hints {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background: #f9fafa;
}

.base-hints .material-symbols-outlined {
  color: #0062a0;
  font-size: 20px;
}

.base-hints p {
  margin: 0;
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}

.base-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.base-action-button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.base-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.base-result-grid {
  display: grid;
  gap: 12px;
}

.base-result-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(108px, 0.36fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

.base-result-item span {
  display: block;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.base-result-item h3 {
  margin: 2px 0 0;
  color: #232f3e;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}

.base-result-item output {
  min-width: 0;
  color: #191c1c;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.base-result-item button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #535f70;
}

.base-result-item button:hover,
.base-result-item button.is-copied {
  border-color: rgba(0, 115, 187, 0.24);
  background: rgba(208, 228, 255, 0.58);
  color: #0062a0;
}

.base-result-item button .material-symbols-outlined {
  font-size: 19px;
  line-height: 1;
}

.base-privacy-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
}

.base-privacy-note .material-symbols-outlined,
.base-feature-card .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d0e4ff;
  color: #0062a0;
  font-size: 22px;
}

.base-privacy-note p,
.base-feature-card p,
.base-faq p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.base-feature-section,
.base-faq {
  display: grid;
  gap: 24px;
}

.base-feature-section h2,
.base-faq h2 {
  text-align: center;
}

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

.base-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
}

.base-feature-card .material-symbols-outlined {
  background: #e6f4ea;
  color: #1e8e3e;
}

.base-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.base-faq-list {
  display: grid;
  gap: 12px;
}

.base-faq details {
  padding: 0;
  overflow: hidden;
}

.base-faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
}

.base-faq details[open] summary {
  border-bottom: 1px solid #e6e9e9;
}

.base-faq details p {
  padding: 0 20px 18px;
}

@media (max-width: 980px) {
  .base-workbench,
  .base-feature-grid {
    grid-template-columns: 1fr;
  }

  .base-feature-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .base-tool-page {
    padding: 32px 0 72px;
  }

  .base-tool-container {
    width: min(100% - 28px, 1160px);
    gap: 40px;
  }

  .base-tool-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .base-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .base-input-card,
  .base-result-card,
  .base-privacy-note,
  .base-feature-card {
    padding: 20px;
  }

  .base-card-header,
  .base-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .base-status,
  .base-action-button {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .base-result-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .base-result-item output {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .base-result-item button {
    grid-column: 2;
    grid-row: 1;
  }

  .base-privacy-note,
  .base-hints {
    grid-template-columns: 1fr;
  }
}

.timestamp-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.timestamp-tool-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.timestamp-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.timestamp-tool-header h1 {
  max-width: 760px;
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.timestamp-tool-header p {
  max-width: 780px;
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.timestamp-workbench {
  display: grid;
  gap: 24px;
}

.timestamp-current-card,
.timestamp-card,
.timestamp-privacy-note,
.timestamp-feature-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.timestamp-current-card,
.timestamp-card {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.timestamp-card-header {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.timestamp-card-header h2,
.timestamp-privacy-note h2,
.timestamp-feature-section h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.timestamp-card-header p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.timestamp-icon-button {
  min-height: 42px;
  gap: 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.timestamp-icon-button .material-symbols-outlined,
.timestamp-current-value button .material-symbols-outlined {
  font-size: 19px;
  line-height: 1;
}

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

.timestamp-current-value {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

.timestamp-current-wide {
  grid-column: 1 / -1;
}

.timestamp-current-value span {
  grid-column: 1 / -1;
  color: #535f70;
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
}

.timestamp-current-value strong {
  min-width: 0;
  color: #191c1c;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.timestamp-current-value button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #535f70;
}

.timestamp-current-value button:hover,
.timestamp-current-value button.is-copied {
  border-color: rgba(0, 115, 187, 0.24);
  background: rgba(208, 228, 255, 0.58);
  color: #0062a0;
}

.timestamp-converter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.timestamp-status {
  flex: 0 0 auto;
  max-width: 220px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: center;
}

.timestamp-status.is-success {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.timestamp-status.is-error {
  border-color: rgba(201, 111, 0, 0.28);
  background: rgba(255, 231, 191, 0.74);
  color: #8a5100;
}

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

.timestamp-field {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: #232f3e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.timestamp-field-wide {
  grid-column: 1 / -1;
}

.timestamp-field input,
.timestamp-field select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #191c1c;
  font-size: 15px;
  font-weight: 700;
}

.timestamp-field input {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.timestamp-field select {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timestamp-field input:focus,
.timestamp-field select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.timestamp-segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
}

.timestamp-segmented button {
  min-width: 0;
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #535f70;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
}

.timestamp-segmented button.is-active {
  background: #ffffff;
  color: #232f3e;
  box-shadow: 0 2px 10px rgba(35, 47, 62, 0.08);
}

.timestamp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.timestamp-action-button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.timestamp-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.timestamp-result {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

.timestamp-result[hidden] {
  display: none;
}

.timestamp-result-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(118px, 0.56fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #e6e9e9;
}

.timestamp-result-row:last-child {
  border-bottom: 0;
}

.timestamp-result-row span {
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.timestamp-result-row strong {
  min-width: 0;
  color: #191c1c;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.timestamp-privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
}

.timestamp-privacy-note .material-symbols-outlined,
.timestamp-feature-card .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 22px;
}

.timestamp-privacy-note p,
.timestamp-feature-card p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.timestamp-feature-section {
  display: grid;
  gap: 24px;
}

.timestamp-feature-section h2 {
  text-align: center;
}

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

.timestamp-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
}

.timestamp-feature-card .material-symbols-outlined {
  background: #d0e4ff;
  color: #0062a0;
}

.timestamp-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .timestamp-converter-grid,
  .timestamp-feature-grid {
    grid-template-columns: 1fr;
  }

  .timestamp-feature-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .timestamp-tool-page {
    padding: 32px 0 72px;
  }

  .timestamp-tool-container {
    width: min(100% - 28px, 1160px);
    gap: 40px;
  }

  .timestamp-tool-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .timestamp-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .timestamp-current-card,
  .timestamp-card,
  .timestamp-privacy-note,
  .timestamp-feature-card {
    padding: 20px;
  }

  .timestamp-card-header,
  .timestamp-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .timestamp-status,
  .timestamp-icon-button,
  .timestamp-action-button {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .timestamp-current-grid,
  .timestamp-form-grid,
  .timestamp-segmented {
    grid-template-columns: 1fr;
  }

  .timestamp-current-value strong {
    font-size: 21px;
    line-height: 30px;
  }

  .timestamp-result-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timestamp-privacy-note {
    grid-template-columns: 1fr;
  }
}

.password-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.password-tool-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.password-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.password-tool-header h1 {
  max-width: 760px;
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.password-tool-header p {
  max-width: 760px;
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.password-generator {
  display: grid;
  gap: 24px;
}

.password-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 24px;
  align-items: start;
}

.password-result-panel,
.password-options,
.password-privacy-note,
.password-feature-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.password-result-panel {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.password-result-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #535f70;
  font-size: 14px;
  font-weight: 800;
}

.password-strength {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.password-strength.is-weak {
  border-color: rgba(201, 111, 0, 0.28);
  background: rgba(255, 231, 191, 0.74);
  color: #8a5100;
}

.password-strength.is-fair {
  border-color: rgba(255, 153, 0, 0.34);
  background: rgba(255, 220, 189, 0.72);
  color: #8a5100;
}

.password-strength.is-strong {
  border-color: rgba(0, 115, 187, 0.24);
  background: rgba(208, 228, 255, 0.58);
  color: #0062a0;
}

.password-strength.is-very-strong {
  border-color: rgba(47, 158, 68, 0.24);
  background: rgba(230, 244, 234, 0.92);
  color: #1e8e3e;
}

.password-strength.is-pin {
  border-color: #d5dada;
  background: #f9fafa;
  color: #535f70;
}

.password-output {
  min-width: 0;
  min-height: 150px;
  display: block;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
  color: #191c1c;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 30px;
  line-height: 42px;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: pre-wrap;
}

.password-detail,
.password-error,
.password-inline-note {
  margin: 0;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.password-error {
  padding: 12px 14px;
  border: 1px solid rgba(201, 111, 0, 0.28);
  border-radius: 8px;
  background: rgba(255, 231, 191, 0.74);
  color: #8a5100;
}

.password-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.password-action-button {
  min-height: 44px;
  gap: 8px;
  border-radius: 8px;
}

.password-action-button .material-symbols-outlined {
  font-size: 19px;
  line-height: 1;
}

.password-options {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.password-options h2,
.password-privacy-note h2,
.password-feature-section h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.password-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
}

.password-mode-tab {
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #535f70;
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
}

.password-mode-tab.is-active {
  background: #ffffff;
  color: #232f3e;
  box-shadow: 0 2px 10px rgba(35, 47, 62, 0.08);
}

.password-option-set {
  display: grid;
  gap: 18px;
}

.password-option-set[hidden],
.password-custom-separator[hidden] {
  display: none;
}

.range-control,
.password-select-control,
.password-custom-separator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
  gap: 12px;
  align-items: center;
  color: #232f3e;
  font-size: 14px;
  font-weight: 800;
}

.range-control input,
.password-select-control select,
.password-custom-separator input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #191c1c;
  font-weight: 800;
}

.range-control input {
  text-align: center;
}

.range-control input:focus,
.password-select-control select:focus,
.password-custom-separator input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.password-range {
  width: 100%;
  accent-color: #ff9900;
}

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

.password-toggle {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #232f3e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.password-toggle-wide {
  grid-column: 1 / -1;
}

.password-toggle input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #0073bb;
}

.password-toggle span {
  min-width: 0;
}

.password-inline-note {
  padding: 12px 14px;
  border-radius: 8px;
  background: #f2f3f3;
}

.password-privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
}

.password-privacy-note .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 22px;
}

.password-privacy-note p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.password-feature-section {
  display: grid;
  gap: 24px;
}

.password-feature-section h2 {
  text-align: center;
}

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

.password-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
}

.password-feature-card .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d0e4ff;
  color: #0062a0;
  font-size: 22px;
}

.password-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.password-feature-card p {
  margin: 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .password-workspace {
    grid-template-columns: 1fr;
  }

  .password-feature-grid {
    grid-template-columns: 1fr;
  }

  .password-feature-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .password-tool-page {
    padding: 32px 0 72px;
  }

  .password-tool-container {
    width: min(100% - 28px, 1160px);
    gap: 40px;
  }

  .password-tool-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .password-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .password-result-panel,
  .password-options,
  .password-privacy-note,
  .password-feature-card {
    padding: 20px;
  }

  .password-output {
    min-height: 126px;
    padding: 18px;
    font-size: 21px;
    line-height: 31px;
  }

  .password-mode-tabs,
  .password-toggle-grid {
    grid-template-columns: 1fr;
  }

  .password-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .password-action-button {
    width: 100%;
    justify-content: center;
  }

  .password-privacy-note {
    grid-template-columns: 1fr;
  }
}

body.page-dns {
  background: #f8f9f9;
}

.twofa-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.twofa-tool-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.twofa-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.twofa-tool-header h1 {
  max-width: 760px;
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.twofa-tool-header p {
  max-width: 760px;
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.twofa-generator {
  display: grid;
  gap: 24px;
}

.twofa-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 24px;
  align-items: start;
}

.twofa-secret-panel,
.twofa-result-panel,
.twofa-privacy-note,
.twofa-guide-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.twofa-secret-panel,
.twofa-result-panel {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.twofa-panel-heading {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.twofa-panel-heading h2,
.twofa-privacy-note h2,
.twofa-guide h2,
.twofa-faq h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.twofa-state,
.twofa-countdown {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
}

.twofa-state[data-twofa-status="active"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.twofa-state[data-twofa-status="error"],
.twofa-state[data-twofa-status="crypto"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.twofa-state[data-twofa-status="short"],
.twofa-state[data-twofa-status="copied"] {
  border-color: rgba(0, 115, 187, 0.24);
  background: rgba(208, 228, 255, 0.58);
  color: #0062a0;
}

.twofa-secret-input {
  width: 100%;
  min-height: 134px;
  resize: vertical;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
  color: #191c1c;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.twofa-secret-input::placeholder {
  color: #8190a5;
}

.twofa-secret-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.twofa-helper,
.twofa-error,
.twofa-time-warning,
.twofa-privacy-note p,
.twofa-guide-card p,
.twofa-faq p {
  margin: 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

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

.twofa-options > div {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.twofa-options span {
  color: #232f3e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.twofa-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f2f3f3;
}

.twofa-segmented button {
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #535f70;
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
}

.twofa-segmented button.is-active {
  background: #ffffff;
  color: #232f3e;
  box-shadow: 0 2px 10px rgba(35, 47, 62, 0.08);
}

.twofa-code {
  min-width: 0;
  min-height: 158px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 56px;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-align: center;
}

.twofa-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf4;
}

.twofa-progress span {
  width: 0%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9900, #0073bb);
  transition: width 220ms linear;
}

.twofa-error {
  padding: 12px 14px;
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: 8px;
  background: #fff0ee;
  color: #b42318;
}

.twofa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.twofa-action-button {
  min-height: 44px;
  gap: 8px;
  border-radius: 8px;
}

.twofa-action-button .material-symbols-outlined {
  font-size: 19px;
  line-height: 1;
}

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

.twofa-env-grid div {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
}

.twofa-env-grid span {
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.twofa-env-grid strong {
  min-width: 0;
  color: #232f3e;
  font-size: 15px;
  line-height: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.twofa-time-warning {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 231, 191, 0.74);
  color: #8a5100;
}

.twofa-privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
}

.twofa-privacy-note .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 22px;
}

.twofa-privacy-note p {
  margin-top: 6px;
}

.twofa-guide {
  display: grid;
  gap: 24px;
}

.twofa-guide h2,
.twofa-faq h2 {
  text-align: center;
}

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

.twofa-guide-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.twofa-guide-card .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d0e4ff;
  color: #0062a0;
  font-size: 22px;
}

.twofa-guide-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.twofa-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.twofa-faq-list {
  display: grid;
  gap: 16px;
}

.twofa-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.twofa-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.twofa-faq summary::-webkit-details-marker {
  display: none;
}

.twofa-faq details[open] summary {
  background: #f9fafa;
}

.twofa-faq p {
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
}

.twofa-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

@media (max-width: 980px) {
  .twofa-workspace,
  .twofa-guide-grid {
    grid-template-columns: 1fr;
  }

  .twofa-guide-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .twofa-tool-page {
    padding: 32px 0 72px;
  }

  .twofa-tool-container {
    width: min(100% - 28px, 1160px);
    gap: 40px;
  }

  .twofa-tool-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .twofa-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .twofa-secret-panel,
  .twofa-result-panel,
  .twofa-privacy-note,
  .twofa-guide-card {
    padding: 20px;
  }

  .twofa-panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .twofa-options,
  .twofa-env-grid {
    grid-template-columns: 1fr;
  }

  .twofa-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .twofa-action-button {
    width: 100%;
    justify-content: center;
  }

  .twofa-code {
    min-height: 132px;
    padding: 18px;
    font-size: 40px;
    line-height: 48px;
  }

  .twofa-privacy-note {
    grid-template-columns: 1fr;
  }
}

body.page-dns .site-shell {
  background: #f8f9f9;
}

.dns-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.dns-tool-container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  gap: 64px;
}

.dns-lookup-hero {
  width: 100%;
  display: grid;
  justify-self: center;
  gap: 24px;
  text-align: center;
}

.dns-tool-header {
  max-width: none;
  justify-items: center;
  gap: 16px;
}

.dns-tool-header h1 {
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.dns-tool-header p {
  max-width: 650px;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.dns-query {
  display: grid;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.dns-search-panel {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dns-search-icon {
  position: absolute;
  z-index: 1;
  top: 19px;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid #535f70;
  border-radius: 50%;
  pointer-events: none;
}

.dns-search-icon::before,
.dns-search-icon::after {
  background: #535f70;
}

.dns-search-input {
  grid-column: 1;
  width: 100%;
  height: 56px;
  padding: 0 16px 0 64px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f8f9f9;
  color: #191c1c;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
}

.dns-search-input::placeholder {
  color: #bbc7db;
}

.dns-search-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.dns-submit-button {
  width: auto;
  min-width: 146px;
  min-height: 56px;
  gap: 8px;
  padding: 0 40px;
  border: 0;
  border-radius: 8px;
  background: #ff9900;
  color: #232f3e;
  font-size: 16px;
  font-weight: 800;
}

.dns-submit-button:hover {
  background: #ff9900;
  filter: brightness(0.96);
  box-shadow: inset 0 -2px 0 #232f3e, var(--shadow-sm);
}

.dns-submit-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.dns-submit-icon::after {
  position: absolute;
  width: 8px;
  height: 2px;
  right: -7px;
  bottom: -4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  content: "";
}

.dns-type-pills {
  justify-content: flex-start;
  gap: 8px;
}

.dns-type-pill {
  min-width: 0;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f2f3f3;
  color: #232f3e;
  box-shadow: none;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dns-type-pill:hover {
  border-color: #d5dada;
  background: #f2f3f3;
  box-shadow: none;
}

.dns-type-pill.is-active {
  border-color: #0073bb;
  background: #0073bb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 115, 187, 0.16);
}

.dns-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  margin-top: -16px;
  color: #535f70;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.dns-examples button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #535f70;
  font: inherit;
}

.dns-examples button:hover {
  color: #8a5100;
  text-decoration: underline;
}

.dns-result {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dns-result[hidden] {
  display: none;
}

.dns-state {
  min-height: 160px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.dns-success {
  display: grid;
  gap: 0;
}

.dns-result-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.dns-result-header h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.dns-result-header h2 span {
  margin-left: 8px;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.dns-result-tags {
  align-items: center;
  justify-content: flex-end;
}

.dns-result-tag {
  min-height: 30px;
  border-color: #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
}

.dns-result-tag.is-type {
  border-color: #d5dada;
  background: #f2f3f3;
  color: #232f3e;
}

.dns-result-tag.is-resolver {
  border-color: rgba(0, 115, 187, 0.22);
  background: rgba(208, 228, 255, 0.5);
}

.dns-refresh-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #535f70;
}

.dns-refresh-button:hover {
  color: #8a5100;
  background: #f2f3f3;
}

.dns-refresh-button span {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  position: relative;
}

.dns-refresh-button span::after {
  position: absolute;
  top: -4px;
  right: -3px;
  border-width: 4px 0 4px 6px;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
  content: "";
}

.dns-chain-panel {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.dns-chain-title span {
  color: #232f3e;
  font-size: 14px;
}

.dns-chain-title strong {
  background: #e1e3e3;
  color: #535f70;
}

.dns-chain-item {
  border-color: #d5dada;
  background: #f9fafa;
}

.dns-chain-item.is-query .dns-chain-badge {
  background: #ff9900;
  color: #232f3e;
}

.dns-chain-item.is-hop .dns-chain-badge,
.dns-chain-item.is-answer .dns-chain-badge {
  background: #0073bb;
  color: #ffffff;
}

.dns-table-wrap {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.dns-table {
  min-width: 720px;
  border-collapse: collapse;
}

.dns-table th,
.dns-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(219, 194, 173, 0.52);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 20px;
}

.dns-table th {
  background: #f8f9f9;
  color: #535f70;
  font-weight: 700;
}

.dns-table td {
  color: #191c1c;
  font-weight: 700;
}

.dns-value-cell:hover {
  color: #0073bb;
}

.dns-record-badge {
  min-width: 0;
  min-height: 24px;
  padding: 0 8px;
  border-color: #d5dada;
  border-radius: 4px;
  background: #f2f3f3;
  color: #232f3e;
  font-size: 12px;
}

.dns-status-cell {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 24px;
  color: #0073bb;
  font-family: inherit;
  font-weight: 700;
}

.dns-status-cell::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.dns-status-cell::after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.dns-features {
  display: grid;
  gap: 24px;
}

.dns-features h2,
.dns-faq h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

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

.dns-feature-card {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.dns-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(35, 47, 62, 0.1);
}

.dns-feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.dns-feature-icon::before {
  color: currentColor;
  font-size: 20px;
  font-weight: 900;
  content: "";
}

.dns-feature-card.is-primary .dns-feature-icon {
  background: #ffdcbd;
  color: #8a5100;
}

.dns-feature-card.is-primary .dns-feature-icon::before {
  content: "DNS";
  font-size: 11px;
  letter-spacing: 0.04em;
}

.dns-feature-card.is-tertiary .dns-feature-icon {
  background: #d0e4ff;
  color: #0062a0;
}

.dns-feature-card.is-tertiary .dns-feature-icon::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.dns-feature-card.is-green .dns-feature-icon {
  background: #e6f4ea;
  color: #1e8e3e;
}

.dns-feature-card.is-green .dns-feature-icon::before {
  width: 12px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(55% 0, 100% 0, 66% 42%, 100% 42%, 38% 100%, 48% 56%, 12% 56%);
  content: "";
}

.dns-feature-card.is-neutral .dns-feature-icon {
  background: #e1e3e3;
  color: #232f3e;
}

.dns-feature-card.is-neutral .dns-feature-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.dns-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.dns-feature-card p {
  margin: 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.dns-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.dns-faq h2 {
  text-align: center;
}

.dns-faq-list {
  display: grid;
  gap: 16px;
}

.dns-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.dns-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.dns-faq summary::-webkit-details-marker {
  display: none;
}

.dns-faq details[open] summary {
  background: #f9fafa;
}

.dns-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.dns-faq-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid #535f70;
  border-bottom: 2px solid #535f70;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.dns-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

@media (max-width: 1024px) {
  .dns-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .dns-search-panel {
    grid-template-columns: 1fr;
  }

  .dns-search-icon {
    top: 19px;
  }

  .dns-submit-button {
    width: 100%;
  }

  .dns-type-pills,
  .dns-examples {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .dns-tool-page {
    padding: 32px 0 72px;
  }

  .dns-tool-container {
    width: min(100% - 28px, 1160px);
    gap: 48px;
  }

  .dns-lookup-hero {
    gap: 20px;
  }

  .dns-tool-header h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .dns-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .dns-query {
    padding: 20px;
  }

  .dns-type-pills {
    justify-content: flex-start;
  }

  .dns-examples {
    justify-content: flex-start;
  }

  .dns-result-header {
    grid-template-columns: 1fr;
  }

  .dns-result-tags {
    justify-content: flex-start;
  }

  .dns-chain-list {
    display: grid;
  }

  .dns-chain-item {
    max-width: 100%;
  }

  .dns-chain-item:not(:last-child)::after {
    display: none;
  }

  .dns-table {
    min-width: 560px;
  }

  .dns-feature-grid {
    grid-template-columns: 1fr;
  }

  .dns-features h2 {
    text-align: center;
  }

  .dns-feature-card {
    min-height: 0;
  }
}

body.page-jsonFormatter .site-shell {
  background: #f8f9f9;
}

.json-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.json-tool-container {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.json-tool-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.json-tool-header {
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.json-tool-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.json-tool-header p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.json-workbench {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.json-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.json-indent-control {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #535f70;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.json-segmented {
  display: inline-flex;
  padding: 4px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f8f9f9;
}

.json-segmented button {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #535f70;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
}

.json-segmented button.is-active {
  background: #0073bb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 115, 187, 0.16);
}

.json-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.json-action-button {
  min-width: 92px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.json-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.json-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.json-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(420px, 56vh);
  gap: 12px;
}

.json-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
}

.json-panel h2 {
  margin: 0;
  color: #232f3e;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
}

.json-privacy-note,
.json-shortcut-hint {
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.json-privacy-note {
  text-align: right;
}

.json-panel textarea,
.json-output-wrap {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.json-panel textarea {
  resize: vertical;
  min-height: 420px;
  padding: 18px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  tab-size: 2;
}

.json-panel textarea::placeholder {
  color: #8190a5;
}

.json-panel textarea:focus,
.json-output-wrap:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.json-output-wrap {
  overflow: auto;
}

.json-output {
  min-width: max-content;
  margin: 0;
  padding: 18px;
  color: #e7edf4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  white-space: pre;
  tab-size: 2;
}

.json-output.is-empty {
  min-width: 100%;
  color: #8190a5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.json-status {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.json-status[data-json-status="success"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.json-status[data-json-status="error"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.json-token {
  overflow-wrap: normal;
}

.json-key {
  color: #79d6ff;
}

.json-string {
  color: #9ee493;
}

.json-number {
  color: #ffc46b;
}

.json-boolean {
  color: #c59cff;
}

.json-null {
  color: #ff8f8f;
}

.json-punctuation {
  color: #d0d7e2;
}

.json-shortcut-hint {
  margin: 0;
}

.json-features {
  display: grid;
  gap: 24px;
}

.json-features h2,
.json-faq h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

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

.json-feature-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.json-feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.json-feature-icon::before {
  color: currentColor;
  font-size: 15px;
  font-weight: 900;
  content: "{}";
}

.json-feature-card.is-primary .json-feature-icon {
  background: #ffdcbd;
  color: #8a5100;
}

.json-feature-card.is-tertiary .json-feature-icon {
  background: #d0e4ff;
  color: #0062a0;
}

.json-feature-card.is-tertiary .json-feature-icon::before {
  width: 17px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.json-feature-card.is-green .json-feature-icon {
  background: #e6f4ea;
  color: #1e8e3e;
}

.json-feature-card.is-green .json-feature-icon::before {
  width: 16px;
  height: 16px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.json-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.json-feature-card p {
  margin: 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.json-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.json-faq h2 {
  text-align: center;
}

.json-faq-list {
  display: grid;
  gap: 16px;
}

.json-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.json-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.json-faq summary::-webkit-details-marker {
  display: none;
}

.json-faq details[open] summary {
  background: #f9fafa;
}

.json-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.json-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

.encode-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.encode-tool-container {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.encode-tool-header {
  max-width: 780px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.encode-tool-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.encode-tool-header p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.encode-workbench {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.encode-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.encode-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f8f9f9;
}

.encode-mode-tab {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #535f70;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.encode-mode-tab.is-active {
  background: #0073bb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 115, 187, 0.16);
}

.encode-option {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #535f70;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.encode-option[hidden] {
  display: none;
}

.encode-option input {
  width: 16px;
  height: 16px;
  accent-color: #0073bb;
}

.encode-mode-copy {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

.encode-mode-copy[hidden] {
  display: none;
}

.encode-mode-copy h2,
.encode-query-header h2,
.encode-privacy-note-card h2,
.encode-feature-section h2,
.encode-faq h2 {
  margin: 0;
  color: #232f3e;
  font-weight: 800;
}

.encode-mode-copy h2 {
  font-size: 18px;
  line-height: 26px;
}

.encode-mode-copy p {
  margin: 0;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.encode-panels {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.encode-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(340px, 48vh);
  gap: 12px;
}

.encode-panel header,
.encode-query-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
}

.encode-panel h2 {
  margin: 0;
  color: #232f3e;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
}

.encode-privacy-note {
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  text-align: right;
}

.encode-panel textarea {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 340px;
  resize: vertical;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.encode-panel textarea::placeholder,
.encode-panel textarea.is-empty {
  color: #8190a5;
}

.encode-panel textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.encode-status {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.encode-status[data-encode-status="success"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.encode-status[data-encode-status="error"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.encode-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.encode-action-button {
  min-width: 112px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.encode-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.encode-query-result {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

.encode-query-result[hidden] {
  display: none;
}

.encode-query-header h2 {
  font-size: 18px;
  line-height: 26px;
}

.encode-query-header span {
  min-width: 32px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
}

.encode-query-table-wrap {
  max-height: 340px;
  overflow: auto;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background: #ffffff;
}

.encode-query-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.encode-query-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.encode-query-table th,
.encode-query-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #d5dada;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
  overflow-wrap: anywhere;
}

.encode-query-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f2f3f3;
  color: #232f3e;
  font-weight: 900;
}

.encode-query-table td {
  color: #334155;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 600;
}

.encode-query-table tr:last-child td {
  border-bottom: 0;
}

.encode-privacy-note-card,
.encode-feature-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.encode-privacy-note-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.encode-privacy-note-card .material-symbols-outlined,
.encode-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 23px;
}

.encode-privacy-note-card h2 {
  font-size: 20px;
  line-height: 28px;
}

.encode-privacy-note-card p,
.encode-feature-card p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.encode-feature-section {
  display: grid;
  gap: 24px;
}

.encode-feature-section h2,
.encode-faq h2 {
  font-size: 24px;
  line-height: 32px;
}

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

.encode-feature-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.encode-feature-card .material-symbols-outlined {
  background: #d0e4ff;
  color: #0062a0;
}

.encode-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.encode-feature-card p {
  margin: 0;
}

.encode-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.encode-faq h2 {
  text-align: center;
}

.encode-faq-list {
  display: grid;
  gap: 16px;
}

.encode-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.encode-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.encode-faq summary::-webkit-details-marker {
  display: none;
}

.encode-faq details[open] summary {
  background: #f9fafa;
}

.encode-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.encode-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

.header-cache-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.header-cache-container {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.header-cache-hero {
  max-width: 820px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.header-cache-hero h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cache-hero p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.header-cache-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 115, 187, 0.24);
  border-radius: 12px;
  background: #eef7ff;
}

.header-cache-notice .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d0e4ff;
  color: #0062a0;
  font-size: 24px;
}

.header-cache-notice h2,
.header-cache-panel-header h2,
.header-cache-section-heading h2,
.header-cache-feature-section h2,
.header-cache-faq h2 {
  margin: 0;
  color: #232f3e;
  font-weight: 800;
}

.header-cache-notice h2 {
  font-size: 20px;
  line-height: 28px;
}

.header-cache-notice p {
  margin: 6px 0 0;
  color: #3d4a5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.header-cache-workbench {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.35fr);
  gap: 20px;
  align-items: start;
}

.header-cache-input-panel,
.header-cache-result,
.header-cache-analysis-card,
.header-cache-feature-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.header-cache-input-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.header-cache-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.header-cache-panel-header h2 {
  font-size: 20px;
  line-height: 28px;
}

.header-cache-panel-header p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.header-cache-status {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 10px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.header-cache-status[data-header-cache-status="success"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.header-cache-status[data-header-cache-status="error"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.header-cache-input-panel textarea {
  width: 100%;
  min-width: 0;
  min-height: 520px;
  resize: vertical;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  white-space: pre;
  overflow-wrap: normal;
}

.header-cache-input-panel textarea::placeholder {
  color: #8190a5;
}

.header-cache-input-panel textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.header-cache-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.header-cache-action-button {
  min-width: 126px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.header-cache-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.header-cache-result {
  min-width: 0;
  min-height: 420px;
  padding: 22px;
}

.header-cache-empty {
  min-height: 376px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
}

.header-cache-empty h2 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.header-cache-empty p {
  max-width: 520px;
  margin: 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.header-cache-output {
  display: grid;
  gap: 18px;
}

.header-cache-output[hidden] {
  display: none;
}

.header-cache-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-cache-section-heading h2,
.header-cache-feature-section h2,
.header-cache-faq h2 {
  font-size: 24px;
  line-height: 32px;
}

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

.header-cache-summary article {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background: #f9fafa;
}

.header-cache-summary span {
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cache-summary strong {
  color: #232f3e;
  font-size: 16px;
  line-height: 23px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.header-cache-analysis-card {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 20px;
  box-shadow: none;
}

.header-cache-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.header-cache-note-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background: #f9fafa;
}

.header-cache-note-grid h3,
.header-cache-security-grid h3,
.header-cache-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-weight: 800;
}

.header-cache-note-grid h3 {
  font-size: 16px;
  line-height: 24px;
}

.header-cache-note-grid ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: #3d4a5c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.header-cache-note-grid li {
  padding-left: 2px;
}

.header-cache-table-wrap {
  max-height: 380px;
  overflow: auto;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background: #ffffff;
}

.header-cache-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.header-cache-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.header-cache-table th,
.header-cache-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #d5dada;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
  overflow-wrap: anywhere;
}

.header-cache-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f2f3f3;
  color: #232f3e;
  font-weight: 900;
}

.header-cache-table td {
  color: #334155;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 600;
}

.header-cache-table tr:last-child td {
  border-bottom: 0;
}

.header-cache-pill {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cache-pill.is-present {
  background: #e6f4ea;
  color: #1e8e3e;
}

.header-cache-pill.is-missing {
  background: #f2f3f3;
  color: #535f70;
}

.header-cache-security-grid {
  display: grid;
  gap: 12px;
}

.header-cache-security-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background: #f9fafa;
}

.header-cache-security-grid h3 {
  font-size: 16px;
  line-height: 24px;
}

.header-cache-security-grid p {
  margin: 4px 0 0;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.header-cache-feature-section {
  display: grid;
  gap: 24px;
}

.header-cache-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.header-cache-feature-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.header-cache-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d0e4ff;
  color: #0062a0;
  font-size: 23px;
}

.header-cache-feature-card h3 {
  font-size: 22px;
  line-height: 30px;
}

.header-cache-feature-card p {
  margin: 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.header-cache-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.header-cache-faq h2 {
  text-align: center;
}

.header-cache-faq-list {
  display: grid;
  gap: 16px;
}

.header-cache-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.header-cache-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.header-cache-faq summary::-webkit-details-marker {
  display: none;
}

.header-cache-faq details[open] summary {
  background: #f9fafa;
}

.header-cache-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.header-cache-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

.response-timing-page {
  min-height: calc(100vh - var(--header-height));
  padding: 48px 0 92px;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 107, 0, 0.08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(0, 163, 163, 0.08), transparent 26%),
    #f8f9fa;
}

.response-timing-container {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  gap: 52px;
}

.response-timing-hero {
  max-width: 760px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.response-timing-hero h1 {
  margin: 0;
  color: #191c1d;
  font-size: 46px;
  line-height: 54px;
  font-weight: 800;
  letter-spacing: 0;
}

.response-timing-hero p {
  margin: 0;
  color: #5a4136;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.response-timing-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(226, 191, 176, 0.72);
  border-radius: 12px;
  background: rgba(243, 244, 245, 0.86);
  box-shadow: 0 12px 36px rgba(25, 28, 29, 0.04);
}

.response-timing-notice .material-symbols-outlined {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(160, 65, 0, 0.1);
  color: #a04100;
  font-size: 24px;
}

.response-timing-notice h2,
.response-timing-panel-header h2,
.response-timing-section-heading h2,
.response-timing-feature-section h2,
.response-timing-faq h2 {
  margin: 0;
  color: #191c1d;
  font-weight: 800;
}

.response-timing-notice h2 {
  font-size: 20px;
  line-height: 28px;
}

.response-timing-notice p {
  margin: 6px 0 0;
  color: #5a4136;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.response-timing-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 4fr) minmax(0, 8fr);
  gap: 32px;
  align-items: start;
}

.response-timing-form,
.response-timing-result,
.response-timing-analysis-card,
.response-timing-feature-card {
  border: 1px solid rgba(225, 227, 228, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(25, 28, 29, 0.04);
}

.response-timing-form {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 24px;
  padding: 30px;
}

.response-timing-panel-header,
.response-timing-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.response-timing-panel-header h2 {
  color: #191c1d;
  font-size: 24px;
  line-height: 32px;
}

.response-timing-panel-header p {
  margin: 6px 0 0;
  color: #5a4136;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.response-timing-status {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: #edeeef;
  color: #5a4136;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.response-timing-status[data-response-timing-status="success"] {
  background: #e6f4ea;
  color: #1e8e3e;
}

.response-timing-status[data-response-timing-status="error"] {
  background: #fff0ee;
  color: #b42318;
}

.response-timing-status[data-response-timing-status="loading"] {
  background: #ffdf9e;
  color: #5b4300;
}

.response-timing-input-label,
.response-timing-control-block > span,
.response-timing-examples > span {
  color: #5a4136;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.response-timing-url-row {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f1f3f5;
}

.response-timing-url-row .material-symbols-outlined {
  color: #5a4136;
  font-size: 22px;
}

.response-timing-url-row input {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 0;
  background: transparent;
  color: #191c1d;
  font-size: 16px;
  line-height: 22px;
  font-weight: 650;
  outline: 0;
}

.response-timing-url-row:focus-within {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.52);
}

.response-timing-control-block {
  display: grid;
  gap: 10px;
}

.response-timing-segmented {
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 0;
  border-radius: 12px;
  background: #edeeef;
}

.response-timing-segmented label {
  min-width: 0;
  display: block;
  flex: 1 1 0;
}

.response-timing-segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.response-timing-segmented span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #5a4136;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.response-timing-segmented input:focus-visible + span {
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.52);
}

.response-timing-segmented input:checked + span {
  background: #ffffff;
  color: #a04100;
  box-shadow: 0 1px 5px rgba(25, 28, 29, 0.12);
}

.response-timing-switch {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f5;
  cursor: pointer;
}

.response-timing-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.response-timing-switch > span {
  order: 2;
  width: 48px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c1c8ca;
  position: relative;
  transition: background 160ms ease;
}

.response-timing-switch > span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(35, 47, 62, 0.24);
  transition: transform 160ms ease;
}

.response-timing-switch input:checked + span {
  background: #ff6b00;
}

.response-timing-switch input:checked + span::after {
  transform: translateX(20px);
}

.response-timing-switch input:focus-visible + span {
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.52);
}

.response-timing-switch strong {
  min-width: 0;
  color: #191c1d;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
}

.button.primary.response-timing-submit {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 12px;
  background: #ff6b00;
  color: #572000;
  box-shadow: 0 14px 34px rgba(255, 107, 0, 0.22);
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

.button.primary.response-timing-submit:hover {
  opacity: 0.92;
  box-shadow: 0 18px 42px rgba(255, 107, 0, 0.28);
}

.button.primary.response-timing-submit:active {
  transform: scale(0.98);
}

.response-timing-submit .material-symbols-outlined {
  font-size: 25px;
}

.response-timing-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.response-timing-examples button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: rgba(160, 65, 0, 0.06);
  color: #a04100;
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.response-timing-examples button:hover {
  background: rgba(255, 107, 0, 0.12);
}

.response-timing-result {
  position: relative;
  min-width: 0;
  min-height: 500px;
  padding: 30px;
  overflow: hidden;
}

.response-timing-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(160, 65, 0, 0.12) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.24;
  pointer-events: none;
}

.response-timing-result > * {
  position: relative;
  z-index: 1;
}

.response-timing-empty {
  min-height: 440px;
  display: grid;
  place-items: center;
  text-align: center;
}

.response-timing-empty-content {
  width: min(100%, 540px);
  display: grid;
  justify-items: center;
}

.response-timing-empty-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #f3f4f5;
}

.response-timing-empty-icon .material-symbols-outlined {
  color: #d9dadb;
  font-size: 52px;
}

.response-timing-empty h2 {
  margin: 0;
  color: #191c1d;
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
}

.response-timing-empty p {
  max-width: 380px;
  margin: 12px 0 0;
  color: #5a4136;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.response-timing-placeholder {
  width: min(100%, 520px);
  display: grid;
  gap: 16px;
  margin-top: 48px;
  opacity: 0.46;
}

.response-timing-placeholder div {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 8px;
}

.response-timing-placeholder span,
.response-timing-placeholder strong {
  display: block;
  border-radius: 999px;
  background: #e7e8e9;
  animation: responseTimingPulse 1.8s ease-in-out infinite;
}

.response-timing-placeholder span {
  height: 32px;
}

.response-timing-placeholder strong {
  height: 160px;
  border-radius: 12px;
}

@keyframes responseTimingPulse {
  0%,
  100% {
    opacity: 0.46;
  }

  50% {
    opacity: 1;
  }
}

.response-timing-output {
  display: grid;
  gap: 20px;
}

.response-timing-output[hidden] {
  display: none;
}

.response-timing-section-heading h2,
.response-timing-feature-section h2,
.response-timing-faq h2 {
  color: #191c1d;
  font-weight: 800;
}

.response-timing-section-heading h2 {
  font-size: 24px;
  line-height: 32px;
}

.response-timing-feature-section h2,
.response-timing-faq h2 {
  font-size: 40px;
  line-height: 48px;
}

.response-timing-section-heading time {
  color: #5a4136;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
  text-align: right;
}

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

.response-timing-summary-grid article {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(225, 227, 228, 0.9);
  border-radius: 10px;
  background: #f8f9fa;
}

.response-timing-summary-grid span {
  color: #5a4136;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.response-timing-summary-grid strong {
  color: #191c1d;
  font-size: 16px;
  line-height: 23px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.response-timing-analysis-card {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 22px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.9);
}

.response-timing-axis {
  display: flex;
  justify-content: space-between;
  color: #5a4136;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.response-timing-curve {
  min-height: 88px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e1e3e4;
  border-radius: 12px;
  background: #edeeef;
}

.response-timing-curve.is-limited {
  display: grid;
  place-items: center;
  padding: 18px;
  color: #5a4136;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  text-align: center;
}

.response-timing-bar-segment {
  min-width: 34px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px;
  color: #ffffff;
  box-shadow: inset -1px 0 rgba(255, 255, 255, 0.22);
}

.response-timing-bar-segment:nth-child(1) {
  background: #a04100;
}

.response-timing-bar-segment:nth-child(2) {
  background: #00a3a3;
}

.response-timing-bar-segment:nth-child(3) {
  background: #586062;
}

.response-timing-bar-segment:nth-child(4) {
  background: #785900;
}

.response-timing-bar-segment:nth-child(5) {
  background: #ff6b00;
}

.response-timing-bar-segment:nth-child(6) {
  background: #3d6f6f;
}

.response-timing-bar-segment strong,
.response-timing-bar-segment span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.response-timing-bar-segment strong {
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
}

.response-timing-bar-segment span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
}

.response-timing-table-wrap {
  overflow: auto;
  border: 1px solid #e1e3e4;
  border-radius: 10px;
  background: #ffffff;
}

.response-timing-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.response-timing-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.response-timing-table th,
.response-timing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e1e3e4;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
  overflow-wrap: anywhere;
}

.response-timing-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f3f4f5;
  color: #191c1d;
  font-weight: 900;
}

.response-timing-table td {
  color: #41484a;
  font-weight: 650;
}

.response-timing-table td:first-child,
.response-timing-table td:nth-child(2),
.response-timing-table td:nth-child(3) {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 700;
}

.response-timing-table tr:last-child td {
  border-bottom: 0;
}

.response-timing-diagnostics {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 18px;
  color: #5a4136;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.response-timing-feature-section {
  display: grid;
  gap: 28px;
}

.response-timing-feature-section h2 {
  text-align: center;
}

.response-timing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.response-timing-feature-card {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.response-timing-feature-card .material-symbols-outlined {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(160, 65, 0, 0.06);
  color: #a04100;
  font-size: 30px;
  transition: background 160ms ease, color 160ms ease;
}

.response-timing-feature-card:nth-child(2) .material-symbols-outlined {
  color: #586062;
}

.response-timing-feature-card:nth-child(3) .material-symbols-outlined {
  color: #3d6f6f;
}

.response-timing-feature-card:hover {
  border-color: rgba(255, 107, 0, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(25, 28, 29, 0.08);
}

.response-timing-feature-card:hover .material-symbols-outlined {
  background: #ff6b00;
  color: #572000;
}

.response-timing-feature-card h3 {
  margin: 0;
  color: #191c1d;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.response-timing-feature-card p {
  margin: 0;
  color: #5a4136;
  font-size: 16px;
  line-height: 24px;
}

.response-timing-faq {
  width: min(100%, 1040px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.response-timing-faq h2 {
  text-align: center;
}

.response-timing-faq-list {
  display: grid;
  gap: 16px;
}

.response-timing-faq details {
  border: 1px solid rgba(225, 227, 228, 0.9);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.response-timing-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #191c1d;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.response-timing-faq summary::-webkit-details-marker {
  display: none;
}

.response-timing-faq details[open] summary {
  background: #f8f9fa;
}

.response-timing-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #e1e3e4;
  background: #f8f9fa;
  color: #5a4136;
  font-size: 16px;
  line-height: 24px;
}

.response-timing-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

@media (max-width: 1024px) {
  .response-timing-workbench,
  .response-timing-summary-grid,
  .response-timing-feature-grid {
    grid-template-columns: 1fr;
  }

  .response-timing-form {
    position: static;
  }

  .response-timing-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body.page-responseTiming {
    padding-bottom: 0;
  }

  .response-timing-page {
    padding: 32px 0 72px;
  }

  .response-timing-container {
    width: min(100% - 28px, 1240px);
    gap: 40px;
  }

  .response-timing-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .response-timing-hero p {
    font-size: 16px;
    line-height: 24px;
  }

  .response-timing-notice,
  .response-timing-form,
  .response-timing-result,
  .response-timing-analysis-card {
    padding: 18px;
  }

  .response-timing-notice {
    grid-template-columns: 1fr;
  }

  .response-timing-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .response-timing-submit,
  .response-timing-examples button {
    width: 100%;
  }

  .response-timing-examples {
    display: grid;
    grid-template-columns: 1fr;
  }

  .response-timing-result {
    min-height: 340px;
  }

  .response-timing-empty {
    min-height: 280px;
  }

  .response-timing-curve {
    min-height: 96px;
    flex-direction: column;
  }

  .response-timing-bar-segment {
    min-width: 0;
    min-height: 42px;
    width: 100% !important;
  }

  .response-timing-table {
    min-width: 560px;
  }

  .response-timing-table th,
  .response-timing-table td {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 21px;
  }

  .response-timing-feature-card {
    min-height: 0;
  }
}

.jwt-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.jwt-tool-container {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.jwt-tool-header {
  max-width: 780px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.jwt-tool-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.jwt-tool-header p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.jwt-workbench {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.jwt-input-panel {
  display: grid;
  gap: 14px;
}

.jwt-input-panel header,
.jwt-json-panel header,
.jwt-claims-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.jwt-input-panel h2,
.jwt-json-panel h2,
.jwt-claims-panel h2,
.jwt-warning-note h2,
.jwt-privacy-note h2,
.jwt-feature-section h2,
.jwt-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-weight: 800;
}

.jwt-input-panel h2,
.jwt-json-panel h2,
.jwt-claims-panel h2 {
  font-size: 18px;
  line-height: 26px;
}

.jwt-input-panel p {
  margin: 4px 0 0;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.jwt-status {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.jwt-status[data-jwt-status="success"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.jwt-status[data-jwt-status="warning"] {
  border-color: rgba(180, 83, 9, 0.24);
  background: #fff7ed;
  color: #b45309;
}

.jwt-status[data-jwt-status="error"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.jwt-input-panel textarea {
  width: 100%;
  min-width: 0;
  min-height: 156px;
  resize: vertical;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.jwt-input-panel textarea::placeholder {
  color: #8190a5;
}

.jwt-input-panel textarea:focus,
.jwt-json-output-wrap:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.jwt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.jwt-action-button,
.jwt-copy-button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.jwt-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.jwt-output-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jwt-json-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(320px, 44vh);
  gap: 12px;
}

.jwt-json-output-wrap {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: auto;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.jwt-json-output {
  min-width: max-content;
  margin: 0;
  padding: 18px;
  color: #e7edf4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  white-space: pre;
  tab-size: 2;
}

.jwt-json-output.is-empty {
  min-width: 100%;
  color: #8190a5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.jwt-claims-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

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

.jwt-claim-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  background: #ffffff;
}

.jwt-claim-card span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  border-radius: 8px;
  background: #d0e4ff;
  color: #0062a0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
}

.jwt-claim-card p {
  margin: 8px 0 0;
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.jwt-claim-card strong {
  min-width: 0;
  color: #111827;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.jwt-claim-card small {
  min-height: 20px;
  color: #535f70;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.jwt-claim-card.is-missing strong,
.jwt-claim-card.is-missing small {
  color: #8190a5;
}

.jwt-claim-card.is-expired strong,
.jwt-claim-card.is-expired small {
  color: #b42318;
}

.jwt-warning-note,
.jwt-privacy-note,
.jwt-feature-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.jwt-warning-note,
.jwt-privacy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.jwt-warning-note {
  border-color: rgba(180, 83, 9, 0.28);
  background: #fffaf3;
}

.jwt-warning-note .material-symbols-outlined,
.jwt-privacy-note .material-symbols-outlined,
.jwt-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff7ed;
  color: #b45309;
  font-size: 23px;
}

.jwt-privacy-note .material-symbols-outlined {
  background: #e6f4ea;
  color: #1e8e3e;
}

.jwt-feature-card .material-symbols-outlined {
  background: #d0e4ff;
  color: #0062a0;
}

.jwt-warning-note h2,
.jwt-privacy-note h2 {
  font-size: 20px;
  line-height: 28px;
}

.jwt-warning-note p,
.jwt-privacy-note p,
.jwt-feature-card p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.jwt-feature-section {
  display: grid;
  gap: 24px;
}

.jwt-feature-section h2 {
  font-size: 24px;
  line-height: 32px;
}

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

.jwt-feature-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.jwt-feature-card h3 {
  font-size: 22px;
  line-height: 30px;
}

.jwt-feature-card p {
  margin: 0;
}

.base64-image-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f7f9fb;
}

.base64-image-container {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.base64-image-header {
  max-width: 820px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.base64-image-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.base64-image-header p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.base64-image-workbench {
  display: grid;
  gap: 24px;
}

.base64-image-panel,
.base64-image-privacy,
.base64-image-feature-card,
.base64-image-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.base64-image-panel {
  min-width: 0;
  display: grid;
  gap: 22px;
  padding: 24px;
}

.base64-image-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.base64-image-panel-header h2,
.base64-image-output h3,
.base64-image-preview-card h3,
.base64-image-privacy h2,
.base64-image-feature-section h2,
.base64-image-faq h2 {
  margin: 0;
  color: #232f3e;
  font-weight: 800;
}

.base64-image-panel-header h2 {
  font-size: 24px;
  line-height: 32px;
}

.base64-image-panel-header p {
  max-width: 760px;
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.base64-image-status {
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.base64-image-status[data-state="success"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.base64-image-status[data-state="error"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.base64-image-upload-grid,
.base64-image-paste-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.base64-image-dropzone {
  min-height: 360px;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 2px dashed #aab7c4;
  border-radius: 12px;
  background: #f9fafa;
  color: #535f70;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.base64-image-dropzone.is-dragging,
.base64-image-dropzone:focus-within,
.base64-image-dropzone:hover {
  border-color: #0073bb;
  background: #eef7ff;
  box-shadow: 0 0 0 3px rgba(0, 115, 187, 0.12);
}

.base64-image-dropzone .material-symbols-outlined {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #d0e4ff;
  color: #0062a0;
  font-size: 30px;
}

.base64-image-dropzone strong {
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.base64-image-dropzone span {
  max-width: 380px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.base64-image-file-button {
  min-height: 42px;
  margin-top: 4px;
  pointer-events: none;
}

.base64-image-preview-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #f9fafa;
}

.base64-image-preview-card h3,
.base64-image-output h3 {
  font-size: 18px;
  line-height: 26px;
}

.base64-image-preview-frame {
  min-width: 0;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dada;
  border-radius: 10px;
  background:
    linear-gradient(45deg, #f2f3f3 25%, transparent 25%),
    linear-gradient(-45deg, #f2f3f3 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f2f3f3 75%),
    linear-gradient(-45deg, transparent 75%, #f2f3f3 75%);
  background-color: #ffffff;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
  overflow: hidden;
}

.base64-image-preview-frame img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.base64-image-preview-frame span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.base64-image-meta {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin: 0;
}

.base64-image-meta div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #d5dada;
}

.base64-image-meta dt {
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.base64-image-meta dd {
  min-width: 0;
  margin: 0;
  color: #232f3e;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.base64-image-output {
  display: grid;
  gap: 14px;
}

.base64-image-output-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.base64-image-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.base64-image-field span {
  color: #232f3e;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
}

.base64-image-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 210px;
  resize: vertical;
  padding: 16px;
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #0f1720;
  color: #e7edf4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 21px;
  font-weight: 600;
  overflow: auto;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.base64-image-field textarea::placeholder {
  color: #8190a5;
}

.base64-image-field textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0073bb;
  outline: 0;
}

.base64-image-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.base64-image-action-button {
  min-width: 128px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.base64-image-clear-button {
  min-height: 42px;
  padding: 0 6px;
  color: #535f70;
  font-size: 14px;
}

.base64-image-paste-input textarea {
  min-height: 360px;
}

.base64-image-detected-title {
  margin-top: 4px;
}

.base64-image-privacy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.base64-image-privacy .material-symbols-outlined,
.base64-image-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 23px;
}

.base64-image-privacy h2 {
  font-size: 20px;
  line-height: 28px;
}

.base64-image-privacy p,
.base64-image-feature-card p {
  margin: 6px 0 0;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.base64-image-feature-section {
  display: grid;
  gap: 24px;
}

.base64-image-feature-section h2,
.base64-image-faq h2 {
  font-size: 24px;
  line-height: 32px;
}

.base64-image-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.base64-image-feature-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.base64-image-feature-card .material-symbols-outlined {
  background: #d0e4ff;
  color: #0062a0;
}

.base64-image-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.base64-image-feature-card p {
  margin: 0;
}

.base64-image-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.base64-image-faq h2 {
  text-align: center;
}

.base64-image-faq-list {
  display: grid;
  gap: 16px;
}

.base64-image-faq details {
  overflow: hidden;
}

.base64-image-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.base64-image-faq summary::-webkit-details-marker {
  display: none;
}

.base64-image-faq details[open] summary {
  background: #f9fafa;
}

.base64-image-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.base64-image-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

@media (max-width: 1024px) {
  .base64-image-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .base64-image-actions {
    justify-content: flex-start;
  }

  .base64-image-upload-grid,
  .base64-image-paste-grid,
  .base64-image-output-grid,
  .base64-image-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.page-base64Image {
    padding-bottom: 0;
  }

  .base64-image-page {
    padding: 32px 0 72px;
  }

  .base64-image-container {
    width: min(100% - 28px, 1240px);
    gap: 40px;
  }

  .base64-image-header h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .base64-image-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .base64-image-panel {
    padding: 18px;
  }

  .base64-image-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .base64-image-feature-card {
    min-height: 0;
  }

  .base64-image-privacy {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

.csp-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.csp-tool-container {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.csp-tool-header {
  max-width: 820px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.csp-tool-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.csp-tool-header p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.csp-workbench {
  display: grid;
  gap: 20px;
}

.csp-workbench-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  align-items: start;
  gap: 20px;
}

.csp-builder-panel,
.csp-parser-card,
.csp-risk-card,
.csp-output-panel,
.csp-privacy-note-card,
.csp-feature-card {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.csp-builder-panel {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.csp-side-panel {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.csp-panel-heading,
.csp-output-heading,
.csp-risk-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.csp-panel-heading h2,
.csp-output-heading h2,
.csp-risk-heading h2,
.csp-structured h3,
.csp-privacy-note-card h2,
.csp-feature-section h2,
.csp-faq h2 {
  margin: 0;
  color: #232f3e;
  font-weight: 850;
}

.csp-panel-heading h2,
.csp-output-heading h2,
.csp-risk-heading h2 {
  font-size: 20px;
  line-height: 28px;
}

.csp-panel-heading p {
  max-width: 620px;
  margin: 6px 0 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.csp-builder-actions,
.csp-parser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.csp-action-button,
.csp-clear-button,
.csp-source-add {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.csp-action-button,
.csp-source-add {
  padding: 0 16px;
}

.csp-clear-button {
  padding: 0 6px;
  color: #535f70;
}

.csp-directive-list {
  display: grid;
  gap: 12px;
}

.csp-directive-row {
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f9fafa;
}

.csp-directive-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.csp-directive-main h3 {
  margin: 0;
  color: #232f3e;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.csp-directive-main p,
.csp-flag-note,
.csp-static-note,
.csp-feature-card p,
.csp-privacy-note-card p {
  margin: 0;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.csp-toggle {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.csp-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #0073bb;
}

.csp-source-editor {
  display: grid;
  gap: 10px;
}

.csp-source-list {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.csp-source-list.is-empty {
  display: none;
}

.csp-source-chip {
  max-width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px 0 10px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.csp-source-chip button {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #edf2f7;
  color: #535f70;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.csp-source-chip button:hover {
  background: #ffe4e0;
  color: #b42318;
}

.csp-source-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.csp-source-controls input,
.csp-parser-card textarea {
  min-width: 0;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.csp-source-controls input {
  height: 42px;
  padding: 0 12px;
}

.csp-source-controls input:focus,
.csp-parser-card textarea:focus {
  border-color: #0073bb;
  box-shadow: 0 0 0 2px rgba(0, 115, 187, 0.16);
  outline: 0;
}

.csp-flag-note {
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
}

.csp-parser-card,
.csp-risk-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.csp-parser-card textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  padding: 14px;
}

.csp-parser-card textarea::placeholder,
.csp-output.is-empty,
.csp-structured-list.is-empty {
  color: #8190a5;
}

.csp-risk-heading {
  align-items: center;
}

.csp-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(30, 142, 62, 0.28);
  border-radius: 999px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-align: right;
}

.csp-status[data-csp-status="warn"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.csp-risk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.csp-risk-list li {
  position: relative;
  padding: 12px 12px 12px 36px;
  border: 1px solid #ffe0b2;
  border-radius: 8px;
  background: #fff8eb;
  color: #7c2d12;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.csp-risk-list li::before {
  content: "!";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.csp-risk-list li.is-safe {
  border-color: rgba(30, 142, 62, 0.18);
  background: #f0fdf4;
  color: #166534;
}

.csp-risk-list li.is-safe::before {
  content: "✓";
  background: #1e8e3e;
}

.csp-static-note {
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  line-height: 20px;
}

.csp-output-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.csp-output-heading {
  align-items: center;
}

.csp-output-heading > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.csp-output-heading span {
  color: #535f70;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.csp-output {
  max-width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 16px;
  border: 1px solid #1f2933;
  border-radius: 10px;
  background: #0f1720;
  color: #e7edf4;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 23px;
  font-weight: 700;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.csp-structured {
  display: grid;
  gap: 10px;
}

.csp-structured h3 {
  font-size: 17px;
  line-height: 24px;
}

.csp-structured-list {
  display: grid;
  gap: 8px;
  color: #535f70;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.csp-structured-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f9fafa;
}

.csp-structured-item strong,
.csp-structured-item span {
  min-width: 0;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  overflow-wrap: anywhere;
}

.csp-structured-item strong {
  color: #232f3e;
}

.csp-structured-item span {
  color: #334155;
}

.csp-privacy-note-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.csp-privacy-note-card .material-symbols-outlined,
.csp-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 23px;
}

.csp-privacy-note-card h2 {
  font-size: 20px;
  line-height: 28px;
}

.csp-privacy-note-card p {
  margin-top: 6px;
  font-size: 16px;
  line-height: 24px;
}

.csp-feature-section {
  display: grid;
  gap: 24px;
}

.csp-feature-section h2,
.csp-faq h2 {
  font-size: 24px;
  line-height: 32px;
}

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

.csp-feature-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.csp-feature-card .material-symbols-outlined {
  background: #d0e4ff;
  color: #0062a0;
}

.csp-feature-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.csp-feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.csp-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.csp-faq h2 {
  text-align: center;
}

.csp-faq-list {
  display: grid;
  gap: 16px;
}

.csp-faq details {
  border: 1px solid #d5dada;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.csp-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  list-style: none;
}

.csp-faq summary::-webkit-details-marker {
  display: none;
}

.csp-faq details[open] summary {
  background: #f9fafa;
}

.csp-faq p {
  margin: 0;
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
  color: #535f70;
  font-size: 16px;
  line-height: 24px;
}

.csp-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

@media (max-width: 1024px) {
  .csp-panel-heading,
  .csp-output-heading,
  .csp-risk-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .csp-builder-actions,
  .csp-parser-actions {
    justify-content: flex-start;
  }

  .csp-workbench-grid,
  .csp-feature-grid {
    grid-template-columns: 1fr;
  }

  .csp-side-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.page-cspTool {
    padding-bottom: 0;
  }

  .csp-tool-page {
    padding: 32px 0 72px;
  }

  .csp-tool-container {
    width: min(100% - 28px, 1240px);
    gap: 40px;
  }

  .csp-tool-header h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .csp-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .csp-builder-panel,
  .csp-parser-card,
  .csp-risk-card,
  .csp-output-panel {
    padding: 18px;
  }

  .csp-action-button,
  .csp-clear-button,
  .csp-source-add {
    width: 100%;
  }

  .csp-side-panel,
  .csp-source-controls,
  .csp-structured-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .csp-builder-actions,
  .csp-parser-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .csp-privacy-note-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .csp-directive-main {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .csp-output {
    min-height: 132px;
    padding: 14px;
    font-size: 13px;
    line-height: 22px;
  }
}

.robots-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.robots-tool-container {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  gap: 48px;
}

.robots-tool-header {
  max-width: 820px;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.robots-tool-header h1 {
  margin: 0;
  color: #232f3e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 850;
  letter-spacing: 0;
}

.robots-tool-header p {
  margin: 0;
  color: #535f70;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.robots-builder,
.robots-template-panel,
.robots-rules-panel,
.robots-sitemap-panel,
.robots-output-panel,
.robots-privacy-note,
.robots-guide-card,
.robots-faq details {
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.robots-builder {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.robots-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  align-items: start;
  gap: 20px;
}

.robots-config-panel {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.robots-template-panel,
.robots-rules-panel,
.robots-sitemap-panel,
.robots-output-panel {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 20px;
}

.robots-template-panel h2,
.robots-panel-heading h2,
.robots-output-header h2,
.robots-privacy-note h2,
.robots-guide-section h2,
.robots-faq h2 {
  margin: 0;
  color: #232f3e;
  font-weight: 850;
}

.robots-template-panel h2,
.robots-panel-heading h2,
.robots-output-header h2 {
  font-size: 20px;
  line-height: 28px;
}

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

.robots-template-button {
  min-width: 0;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #f9fafa;
  color: #232f3e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 850;
  text-align: center;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.robots-template-button:hover,
.robots-template-button.is-active {
  border-color: rgba(255, 153, 0, 0.55);
  background: rgba(255, 153, 0, 0.12);
  color: #232f3e;
}

.robots-template-button.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 153, 0, 0.28);
}

.robots-panel-heading,
.robots-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.robots-small-button,
.robots-action-button,
.robots-reset-button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.robots-small-button .material-symbols-outlined,
.robots-action-button .material-symbols-outlined,
.robots-reset-button .material-symbols-outlined {
  font-size: 19px;
}

.robots-rule-list,
.robots-sitemap-list {
  display: grid;
  gap: 12px;
}

.robots-rule-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f9fafa;
}

.robots-rule-header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.robots-rule-title {
  min-width: 0;
  margin: 0;
  color: #232f3e;
  font-size: 17px;
  line-height: 24px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

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

.robots-field,
.robots-sitemap-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #535f70;
  font-size: 13px;
  line-height: 18px;
  font-weight: 850;
}

.robots-field.is-wide {
  grid-column: span 2;
}

.robots-field input,
.robots-field textarea,
.robots-sitemap-field input,
.robots-output {
  width: 100%;
  min-width: 0;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.robots-field input,
.robots-sitemap-field input {
  height: 42px;
  padding: 0 12px;
}

.robots-field textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
}

.robots-field input:focus,
.robots-field textarea:focus,
.robots-sitemap-field input:focus,
.robots-output:focus {
  border-color: #0073bb;
  box-shadow: 0 0 0 2px rgba(0, 115, 187, 0.16);
  outline: 0;
}

.robots-field input::placeholder,
.robots-field textarea::placeholder,
.robots-sitemap-field input::placeholder {
  color: #8190a5;
}

.robots-remove-button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  color: #697586;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.robots-remove-button:hover {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.robots-remove-button .material-symbols-outlined {
  font-size: 20px;
}

.robots-sitemap-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f9fafa;
}

.robots-output-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.robots-output-header {
  align-items: flex-start;
}

.robots-output-header > div:first-child {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.robots-output-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.robots-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0 10px;
  border: 1px solid rgba(105, 117, 134, 0.24);
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.robots-status[data-state="success"] {
  border-color: rgba(30, 142, 62, 0.28);
  background: #e6f4ea;
  color: #1e8e3e;
}

.robots-status[data-state="warning"] {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.robots-output {
  min-height: 420px;
  resize: vertical;
  padding: 16px;
  border-color: #1f2933;
  background: #0f1720;
  color: #e7edf4;
  overflow: auto;
}

.robots-output::selection {
  background: rgba(255, 153, 0, 0.35);
}

.robots-warnings {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.robots-warnings:empty {
  display: none;
}

.robots-warnings li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid #ffe0b2;
  border-radius: 8px;
  background: #fff8eb;
  color: #7c2d12;
  font-size: 13px;
  line-height: 21px;
  font-weight: 750;
}

.robots-warnings li::before {
  content: "!";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.robots-reset-button {
  justify-self: start;
}

.robots-privacy-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px 24px;
}

.robots-privacy-note .material-symbols-outlined,
.robots-guide-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 23px;
}

.robots-privacy-note h2 {
  font-size: 20px;
  line-height: 28px;
}

.robots-privacy-note p,
.robots-guide-card p,
.robots-faq p {
  margin: 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.robots-privacy-note p {
  margin-top: 6px;
}

.robots-guide-section {
  display: grid;
  gap: 24px;
}

.robots-guide-section h2,
.robots-faq h2 {
  font-size: 24px;
  line-height: 32px;
}

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

.robots-guide-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.robots-guide-card .material-symbols-outlined {
  background: #d0e4ff;
  color: #0062a0;
}

.robots-guide-card h3 {
  margin: 0;
  color: #232f3e;
  font-size: 20px;
  line-height: 28px;
  font-weight: 850;
}

.robots-faq {
  width: min(100%, 768px);
  justify-self: center;
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.robots-faq h2 {
  text-align: center;
}

.robots-faq-list {
  display: grid;
  gap: 16px;
}

.robots-faq details {
  overflow: hidden;
}

.robots-faq summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: #232f3e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 850;
  list-style: none;
}

.robots-faq summary::-webkit-details-marker {
  display: none;
}

.robots-faq details[open] summary {
  background: #f9fafa;
}

.robots-faq p {
  padding: 8px 24px 24px;
  border-top: 1px solid #d5dada;
  background: #f9fafa;
}

.robots-faq details[open] .dns-faq-caret {
  transform: rotate(225deg);
}

@media (max-width: 1024px) {
  .robots-workspace,
  .robots-guide-grid {
    grid-template-columns: 1fr;
  }

  .robots-output-panel {
    position: static;
  }

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

  .robots-field-grid {
    grid-template-columns: 1fr;
  }

  .robots-field.is-wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  body.page-robotsGenerator {
    padding-bottom: 0;
  }

  .robots-tool-page {
    padding: 32px 0 72px;
  }

  .robots-tool-container {
    width: min(100% - 28px, 1280px);
    gap: 40px;
  }

  .robots-tool-header h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .robots-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .robots-builder,
  .robots-template-panel,
  .robots-rules-panel,
  .robots-sitemap-panel,
  .robots-output-panel {
    padding: 16px;
  }

  .robots-panel-heading,
  .robots-output-header {
    align-items: stretch;
    flex-direction: column;
  }

  .robots-template-grid,
  .robots-field-grid,
  .robots-sitemap-row {
    grid-template-columns: 1fr;
  }

  .robots-output-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .robots-small-button,
  .robots-action-button,
  .robots-reset-button {
    width: 100%;
  }

  .robots-output {
    min-height: 320px;
    padding: 14px;
    font-size: 13px;
    line-height: 21px;
  }

  .robots-privacy-note {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

.ip-tool-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0 76px;
  background: #f8f9f9;
}

.ip-tool-container {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  gap: 42px;
}

.ip-tool-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.ip-tool-header .section-kicker {
  margin: 0;
  color: #535f70;
}

.ip-tool-header h1 {
  max-width: 780px;
  margin: 0;
  color: #232f3e;
  font-size: 44px;
  line-height: 52px;
  font-weight: 850;
}

.ip-tool-header p {
  max-width: 720px;
  margin: 0;
  color: #535f70;
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.ip-lookup {
  display: grid;
  gap: 20px;
}

.ip-query-card,
.ip-info-card,
.ip-map-card,
.ip-privacy-note,
.ip-scope-note,
.ip-feature-card {
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.ip-query-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.ip-search-panel {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 8px 8px 16px;
  border: 1px solid #cfd7df;
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ip-search-panel:focus-within {
  border-color: #0073bb;
  box-shadow: 0 0 0 2px rgba(0, 115, 187, 0.18);
}

.ip-search-icon {
  color: #0073bb;
}

.ip-search-input {
  min-width: 0;
  height: 42px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: 16px;
  line-height: 24px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.ip-search-input::placeholder {
  color: #8190a5;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
}

.ip-submit-button,
.ip-secondary-button,
.ip-copy-button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.ip-submit-button {
  min-width: 116px;
  background: #ff9900;
  color: #232f3e;
}

.ip-submit-button:hover {
  background: #e58a00;
}

.ip-submit-button:disabled,
.ip-secondary-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.ip-query-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ip-clear-button {
  color: #535f70;
}

.ip-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #535f70;
  font-size: 14px;
  line-height: 20px;
}

.ip-examples span {
  font-weight: 800;
}

.ip-examples button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #0073bb;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.ip-examples button:hover {
  text-decoration: underline;
}

.ip-result {
  display: grid;
}

.ip-result [data-ip-state] {
  display: none;
}

.ip-result.is-idle [data-ip-state="idle"],
.ip-result.is-loading [data-ip-state="loading"],
.ip-result.is-error [data-ip-state="error"],
.ip-result.is-success [data-ip-state="success"] {
  display: grid;
}

.ip-state {
  align-content: center;
  min-height: 138px;
  gap: 10px;
  padding: 24px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.ip-state h2 {
  margin: 0;
  color: #232f3e;
  font-size: 20px;
  line-height: 28px;
  font-weight: 850;
}

.ip-state p {
  max-width: 560px;
  margin: 0 auto;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
}

.ip-state.error h2,
.ip-state.error p {
  color: #b42318;
}

.ip-success {
  gap: 20px;
}

.ip-result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(35, 47, 62, 0.05);
}

.ip-result-summary p {
  margin: 0 0 4px;
  color: #535f70;
  font-size: 13px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ip-result-summary h2 {
  margin: 0;
  color: #232f3e;
  font-size: 24px;
  line-height: 32px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.ip-result-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.ip-result-meta span,
.ip-map-card header span {
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d5dada;
  border-radius: 999px;
  background: #f2f3f3;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.ip-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.ip-info-card,
.ip-map-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px;
}

.ip-info-card header,
.ip-map-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ip-info-card h3,
.ip-map-card h3,
.ip-privacy-note h2,
.ip-feature-section h2,
.ip-feature-card h3 {
  margin: 0;
  color: #232f3e;
}

.ip-info-card h3,
.ip-map-card h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 850;
}

.ip-copy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.ip-copy-button {
  padding: 0 12px;
}

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

.ip-info-item {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  background: #f9fafa;
}

.ip-info-item p {
  margin: 0;
  color: #535f70;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ip-info-item strong {
  min-width: 0;
  color: #111827;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ip-map-card {
  grid-template-rows: auto minmax(360px, 1fr);
}

.ip-map-frame {
  position: relative;
  min-height: 360px;
  border: 1px solid #d5dada;
  border-radius: 8px;
  background: #edf2f7;
  overflow: hidden;
}

.ip-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.ip-map-frame iframe[hidden],
.ip-map-empty[hidden] {
  display: none;
}

.ip-map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  text-align: center;
}

.ip-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
}

.ip-privacy-note,
.ip-scope-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
}

.ip-privacy-note .material-symbols-outlined,
.ip-scope-note .material-symbols-outlined,
.ip-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f4ea;
  color: #1e8e3e;
}

.ip-scope-note .material-symbols-outlined {
  background: #fff7ed;
  color: #b45309;
}

.ip-privacy-note div {
  display: grid;
  gap: 6px;
}

.ip-privacy-note h2 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 850;
}

.ip-privacy-note p,
.ip-scope-note p,
.ip-feature-card p {
  margin: 0;
  color: #535f70;
  font-size: 15px;
  line-height: 24px;
}

.ip-feature-section {
  display: grid;
  gap: 20px;
}

.ip-feature-section h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 850;
}

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

.ip-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.ip-feature-card .material-symbols-outlined {
  background: #e8f3ff;
  color: #0073bb;
}

.ip-feature-card h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 850;
}

@media (max-width: 1024px) {
  .json-toolbar,
  .json-panel header,
  .encode-toolbar,
  .encode-panel header,
  .header-cache-panel-header,
  .jwt-input-panel header,
  .jwt-json-panel header {
    align-items: flex-start;
    flex-direction: column;
  }

  .json-actions,
  .encode-actions,
  .header-cache-actions,
  .jwt-actions {
    justify-content: flex-start;
  }

  .json-privacy-note,
  .encode-privacy-note {
    text-align: left;
  }

  .json-panels,
  .json-feature-grid,
  .encode-panels,
  .encode-feature-grid,
  .header-cache-workbench,
  .header-cache-summary,
  .header-cache-note-grid,
  .header-cache-feature-grid,
  .jwt-output-grid,
  .jwt-claim-grid,
  .jwt-feature-grid {
    grid-template-columns: 1fr;
  }

  .ip-result-grid,
  .ip-note-grid,
  .ip-feature-grid {
    grid-template-columns: 1fr;
  }

  .json-panel {
    grid-template-rows: auto minmax(360px, 52vh);
  }

  .json-panel textarea {
    min-height: 360px;
  }

  .encode-panel {
    grid-template-rows: auto minmax(320px, 48vh);
  }

  .encode-panel textarea {
    min-height: 320px;
  }

  .header-cache-input-panel {
    position: static;
  }

  .jwt-json-panel {
    grid-template-rows: auto minmax(300px, 42vh);
  }
}

@media (max-width: 720px) {
  body.page-jsonFormatter,
  body.page-encodeDecode,
  body.page-headerCacheAnalyzer,
  body.page-jwtDecoder {
    padding-bottom: 0;
  }

  .json-tool-page,
  .encode-tool-page,
  .header-cache-page,
  .jwt-tool-page {
    padding: 32px 0 72px;
  }

  .json-tool-container,
  .encode-tool-container,
  .header-cache-container,
  .jwt-tool-container {
    width: min(100% - 28px, 1240px);
    gap: 40px;
  }

  .json-tool-header h1,
  .encode-tool-header h1,
  .header-cache-hero h1,
  .jwt-tool-header h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .json-tool-header p,
  .encode-tool-header p,
  .header-cache-hero p,
  .jwt-tool-header p {
    font-size: 16px;
    line-height: 24px;
  }

  .json-workbench,
  .encode-workbench,
  .header-cache-input-panel,
  .header-cache-result,
  .header-cache-analysis-card,
  .jwt-workbench {
    padding: 18px;
  }

  .json-indent-control,
  .encode-toolbar,
  .header-cache-panel-header,
  .header-cache-security-grid article {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .json-segmented,
  .json-segmented button,
  .json-action-button,
  .json-clear-button,
  .encode-mode-tabs,
  .encode-mode-tab,
  .encode-option,
  .encode-action-button,
  .encode-clear-button,
  .header-cache-action-button,
  .header-cache-clear-button,
  .jwt-action-button,
  .jwt-copy-button,
  .jwt-clear-button {
    width: 100%;
  }

  .encode-mode-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .json-actions,
  .encode-actions,
  .header-cache-actions,
  .jwt-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .json-panel {
    grid-template-rows: auto minmax(320px, 50vh);
  }

  .json-panel textarea {
    min-height: 320px;
    padding: 14px;
    font-size: 13px;
    line-height: 21px;
  }

  .encode-panel {
    grid-template-rows: auto minmax(280px, 46vh);
  }

  .encode-panel textarea {
    min-height: 280px;
    padding: 14px;
    font-size: 13px;
    line-height: 21px;
  }

  .header-cache-notice {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .header-cache-input-panel textarea {
    min-height: 360px;
    padding: 14px;
    font-size: 13px;
    line-height: 21px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .header-cache-result {
    min-height: 340px;
  }

  .header-cache-empty {
    min-height: 280px;
  }

  .header-cache-table {
    min-width: 520px;
  }

  .header-cache-table th,
  .header-cache-table td {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 21px;
  }

  .header-cache-feature-card {
    min-height: 0;
  }

  .json-output {
    padding: 14px;
    font-size: 13px;
    line-height: 21px;
  }

  .json-feature-card,
  .encode-feature-card,
  .header-cache-feature-card {
    min-height: 0;
  }

  .encode-query-result {
    padding: 14px;
  }

  .encode-query-table {
    min-width: 460px;
  }

  .encode-query-table th,
  .encode-query-table td {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 21px;
  }

  .encode-privacy-note-card,
  .jwt-warning-note,
  .jwt-privacy-note {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  body.page-ipLookup {
    padding-bottom: 0;
  }

  .ip-tool-page {
    padding: 32px 0 72px;
  }

  .ip-tool-container {
    width: min(100% - 28px, 1180px);
    gap: 36px;
  }

  .ip-tool-header h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .ip-tool-header p {
    font-size: 16px;
    line-height: 25px;
  }

  .ip-query-card {
    padding: 16px;
  }

  .ip-search-panel {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 12px;
  }

  .ip-submit-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ip-query-actions,
  .ip-info-card header,
  .ip-map-card header,
  .ip-result-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .ip-result-meta,
  .ip-copy-actions {
    justify-content: flex-start;
  }

  .ip-secondary-button,
  .ip-clear-button,
  .ip-copy-button {
    width: 100%;
  }

  .ip-info-grid {
    grid-template-columns: 1fr;
  }

  .ip-map-card {
    grid-template-rows: auto minmax(300px, 1fr);
  }

  .ip-map-frame,
  .ip-map-frame iframe {
    min-height: 300px;
  }
}

.browser-env-page {
  min-height: calc(100vh - var(--header-height));
  padding: 54px 0 72px;
  background:
    linear-gradient(180deg, rgba(246, 250, 252, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.browser-env-container {
  display: grid;
  gap: 44px;
  max-width: 1220px;
}

.browser-env-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.browser-env-header h1 {
  margin: 0;
  max-width: 780px;
  color: var(--navy);
  font-size: 42px;
  line-height: 50px;
  font-weight: 900;
}

.browser-env-header p {
  margin: 0;
  max-width: 760px;
  color: var(--slate);
  font-size: 17px;
  line-height: 28px;
  font-weight: 650;
}

.browser-env-workbench {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(35, 47, 62, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(35, 47, 62, 0.08);
}

.browser-env-panel-header,
.browser-env-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.browser-env-panel-header h2,
.browser-env-details h2,
.browser-env-json-panel h2,
.browser-env-feature-section h2,
.browser-env-faq h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 30px;
  font-weight: 900;
}

.browser-env-panel-header p {
  margin: 4px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 22px;
  font-weight: 650;
}

.browser-env-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.browser-env-action-button {
  min-height: 42px;
  gap: 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.browser-env-action-button .material-symbols-outlined {
  font-size: 18px;
}

.browser-env-status-row {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(238, 244, 248, 0.78);
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
}

.browser-env-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.browser-env-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14);
  content: "";
}

.browser-env-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.browser-env-details,
.browser-env-json-panel {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.browser-env-group-list {
  display: grid;
  gap: 14px;
}

.browser-env-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(216, 222, 230, 0.95);
  border-radius: 8px;
  background: var(--soft);
}

.browser-env-group h3 {
  margin: 0;
  color: var(--aws-orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.browser-env-group dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.browser-env-group dl > div {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(216, 222, 230, 0.86);
  border-radius: 8px;
  background: var(--white);
}

.browser-env-group dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.browser-env-group dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 19px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.browser-env-json-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.browser-env-json-panel pre {
  min-height: 520px;
  max-height: 760px;
  margin: 0;
  padding: 16px;
  overflow: auto;
  border: 1px solid rgba(35, 47, 62, 0.12);
  border-radius: 8px;
  background: #111827;
  color: #d7e7ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 20px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.browser-env-privacy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(14, 159, 156, 0.2);
  border-radius: 8px;
  background: rgba(14, 159, 156, 0.08);
}

.browser-env-privacy .material-symbols-outlined,
.browser-env-feature-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 153, 0, 0.14);
  color: var(--aws-orange-dark);
  font-size: 22px;
}

.browser-env-privacy h2,
.browser-env-feature-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 26px;
  font-weight: 900;
}

.browser-env-privacy p,
.browser-env-feature-card p {
  margin: 6px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 23px;
  font-weight: 650;
}

.browser-env-feature-section,
.browser-env-faq {
  display: grid;
  gap: 18px;
}

.browser-env-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.browser-env-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(35, 47, 62, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(35, 47, 62, 0.06);
}

.browser-env-feature-card .material-symbols-outlined {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

.browser-env-faq-list {
  display: grid;
  gap: 12px;
}

.browser-env-faq details {
  padding: 0;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(35, 47, 62, 0.05);
}

.browser-env-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.browser-env-faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--slate);
  font-size: 14px;
  line-height: 24px;
  font-weight: 650;
}

@media (max-width: 1024px) {
  .browser-env-grid,
  .browser-env-feature-grid {
    grid-template-columns: 1fr;
  }

  .browser-env-json-panel {
    position: static;
  }

  .browser-env-json-panel pre {
    min-height: 360px;
    max-height: 560px;
  }
}

@media (max-width: 720px) {
  body.page-browserEnvironment {
    padding-bottom: 0;
  }

  .browser-env-page {
    padding: 32px 0 72px;
  }

  .browser-env-container {
    width: min(100% - 28px, 1220px);
    gap: 36px;
  }

  .browser-env-header h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .browser-env-header p {
    font-size: 16px;
    line-height: 25px;
  }

  .browser-env-workbench {
    padding: 16px;
  }

  .browser-env-panel-header,
  .browser-env-status-row {
    align-items: stretch;
    flex-direction: column;
  }

  .browser-env-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .browser-env-action-button {
    width: 100%;
  }

  .browser-env-group dl {
    grid-template-columns: 1fr;
  }

  .browser-env-privacy {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .browser-env-json-panel pre {
    min-height: 300px;
    padding: 14px;
    font-size: 12px;
    line-height: 19px;
  }
}

.button.dns-propagation-submit {
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  background: #ff9900;
  color: #232f3e;
}

.button.dns-propagation-submit:hover {
  background: #e88b00;
  color: #191c1c;
}

@media (max-width: 720px) {
  .button.dns-propagation-submit {
    width: 100%;
  }

  body.page-dnsPropagation .floating-contact {
    display: none;
  }
}
