@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* — Brand colors — */
  --bg:             #0a0908;
  --surface:        #141110;
  --surface-raised: #1c1917;
  --border:         #29221f;
  --border-subtle:  #1e1916;
  --accent:         #FF6B6B;
  --accent-dim:     #d94f4f;
  --accent-glow:    rgba(255, 107, 107, 0.11);
  --amber:          #FBBC05;
  --green:          #34A853;
  --text:           #F2EAE6;
  --text-mid:       #A89790;
  --text-muted:     #7a6e68;

  /* — Typography — */
  --font-display: 'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* — Layout — */
  --w-content:   1140px;
  --gap-section: 120px;
  --r:           16px;
  --r-sm:        10px;

  /* — Shadows — */
  --shadow-popup: 0 1px 3px rgba(0,0,0,.4), 0 0 0 1px rgba(255,107,107,.10), 0 40px 80px rgba(0,0,0,.55);
  --shadow-img:   0 0 0 1px rgba(255,255,255,.04), 0 32px 80px rgba(0,0,0,.65);
  --shadow-lift:  0 8px 32px rgba(255,107,107,.28);

  /* — Motion — */
  --t-snap: 0.12s;
  --t-fast: 0.15s;
  --t-base: 0.2s;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Nav ───────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-logo em { color: var(--accent); font-style: normal; }
.nav-logo:hover { text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-snap);
}

.nav-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px 60px;
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 48px;
  }
}

.hero-glow {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at top right, rgba(255,107,107,0.07), transparent 65%);
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  opacity: 0.06;
}

.hero-wave svg { width: 100%; height: 100%; }

.hero-wave-line {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: drawLine 2.4s ease-out forwards 0.4s;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease-out both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.eyebrow-version {
  background: rgba(255, 107, 107, 0.12);
  color: var(--accent);
  font-size: 0.62rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 107, 0.2);
  margin-left: 2px;
}

/* The badge doubles as the way into that product's changelog. */
a.eyebrow-version { text-decoration: none; transition: background var(--t-fast), border-color var(--t-fast); }
a.eyebrow-version:hover {
  background: rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.45);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
}

@media (max-width: 780px) { .hero-lead { max-width: none; } }

/* ─── Button ────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-snap), box-shadow var(--t-fast);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}

/* ─── Main ──────────────────────────────────────────────────── */

main {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 48px;
}

/* ─── Screenshot ────────────────────────────────────────────── */

.screenshot-section {
  margin-bottom: var(--gap-section);
  position: relative;
  padding-top: 20px;
}

.screenshot-halo {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,107,0.07), transparent 65%);
  pointer-events: none;
}

.screenshot-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 600px) {
  .screenshot-duo { grid-template-columns: 1fr; }
  .screenshot-duo .screenshot-item:last-child { display: none; }
}

.screenshot-item {
  width: 100%;
  max-width: 400px;
}

.screenshot-item-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
  text-align: center;
}

.screenshot-item img {
  border-radius: 14px;
  width: 100%;
  display: block;
  box-shadow: var(--shadow-img);
}

/* ─── Features ──────────────────────────────────────────────── */

.features-section { margin-bottom: var(--gap-section); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color var(--t-base), transform var(--t-base);
}

.feature-card:hover {
  border-color: rgba(255,107,107,0.22);
  transform: translateY(-2px);
}

.f-wide {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.f-wide .feature-icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,107,0.16);
  border-radius: var(--r-sm);
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── States ────────────────────────────────────────────────── */

.states-section { margin-bottom: var(--gap-section); }

.states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Opt-in 4-up row. The 3-column default is shared with GroovePeek's states
   grid, so widening it there is not an option — PitchPeek adds a fourth state
   (no clear pitch) and asks for the extra column explicitly. */
.states-grid.states-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 860px) { .states-grid.states-4 { grid-template-columns: repeat(2, 1fr); } }

/* .states-4 outranks the bare .states-grid selector, so it has to be named here
   too — otherwise the 4-column rule survives into the single-column breakpoint. */
@media (max-width: 560px) {
  .states-grid,
  .states-grid.states-4 { grid-template-columns: 1fr; }
}

.state-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.state-card:hover { transform: translateY(-2px); }
.state-locked  { border-color: rgba(52, 168, 83, 0.22); }
.state-mid     { border-color: rgba(251, 188, 5, 0.18); }

/* ─── Audience ──────────────────────────────────────────────── */

.audience-section { margin-bottom: var(--gap-section); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

@media (max-width: 560px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background var(--t-base);
}

.audience-card:hover { background: var(--surface-raised); }

.audience-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.audience-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.audience-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Privacy ───────────────────────────────────────────────── */

.privacy-section { margin-bottom: var(--gap-section); }

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 560px) {
  .privacy-card { grid-template-columns: 1fr; padding: 28px; }
  .privacy-shield { display: none; }
}

.privacy-shield {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,107,0.16);
  border-radius: var(--r-sm);
  color: var(--accent);
  flex-shrink: 0;
}

.privacy-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.privacy-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.privacy-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--accent);
}

/* ─── Final CTA ─────────────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding: 60px 0 120px;
}

.cta-wave {
  margin-bottom: 48px;
  opacity: 0.22;
}

.cta-wave svg {
  width: 100%;
  max-width: 600px;
  height: 50px;
}

.cta-wave-line {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawLine 2s ease-out forwards 0.8s;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ─── Footer ────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 24px;
  max-width: none;
  text-align: left;
  margin: 0;
}

.footer-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent); text-decoration: none; }

/* ─── Privacy page ──────────────────────────────────────────── */

header {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 0;
}

footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer a { color: var(--text-muted); }
footer a:hover { color: var(--accent); }

.prose {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.prose .updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 36px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.prose p, .prose li {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.75;
}

.prose ul { padding-left: 20px; }

/* --- Changelog releases ------------------------------------------------- */

.release {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-top: 30px;
}

.release:first-of-type { border-top: 0; padding-top: 0; }
/* A release block ends on a badge with no trailing margin, unlike the privacy
   pages which end on a paragraph — without this the footer rule sits right
   under the last version number. */
.release:last-of-type { margin-bottom: 52px; }

.release-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.release-version {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.release-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
}

/* Shipped but not yet approved: the docs site deploys the moment this merges,
   while a store listing takes days to review. Saying "released" here before the
   store agrees would be wrong on a public page for the length of that window. */
.release-pending {
  color: var(--accent);
  border-color: rgba(255, 107, 107, 0.35);
}

.prose .release h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 0 6px;
}

.prose .release code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}

.prose li { margin-top: 6px; }
.prose a  { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .hero-wave-line,
  .cta-wave-line,
  .hero-content,
  .hero-shot { animation: none; }
  .eyebrow-dot { animation: none; }
}

/* ─── Popup captures ────────────────────────────────────────── */
/* Real screenshots of the shipping popups. They replaced the CSS
   replicas that used to live here, so the site can never drift from
   what the extensions actually render. */

.hero-shot {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow-popup);
  animation: shot-rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both 0.15s;
}

@keyframes shot-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.state-shot {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border-subtle);
}

.state-caption {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.state-caption strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.state-caption span {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ─── Nav links ─────────────────────────────────────────────── */

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  margin-right: 22px;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color var(--t-fast);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }

@media (max-width: 560px) {
  .nav-links { gap: 14px; margin-right: 14px; }
  .nav-links a { font-size: 0.82rem; }
}

/* ─── Hub ───────────────────────────────────────────────────── */

.hub-hero {
  position: relative;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 150px 24px 70px;
  text-align: center;
}

.hub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 22px;
}

.hub-hero h1 em { font-style: normal; color: var(--accent); }

.hub-lead {
  font-size: 1.12rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--w-content);
  margin: 0 auto var(--gap-section);
  padding: 0 24px;
}

@media (max-width: 800px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t-base), transform var(--t-base);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 107, 0.28);
}

.product-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-mark em { font-style: normal; color: var(--accent); }

.product-what {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-card p {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.7;
}

.product-shot {
  width: 100%;
  max-width: 240px;
  align-self: center;
  border-radius: 14px;
  display: block;
  margin: 6px 0 4px;
  box-shadow: var(--shadow-img);
}

.product-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 10px;
  flex-wrap: wrap;
}

.product-links .btn-primary { font-size: 0.92rem; padding: 11px 20px; }

.product-links a:not(.btn-primary) {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.product-links a:not(.btn-primary):hover { color: var(--text); }

/* ─── Callout ───────────────────────────────────────────────── */

.callout {
  max-width: var(--w-content);
  margin: 0 auto var(--gap-section);
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--amber);
  border-radius: var(--r-sm);
}

.callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.callout p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.callout p + p { margin-top: 10px; }

.privacy-link + .privacy-link { margin-left: 20px; }

/* Popup captures differ in height by state (the correction button adds a row).
   Normalize the card grid by cropping the empty bottom padding instead. */
.state-shot {
  aspect-ratio: 75 / 111;
  object-fit: cover;
  object-position: top center;
}
