/* ==========================================================================
   PromWrite — design tokens
   ========================================================================== */
:root {
  --midnight: #070b14;
  --navy: #111827;
  --navy-line: #1f2937;
  --white: #ffffff;
  --light-gray: #e5e7eb;
  --border-gray: #d1d5db;

  --accent: #2563eb;
  --accent-light: #487cee;
  --accent-dark: #235ddd;

  --ash-50: #f9fafb;
  --ash-400: #9ca3af; /* muted text on dark surfaces */
  --ash-500: #606773; /* muted text on light surfaces */
  --ash-600: #4b5563; /* secondary body text on light surfaces */
  --ash-800: #1f2937; /* near-dark text on light surfaces */

  --font-display: "Sora", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --container-max: 1200px;
  --radius: 1rem;
  --radius-sm: 0.75rem;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ash-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection { background: rgba(37, 99, 235, 0.3); color: var(--midnight); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 200;
  background: var(--midnight);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { left: 1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-dark { background: var(--midnight); color: var(--white); position: relative; overflow: hidden; }
.section-navy { background: var(--navy); }
.section-light-gray { background: var(--light-gray); }
.section-white { background: var(--white); }
.section-border-top { border-top: 1px solid var(--border-gray); }
.section-border-bottom { border-bottom: 1px solid var(--border-gray); }

.text-center { text-align: center; }
.max-w-content { max-width: 46rem; }
.max-w-content.center { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack { display: flex; flex-direction: column; gap: 1rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Dot-matrix decorative texture, used on dark sections */
.dot-pattern {
  position: absolute;
  width: 60%;
  height: 70%;
  pointer-events: none;
  background-image: radial-gradient(rgba(37, 99, 235, 0.45) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 0;
}
.dot-pattern.top-right {
  top: 0; right: 0;
  -webkit-mask-image: radial-gradient(circle at top right, black, transparent 70%);
  mask-image: radial-gradient(circle at top right, black, transparent 70%);
}
.dot-pattern.bottom-left {
  bottom: 0; left: 0;
  -webkit-mask-image: radial-gradient(circle at bottom left, black, transparent 70%);
  mask-image: radial-gradient(circle at bottom left, black, transparent 70%);
}

.section-dark > .container { position: relative; z-index: 1; }

/* ==========================================================================
   Typography
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.section-dark .eyebrow, .section-navy .eyebrow { color: var(--accent-light); }

h1 { font-size: 2.5rem; letter-spacing: -0.01em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
}

.lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ash-600);
  max-width: 42rem;
}
.section-dark .lede, .section-navy .lede { color: var(--ash-400); }

.body-text { color: var(--ash-800); line-height: 1.75; }
.body-text p + p { margin-top: 1rem; }
.muted { color: var(--ash-500); }
.section-dark .muted, .section-navy .muted { color: var(--ash-400); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-gray);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--midnight);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.brand span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.main-nav { display: none; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: var(--ash-800); }
.main-nav a:hover { color: var(--accent-dark); }
a.header-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--midnight);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  a.header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-gray);
  background: var(--white);
}
.mobile-nav.open { display: block; }
.mobile-nav .container { display: flex; flex-direction: column; padding-top: 1rem; padding-bottom: 1rem; gap: 0.25rem; }
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ash-800);
}
.mobile-nav a:hover { background: var(--ash-50); }
.mobile-nav a.btn { margin-top: 0.5rem; justify-content: center; color: var(--white); }
.mobile-nav a.btn:hover { background: var(--navy); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.btn:hover svg { transform: translateX(2px); }

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); }

.btn-dark { background: var(--midnight); color: var(--white); }
.btn-dark:hover { background: var(--navy); }

.btn-outline-dark { border-color: var(--border-gray); color: var(--midnight); }
.btn-outline-dark:hover { border-color: var(--accent); }

.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); }

.btn-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--accent-dark); }
.btn-link:hover { color: var(--accent); }
.section-dark .btn-link, .section-navy .btn-link { color: var(--accent-light); }

/* ==========================================================================
   Pills / badges
   ========================================================================== */
.brand-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to right, var(--accent-dark), var(--accent));
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--accent), var(--accent-dark));
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.55);
  flex-shrink: 0;
}
.icon-badge svg { width: 20px; height: 20px; stroke: var(--white); fill: none; }
.icon-badge.lg { width: 4rem; height: 4rem; }
.icon-badge.lg svg { width: 24px; height: 24px; }

.pill-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-radius: 999px;
  padding: 1rem 1.4rem;
  background: linear-gradient(to right, var(--accent-dark), var(--accent));
  color: var(--white);
}
.pill-row .pill-icon {
  width: 2.2rem; height: 2.2rem; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.pill-row .pill-icon svg { width: 16px; height: 16px; stroke: var(--white); fill: none; }
.pill-row strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.pill-row small { display: block; color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 0.15rem; }

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background: var(--midnight);
  padding: 0.65rem 1.25rem;
  transition: background-color 0.15s ease;
}
.contact-pill:hover { background: var(--navy); }
.contact-pill strong { display: block; font-size: 0.9rem; color: var(--white); }
.contact-pill small { display: block; font-size: 0.75rem; color: var(--ash-400); }

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-gray);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ash-600);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(7, 11, 20, 0.25); border-color: var(--accent); }
.card h3 { margin-top: 1rem; color: var(--midnight); font-size: 1.1rem; }
.card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--ash-600); }

.card-dark { border: 1px solid var(--navy-line); border-radius: var(--radius); background: var(--navy); padding: 1.5rem; }
.card-dark h3 { margin-top: 1rem; color: var(--white); font-size: 1.1rem; }
.card-dark p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--ash-400); }

.media-card { display: block; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border-gray); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.media-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(7, 11, 20, 0.25); }
.media-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform 0.3s ease; }
.media-card:hover img { transform: scale(1.05); }
.media-card .media-card-body { padding: 1.5rem; background: var(--white); }
.media-card .cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-dark); }
.media-card h3 { margin-top: 0.6rem; }
.media-card p { margin-top: 0.6rem; }
.media-card .meta { margin-top: 1rem; font-size: 0.75rem; color: var(--ash-500); display: flex; gap: 0.5rem; align-items: center; }

/* Portfolio */
.portfolio-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-gray); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.portfolio-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(7, 11, 20, 0.25); }
.portfolio-card .portfolio-media { position: relative; aspect-ratio: 4/3; }
.portfolio-card .portfolio-media img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card .portfolio-media .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.85), rgba(7,11,20,0.1));
  display: flex; flex-direction: column; justify-content: space-between; padding: 1.25rem;
}
.portfolio-card .format-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-light); }
.portfolio-card .sample-tag {
  align-self: flex-start;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px; padding: 0.25rem 0.6rem;
}
.portfolio-card .portfolio-title { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.portfolio-card .portfolio-body { padding: 1.5rem; background: var(--white); }
.portfolio-card .chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.portfolio-card .chips span { font-size: 0.7rem; border: 1px solid var(--border-gray); border-radius: 999px; padding: 0.2rem 0.6rem; color: var(--ash-600); }

/* ==========================================================================
   Hero / page header
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; padding: 4.5rem 0; background: var(--midnight); color: var(--white); }
.page-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--midnight) 10%, rgba(7,11,20,0.7));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 40rem; }
.page-hero .lede { color: var(--ash-400); margin-top: 1.25rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.75rem; color: var(--ash-400); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--ash-400); }
.breadcrumbs a:hover { color: var(--accent-light); }
.breadcrumbs .current { color: var(--light-gray); }

/* ==========================================================================
   Home hero
   ========================================================================== */
.home-hero { position: relative; overflow: hidden; background: var(--midnight); color: var(--white); padding: 4rem 0 5rem; }
.home-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.home-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.home-hero .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--midnight), rgba(7,11,20,0.9) 60%, rgba(7,11,20,0.65));
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .home-hero-grid { grid-template-columns: 1.1fr 0.9fr; } }

.script-card {
  border: 1px solid var(--navy-line);
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  max-width: 24rem;
  margin: 0 auto;
}
.script-card .script-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--navy-line); padding-bottom: 1rem;
}
.script-card .script-head span:first-child { font-family: var(--font-display); font-size: 0.9rem; }
.script-card .script-head svg { width: 18px; height: 18px; stroke: var(--accent-light); fill: none; }
.script-card .script-body { margin-top: 1.25rem; font-family: var(--font-display); font-size: 0.85rem; line-height: 1.6; color: var(--ash-400); }
.script-card .script-body .slug { text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.script-card .script-body p + p { margin-top: 0.6rem; }
.script-card .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.script-card .tags span { border: 1px solid var(--navy-line); border-radius: 999px; padding: 0.25rem 0.7rem; font-size: 0.7rem; color: var(--ash-400); }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-step { display: flex; gap: 1.5rem; position: relative; }
.process-step .step-number {
  width: 3.5rem; height: 3.5rem; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(to bottom right, var(--accent), var(--accent-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 8px 20px -6px rgba(37,99,235,0.5);
}
.process-step .step-line { width: 1px; flex: 1; background: var(--border-gray); margin: 0.5rem auto 0; }
.process-step-inner { display: flex; flex-direction: column; align-items: center; }
.process-step .step-content { padding-bottom: 2rem; }
.process-step h2 { font-size: 1.5rem; color: var(--midnight); }
.process-step .step-content p { margin-top: 0.75rem; color: var(--ash-800); line-height: 1.7; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { border-top: 1px solid var(--border-gray); }
.faq-item { border-bottom: 1px solid var(--border-gray); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; text-align: left; padding: 1.25rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--midnight);
}
.faq-question svg { width: 18px; height: 18px; stroke: var(--ash-500); fill: none; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; max-width: 42rem; color: var(--ash-600); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ==========================================================================
   Forms
   ========================================================================== */
.field { margin-bottom: 1.5rem; }
.field label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--midnight); }
.field .required { color: var(--accent-dark); }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--border-gray); border-radius: 0.5rem;
  padding: 0.75rem 1rem; font-size: 0.95rem; color: var(--midnight); background: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ash-400); }
.field textarea { resize: vertical; min-height: 8rem; }
.field-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.8rem; color: var(--ash-500); line-height: 1.6; margin-bottom: 1.5rem; }
.form-note a { color: var(--ash-600); text-decoration: underline; }
.form-note a:hover { color: var(--accent-dark); }
.form-status { padding: 1rem 1.25rem; border-radius: 0.5rem; font-size: 0.9rem; margin-bottom: 1.5rem; display: none; }
.form-status.visible { display: block; }
.form-status.success { background: #ecfdf5; color: #065f46; }
.form-status.error { background: #fef2f2; color: #991b1b; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--light-gray); border-top: 1px solid var(--border-gray); padding: 4rem 0; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ash-500); margin-bottom: 1rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { font-size: 0.9rem; color: var(--ash-600); }
.footer-grid a:hover { color: var(--accent-dark); }
.footer-about p { margin-top: 0.75rem; max-width: 20rem; font-size: 0.9rem; color: var(--ash-600); line-height: 1.6; }
.footer-social { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-gray); display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: var(--ash-500); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ==========================================================================
   Misc pages
   ========================================================================== */
.notice-box { border: 1px solid rgba(37,99,235,0.3); background: var(--light-gray); border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: 0.9rem; color: var(--ash-800); line-height: 1.6; margin-bottom: 2.5rem; }
.notice-box strong { color: var(--midnight); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-btn { border: 1px solid var(--border-gray); background: var(--white); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 500; color: var(--ash-800); }
.filter-btn:hover { border-color: var(--accent); }
.filter-btn.active { background: var(--midnight); border-color: var(--midnight); color: var(--white); }

.category-block { padding: 3.5rem 0; scroll-margin-top: 6rem; }
.category-block:nth-child(even) { background: var(--light-gray); }

.legal-section + .legal-section { margin-top: 2.5rem; }
.legal-section h2 { font-size: 1.25rem; color: var(--midnight); }
.legal-section p { margin-top: 0.75rem; color: var(--ash-800); line-height: 1.7; }

.not-found { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 0; }
