/* ===================================================
   KEY-DROP PROMO — dmwnet.com
   Shared stylesheet · 2026
   =================================================== */

/* --- Custom Properties --- */
:root {
  --bg-primary: #070b12;
  --bg-secondary: #101726;
  --bg-card: #121a2a;
  --border-card: #273247;
  --nav-border: #252b38;
  --accent: #ffd200;
  --accent-alt: #ff9f1c;
  --text-heading: #f7f8fb;
  --text-body: #c5cede;
  --text-muted: #8995aa;
  --btn-sec-bg: #20283a;
  --btn-sec-border: #303a51;
  --badge-bg: rgba(255, 210, 0, 0.10);
  --promo-bg: #070b12;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', Courier, monospace;
  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  --max-width: 1120px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-alt);
}

a:focus-visible,
button:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

code {
  font-family: var(--font-mono);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Sticky Header --- */
.kd-masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 0.5px solid var(--nav-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.kd-masthead.mh-scrolled {
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.mh-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.mh-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.mh-brand img {
  height: 28px;
  width: auto;
}

.dp-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dp-nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.dp-nav-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.dp-nav-link:hover,
.dp-nav-link.dp-nav-active {
  color: var(--text-heading);
  background: var(--nav-border);
}

.mh-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition-fast);
}

.mh-cta:hover {
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(255, 210, 0, 0.3);
  transform: translateY(-1px);
}

/* Mobile burger */
.dp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.dp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-body);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.dp-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dp-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.dp-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero / Gateway --- */
.kd-gateway {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.kd-gateway::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gw-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.gw-content {
  flex: 1;
  min-width: 0;
}

.gw-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.gw-code-inline {
  color: var(--accent);
}

.gw-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.gw-subtitle strong {
  color: var(--text-heading);
  font-weight: 600;
}

.gw-visual {
  flex-shrink: 0;
}

.gw-logo-wrap {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 0.5px solid var(--border-card);
  position: relative;
}

.gw-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.15), transparent 60%);
  z-index: -1;
}

.gw-logo-wrap img {
  width: 120px;
  height: 120px;
}

/* --- Promo Code Widget (Cipher Panel) --- */
.cipher-panel {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  box-shadow: 0 0 30px rgba(255, 210, 0, 0.08);
}

.cp-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--badge-bg);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.cp-checked {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.cp-body {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.cp-code-display {
  flex: 1;
  background: var(--promo-bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
}

.cp-code-text {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  user-select: all;
}

.cp-copy-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition-fast);
  white-space: nowrap;
}

.cp-copy-btn:hover {
  box-shadow: 0 8px 28px rgba(255, 210, 0, 0.35);
  transform: translateY(-1px);
}

.cp-copy-btn.is-copied {
  background: #22c55e;
  pointer-events: none;
}

.cp-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- CTA Buttons --- */
.gw-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent:hover {
  color: var(--bg-primary);
  box-shadow: 0 8px 28px rgba(255, 210, 0, 0.35);
  transform: translateY(-2px);
}

.btn-accent svg {
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--btn-sec-bg);
  border: 1px solid var(--btn-sec-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--nav-border);
  border-color: var(--text-muted);
  color: var(--text-heading);
}

/* --- Segments (Content Sections) --- */
.kd-segment {
  padding: var(--space-2xl) 0;
}

.kd-segment--a {
  background: var(--bg-primary);
}

.kd-segment--b {
  background: var(--bg-secondary);
}

.kd-segment--slim {
  padding: var(--space-lg) 0;
}

.sg-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sg-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.sg-intro {
  font-size: 1.0625rem;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  max-width: 780px;
  line-height: 1.7;
}

.sg-prose {
  max-width: 780px;
}

.sg-prose p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.sg-prose p:last-child {
  margin-bottom: 0;
}

.sg-cta-row {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --- Activation Steps --- */
.flow-steps {
  margin-bottom: var(--space-lg);
}

.flow-step {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 19px;
  width: 2px;
  height: calc(100% + var(--space-lg) - 48px);
  background: var(--border-card);
}

.flow-step:last-child::before {
  display: none;
}

.flow-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.flow-step-body {
  flex: 1;
  min-width: 0;
}

.flow-step-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.flow-step-body p {
  color: var(--text-body);
  line-height: 1.7;
  max-width: 680px;
}

/* --- Bonus Cards (Intel Grid) --- */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.intel-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition-fast);
}

.intel-card:hover {
  border-color: rgba(255, 210, 0, 0.3);
  transform: translateY(-3px);
}

.ic-icon {
  margin: 0 auto var(--space-sm);
}

.ic-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ic-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.ic-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Tables (Flux Table) --- */
.terms-table-wrap,
.code-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-lg);
  -webkit-overflow-scrolling: touch;
}

.flux-table {
  width: 100%;
  border-spacing: 0;
  font-size: 0.9375rem;
}

.flux-table thead th {
  background: var(--bg-card);
  color: var(--text-heading);
  font-weight: 600;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-card);
  white-space: nowrap;
}

.flux-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.flux-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.flux-table tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(39, 50, 71, 0.5);
  vertical-align: middle;
}

.flux-table tbody tr:last-child td {
  border-bottom: none;
}

.flux-table tbody tr {
  transition: background var(--transition-fast);
}

.flux-table tbody tr:hover {
  background: rgba(18, 26, 42, 0.6);
}

.code-cell {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--promo-bg);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
}

.status-ok {
  color: #22c55e;
  font-weight: 600;
  white-space: nowrap;
}

.btn-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-table:hover {
  color: var(--bg-primary);
  box-shadow: 0 4px 16px rgba(255, 210, 0, 0.3);
  transform: translateY(-1px);
}

/* --- FAQ Accordion --- */
.accord-group {
  max-width: 780px;
}

.accord-panel {
  border-bottom: 1px solid var(--border-card);
}

.accord-panel:first-child {
  border-top: 1px solid var(--border-card);
}

.accord-trigger {
  width: 100%;
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  transition: color var(--transition-fast);
}

.accord-trigger::-webkit-details-marker {
  display: none;
}

.accord-trigger::marker {
  display: none;
  content: '';
}

.accord-trigger::after {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238995aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition);
}

.accord-panel[open] .accord-trigger::after {
  transform: rotate(180deg);
}

.accord-panel[open] .accord-trigger {
  color: var(--accent);
}

.accord-content {
  padding: 0 0 var(--space-md);
  animation: accordFade 0.3s ease;
}

.accord-content p {
  color: var(--text-body);
  line-height: 1.7;
  max-width: 700px;
}

@keyframes accordFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Last Updated --- */
.last-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.last-updated time {
  font-weight: 500;
}

/* --- Footer --- */
.kd-base {
  background: var(--bg-primary);
  border-top: 1px solid var(--nav-border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.base-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.base-brand {
  margin-bottom: var(--space-lg);
}

.base-brand img {
  margin-bottom: var(--space-sm);
}

.base-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 400px;
}

.base-links {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.base-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.base-links a:hover,
.base-links a.base-link-active {
  color: var(--text-heading);
}

.base-warning {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.bw-banner {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.bw-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bw-text a {
  color: var(--text-body);
  text-decoration: underline;
}

.base-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--nav-border);
}

.base-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Scroll-to-Top --- */
.ascend-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-sec-bg);
  border: 1px solid var(--btn-sec-border);
  border-radius: 50%;
  color: var(--text-body);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition-fast);
}

.ascend-btn[hidden] {
  display: none;
}

.ascend-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ascend-btn:hover {
  background: var(--nav-border);
  color: var(--text-heading);
}

/* --- Legal Pages --- */
.legal-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.legal-hero .sg-heading {
  margin-bottom: var(--space-xs);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
  .intel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dp-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
    overflow-y: auto;
  }

  .dp-nav.is-open {
    transform: translateX(0);
  }

  .dp-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .dp-nav-link {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
  }

  .dp-burger {
    display: flex;
  }

  .mh-cta {
    display: none;
  }

  .gw-container {
    flex-direction: column;
    text-align: left;
  }

  .gw-visual {
    display: none;
  }

  .gw-subtitle {
    max-width: 100%;
  }

  .cipher-panel {
    max-width: 100%;
  }

  .cp-body {
    flex-direction: column;
  }

  .gw-actions {
    flex-direction: column;
  }

  .gw-actions .btn-accent {
    width: 100%;
    justify-content: center;
  }

  .intel-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .flow-step {
    gap: var(--space-sm);
  }

  .flow-step::before {
    left: 15px;
  }

  .flow-step-num {
    width: 32px;
    height: 32px;
    font-size: 0.9375rem;
  }

  .sg-cta-row .btn-accent {
    width: 100%;
    justify-content: center;
  }

  .kd-segment {
    padding: var(--space-xl) 0;
  }

  .flux-table--codes thead {
    display: none;
  }

  .flux-table--codes tbody tr {
    display: flex;
    flex-direction: column;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-card);
    gap: 0.5rem;
  }

  .flux-table--codes tbody td {
    padding: 0.25rem 0;
    border-bottom: none;
  }

  .flux-table--codes tbody td:nth-child(1)::before {
    content: 'Code: ';
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .flux-table--codes tbody td:nth-child(2)::before {
    content: 'Bonus: ';
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .btn-table {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .gw-title {
    font-size: 1.5rem;
  }

  .sg-heading {
    font-size: 1.375rem;
  }

  .cp-code-text {
    font-size: 1.0625rem;
  }

  .intel-grid {
    grid-template-columns: 1fr;
  }

  .ic-value {
    font-size: 1.25rem;
  }

  .accord-trigger {
    font-size: 0.9375rem;
  }

  .mh-container {
    padding: 0 var(--space-sm);
  }

  .sg-container {
    padding: 0 var(--space-sm);
  }
}