/* ============================================================
   SinonTech — Static Site CSS
   Serves: Apache / Nginx — no WordPress dependency
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* --- CSS Custom Properties --- */
:root {
  --st-bg:          #0a0a0f;
  --st-card:        #1e1e2e;
  --st-accent:      #6366f1;
  --st-accent-hover:#4f46e5;
  --st-accent-dim:  rgba(99, 102, 241, 0.15);
  --st-text:        #e2e2e8;
  --st-muted:       #a1a1b5;
  --st-border:      #2a2a3a;
  --st-font-heading:'JetBrains Mono', monospace;
  --st-font-body:   'Inter', sans-serif;
}

/* --- Body --- */
body {
  background: var(--st-bg);
  color: var(--st-text);
  font-family: var(--st-font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--st-font-heading);
  color: #ffffff;
  line-height: 1.3;
}

h1 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
strong { color: #ffffff; }

/* --- Navigation --- */
.st-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--st-border);
  padding: 0 2rem;
}

.st-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.st-nav-logo {
  font-family: var(--st-font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
}

.st-nav-logo span { color: var(--st-accent); }

.st-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.st-nav-links a {
  color: var(--st-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.st-nav-links a:hover { color: #ffffff; }
.st-nav-links a.active { color: var(--st-accent); }

.st-nav-dropdown {
  position: relative;
}

.st-nav-dropdown:hover .st-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.st-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}

.st-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--st-muted);
}

.st-dropdown-menu a:hover {
  color: #ffffff;
  background: var(--st-accent-dim);
}

/* Mobile nav toggle */
.st-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .st-nav-links { display: none; }
  .st-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--st-card);
    border-bottom: 1px solid var(--st-border);
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .st-nav-toggle { display: block; }
  .st-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
}

/* --- Section Container --- */
.st-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Cards --- */
.st-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.st-card:hover {
  border-color: var(--st-accent);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.12), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* --- Grids --- */
.st-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.st-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.st-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

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

@media (max-width: 768px) {
  .st-grid-2, .st-grid-3, .st-grid-5 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .st-section { padding: 3rem 1.25rem; }
}

/* --- Stats --- */
.st-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--st-accent);
  font-family: var(--st-font-heading);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

/* --- Buttons --- */
.st-btn-primary {
  background: var(--st-accent);
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--st-font-heading);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  transition: background 0.15s ease;
}

.st-btn-primary:hover { background: var(--st-accent-hover); }

.st-btn-secondary {
  background: transparent;
  color: var(--st-accent);
  border: 1px solid var(--st-accent);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--st-font-heading);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 0.9375rem;
  transition: background 0.15s ease;
}

.st-btn-secondary:hover { background: var(--st-accent-dim); }

/* --- Product Cards --- */
.st-product-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-left: 4px solid var(--st-accent);
  border-radius: 0 12px 12px 0;
  padding: 2rem;
}

/* --- Service Cards --- */
.st-service-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-top: 3px solid var(--st-accent);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.st-service-card:hover {
  border-top-color: var(--st-accent-hover);
  transform: translateY(-2px);
}

/* --- Icons --- */
.st-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* --- Suite Items --- */
.st-suite-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.st-suite-item h4 {
  color: var(--st-accent);
  font-family: var(--st-font-heading);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FAQ Accordion --- */
.st-faq-item {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.st-faq-item summary {
  padding: 1.25rem 2rem;
  cursor: pointer;
  font-family: var(--st-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.st-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--st-accent);
  transition: transform 0.2s ease;
}

.st-faq-item[open] summary::after {
  content: '−';
}

.st-faq-item .st-faq-body {
  padding: 0 2rem 1.5rem;
  color: var(--st-muted);
  line-height: 1.7;
}

/* Answers written as a direct <p> child (homepage + product pages) get the
   same padding as .st-faq-body so questions and answers align. */
.st-faq-item > p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: var(--st-muted);
  line-height: 1.7;
}

/* --- Hero --- */
.st-hero {
  background: var(--st-bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  padding-top: 64px; /* offset for fixed nav */
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  .st-hero { background-attachment: scroll; }
}

.st-hero .st-section {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.st-hero-subtitle {
  font-size: 1.25rem;
  color: var(--st-muted);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.st-hero-secondary {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.st-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact CTA --- */
.st-contact-cta {
  background: var(--st-bg);
  background-image: radial-gradient(ellipse at 50% 100%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
}

/* --- Footer --- */
.st-footer {
  background: var(--st-card);
  border-top: 1px solid var(--st-border);
}

.st-footer a {
  color: var(--st-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.st-footer a:hover { color: var(--st-accent); }

.st-footer ul { list-style: none; padding: 0; }

.st-footer li {
  margin-bottom: 0.5rem;
}

.st-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--st-border);
  color: #64748b;
  font-size: 0.8125rem;
}

.st-footer-bottom a { color: #64748b; }
.st-footer-bottom a:hover { color: var(--st-accent); }

/* --- Forms --- */
.st-form-group {
  margin-bottom: 1.25rem;
}

.st-form-group label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.st-form-group input,
.st-form-group select,
.st-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--st-bg);
  border: 1px solid var(--st-border);
  border-radius: 8px;
  color: var(--st-text);
  font-family: var(--st-font-body);
  font-size: 0.9375rem;
  transition: border-color 0.15s ease;
}

.st-form-group input:focus,
.st-form-group select:focus,
.st-form-group textarea:focus {
  outline: 2px solid var(--st-accent);
  outline-offset: -1px;
  border-color: var(--st-accent);
}

/* --- Focus Ring (WCAG 2.1 AA / NIST 800-63B) --- */
:focus-visible {
  outline: 2px solid var(--st-accent);
  outline-offset: 2px;
}

a:focus-visible {
  border-radius: 4px;
}

.st-btn-primary:focus-visible,
.st-btn-secondary:focus-visible {
  outline-offset: 3px;
}

.st-form-group input::placeholder { color: #64748b; }

/* --- Product Page Shared --- */
.st-feature-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-left: 3px solid var(--st-accent);
  border-radius: 0 12px 12px 0;
  padding: 2rem;
}

.st-deploy-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-top: 3px solid var(--st-accent);
  border-radius: 12px;
  padding: 2rem;
}

.st-callout {
  background: var(--st-card);
  border: 1px solid var(--st-accent);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.st-self-hosted-block {
  background: var(--st-card);
  border-left: 4px solid var(--st-accent);
  border-radius: 0 12px 12px 0;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.st-arch-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.st-arch-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--st-accent);
  font-weight: bold;
}

@media (max-width: 768px) {
  .st-arch-flow {
    grid-template-columns: 1fr;
  }
  .st-arch-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
}

/* --- Spec Table --- */
.st-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.st-spec-table th,
.st-spec-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--st-border);
  font-size: 0.9375rem;
}

.st-spec-table th {
  color: #ffffff;
  font-family: var(--st-font-heading);
  font-weight: 600;
  width: 30%;
}

.st-spec-table td { color: var(--st-muted); }

/* --- Data Ownership Table --- */
.st-own-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  -webkit-overflow-scrolling: touch;
}

.st-own-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.st-own-table th,
.st-own-table td {
  text-align: left;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--st-border);
  font-size: 0.9375rem;
  vertical-align: top;
}

.st-own-table tbody th {
  color: #ffffff;
  font-family: var(--st-font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  width: 22%;
}

.st-own-table td { color: var(--st-muted); }

.st-own-table thead th {
  font-family: var(--st-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  border-bottom: 2px solid var(--st-border);
  width: 26%;
}

/* Our columns: accented. Theirs: deliberately recessive. */
.st-own-table thead th.st-own-mine {
  color: var(--st-accent);
  border-bottom-color: var(--st-accent);
  background: var(--st-accent-dim);
}

.st-own-table thead th.st-own-theirs,
.st-own-table td.st-own-theirs { color: #64748b; }

.st-own-sub {
  display: block;
  font-family: var(--st-font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--st-muted);
  margin-top: 0.25rem;
}

.st-own-yes  { color: #22c55e; font-weight: 600; }
.st-own-no   { color: #dc2626; font-weight: 600; }
.st-own-part { color: #eab308; font-weight: 600; }

.st-own-table tbody tr:hover { background: rgba(99, 102, 241, 0.05); }

.st-own-foot {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-style: italic;
}

.st-own-cta { margin-top: 2rem; }

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

@media (max-width: 780px) {
  .st-own-wrap::after {
    content: "Scroll to compare \2192";
    display: block;
    font-size: 0.75rem;
    color: var(--st-muted);
    padding: 0.5rem 0 0;
  }
}

/* --- Skip-to-Content --- */
.st-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  background: var(--st-accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: var(--st-font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.st-skip-link:focus {
  top: 0;
}

/* --- Breadcrumbs --- */
.st-breadcrumb {
  padding: 0.75rem 2rem;
  max-width: 1200px;
  margin: 64px auto 0;
  font-size: 0.8125rem;
  color: var(--st-muted);
}

.st-breadcrumb a {
  color: var(--st-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.st-breadcrumb .st-breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--st-border);
}

.st-breadcrumb .st-breadcrumb-current {
  color: var(--st-text);
}

/* --- Feature Tags (global) --- */
.st-feature-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  margin: 0.25rem;
}

/* --- Scroll Animations --- */
.st-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.st-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.st-animate-delay-1 { transition-delay: 0.1s; }
.st-animate-delay-2 { transition-delay: 0.2s; }
.st-animate-delay-3 { transition-delay: 0.3s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .st-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-muted { color: var(--st-muted); }
.text-accent { color: var(--st-accent); }
.text-sm { font-size: 0.875rem; }
.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-2-5 { margin-bottom: 2.5rem; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-w-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.st-link-card { text-decoration: none; color: inherit; }

/* --- Blog Content (generated by build.js from Markdown) --- */
.st-blog-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.st-blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.st-blog-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--st-muted);
}
.st-blog-content ul,
.st-blog-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--st-muted);
}
.st-blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.st-blog-content strong {
  color: var(--st-text);
}
.st-blog-content a {
  color: var(--st-accent);
  text-decoration: underline;
}
.st-blog-content a:hover {
  color: var(--st-accent-hover);
}
.st-blog-content blockquote {
  border-left: 3px solid var(--st-accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--st-card);
  border-radius: 0 8px 8px 0;
}
.st-blog-content code {
  background: var(--st-card);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: var(--st-font-heading);
  font-size: 0.875rem;
}
.st-blog-content pre {
  background: var(--st-card);
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border: 1px solid var(--st-border);
}
.st-blog-content pre code {
  background: none;
  padding: 0;
}

/* --- Policy Modal (Privacy / Terms / Cookie popups) --- */
.st-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 12, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: st-modal-fade 0.15s ease-out;
}

@keyframes st-modal-fade { from { opacity: 0; } to { opacity: 1; } }

.st-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 820px;
  max-height: 86vh;
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.st-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--st-border);
  background: var(--st-card);
  flex: 0 0 auto;
}

.st-modal-title {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
}

.st-modal-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--st-muted);
  background: transparent;
  border: 1px solid var(--st-border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.st-modal-close:hover,
.st-modal-close:focus-visible {
  color: #ffffff;
  border-color: var(--st-accent);
  background: var(--st-accent-dim);
  outline: none;
}

.st-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem;
  color: var(--st-text);
  overscroll-behavior: contain;
}

.st-modal-loading {
  color: var(--st-muted);
  text-align: center;
  padding: 2rem 0;
}

/* Neutralise full-page hero/section spacing when shown inside the modal */
.st-modal-body .st-hero,
.st-modal-body .st-section {
  padding: 0 !important;
  margin: 0 0 1.25rem 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  text-align: left !important;
}
.st-modal-body section:last-child { margin-bottom: 0 !important; }
.st-modal-body h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.st-modal-body h2 { font-size: 1.2rem; }
.st-modal-body .st-btn-primary,
.st-modal-body .st-btn-secondary { display: none; } /* hide in-content CTAs inside the popup */

/* Phones / small screens: go (near) full-screen for readability */
@media (max-width: 640px) {
  .st-modal-overlay { padding: 0; }
  .st-modal {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border: none;
    border-radius: 0;
  }
  .st-modal-header { padding: 1rem 1.1rem; }
  .st-modal-body { padding: 1.1rem; }
}

/* Large screens: allow a touch more room */
@media (min-width: 1400px) {
  .st-modal { max-width: 900px; max-height: 82vh; }
}

/* --- "Coming Soon" roadmap badge (features not yet shipping) --- */
.st-soon {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
