:root {
  --blue: #163cff;
  --lime: #dfff57;
  --ink: #111525;
  --paper: #f7f8ff;
  --line: rgba(17, 21, 37, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.site-header,
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--lime);
  font-family: "Manrope", sans-serif;
}

.status {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 182px);
  margin: 0 auto;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

h1 span {
  color: var(--blue);
}

.intro {
  max-width: 570px;
  margin: 34px 0 28px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.note {
  display: inline-block;
  margin: 0;
  padding: 13px 18px;
  background: var(--lime);
  border-radius: 6px;
  font-weight: 700;
  transform: rotate(-1.5deg);
}

.hero-image-wrap {
  position: relative;
  margin: 0;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 18px 18px 0 var(--blue);
  transform: rotate(1.5deg);
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  background: #d9e3ff;
}

figcaption {
  padding: 14px 4px 4px;
  font-weight: 700;
  text-align: center;
}

footer {
  min-height: 90px;
  border-top: 1px solid var(--line);
  color: #5d6272;
  font-size: 0.875rem;
}

@media (max-width: 800px) {
  .site-header,
  .hero,
  footer { width: min(100% - 28px, 600px); }

  .site-header { height: 76px; }
  .hero { min-height: auto; padding: 50px 0 72px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .hero-image-wrap { margin-right: 12px; box-shadow: 12px 12px 0 var(--blue); }
  footer { min-height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
