.elementor-13 .elementor-element.elementor-element-2c7f84f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-2c7f84f.e-con{--align-self:center;}/* Start custom CSS for container, class: .elementor-element-2c7f84f *//* =============================================
   VOICEBOX MAGAZINE — Shared Stylesheet
   Bold, editorial, magazine-style design system
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --red: #EF4444;
  --red-dark: #DC2626;
  --red-darker: #B91C1C;
  --white: #FAFAFA;
  --surface: #F5F5F5;
  --surface-raised: #E5E5E5;
  --text-primary: #0A0A0A;
  --text-secondary: #525252;
  --text-tertiary: #A3A3A3;
  --border-subtle: #E5E5E5;
  --border-medium: #D4D4D4;
  --border-strong: #0A0A0A;
  --success: #16A34A;
  --warning: #CA8A04;
  --error: #EF4444;
  --ff-display: 'Archivo Black', Impact, 'Arial Black', sans-serif;
  --ff-body: 'Work Sans', -apple-system, 'Segoe UI', Helvetica, sans-serif;
  --ff-mono: 'Space Mono', 'Courier New', Consolas, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }

/* ─── Typography ─── */
.t-display {
  font-family: var(--ff-display);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.t-headline {
  font-family: var(--ff-display);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-subhead {
  font-family: var(--ff-display);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.t-body-large { font-size: 20px; line-height: 1.65; }
.t-body { font-size: 16px; line-height: 1.7; }
.t-body-small { font-size: 14px; line-height: 1.6; }
.t-caption { font-size: 12px; font-weight: 500; line-height: 1.5; letter-spacing: 0.01em; }
.t-overline {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.t-code { font-family: var(--ff-mono); font-size: 14px; line-height: 1.6; }

/* ─── Layout ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.nav__logo span { color: var(--red); }
.nav__links {
  display: none;
  gap: 0;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 22px 20px;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav__link:hover, .nav__link.active {
  color: var(--black);
  border-bottom-color: var(--red);
}
.nav__cta {
  display: none;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--black);
  transition: background 0.15s, border-color 0.15s;
}
.nav__cta:hover { background: var(--red); border-color: var(--red); }
@media (min-width: 768px) { .nav__cta { display: block; } }

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
@media (min-width: 768px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s;
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.nav__mobile a:hover { color: var(--red); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 2px solid transparent;
}
.btn--primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--primary:hover { background: var(--red); border-color: var(--red); }
.btn--secondary { background: transparent; color: var(--black); border-color: var(--black); }
.btn--secondary:hover { background: var(--black); color: var(--white); }
.btn--ghost { background: transparent; color: var(--black); border-color: transparent; }
.btn--ghost:hover { color: var(--red); }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--sm { padding: 6px 16px; font-size: 12px; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border: 2px solid var(--border-subtle);
  padding: 24px;
  transition: border-color 0.15s;
}
.card:hover { border-color: var(--black); }
.card--elevated {
  border-top: 4px solid var(--red);
  border-left: 2px solid var(--border-subtle);
  border-right: 2px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-subtle);
}
.card--elevated:hover { border-top-color: var(--red); border-left-color: var(--black); border-right-color: var(--black); border-bottom-color: var(--black); }

/* ─── Article Card ─── */
.article-card { display: flex; flex-direction: column; }
.article-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}
.article-card__body { padding: 20px 0; flex: 1; }
.article-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.article-card__title {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.article-card:hover .article-card__title { color: var(--red); }
.article-card__excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.article-card__meta { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); }

/* ─── Chip ─── */
.chip {
  display: inline-block;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--border-medium);
  color: var(--text-secondary);
  transition: all 0.15s;
}
.chip:hover, .chip.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ─── Pull Quote ─── */
.pull-quote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--surface);
}
.pull-quote p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-style: normal;
}

/* ─── Divider ─── */
.divider { border: none; border-top: 2px solid var(--black); margin: 0; }
.divider--subtle { border-top-width: 1px; border-top-color: var(--border-subtle); }
.divider--red { border-top-color: var(--red); }

/* ─── Section Label ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-label__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}
.section-label__line { flex: 1; height: 2px; background: var(--border-subtle); }
.section-label__dot { width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }

/* ─── Inputs ─── */
.input-group { margin-bottom: 20px; }
.input-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.input-field {
  width: 100%;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--border-medium);
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
  appearance: none;
}
.input-field::placeholder { color: var(--text-tertiary); }
.input-field:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--black);
}
textarea.input-field { height: 140px; resize: vertical; }
.input-helper { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.input-helper--error { color: var(--red); }

/* ─── Stats ─── */
.stat__number {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
}
.stat__number span { color: var(--red); }
.stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ─── FAQ Accordion ─── */
.faq-item { border-bottom: 2px solid var(--border-subtle); }
.faq-item summary {
  list-style: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  transition: color 0.15s;
}
.faq-item summary:hover { color: var(--red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body { padding: 0 0 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ─── Newsletter Bar ─── */
.newsletter {
  background: var(--black);
  padding: 48px 0;
  color: var(--white);
}
.newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .newsletter__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.newsletter__title {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: -0.02em;
}
.newsletter__title span { color: var(--red); }
.newsletter__form { display: flex; gap: 0; width: 100%; max-width: 420px; }
.newsletter__input {
  flex: 1;
  height: 44px;
  background: transparent;
  border: 2px solid #444;
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  border-radius: 0;
}
.newsletter__input::placeholder { color: #666; }
.newsletter__input:focus { border-color: var(--white); }
.newsletter__btn {
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s;
  white-space: nowrap;
}
.newsletter__btn:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #222;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--red); }
.footer__brand-desc { font-size: 14px; color: #888; line-height: 1.6; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  color: #888;
  transition: all 0.15s;
}
.footer__social a:hover { border-color: var(--red); color: var(--red); }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: #888;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copy { font-size: 12px; color: #555; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 12px; color: #555; transition: color 0.15s; }
.footer__bottom-links a:hover { color: var(--white); }

/* ─── Hero ─── */
.hero { padding: 0; border-bottom: 2px solid var(--black); }
.hero__main {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 2px solid var(--border-subtle);
}
@media (min-width: 1024px) {
  .hero__main { grid-template-columns: 1fr 1fr; }
}
.hero__content {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .hero__content { padding: 80px 60px; border-right: 2px solid var(--border-subtle); }
}
.hero__img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
@media (min-width: 1024px) { .hero__img { min-height: 500px; } }

/* ─── Ticker ─── */
.ticker {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 2px solid var(--black);
}
.ticker__track {
  display: flex;
  gap: 48px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker__sep { color: rgba(255,255,255,0.4); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Grid layouts ─── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ─── Page Hero ─── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 48px;
  border-bottom: 2px solid var(--black);
}
.page-hero__overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero__desc { font-size: 18px; color: #aaa; line-height: 1.65; max-width: 600px; }

/* ─── Timeline ─── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--black);
}
.timeline__item.active .timeline__dot { background: var(--red); border-color: var(--red); }
.timeline__year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.timeline__title {
  font-family: var(--ff-display);
  font-size: 20px;
  margin-bottom: 8px;
}
.timeline__text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── Table ─── */
.comparison-table { width: 100%; border-collapse: collapse; border: 2px solid var(--black); }
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.comparison-table th {
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--surface); }
.comparison-table td.highlight { color: var(--red); font-weight: 700; }

/* ─── Testimonial ─── */
.testimonial {
  background: var(--surface);
  border: 2px solid var(--border-subtle);
  padding: 32px;
}
.testimonial__quote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.testimonial__quote::before { content: '\201C'; color: var(--red); font-size: 32px; font-style: normal; line-height: 0; vertical-align: -12px; margin-right: 4px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid var(--black);
}
.testimonial__name { font-size: 13px; font-weight: 700; }
.testimonial__role { font-size: 12px; color: var(--text-secondary); letter-spacing: 0.04em; }

/* ─── Portfolio item ─── */
.portfolio-item { position: relative; overflow: hidden; border: 2px solid var(--border-subtle); }
.portfolio-item__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.3s; }
.portfolio-item:hover .portfolio-item__img { transform: scale(1.03); }
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.portfolio-item__title {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.portfolio-item__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* ─── Blog tag bar ─── */
.tag-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 48px;
}

/* ─── Services icon card ─── */
.service-card {
  border: 2px solid var(--border-subtle);
  padding: 32px;
  transition: border-color 0.15s, background 0.15s;
}
.service-card:hover { border-color: var(--black); background: var(--surface); }
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { color: var(--white); }
.service-card__title {
  font-family: var(--ff-display);
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card__text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── Contact Info ─── */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.contact-info-item__value { font-size: 15px; font-weight: 500; color: var(--text-primary); }

/* ─── Map placeholder ─── */
.map-block {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Pricing ─── */
.pricing-card {
  border: 2px solid var(--border-subtle);
  padding: 32px;
}
.pricing-card--featured {
  border-top: 4px solid var(--red);
  border-left: 2px solid var(--border-subtle);
  border-right: 2px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-subtle);
  background: var(--black);
  color: var(--white);
}
.pricing-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-card__tier { color: var(--red); }
.pricing-card__price {
  font-family: var(--ff-display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pricing-card__period { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-card--featured .pricing-card__period { color: #888; }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-card__feature-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
.pricing-card--featured .pricing-card__feature { color: #ccc; }

/* ─── About team ─── */
.team-card {
  text-align: center;
  padding: 24px;
  border: 2px solid var(--border-subtle);
  transition: border-color 0.15s;
}
.team-card:hover { border-color: var(--black); }
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid var(--black);
  margin: 0 auto 16px;
}
.team-card__name { font-family: var(--ff-display); font-size: 18px; margin-bottom: 4px; }
.team-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.team-card__bio { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── Utility ─── */
.text-red { color: var(--red); }
.text-secondary { color: var(--text-secondary); }
.bg-black { background: var(--black); color: var(--white); }
.bg-surface { background: var(--surface); }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.pt-32 { padding-top: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}/* End custom CSS */