/* ═══════════════════════════════════════════════════════════════
   DohOps — Brand Layer (overrides base styles.css design tokens)
   The Masterpiece of Management
   Identity: deep navy + warm gold
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Override: DohOps brand palette (navy + gold) */
  --color-primary: #C9A24A;          /* Warm gold — primary accent */
  --color-primary-hover: #B08D3C;    /* Darker gold on hover */
  --color-primary-light: #FBF5E5;    /* Soft champagne tint */

  --color-navy: #0A1733;             /* Deep navy (slightly darker than DohAssist) */
  --color-navy-light: #14254D;
  --color-navy-deep: #050B1E;        /* Cinematic background depth */

  /* Brand-specific extras */
  --color-gold: #C9A24A;
  --color-gold-light: #E5C97A;
  --color-gold-soft: rgba(201, 162, 74, 0.12);
  --color-gold-border: rgba(201, 162, 74, 0.25);

  /* Hero gradient (navy with gold accent glow) */
  --gradient-hero: radial-gradient(ellipse at top, #14254D 0%, #0A1733 45%, #050B1E 100%);
  --gradient-gold: linear-gradient(135deg, #E5C97A 0%, #C9A24A 60%, #A07F35 100%);
}

/* ═══ HERO — DARK CINEMATIC ═══ */
.dohops-hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
  padding: 88px 0 96px;
}

.dohops-hero::before {
  /* Subtle gold particle / depth glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 20% 30%, rgba(201, 162, 74, 0.08), transparent 60%),
    radial-gradient(800px circle at 80% 70%, rgba(201, 162, 74, 0.05), transparent 65%);
  pointer-events: none;
}

.dohops-hero__inner {
  position: relative;
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

/* Single-column hero variant for inner pages (no phone mockup) */
.dohops-hero--single .dohops-hero__inner {
  display: block;
  max-width: 880px;
  text-align: left;
}
.dohops-hero--single h1 {
  font-size: clamp(36px, 4.6vw, 56px);
}
.dohops-hero--single .dohops-hero__lede {
  max-width: 720px;
}

.dohops-hero__copy {
  position: relative;
  z-index: 2;
}

.dohops-hero__eyebrow {
  display: block;
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 14px;
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.dohops-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  box-shadow: none;
  border-radius: 0;
}

/* On dark backgrounds where the eyebrow sits centered (some hero variants), keep underline aligned with text. */
.dohops-hero--centered .dohops-hero__eyebrow::before {
  left: 50%;
  transform: translateX(-50%);
}

.dohops-hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
}

.dohops-hero h1 .gold-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.dohops-hero__sub-positioning {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.dohops-hero__sub-positioning span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dohops-hero__sub-positioning span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.dohops-hero__sub-positioning span:first-child::before {
  display: none;
}

.dohops-hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
  max-width: 600px;
}

.dohops-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

/* Gold primary CTA */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: var(--color-navy-deep);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 24px rgba(201, 162, 74, 0.35), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 12px 32px rgba(201, 162, 74, 0.45), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.dohops-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dohops-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.dohops-hero__trust-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Hero phone mockup */
.dohops-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: #0F1F3F;
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(201, 162, 74, 0.18),
    0 0 0 1px rgba(201, 162, 74, 0.25);
}

.phone-mockup::before {
  /* Notch */
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #050B1E;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Real-screenshot variant: a single full-bleed image inside the phone frame */
.phone-mockup__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 30px;
  background: #fff;
}

.phone-mockup__bar {
  height: 36px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.phone-mockup__brand {
  text-align: center;
  padding: 18px 0 12px;
  background: #fff;
}

.phone-mockup__brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-navy-deep);
  font-size: 22px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(201, 162, 74, 0.35);
}

.phone-mockup__brand-name {
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.phone-mockup__menu {
  flex: 1;
  padding: 14px 14px 20px;
  overflow: hidden;
}

.phone-mockup__pinned {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin: 6px 6px 8px;
}

.phone-mockup__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: #FCFAF2;
  border: 1px solid #F4E9CC;
  border-radius: 10px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-navy);
}

.phone-mockup__item--secondary {
  background: #fff;
  border: 1px solid #ECECEC;
  color: var(--color-body);
  font-weight: 500;
}

.phone-mockup__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.phone-mockup__item--secondary .phone-mockup__item-dot {
  background: #C8C8CC;
}

/* ═══ DARK SECTIONS (alternating) ═══ */
.section-dark {
  background: var(--color-navy-deep);
  color: #fff;
  padding: var(--space-section) 0;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark-alt {
  background: var(--color-navy);
  color: #fff;
  padding: var(--space-section) 0;
}

.section-dark-alt .section-header h2 {
  color: #fff;
}

.section-dark-alt .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

/* Dark cards */
.dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.dark-card:hover {
  border-color: rgba(201, 162, 74, 0.4);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.dark-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-gold-soft);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.dark-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.dark-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
}

.dark-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-card__features li {
  list-style: none;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 18px;
  position: relative;
}

.dark-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.dark-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-light);
  text-decoration: none;
}

.dark-card__link:hover {
  color: var(--color-gold);
}

/* ═══ LOGO STRIP ═══ */
.logo-strip {
  background: #fff;
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--color-border);
}

.logo-strip__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.logo-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-strip__logo {
  font-size: 22px;
  font-weight: 800;
  color: #555;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.logo-strip__logo:hover {
  opacity: 1;
}

/* ═══ STAT BAND ═══ */
.stat-band {
  background: var(--gradient-gold);
  padding: 36px 0;
  color: var(--color-navy-deep);
}

.stat-band__inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-band__item-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-band__item-label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0.8;
}

/* ═══ FEATURE CARD GRID (light, on white) ═══ */
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 30px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--color-gold-border);
  box-shadow: 0 12px 32px rgba(10, 23, 51, 0.08), 0 0 0 1px var(--color-gold-border);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-gold-soft);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 10px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-body);
  margin: 0 0 16px;
}

.feature-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-card__bullets li {
  font-size: 13px;
  color: var(--color-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.feature-card__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.feature-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
}

.feature-card__link:hover {
  color: var(--color-gold);
}

/* ═══ DUAL CTA CARD ═══ */
.dual-cta {
  background: var(--gradient-hero);
  border-radius: 20px;
  padding: 56px 48px;
  color: #fff;
  text-align: center;
  margin: var(--space-section) auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

.dual-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at 50% 0%, rgba(201, 162, 74, 0.18), transparent 60%);
  pointer-events: none;
}

.dual-cta__inner {
  position: relative;
  z-index: 1;
}

.dual-cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}

.dual-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 28px;
  max-width: 700px;
}

.dual-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .dohops-hero {
    padding: 56px 0 64px;
  }
  .dohops-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  /* On mobile, headline leads — phone follows below */
  .dohops-hero__copy {
    order: 1;
  }
  .dohops-hero__visual {
    order: 2;
  }
  .phone-mockup {
    width: 260px;
    height: 520px;
  }
  .dual-cta {
    padding: 40px 28px;
    border-radius: 16px;
    margin: 64px 16px;
  }
}

/* ═══ UTILITY-BAR override (darker for DohOps) ═══ */
body.dohops .utility-bar {
  background: var(--color-navy-deep);
}

body.dohops .utility-bar__link {
  color: rgba(255, 255, 255, 0.6);
}

body.dohops .utility-bar__link--active {
  color: var(--color-gold);
}

/* Make brand-indicator gold for DohOps */
.brand-indicator--ops {
  background: var(--gradient-gold);
  height: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT SCREENSHOT COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Single large desktop screenshot ── */
.product-shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 8px;
}

.product-shot__image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 8px 20px rgba(201, 162, 74, .15);
  display: block;
}

.product-shot__caption {
  margin: 18px auto 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
}

/* ── Paired mobile screenshots ── */
.product-shot-pair {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.product-shot-pair__phone {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 8px 20px rgba(201, 162, 74, .15);
  display: block;
}

/* ── Desktop + mobile mixed layout ── */
.product-shot-mixed {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.product-shot-mixed__desktop {
  width: 70%;
  max-width: 780px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 8px 20px rgba(201, 162, 74, .15);
  display: block;
  position: relative;
  z-index: 1;
}

.product-shot-mixed__phone {
  width: 28%;
  max-width: 310px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 8px 20px rgba(201, 162, 74, .15);
  display: block;
  margin-top: 40px;
  margin-left: -32px;
  position: relative;
  z-index: 2;
}

/* ── section-light utility (white bg) ── */
.section-light {
  background: #fff;
  padding: 72px 24px;
}

/* ── Responsive: stack below 768 px ── */
@media (max-width: 768px) {
  .product-shot__image {
    border-radius: 10px;
  }

  .product-shot-pair {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .product-shot-pair__phone {
    max-width: 300px;
  }

  .product-shot-mixed {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .product-shot-mixed__desktop {
    width: 100%;
    max-width: 100%;
  }

  .product-shot-mixed__phone {
    width: 60%;
    max-width: 280px;
    margin-top: 0;
    margin-left: 0;
  }

  .section-light {
    padding: 48px 16px;
  }
}

/* ═══ INSIDE THE PLATFORM — homepage product-shots band ═══ */
.product-shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.product-shot-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.25s;
}

.product-shot-card:hover {
  border-color: var(--color-gold-border);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 23, 51, 0.12), 0 0 0 1px rgba(201, 162, 74, 0.2);
}

.product-shot-card__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f6f7fb 0%, #eceff5 100%);
  overflow: hidden;
}

.product-shot-card__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.product-shot-card__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--color-border);
}

.product-shot-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}

.product-shot-card__sub {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .product-shots-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-shot-card__frame {
    aspect-ratio: 16 / 9;
  }
}

/* ═══ LIGHTBOX (product screenshot zoom) ═══ */
body.dohops-lightbox-open {
  overflow: hidden;
}

.dohops-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: rgba(10, 23, 51, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dohops-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.dohops-lightbox__figure {
  margin: 0;
  max-width: min(85vw, 1400px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.97);
  transition: transform 0.2s ease;
}

.dohops-lightbox.is-open .dohops-lightbox__figure {
  transform: scale(1);
}

.dohops-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 50px); /* leave room for caption */
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #fff;
}

.dohops-lightbox__caption {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.dohops-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dohops-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

.dohops-lightbox__close:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .dohops-lightbox {
    padding: 16px 12px;
  }
  .dohops-lightbox__figure {
    max-width: 100vw;
  }
  .dohops-lightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* ═══ RESPONSIVE 2-COLUMN GRIDS ═══ */
/* Use these instead of inline `grid-template-columns:1fr 1fr` so layouts
   collapse to a single column on mobile and tablets. */
.dohops-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.dohops-grid-2--founder {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .dohops-grid-2,
  .dohops-grid-2--founder {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* On mobile, let the founder quote card span the full column width and
     align with the button above it instead of being centered/narrower. */
  .dohops-founder-quote {
    max-width: 100% !important;
    margin: 0 !important;
  }
}
