/* Sortwyre — swyr.css — Forest green ops platform, JetBrains Mono metrics */

/* =====================================================
   CUSTOM PROPERTIES
   ===================================================== */
:root {
  --swyr-green-dark:    #14532D;
  --swyr-green-mid:     #166534;
  --swyr-green-light:   #15803D;
  --swyr-green-bright:  #22C55E;
  --swyr-green-dim:     #16A34A;
  --swyr-accent:        #FBBF24;
  --swyr-accent-hover:  #F59E0B;
  --swyr-cream:         #F9F7F2;
  --swyr-white:         #FFFFFF;
  --swyr-dark:          #0F1F14;
  --swyr-dark-mid:      #162B1C;
  --swyr-text:          #111827;
  --swyr-text-2:        #374151;
  --swyr-text-muted:    #6B7280;
  --swyr-text-light:    #F9F7F2;
  --swyr-border:        #E5E1D8;
  --swyr-border-mid:    #D1C9BC;
  --swyr-tag-bg:        #DCFCE7;
  --swyr-tag-text:      #14532D;

  --swyr-radius-btn:    4px;
  --swyr-radius-card:   6px;
  --swyr-radius-panel:  8px;

  --swyr-shadow-card:   0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05);
  --swyr-shadow-hover:  0 8px 24px rgba(20,83,45,0.12);

  --swyr-font-head:     'Inter', system-ui, sans-serif;
  --swyr-font-body:     'Inter', system-ui, sans-serif;
  --swyr-font-mono:     'JetBrains Mono', 'Courier New', monospace;

  --swyr-container:     1200px;
  --swyr-section-pad:   96px;
  --swyr-section-pad-m: 64px;
  --swyr-subpage-pad:   80px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--swyr-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--swyr-text);
  background: var(--swyr-white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--swyr-font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--swyr-text);
}

.swyr-mono {
  font-family: var(--swyr-font-mono);
  font-weight: 400;
}

.swyr-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--swyr-text-muted);
}

.swyr-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--swyr-accent);
  margin-bottom: 0.75rem;
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.swyr-container {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* =====================================================
   BUTTONS
   ===================================================== */
.swyr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--swyr-radius-btn);
  border: 2px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.swyr-btn--primary {
  background: var(--swyr-accent);
  color: var(--swyr-dark);
  border-color: var(--swyr-accent);
}
.swyr-btn--primary:hover {
  background: var(--swyr-accent-hover);
  border-color: var(--swyr-accent-hover);
}

.swyr-btn--outline {
  background: transparent;
  color: var(--swyr-text-light);
  border-color: rgba(249,247,242,0.4);
}
.swyr-btn--outline:hover {
  background: rgba(249,247,242,0.08);
  border-color: rgba(249,247,242,0.7);
}

.swyr-btn--outline-dark {
  background: transparent;
  color: var(--swyr-green-dark);
  border-color: var(--swyr-green-dark);
}
.swyr-btn--outline-dark:hover {
  background: var(--swyr-green-dark);
  color: var(--swyr-white);
}

.swyr-btn--ghost-green {
  background: transparent;
  color: var(--swyr-text-light);
  border-color: rgba(34,197,94,0.4);
}
.swyr-btn--ghost-green:hover {
  background: rgba(34,197,94,0.08);
  border-color: var(--swyr-green-bright);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.swyr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--swyr-dark);
  transition: background 0.25s, box-shadow 0.25s;
}

.swyr-nav--scrolled {
  background: var(--swyr-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

body.swyr-page--light-top .swyr-nav {
  background: var(--swyr-dark);
}

.swyr-nav__inner {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
}

.swyr-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.swyr-nav__logo-mark {
  width: 32px;
  height: 32px;
}

.swyr-nav__logo-text {
  font-family: var(--swyr-font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--swyr-text-light);
  letter-spacing: -0.02em;
}

.swyr-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}

.swyr-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(249,247,242,0.85);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.swyr-nav__link:hover {
  color: var(--swyr-text-light);
  background: rgba(249,247,242,0.07);
}

.swyr-nav__link i {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

.swyr-nav__item:hover .swyr-nav__link i { transform: rotate(180deg); }

.swyr-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dropdown */
.swyr-nav__item { position: relative; }

.swyr-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--swyr-dark);
  border: 1px solid rgba(249,247,242,0.1);
  border-radius: var(--swyr-radius-card);
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 100;
}

.swyr-nav__item:hover .swyr-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.swyr-nav__dropdown-link {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(249,247,242,0.8);
  transition: color 0.15s, background 0.15s;
}
.swyr-nav__dropdown-link:hover {
  color: var(--swyr-text-light);
  background: rgba(249,247,242,0.06);
}

/* Mobile menu */
.swyr-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}

.swyr-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--swyr-text-light);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.swyr-nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--swyr-dark);
  border-top: 1px solid rgba(249,247,242,0.08);
  padding: 16px 24px 24px;
  gap: 4px;
}

.swyr-nav__mobile.is-open { display: flex; }

.swyr-nav__mobile-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(249,247,242,0.85);
  border-radius: 4px;
}
.swyr-nav__mobile-link:hover { background: rgba(249,247,242,0.07); }

.swyr-nav__mobile-group {
  padding: 4px 0;
  border-top: 1px solid rgba(249,247,242,0.08);
}

.swyr-nav__mobile-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--swyr-text-muted);
  padding: 12px 12px 4px;
}

.swyr-nav__mobile-cta {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .swyr-nav__links,
  .swyr-nav__actions { display: none; }
  .swyr-nav__hamburger { display: flex; }
  .swyr-nav--scrolled { background: var(--swyr-dark); }
}

/* =====================================================
   FOOTER
   ===================================================== */
.swyr-footer {
  background: var(--swyr-dark);
  color: var(--swyr-text-light);
  padding: 80px 0 0;
}

.swyr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(249,247,242,0.1);
}

.swyr-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.swyr-footer__brand-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--swyr-text-light);
}

.swyr-footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(249,247,242,0.6);
  max-width: 280px;
  margin-bottom: 20px;
}

.swyr-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,247,242,0.5);
  margin-bottom: 16px;
}

.swyr-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.swyr-footer__col-link {
  font-size: 0.875rem;
  color: rgba(249,247,242,0.75);
  transition: color 0.15s;
}
.swyr-footer__col-link:hover { color: var(--swyr-text-light); }

.swyr-footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.swyr-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(249,247,242,0.45);
}

.swyr-footer__contact {
  font-size: 0.8125rem;
  color: rgba(249,247,242,0.45);
}

.swyr-footer__contact a {
  color: rgba(249,247,242,0.65);
}
.swyr-footer__contact a:hover { color: var(--swyr-text-light); }

@media (max-width: 1024px) {
  .swyr-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .swyr-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .swyr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .swyr-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =====================================================
   HERO — INDEX (DARK FULL VIEWPORT)
   ===================================================== */
.swyr-hero {
  min-height: 100vh;
  background: var(--swyr-dark);
  display: flex;
  align-items: center;
  padding-top: 68px;
}

.swyr-hero__inner {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.swyr-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--swyr-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.swyr-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--swyr-accent);
}

.swyr-hero__h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--swyr-text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.swyr-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(249,247,242,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.swyr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.swyr-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .swyr-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 48px;
  }
  .swyr-hero__visual { order: -1; }
}

/* =====================================================
   SUB-PAGE HERO (DARK)
   ===================================================== */
.swyr-subhero {
  background: var(--swyr-dark);
  padding-top: 68px;
}

.swyr-subhero__inner {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 80px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.swyr-subhero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--swyr-accent);
  margin-bottom: 16px;
}

.swyr-subhero__h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--swyr-text-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.swyr-subhero__sub {
  font-size: 1.0625rem;
  color: rgba(249,247,242,0.72);
  line-height: 1.7;
  max-width: 540px;
}

.swyr-subhero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .swyr-subhero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px 48px;
  }
}

/* =====================================================
   METRICS BAR (STATS STRIP)
   ===================================================== */
.swyr-metrics-bar {
  background: var(--swyr-green-mid);
  padding: 40px 0;
}

.swyr-metrics-bar__grid {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.swyr-metrics-bar__item {
  text-align: center;
}

.swyr-metrics-bar__value {
  font-family: var(--swyr-font-mono);
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  font-weight: 700;
  color: var(--swyr-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.swyr-metrics-bar__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(249,247,242,0.9);
  margin-bottom: 4px;
}

.swyr-metrics-bar__context {
  font-size: 0.75rem;
  color: rgba(249,247,242,0.6);
}

@media (max-width: 700px) {
  .swyr-metrics-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   SECTIONS — GENERIC
   ===================================================== */
.swyr-section {
  padding: var(--swyr-section-pad) 0;
}

.swyr-section--cream { background: var(--swyr-cream); }
.swyr-section--white { background: var(--swyr-white); }
.swyr-section--dark { background: var(--swyr-dark); }
.swyr-section--green { background: var(--swyr-green-dark); }

.swyr-section__header {
  max-width: 680px;
  margin-bottom: 56px;
}

.swyr-section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.swyr-section__h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.swyr-section__sub {
  font-size: 1.0625rem;
  color: var(--swyr-text-2);
  line-height: 1.7;
}

/* Dark section text overrides */
.swyr-section--dark .swyr-section__h2,
.swyr-section--green .swyr-section__h2 {
  color: var(--swyr-text-light);
}

.swyr-section--dark .swyr-section__sub,
.swyr-section--green .swyr-section__sub {
  color: rgba(249,247,242,0.7);
}

/* =====================================================
   PROBLEM STRIP (2-COL TEXT + IMAGE)
   ===================================================== */
.swyr-problem {
  background: var(--swyr-cream);
  padding: var(--swyr-section-pad) 0;
}

.swyr-problem__inner {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.swyr-problem__text .swyr-section__h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
}

.swyr-problem__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--swyr-text-2);
}

.swyr-problem__img {
  border-radius: var(--swyr-radius-panel);
  box-shadow: var(--swyr-shadow-card);
  width: 100%;
  aspect-ratio: 900 / 480;
  object-fit: cover;
  background: var(--swyr-border);
}

@media (max-width: 800px) {
  .swyr-problem__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================================================
   CAPABILITY CARDS (3-COL GRID)
   ===================================================== */
.swyr-cards {
  padding: var(--swyr-section-pad) 0;
  background: var(--swyr-white);
}

.swyr-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.swyr-card {
  background: var(--swyr-cream);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-card);
  padding: 32px;
  box-shadow: var(--swyr-shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.swyr-card:hover {
  box-shadow: var(--swyr-shadow-hover);
  transform: translateY(-2px);
}

.swyr-card__icon {
  width: 44px;
  height: 44px;
  background: var(--swyr-tag-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--swyr-green-dark);
  font-size: 1.125rem;
}

.swyr-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin-bottom: 12px;
}

.swyr-card__body {
  font-size: 0.9375rem;
  color: var(--swyr-text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.swyr-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--swyr-green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.swyr-card__link:hover { gap: 10px; }

@media (max-width: 900px) {
  .swyr-cards__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .swyr-cards__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   INTEGRATION WALL
   ===================================================== */
.swyr-integrations {
  padding: var(--swyr-section-pad) 0;
  background: var(--swyr-cream);
}

.swyr-integrations__tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.swyr-int-tile {
  background: var(--swyr-white);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-card);
  padding: 18px 28px;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--swyr-shadow-card);
  transition: box-shadow 0.18s, border-color 0.18s;
}

.swyr-int-tile:hover {
  box-shadow: var(--swyr-shadow-hover);
  border-color: var(--swyr-green-dark);
}

.swyr-int-tile__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin-bottom: 4px;
}

.swyr-int-tile__type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--swyr-text-muted);
}

/* Integration full-page cards */
.swyr-int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.swyr-int-card {
  background: var(--swyr-white);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-card);
  padding: 28px;
  box-shadow: var(--swyr-shadow-card);
}

.swyr-int-card__vendor {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin-bottom: 8px;
}

.swyr-int-card__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.swyr-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.swyr-badge--wms { background: #DBEAFE; color: #1E40AF; }
.swyr-badge--wes { background: var(--swyr-tag-bg); color: var(--swyr-tag-text); }

.swyr-int-card__protocol {
  font-family: var(--swyr-font-mono);
  font-size: 0.8125rem;
  color: var(--swyr-green-dark);
  margin-bottom: 12px;
}

.swyr-int-card__notes {
  font-size: 0.875rem;
  color: var(--swyr-text-2);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .swyr-int-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .swyr-int-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.swyr-quotes {
  padding: var(--swyr-section-pad) 0;
  background: var(--swyr-dark);
}

.swyr-quotes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.swyr-quote-card {
  background: var(--swyr-dark-mid);
  border: 1px solid rgba(249,247,242,0.08);
  border-radius: var(--swyr-radius-card);
  padding: 36px;
}

.swyr-quote-card__mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--swyr-accent);
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.swyr-quote-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(249,247,242,0.85);
  margin-bottom: 24px;
}

.swyr-quote-card__pph {
  font-family: var(--swyr-font-mono);
  font-size: 0.875rem;
  color: var(--swyr-accent);
}

.swyr-quote-card__attribution {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--swyr-text-light);
}

.swyr-quote-card__company {
  font-size: 0.8125rem;
  color: rgba(249,247,242,0.55);
  margin-top: 4px;
}

@media (max-width: 700px) {
  .swyr-quotes__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   CTA BAND
   ===================================================== */
.swyr-cta-band {
  padding: var(--swyr-section-pad) 0;
  background: var(--swyr-green-dark);
}

.swyr-cta-band__inner {
  max-width: var(--swyr-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.swyr-cta-band__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--swyr-text-light);
  margin-bottom: 12px;
}

.swyr-cta-band__body {
  font-size: 1rem;
  color: rgba(249,247,242,0.75);
  line-height: 1.65;
  max-width: 560px;
}

.swyr-cta-band__action { flex-shrink: 0; }

@media (max-width: 800px) {
  .swyr-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* =====================================================
   PLATFORM PAGE — SECTIONS
   ===================================================== */
.swyr-arch-diagram {
  width: 100%;
  max-width: 820px;
  border-radius: var(--swyr-radius-panel);
  box-shadow: var(--swyr-shadow-card);
  background: var(--swyr-border);
}

.swyr-protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.swyr-protocol-card {
  background: var(--swyr-cream);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-card);
  padding: 24px;
}

.swyr-protocol-card__proto {
  font-family: var(--swyr-font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swyr-green-dark);
  margin-bottom: 8px;
}

.swyr-protocol-card__desc {
  font-size: 0.875rem;
  color: var(--swyr-text-2);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .swyr-protocol-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   FEATURE LIST ROWS
   ===================================================== */
.swyr-feature-rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.swyr-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.swyr-feature-row--reverse { direction: rtl; }
.swyr-feature-row--reverse > * { direction: ltr; }

.swyr-feature-row__h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--swyr-text);
}

.swyr-feature-row__body {
  font-size: 1rem;
  color: var(--swyr-text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.swyr-feature-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.swyr-feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--swyr-text-2);
}

.swyr-feature-row__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--swyr-green-dark);
  margin-top: 6px;
  flex-shrink: 0;
}

.swyr-feature-row__visual img {
  border-radius: var(--swyr-radius-panel);
  box-shadow: var(--swyr-shadow-card);
  width: 100%;
}

@media (max-width: 800px) {
  .swyr-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .swyr-feature-row--reverse { direction: ltr; }
}

/* =====================================================
   SECURITY PAGE
   ===================================================== */
.swyr-security-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.swyr-security-pillar {
  background: var(--swyr-cream);
  border: 1px solid var(--swyr-border);
  border-left: 4px solid var(--swyr-green-dark);
  border-radius: var(--swyr-radius-card);
  padding: 28px;
}

.swyr-security-pillar__h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin-bottom: 12px;
}

.swyr-security-pillar__body {
  font-size: 0.9375rem;
  color: var(--swyr-text-2);
  line-height: 1.65;
}

.swyr-security-pillar__badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--swyr-tag-bg);
  color: var(--swyr-tag-text);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .swyr-security-pillars { grid-template-columns: 1fr; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.swyr-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.swyr-about-story__img {
  border-radius: var(--swyr-radius-panel);
  box-shadow: var(--swyr-shadow-card);
  width: 100%;
  aspect-ratio: 960 / 540;
  object-fit: cover;
  background: var(--swyr-border);
}

.swyr-about-story__body {
  font-size: 1.0625rem;
  color: var(--swyr-text-2);
  line-height: 1.75;
}

.swyr-about-story__body + .swyr-about-story__body {
  margin-top: 16px;
}

@media (max-width: 800px) {
  .swyr-about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =====================================================
   TEAM PAGE
   ===================================================== */
.swyr-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.swyr-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.swyr-team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--swyr-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swyr-text-light);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--swyr-font-head);
  flex-shrink: 0;
}

.swyr-team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swyr-text);
}

.swyr-team-card__title {
  font-size: 0.875rem;
  color: var(--swyr-text-muted);
  margin-top: -8px;
}

.swyr-team-card__bio {
  font-size: 0.9375rem;
  color: var(--swyr-text-2);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .swyr-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .swyr-team-grid { grid-template-columns: 1fr; align-items: center; }
  .swyr-team-card { max-width: 340px; margin: 0 auto; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.swyr-contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.swyr-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.swyr-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.swyr-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--swyr-text);
}

.swyr-form__input,
.swyr-form__select,
.swyr-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--swyr-border-mid);
  border-radius: var(--swyr-radius-btn);
  font-size: 0.9375rem;
  font-family: var(--swyr-font-body);
  color: var(--swyr-text);
  background: var(--swyr-white);
  transition: border-color 0.15s;
}
.swyr-form__input:focus,
.swyr-form__select:focus,
.swyr-form__textarea:focus {
  outline: none;
  border-color: var(--swyr-green-dark);
}

.swyr-form__textarea { resize: vertical; min-height: 120px; }

.swyr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.swyr-contact-info {
  background: var(--swyr-dark);
  border-radius: var(--swyr-radius-panel);
  padding: 36px;
  color: var(--swyr-text-light);
}

.swyr-contact-info__h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swyr-text-light);
  margin-bottom: 24px;
}

.swyr-contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.swyr-contact-info__icon {
  width: 36px;
  height: 36px;
  background: rgba(249,247,242,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swyr-accent);
  flex-shrink: 0;
}

.swyr-contact-info__text {
  font-size: 0.9375rem;
  color: rgba(249,247,242,0.8);
  line-height: 1.6;
}

.swyr-contact-info__text a {
  color: var(--swyr-accent);
}

@media (max-width: 900px) {
  .swyr-contact-layout {
    grid-template-columns: 1fr;
  }
  .swyr-form__row { grid-template-columns: 1fr; }
}

/* =====================================================
   BLOG INDEX
   ===================================================== */
.swyr-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.swyr-blog-card {
  background: var(--swyr-white);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-card);
  overflow: hidden;
  box-shadow: var(--swyr-shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.swyr-blog-card:hover {
  box-shadow: var(--swyr-shadow-hover);
  transform: translateY(-2px);
}

.swyr-blog-card__cover {
  aspect-ratio: 800 / 420;
  overflow: hidden;
}

.swyr-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.swyr-blog-card:hover .swyr-blog-card__cover img { transform: scale(1.03); }

.swyr-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.swyr-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.swyr-blog-tag {
  background: var(--swyr-tag-bg);
  color: var(--swyr-tag-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.swyr-blog-card__date {
  font-size: 0.8rem;
  color: var(--swyr-text-muted);
}

.swyr-blog-card__read {
  font-size: 0.8rem;
  color: var(--swyr-text-muted);
}

.swyr-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--swyr-text);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}

.swyr-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--swyr-text-2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 960px) {
  .swyr-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .swyr-blog-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   BLOG ARTICLE
   ===================================================== */
.swyr-article {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 24px;
}

.swyr-article__cover {
  width: 100%;
  border-radius: var(--swyr-radius-panel);
  margin-bottom: 40px;
  box-shadow: var(--swyr-shadow-card);
}

.swyr-article__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.swyr-article__h1 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--swyr-text);
}

.swyr-article__byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--swyr-border);
  border-bottom: 1px solid var(--swyr-border);
  margin-bottom: 32px;
}

.swyr-article__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--swyr-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--swyr-text-light);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.swyr-article__author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--swyr-text);
}

.swyr-article__meta {
  font-size: 0.825rem;
  color: var(--swyr-text-muted);
}

.swyr-article__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--swyr-text-2);
}

.swyr-article__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin: 40px 0 16px;
}

.swyr-article__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin: 28px 0 12px;
}

.swyr-article__body p { margin-bottom: 20px; }

.swyr-article__body ul,
.swyr-article__body ol {
  margin: 0 0 20px 24px;
}

.swyr-article__body ul { list-style: disc; }
.swyr-article__body ol { list-style: decimal; }

.swyr-article__body li { margin-bottom: 8px; }

.swyr-article__body code {
  font-family: var(--swyr-font-mono);
  font-size: 0.875em;
  background: var(--swyr-cream);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--swyr-green-dark);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.swyr-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.swyr-legal__h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--swyr-text);
}

.swyr-legal__updated {
  font-size: 0.875rem;
  color: var(--swyr-text-muted);
  margin-bottom: 48px;
}

.swyr-legal__body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin: 36px 0 12px;
}

.swyr-legal__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--swyr-text);
  margin: 24px 0 10px;
}

.swyr-legal__body p { margin-bottom: 16px; font-size: 0.9375rem; line-height: 1.7; color: var(--swyr-text-2); }

.swyr-legal__body ul {
  margin: 0 0 16px 24px;
  list-style: disc;
}

.swyr-legal__body li { margin-bottom: 6px; font-size: 0.9375rem; color: var(--swyr-text-2); }

.swyr-legal__body a { color: var(--swyr-green-dark); text-decoration: underline; }

/* Article header, back link, additional article classes */
.swyr-article__header {
  background: var(--swyr-cream);
  padding: 80px 0 40px;
}

.swyr-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--swyr-green-dark);
  text-decoration: none;
  margin-bottom: 24px;
}
.swyr-article__back:hover { text-decoration: underline; }

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

.swyr-article__read-time {
  font-size: 0.8125rem;
  color: var(--swyr-text-muted);
}

.swyr-article__lede {
  font-size: 1.125rem;
  color: var(--swyr-text-2);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 28px;
}

.swyr-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--swyr-border);
}

.swyr-article__author-title {
  font-size: 0.8125rem;
  color: var(--swyr-text-muted);
}

.swyr-article__cover img {
  width: 100%;
  height: auto;
  border-radius: var(--swyr-radius-panel);
  display: block;
  margin: 40px 0;
  box-shadow: var(--swyr-shadow-card);
}

.swyr-article__cta {
  background: var(--swyr-cream);
  padding: 64px 0;
}

/* Legal page direct descendant selectors (no __body wrapper) */
.swyr-legal h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--swyr-text);
  letter-spacing: -0.02em;
}
.swyr-legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--swyr-text);
  margin: 36px 0 12px;
}
.swyr-legal h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--swyr-text);
  margin: 24px 0 10px;
}
.swyr-legal p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--swyr-text-2);
}
.swyr-legal ul {
  margin: 0 0 16px 24px;
  list-style: disc;
}
.swyr-legal li {
  margin-bottom: 6px;
  font-size: 0.9375rem;
  color: var(--swyr-text-2);
}
.swyr-legal a { color: var(--swyr-green-dark); text-decoration: underline; }
.swyr-legal address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--swyr-text-2);
  margin-top: 8px;
}

/* =====================================================
   404 PAGE
   ===================================================== */
.swyr-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--swyr-dark);
}

.swyr-404__code {
  font-family: var(--swyr-font-mono);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--swyr-accent);
  line-height: 1;
  margin-bottom: 24px;
}

.swyr-404__h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--swyr-text-light);
  margin-bottom: 16px;
}

.swyr-404__sub {
  font-size: 1.0625rem;
  color: rgba(249,247,242,0.65);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.swyr-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--swyr-dark);
  border-top: 1px solid rgba(249,247,242,0.1);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.swyr-cookie__text {
  font-size: 0.875rem;
  color: rgba(249,247,242,0.8);
  flex: 1;
  min-width: 240px;
  line-height: 1.5;
}

.swyr-cookie__text a {
  color: var(--swyr-accent);
  text-decoration: underline;
}

.swyr-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.swyr-cookie__accept {
  background: var(--swyr-accent);
  color: var(--swyr-dark);
  border: none;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--swyr-radius-btn);
  cursor: pointer;
  transition: background 0.15s;
}
.swyr-cookie__accept:hover { background: var(--swyr-accent-hover); }

.swyr-cookie__essential {
  background: transparent;
  color: rgba(249,247,242,0.7);
  border: 1px solid rgba(249,247,242,0.25);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--swyr-radius-btn);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.swyr-cookie__essential:hover {
  border-color: rgba(249,247,242,0.5);
  color: var(--swyr-text-light);
}

/* =====================================================
   PILOT FORM (REQUEST-PILOT PAGE)
   ===================================================== */
.swyr-pilot-layout {
  max-width: 800px;
  margin: 0 auto;
}

.swyr-pilot-form {
  background: var(--swyr-white);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-panel);
  padding: 48px;
  box-shadow: var(--swyr-shadow-card);
}

@media (max-width: 600px) {
  .swyr-pilot-form { padding: 24px; }
}

/* =====================================================
   SOLUTIONS PAGES (FC / 3PL)
   ===================================================== */
.swyr-sols-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.swyr-sols-point {
  background: var(--swyr-cream);
  border: 1px solid var(--swyr-border);
  border-radius: var(--swyr-radius-card);
  padding: 24px;
}

.swyr-sols-point__icon {
  font-size: 1.25rem;
  color: var(--swyr-green-dark);
  margin-bottom: 12px;
}

.swyr-sols-point__h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--swyr-text);
}

.swyr-sols-point__body {
  font-size: 0.9rem;
  color: var(--swyr-text-2);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .swyr-sols-points { grid-template-columns: 1fr; }
}

/* =====================================================
   INLINE MONO KPI CHIPS
   ===================================================== */
.swyr-kpi-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 4px;
  padding: 6px 12px;
}

.swyr-kpi-chip__val {
  font-family: var(--swyr-font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--swyr-accent);
}

.swyr-kpi-chip__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(249,247,242,0.8);
}

/* =====================================================
   MISC UTILITY CLASSES
   ===================================================== */
.swyr-divider {
  height: 1px;
  background: var(--swyr-border);
  margin: 0;
}

.swyr-text-mono {
  font-family: var(--swyr-font-mono);
  color: var(--swyr-green-dim);
  font-size: 0.875em;
}

/* Fade-in animation */
.swyr-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.swyr-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */
@media (max-width: 600px) {
  :root {
    --swyr-section-pad: 64px;
    --swyr-subpage-pad: 56px;
  }

  .swyr-nav__inner { height: 60px; }

  .swyr-pilot-layout { padding: 0 8px; }
}


/* ─── Orphan fixes ──────────────────────────────────────────── */

.swyr-article__callout {
  background: var(--swyr-cream);
  border-left: 4px solid var(--swyr-green-light);
  border-radius: 0 var(--swyr-radius-panel) var(--swyr-radius-panel) 0;
  padding: 20px 24px;
  margin: 2rem 0;
  font-size: 0.9375rem;
  color: var(--swyr-text);
}

.swyr-cta-band__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.swyr-feature-row__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.swyr-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
