/* === Reset — modern minimal === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* === Design Tokens — Accelerated11 === */
:root {
  /* ── Background ── */
  --color-bg: #0d0d0c;
  --color-surface: #161615;
  --color-surface-alt: #1e1e1c;
  --color-surface-hover: #252522;

  /* ── Brand ── */
  --color-primary: #D4782F;
  --color-primary-hover: #E8933C;
  --color-primary-muted: rgba(212, 120, 47, 0.12);
  --color-accent: #0D9488;
  --color-accent-hover: #0FA89C;
  --color-accent-muted: rgba(13, 148, 136, 0.12);

  /* ── Text ── */
  --color-text: #E6E4DD;
  --color-text-secondary: #A09E96;
  --color-text-muted: #6B6963;

  /* ── Borders ── */
  --color-border: #2A2A27;
  --color-border-light: #33332F;

  /* ── Typography ── */
  --font-body: 'Space Grotesk', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* ── Type Scale (1.25 ratio) ── */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.563rem;
  --text-3xl: 1.953rem;
  --text-4xl: 2.441rem;
  --text-5xl: 3.052rem;

  /* ── Spacing (4px base) ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

    /* ── Radius (varied — ui-craft Rule 3) ── */
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;

  /* ── Shadows (layered — ui-craft Rule 7) ── */
  --shadow-ambient: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-direct: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 2px 6px rgba(0, 0, 0, 0.45), 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-sm: var(--shadow-ambient);
  --shadow-md: var(--shadow-direct);

  /* ── Layout ── */
  --max-width: 1200px;
  --nav-height: 56px;
  --section-gap: var(--space-20);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}
/* === Typography === */

/* ── Font Faces ── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../assets/fonts/jetbrains-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../assets/fonts/jetbrains-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* ── Headings ── */
h1, .h1 {
  font-family: var(--font-body);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--font-body);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.3;
}

h4, .h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Body sizes ── */
.text-lg {
  font-size: var(--text-lg);
  line-height: 1.6;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: 1.5;
}

.text-xs {
  font-size: var(--text-xs);
  line-height: 1.4;
}

/* ── Mono ── */
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

/* ── Text colors ── */
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }

/* ── Responsive type ── */
@media (max-width: 768px) {
  h1, .h1 { font-size: var(--text-3xl); }
  h2, .h2 { font-size: var(--text-2xl); }
  h3, .h3 { font-size: var(--text-lg); }
}
/* === Layout === */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--section-gap) 0;
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: rgba(13, 13, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-logo {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* ── Region toggle ── */
.region-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.region-toggle:hover {
  border-color: var(--color-text-muted);
}

.region-toggle .active {
  color: var(--color-primary);
  font-weight: 600;
}

.region-divider {
  color: var(--color-border);
}

/* ── Hero (split layout) ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-24) 0;
}

.hero-content {
  max-width: 540px;
}

.hero-content h1 {
  margin-bottom: var(--space-4);
}

.hero-content p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 460px;
}

.hero-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.hero-visual pre {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-accent);
  line-height: 1.8;
  overflow-x: auto;
  max-width: 100%;
}

/* ── Service grid: technical (dense, dark) ── */
.tech-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.tech-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-base), transform var(--transition-base);
}

.tech-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.tech-card .mono-label {
  display: block;
  margin-bottom: var(--space-2);
}

.tech-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.tech-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ── Service grid: creative (larger, visual) ── */
.creative-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.creative-card {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-base), transform var(--transition-base);
}

.creative-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.creative-card-body {
  padding: var(--space-5);
}

.creative-card-body h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.creative-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ── Case Studies ── */
.case-studies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.case-study {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-base);
}

.case-study:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.case-study-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.case-study h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.case-study p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ── CTA Section ── */
.cta-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  text-align: left;
  box-shadow: var(--shadow-card);
}

.cta-section h2 {
  max-width: 600px;
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: var(--color-text-secondary);
  max-width: 500px;
  margin-bottom: var(--space-8);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer h4 {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.footer a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


.section-tight { padding: var(--space-16) 0; }
.section-loose { padding: var(--space-24) 0; }

/* ── Feature Rows (alternating) ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border);
}

.feature-row:first-of-type {
  padding-top: 0;
}

.feature-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-row-text h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.feature-row-text p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

.feature-row-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-base);
}

.visual-placeholder:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

.visual-placeholder .mono-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.bento-lead {
  grid-row: span 2;
}

.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.bento-card .mono-label {
  display: block;
  margin-bottom: var(--space-3);
}

.bento-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.bento-lead h3 {
  font-size: var(--text-2xl);
}

.bento-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.bento-lead p {
  font-size: var(--text-base);
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-lead {
    grid-row: auto;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .feature-row-text h3 {
    font-size: var(--text-xl);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-12) 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .tech-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .creative-services {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  :root {
    --section-gap: var(--space-12);
  }

  .tech-services {
    grid-template-columns: 1fr;
  }

  .creative-services {
    grid-template-columns: 1fr;
  }

  .case-studies {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}
/* === Components === */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-base), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #0d0d0c;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text-muted);
  background: var(--color-surface-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
}

.btn-ghost:hover {
  color: var(--color-text);
  background: var(--color-surface-hover);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ── Links ── */
.link {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.link:hover {
  color: var(--color-primary-hover);
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-border);
}

.link-underline:hover {
  text-decoration-color: var(--color-primary);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

/* ── Form ── */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--color-primary-muted);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B6963' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.form-select option {
  background: var(--color-surface);
  color: var(--color-text);
}

/* ── Section divider (copper accent — signature detail) ── */
.section-divider {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 0;
  position: relative;
}

.section-divider::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--color-primary);
  opacity: 0.5;
}

/* ── Visually hidden (screen reader only) ── */
.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;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.process-number {
  margin-bottom: var(--space-4);
}

.process-number .mono-label {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-primary);
}

.process-step h3 {
  margin-bottom: var(--space-3);
}

.process-step p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.process-list {
  list-style: none;
  padding: 0;
}

.process-list li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.process-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ── Testimonial ── */
.testimonial {
  max-width: 640px;
}

.testimonial blockquote {
  position: relative;
  margin: 0;
  padding: var(--space-6);
  background: var(--color-surface);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.testimonial blockquote p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: var(--space-4);
  font-style: normal;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-role {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ── Perfect For ── */
.perfect-for {
  max-width: 640px;
  margin: 0;
  text-align: left;
  padding: var(--space-6);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.perfect-for-list {
  list-style: none;
  padding: 0;
}

.perfect-for-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.perfect-for-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}
