:root {
  --color-primary: #FF7200;
  --color-primary-dark: #D56107;
  --color-secondary: #00BDB1;
  --color-bg-dark: #1F201F;
  --font-family-base: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--color-bg-dark);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-dark);
  overflow: hidden;
}

/* Photo frame / hero background */
.photo-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-bg-dark);
}
.photo-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Accent bar */
.accent-bar {
  display: flex;
  height: 6px;
  width: 100%;
}
.accent-bar span { flex: 1; }
.accent-bar span:first-child { background: var(--color-secondary); }
.accent-bar span:last-child { background: var(--color-primary); }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 80px;
  height: 74px;
}
.header__logo { display: block; height: 30px; width: auto; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lang-switch--sm { gap: 8px; }
.lang-switch__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease-in-out;
}
.lang-switch__link.is-active { color: var(--color-primary); }
.lang-switch__link:hover { color: var(--color-primary); }
.lang-switch__sep { color: rgba(255, 255, 255, 0.3); }

/* Main */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 64px 80px;
}
.main__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-secondary);
}
.eyebrow__text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.wordmark__icon {
  width: clamp(72px, 10.5vw, 140px);
  height: clamp(72px, 10.5vw, 140px);
  flex-shrink: 0;
}
.wordmark__title {
  margin: 0;
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #FFFFFF;
}

.divider {
  width: 72px;
  height: 4px;
  background: var(--color-primary);
  margin: 32px 0 28px;
}

.lede {
  margin: 0;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

.status {
  margin: 20px 0 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 820px;
  margin-top: 64px;
}

.audience {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
  display: flex;
  gap: 16px;
}

.icon-tile {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.audience__title {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.audience__body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  padding: 22px 80px;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__mark { display: block; }
.footer__link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 200ms ease-in-out;
}
.footer__link:hover { color: var(--color-primary); }
.footer__legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 720px) {
  .header { padding: 18px 24px; }
  .main { padding: 40px 24px; }
  .footer { padding: 18px 24px; }
  .footer__inner { justify-content: flex-start; }
}
