@import url("fonts.css");

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-family: "Noto Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #14151a;
  background: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  text-align: center;
}

.holding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: min(100%, 42rem);
}

.holding-logo {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #14151a;
}

.holding-video-wrap {
  position: relative;
  width: min(100%, 36rem);
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.holding-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.holding-title {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: #14151a;
}

.holding-subtitle {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.55;
  color: #5c616d;
}

.holding-footer {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #5c616d;
}

.holding-footer a {
  color: #0f766e;
  text-decoration: none;
}

.holding-footer a:hover,
.holding-footer a:focus-visible {
  color: #0d9488;
  text-decoration: underline;
}

.holding-footer a:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
}
