@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/maisonneueextrathin-webfont.woff') format('woff');
  font-weight: 100;
}

@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/maisonneuethin-webfont.woff') format('woff');
  font-weight: 200;
}

@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/maisonneuelight-webfont.woff') format('woff');
  font-weight: 300;
}

@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/maisonneuebook-webfont.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/maisonneuemedium-webfont.woff') format('woff');
  font-weight: 500;
}

@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/maisonneuedemi-webfont.woff') format('woff');
  font-weight: 600;
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Maison Neue', Helvetica, sans-serif;
  color: #000000;
  background: #ffffff;
  padding: 12px;
}

/* Hero */
.hero {
  position: relative;
  height: calc(100vh - 24px);
  width: calc(100vw - 24px);
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar__side {
  flex: 1 0 0;
}

.topbar__title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.topbar__ocn {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: right;
}

.topbar__brand {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: left;
}

/* Middle hero window */
.hero__middle {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  padding: 24px 0;
}

.window {
  display: flex;
  flex-direction: column;
  width: min(700px, 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.window__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fffbf6;
  padding: 12px 16px;
}

.window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window__dot--red {
  background: #ff5f57;
}

.window__dot--yellow {
  background: #febc2e;
}

.window__dot--green {
  background: #28c840;
}

.window__content {
  background: rgba(255, 251, 246, 0.6);
  border: 3px solid #fffbf6;
  border-top: none;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window__mission {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
}
