/* CSS Variables - Brand Tokens */
:root {
  /* Core Colors - Shades of Blue */
  --sb-deep: #0A2E5C;        /* Dragon Deep Blue - Primary */
  --sb-royal: #2B6CB0;       /* Royal Azure - Primary Light */
  --sb-sky: #83B3F5;         /* Sky Link - Accent Light */
  
  /* Neutrals */
  --sb-s900: #0F172A;        /* Slate 900 */
  --sb-s800: #1E293B;        /* Slate 800 */
  --sb-s600: #475569;        /* Slate 600 */
  --sb-s100: #F1F5F9;        /* Slate 100 */
  --sb-paper: #F1F3F0;       /* Paper - for print/backgrounds */
  
  /* Strategic Accent */
  --sb-acc: #FF4704;         /* Ignite Orange - max 5% area */
  
  /* Gradients */
  --sb-gradient: linear-gradient(135deg, #0A2E5C 0%, #2B6CB0 100%);
  
  /* Design Tokens */
  --sb-radius: 24px;         /* Border radius */
  --sb-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  --sb-shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.15);
  
  /* Spacing - 8pt grid */
  --sb-space-1: 8px;
  --sb-space-2: 16px;
  --sb-space-3: 24px;
  --sb-space-4: 32px;
  --sb-space-5: 48px;
  --sb-space-6: 64px;
  
  /* Typography */
  --sb-font-primary: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --sb-font-display: 'Space Grotesk', Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  
  /* Font Sizes (rem) */
  --sb-text-xs: 0.875rem;    /* 14px */
  --sb-text-sm: 1rem;        /* 16px */
  --sb-text-base: 1.125rem;  /* 18px */
  --sb-text-lg: 1.25rem;     /* 20px */
  --sb-text-xl: 1.5rem;      /* 24px */
  --sb-text-2xl: 1.75rem;    /* 28px */
  --sb-text-3xl: 2.25rem;    /* 36px */
  --sb-text-4xl: 3rem;       /* 48px */
  --sb-text-5xl: 4rem;       /* 64px */
  
  /* Animation */
  --sb-speed-fast: 120ms;
  --sb-speed-mid: 200ms;
  --sb-speed-slow: 300ms;
  --sb-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  
  /* Layout */
  --container-max-width: 1200px;
  --container-padding: var(--sb-space-2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sb-font-primary);
  font-size: var(--sb-text-sm);
  line-height: 1.6;
  color: var(--sb-s900);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sb-font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--sb-s900);
}

h1 {
  font-size: var(--sb-text-5xl);
  font-weight: 700;
}

h2 {
  font-size: var(--sb-text-4xl);
}

h3 {
  font-size: var(--sb-text-2xl);
}

h4 {
  font-size: var(--sb-text-xl);
}

p {
  margin-bottom: var(--sb-space-2);
  color: var(--sb-s600);
}

a {
  color: var(--sb-royal);
  text-decoration: none;
  transition: color var(--sb-speed-fast) var(--sb-ease);
}

a:hover {
  color: var(--sb-deep);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sb-space-2) var(--sb-space-3);
  border: none;
  border-radius: var(--sb-radius);
  font-family: var(--sb-font-primary);
  font-size: var(--sb-text-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--sb-speed-fast) var(--sb-ease);
  min-height: 48px;
  gap: var(--sb-space-1);
}

.btn--primary {
  background: var(--sb-deep);
  color: white;
  box-shadow: var(--sb-shadow);
}

.btn--primary:hover {
  background: var(--sb-royal);
  transform: translateY(-1px);
  box-shadow: var(--sb-shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--sb-royal);
  border: 1.5px solid var(--sb-royal);
}

.btn--secondary:hover {
  background: var(--sb-royal);
  color: white;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  z-index: 1000;
  transition: all var(--sb-speed-fast) var(--sb-ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sb-space-2) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sb-space-1);
  font-family: var(--sb-font-display);
  font-weight: 600;
  font-size: var(--sb-text-xl);
  color: var(--sb-deep);
}

.logo__symbol {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform var(--sb-speed-fast) var(--sb-ease);
}

.logo:hover .logo__symbol {
  transform: scale(1.05);
}

/* SVG logo styling */
.logo__symbol svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: var(--sb-space-4);
  align-items: center;
}

.nav__link {
  font-weight: 500;
  color: var(--sb-s600);
  transition: color var(--sb-speed-fast) var(--sb-ease);
}

.nav__link:hover {
  color: var(--sb-deep);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sb-space-1);
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--sb-s600);
  transition: all var(--sb-speed-fast) var(--sb-ease);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 46, 92, 0.1) 0%, rgba(43, 108, 176, 0.1) 100%);
  border-radius: 0 0 0 50%;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(131, 179, 245, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  margin-bottom: var(--sb-space-3);
  background: var(--sb-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--sb-text-xl);
  font-weight: 500;
  color: var(--sb-s600);
  margin-bottom: var(--sb-space-2);
}

.hero__description {
  font-size: var(--sb-text-lg);
  color: var(--sb-s600);
  margin-bottom: var(--sb-space-5);
  max-width: 600px;
}

.hero__cta {
  display: flex;
  gap: var(--sb-space-3);
  margin-bottom: var(--sb-space-6);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--sb-space-5);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat__number {
  font-family: var(--sb-font-display);
  font-size: var(--sb-text-3xl);
  font-weight: 700;
  color: var(--sb-deep);
  margin-bottom: var(--sb-space-1);
}

.stat__label {
  font-size: var(--sb-text-sm);
  color: var(--sb-s600);
  font-weight: 500;
}

/* Section Styles */
.section__header {
  text-align: center;
  margin-bottom: var(--sb-space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin-bottom: var(--sb-space-2);
}

.section__subtitle {
  font-size: var(--sb-text-lg);
  color: var(--sb-s600);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(131, 179, 245, 0.3); }
  50% { box-shadow: 0 0 40px rgba(131, 179, 245, 0.6); }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sb-space-4);
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--sb-radius);
  padding: var(--sb-space-4);
  transition: all var(--sb-speed-mid) var(--sb-ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sb-gradient);
  transform: scaleX(0);
  transition: transform var(--sb-speed-mid) var(--sb-ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-color: rgba(43, 108, 176, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--sb-space-3);
  color: var(--sb-royal);
  transition: all var(--sb-speed-fast) var(--sb-ease);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-card__icon {
  color: var(--sb-deep);
  transform: scale(1.1);
}

.service-card__title {
  margin-bottom: var(--sb-space-2);
  color: var(--sb-deep);
}

.service-card__description {
  margin-bottom: var(--sb-space-3);
  color: var(--sb-s600);
}

.service-card__features {
  list-style: none;
}

.service-card__features li {
  position: relative;
  padding-left: var(--sb-space-3);
  margin-bottom: var(--sb-space-1);
  color: var(--sb-s600);
  font-size: var(--sb-text-sm);
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sb-royal);
  font-weight: 600;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--sb-space-4);
}

.portfolio-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--sb-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  transition: all var(--sb-speed-mid) var(--sb-ease);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.portfolio-item__image {
  height: 200px;
  background: var(--sb-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder {
  color: white;
  font-size: var(--sb-text-xl);
  font-weight: 600;
  text-align: center;
}

.portfolio-item__content {
  padding: var(--sb-space-4);
}

.portfolio-item__title {
  margin-bottom: var(--sb-space-2);
  color: var(--sb-deep);
}

.portfolio-item__description {
  margin-bottom: var(--sb-space-3);
  color: var(--sb-s600);
}

.portfolio-item__metrics {
  display: flex;
  gap: var(--sb-space-2);
  flex-wrap: wrap;
}

.metric {
  background: var(--sb-s100);
  color: var(--sb-deep);
  padding: var(--sb-space-1) var(--sb-space-2);
  border-radius: 16px;
  font-size: var(--sb-text-xs);
  font-weight: 500;
}

/* About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sb-space-6);
  align-items: start;
}

.about__description {
  font-size: var(--sb-text-lg);
  margin-bottom: var(--sb-space-5);
  color: var(--sb-s600);
}

.values__title {
  margin-bottom: var(--sb-space-4);
  color: var(--sb-deep);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sb-space-3);
}

.value {
  padding: var(--sb-space-3);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--sb-radius);
  border-left: 4px solid var(--sb-royal);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
  transition: all var(--sb-speed-fast) var(--sb-ease);
}

.value:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.8);
}

.value__title {
  margin-bottom: var(--sb-space-1);
  color: var(--sb-deep);
  font-size: var(--sb-text-lg);
}

.value__description {
  font-size: var(--sb-text-sm);
  color: var(--sb-s600);
  margin: 0;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sb-space-3);
}

.stat-card {
  background: linear-gradient(135deg, rgba(10, 46, 92, 0.9) 0%, rgba(43, 108, 176, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  padding: var(--sb-space-4);
  border-radius: var(--sb-radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--sb-speed-fast) var(--sb-ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.3);
}

.stat-card__number {
  display: block;
  font-family: var(--sb-font-display);
  font-size: var(--sb-text-4xl);
  font-weight: 700;
  margin-bottom: var(--sb-space-1);
}

.stat-card__label {
  font-size: var(--sb-text-sm);
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sb-space-6);
  align-items: start;
}

.contact__description {
  font-size: var(--sb-text-lg);
  margin-bottom: var(--sb-space-5);
  color: var(--sb-s600);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sb-space-3);
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: var(--sb-space-1);
}

.contact__label {
  font-weight: 500;
  color: var(--sb-s600);
  font-size: var(--sb-text-sm);
}

.contact__value {
  color: var(--sb-deep);
  font-size: var(--sb-text-lg);
  font-weight: 500;
}

/* Form Styles */
.contact__form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--sb-space-5);
  border-radius: var(--sb-radius);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.form__group {
  margin-bottom: var(--sb-space-4);
}

.form__label {
  display: block;
  margin-bottom: var(--sb-space-1);
  font-weight: 500;
  color: var(--sb-s600);
  font-size: var(--sb-text-sm);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--sb-space-2);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-family: var(--sb-font-primary);
  font-size: var(--sb-text-sm);
  transition: all var(--sb-speed-fast) var(--sb-ease);
  min-height: 48px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: rgba(43, 108, 176, 0.5);
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1), 0 8px 24px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  padding: var(--sb-space-6) 0 var(--sb-space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sb-space-6);
  margin-bottom: var(--sb-space-5);
}

.footer__brand {
  max-width: 300px;
}

.footer__tagline {
  color: var(--sb-s100);
  margin-top: var(--sb-space-2);
  font-size: var(--sb-text-sm);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sb-space-4);
}

.footer__title {
  margin-bottom: var(--sb-space-3);
  color: white;
  font-size: var(--sb-text-lg);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--sb-space-1);
}

.footer__link {
  color: var(--sb-s100);
  font-size: var(--sb-text-sm);
  transition: color var(--sb-speed-fast) var(--sb-ease);
}

.footer__link:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sb-space-4);
  border-top: 1px solid var(--sb-s800);
  flex-wrap: wrap;
  gap: var(--sb-space-2);
}

.footer__copyright {
  color: var(--sb-s100);
  font-size: var(--sb-text-sm);
}

.footer__legal {
  display: flex;
  gap: var(--sb-space-3);
}

.footer__legal .footer__link {
  font-size: var(--sb-text-xs);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .portfolio__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: var(--sb-space-4);
  }
  
  .contact__content {
    grid-template-columns: 1fr;
    gap: var(--sb-space-4);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: var(--sb-space-3);
  }
  
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    padding: var(--sb-space-3);
    gap: var(--sb-space-2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  }
  
  .nav__menu.active {
    display: flex;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero__title {
    font-size: var(--sb-text-4xl);
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero__stats {
    justify-content: center;
    gap: var(--sb-space-3);
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--sb-space-3);
  }
  
  .portfolio__grid {
    grid-template-columns: 1fr;
    gap: var(--sb-space-3);
  }
  
  .values__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--sb-space-4);
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: var(--sb-space-3);
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sb-space-2);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--sb-text-3xl);
  }
  
  .section__title {
    font-size: var(--sb-text-3xl);
  }
  
  .hero__stats {
    flex-direction: column;
    align-items: center;
  }
  
  .values__grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form__input:focus,
.form__select:focus,
.form__textarea:focus,
.nav__link:focus {
  outline: 2px solid var(--sb-royal);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn--primary {
    border: 2px solid var(--sb-deep);
  }
  
  .btn--secondary {
    border-width: 2px;
  }
}
