﻿/* Global DigiWeave styles: base, layout primitives, header, footer, and shared utilities. */

:root {
  --color-primary: #111a33;
  --color-primary-soft: #1c2952;
  --color-primary-alt: #24356b;
  --color-accent: #2f74ff;
  --color-accent-hover: #235fe0;
  --color-accent-violet: #6e46ff;
  --color-accent-cyan: #41d1ff;
  --color-accent-gold: #d4b06d;
  --color-text: #15203b;
  --color-text-light: #53627f;
  --color-text-muted: #73819a;
  --color-text-inverse: #ffffff;
  --color-bg: #f5f7fc;
  --color-bg-alt: #edf2fb;
  --color-bg-deep: #0d152c;
  --color-surface: #ffffff;
  --color-surface-strong: #f9fbff;
  --color-border: rgba(17, 26, 51, 0.1);
  --color-border-strong: rgba(17, 26, 51, 0.18);
  --gradient-brand: linear-gradient(135deg, #45d8ff 0%, #2f74ff 46%, #6e46ff 100%);
  --gradient-surface: linear-gradient(145deg, rgba(69, 216, 255, 0.1) 0%, rgba(47, 116, 255, 0.08) 45%, rgba(110, 70, 255, 0.12) 100%);
  --gradient-hero: radial-gradient(circle at top right, rgba(65, 209, 255, 0.18), transparent 34%), radial-gradient(circle at bottom left, rgba(110, 70, 255, 0.12), transparent 28%), linear-gradient(180deg, #f9fbff 0%, #eef3fb 100%);
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.4rem;
  --text-5xl: 3.4rem;
  --text-6xl: 4.4rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 7rem;
  --container-max: 1240px;
  --container-narrow: 860px;
  --container-wide: 1380px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 10px 24px rgba(16, 26, 55, 0.06);
  --shadow-md: 0 18px 44px rgba(16, 26, 55, 0.09);
  --shadow-lg: 0 30px 70px rgba(16, 26, 55, 0.12);
  --shadow-xl: 0 40px 90px rgba(8, 16, 36, 0.18);
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(65, 209, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, var(--color-bg) 100%);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin: 0 0 var(--space-lg);
  color: var(--color-text-light);
}

ul,
ol {
  margin: 0 0 var(--space-lg);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.55rem;
  color: var(--color-text-light);
}

strong {
  color: var(--color-text);
}

blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) 0 var(--space-lg) var(--space-xl);
  border-left: 3px solid rgba(47, 116, 255, 0.35);
  color: var(--color-text-light);
}

.dw-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.dw-container--narrow {
  max-width: var(--container-narrow);
}

.dw-container--wide {
  max-width: var(--container-wide);
}

.dw-section {
  position: relative;
  padding: var(--space-5xl) 0;
}

.dw-section--alt {
  background:
    radial-gradient(circle at top right, rgba(65, 209, 255, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(237, 242, 251, 0.9));
}

.dw-section--dark {
  background:
    radial-gradient(circle at top right, rgba(65, 209, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #0b1430 0%, #111d42 65%, #1a2550 100%);
  color: var(--color-text-inverse);
}

.dw-section--dark h1,
.dw-section--dark h2,
.dw-section--dark h3,
.dw-section--dark h4,
.dw-section--dark p,
.dw-section--dark li {
  color: var(--color-text-inverse);
}

.dw-section--dark p,
.dw-section--dark li {
  color: rgba(255, 255, 255, 0.78);
}

.dw-section--dark .dw-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.dw-section-header {
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.dw-section-header--timeline {
  margin-bottom: 0;
}

.dw-section-header--timeline h2 {
  margin-bottom: 0;
}

.dw-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-md);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(47, 116, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(17, 26, 51, 0.08);
  background: rgba(249, 251, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(17, 26, 51, 0.08);
}

.site-header .dw-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: var(--space-xl);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--color-primary);
}

.site-logo:hover {
  color: var(--color-primary);
}

.site-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo__mark--transparent {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.site-logo__mark picture,
.site-logo__mark img {
  width: 100%;
  height: 100%;
}

.site-logo__mark picture {
  display: block;
}

.site-logo__mark img {
  object-fit: contain;
}

.site-logo__lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-logo__title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-primary);
}

.site-logo__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  margin: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 700;
}

.primary-nav a:not(.dw-btn):hover,
.primary-nav a:not(.dw-btn):focus-visible {
  background: rgba(47, 116, 255, 0.08);
  color: var(--color-primary);
}

.header-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--color-primary);
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.nav-toggle .close-icon {
  display: none;
}

.nav-toggle.active .menu-icon {
  display: none;
}

.nav-toggle.active .close-icon {
  display: block;
}

.dw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.dw-btn:hover {
  transform: translateY(-1px);
}

.dw-btn--primary {
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  box-shadow: 0 18px 38px rgba(47, 116, 255, 0.24);
}

.dw-btn--primary:hover,
.primary-nav .dw-btn--primary:hover,
.header-cta .dw-btn--primary:hover {
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  box-shadow: 0 20px 42px rgba(47, 116, 255, 0.3);
  transform: translateY(-2px);
}

.primary-nav .dw-btn--primary,
.primary-nav .dw-btn--primary:visited,
.header-cta .dw-btn--primary,
.header-cta .dw-btn--primary:visited {
  color: var(--color-text-inverse);
}

.dw-btn--secondary {
  background: rgba(17, 26, 51, 0.04);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.1);
}

.dw-btn--secondary:hover {
  color: var(--color-primary);
  background: rgba(17, 26, 51, 0.07);
}

.dw-btn--balanced {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  box-shadow:
    inset 0 0 0 1px rgba(47, 116, 255, 0.16),
    0 14px 28px rgba(47, 116, 255, 0.12);
}

.dw-btn--balanced:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(47, 116, 255, 0.28),
    0 18px 36px rgba(47, 116, 255, 0.16);
  transform: translateY(-2px);
}

.dw-btn--outline-light {
  background: transparent;
  color: var(--color-text-inverse);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.dw-btn--outline-light:hover {
  color: var(--color-text-inverse);
  background: rgba(255, 255, 255, 0.08);
}

.dw-btn--lg {
  min-height: 56px;
  padding: 1rem 1.55rem;
  font-size: var(--text-base);
}

.dw-btn--sm {
  min-height: 42px;
  padding: 0.75rem 1.15rem;
}

.dw-btn--full {
  width: 100%;
}


picture { display: block; }

.dw-gradient-text { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.dw-media-card,
.dw-proof-card,
.dw-feature-card,
.dw-pricing-card,
.dw-step,
.dw-contact-form,
.dw-contact-info-card,
.dw-editorial-panel,
.dw-story-panel,
.dw-compare-card {
  border: 1px solid rgba(17, 26, 51, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.dw-media-card {
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.dw-story-panel > :last-child,
.dw-editorial-panel > :last-child,
.dw-contact-info-card > :last-child,
.dw-compare-card > :last-child {
  margin-bottom: 0;
}

.dw-section--dark .dw-feature-card,
.dw-section--dark .dw-compare-card,
.dw-section--dark .dw-story-panel,
.dw-section--dark .dw-editorial-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.dw-section--dark .dw-feature-card h3,
.dw-section--dark .dw-compare-card h3,
.dw-section--dark .dw-story-panel h3,
.dw-section--dark .dw-editorial-panel h3 {
  color: var(--color-text-inverse);
}

.dw-section--dark .dw-feature-card p,
.dw-section--dark .dw-compare-card p,
.dw-section--dark .dw-story-panel p,
.dw-section--dark .dw-editorial-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.dw-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dw-media-card__caption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.dw-page-hero {
  position: relative;
  padding: calc(92px + var(--space-3xl)) 0 var(--space-3xl);
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #edf2fb 100%);
  text-align: center;
}

.dw-page-hero h1 {
  max-width: 820px;
  margin: 0 auto var(--space-md);
}

.dw-page-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--text-lg);
}


.dw-page-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.dw-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}


.dw-page-hero__highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  gap: 0.85rem;
  max-width: min(100%, 28rem);
  margin: var(--space-lg) auto 0;
  padding: 0.95rem 1.55rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #45d8ff 0%, #2f74ff 46%, #6e46ff 100%) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.14) 100%) border-box;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 44px rgba(47, 116, 255, 0.24);
  color: var(--color-text-inverse);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.dw-page-hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.dw-page-hero__highlight-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

.dw-page-hero__highlight:visited,
.dw-page-hero__highlight:hover,
.dw-page-hero__highlight:focus {
  color: var(--color-text-inverse);
  text-decoration: none;
}

.dw-page-hero__highlight:focus-visible {
  outline: 3px solid rgba(17, 26, 51, 0.16);
  outline-offset: 4px;
}

.dw-cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0;
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(110, 70, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #0a1330 0%, #111d42 55%, #19275a 100%);
  color: var(--color-text-inverse);
  text-align: center;
}

.dw-cta h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  color: var(--color-text-inverse);
}

.dw-cta p {
  max-width: 640px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.dw-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: var(--space-4xl) 0 0;
  background:
    radial-gradient(circle at top left, rgba(65, 209, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #0b1330 0%, #0a1128 100%);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer-brand {
  padding-right: 1rem;
}

.footer-brand .site-logo {
  align-items: center;
  gap: 1.05rem;
  margin-bottom: 1rem;
}

.footer-brand .site-logo__mark--transparent {
  width: 56px;
  height: 56px;
}

.footer-brand .site-logo__title,
.footer-brand .site-logo__tag,
.footer-col__title {
  color: var(--color-text-inverse);
}

.footer-brand .site-logo__tag {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.footer-col__title {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--color-text-inverse);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: var(--space-3xl);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom button {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

.footer-bottom button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.footer-bottom button:hover,
.footer-bottom button:focus-visible {
  color: var(--color-text-inverse);
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wp-block-group {
  margin-bottom: var(--space-lg);
}

.alignwide {
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
}

@media (max-width: 1100px) {

  .footer-grid { grid-template-columns: minmax(0, 1fr); }

  .footer-brand { max-width: 100%; }

}

@media (max-width: 900px) {
  .site-header .dw-container {
    min-height: 82px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 999;
    width: min(94vw, 360px);
    max-width: 360px;
    min-height: 100dvh;
    height: 100dvh;
    padding: calc(82px + 1rem) 1rem calc(1.2rem + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    background: #fff;
    border-left: 1px solid rgba(17, 26, 51, 0.08);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity var(--transition-base), visibility 0s linear var(--transition-base);
    visibility: hidden;
  }

  .primary-nav.active {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
  }

  .primary-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 18px;
  }

  .header-cta {
    width: 100%;
    margin: 0.65rem 0 0;
  }

  .header-cta .dw-btn {
    width: 100%;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(10, 17, 40, 0.54);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility 0s linear var(--transition-base);
    visibility: hidden;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

}

@media (max-width: 245px) and (min-width: 221px) {
  .site-header .dw-container {
    padding-inline: 0.95rem;
    gap: 0.65rem;
  }

  .site-logo {
    gap: 0.7rem;
    min-width: 0;
  }

  .site-logo__mark--transparent {
    width: 50px;
    height: 50px;
  }

  .site-logo__lockup {
    min-width: 0;
  }

  .site-logo__title {
    font-size: 1.16rem;
  }

  .nav-toggle {
    padding: 0.25rem;
    flex-shrink: 0;
  }
}

@media (max-width: 220px) {
  html,
  body {
    overflow-x: hidden;
  }

  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .dw-container {
    padding-inline: 0.9rem;
  }

  .site-header .dw-container {
    gap: 0.55rem;
  }

  .site-logo {
    gap: 0.65rem;
    min-width: 0;
  }

  .site-logo__mark--transparent {
    width: 48px;
    height: 48px;
  }

  .site-logo__lockup {
    min-width: 0;
  }

  .site-logo__title {
    font-size: 1.1rem;
  }

  .nav-toggle {
    padding: 0.25rem;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-brand .site-logo {
    display: flex;
    width: 100%;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .footer-brand .site-logo__lockup {
    flex: 1 1 100%;
  }
}

