@charset "UTF-8";

:root {
  color-scheme: dark;
  --background: #151715;
  --foreground: #f5f6f0;
  --muted: #a9afa5;
  --line: #353a32;
  --accent: #d9fa60;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
}

::selection { background: var(--accent); color: var(--background); }

.page {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
}

.header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.identity { display: flex; align-items: center; gap: 13px; font-size: 1.125rem; font-weight: 600; letter-spacing: -.035em; }
.identity-mark { color: var(--accent); flex-shrink: 0; }
.header-label { font-size: .8125rem; color: var(--muted); }

.main { flex: 1; display: flex; align-items: center; padding-block: clamp(60px, 8vh, 112px); }
.hero { width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: clamp(36px, 7vw, 112px); }
.hero-copy { min-width: 0; }
.eyebrow { margin: 0 0 27px; font-size: .875rem; line-height: 1.5; color: var(--muted); }

h1 {
  margin: 0 0 29px;
  font-size: clamp(4.25rem, 8.6vw, 8.25rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 600;
}

h1 span { color: var(--accent); }
.description { margin: 0; font-size: clamp(1rem, 1.4vw, 1.25rem); color: var(--muted); line-height: 1.65; letter-spacing: -.015em; }
.placement { margin-top: 40px; display: flex; align-items: center; gap: 11px; }
.placement svg { color: var(--accent); flex-shrink: 0; }
.placement p { margin: 0; font-size: .875rem; line-height: 1.5; }

.visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.055;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--accent);
  color: var(--background);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.5vw, 40px);
  transform: rotate(2deg);
  animation: arrive 850ms cubic-bezier(.2,.7,.2,1) both;
}

.visual-top, .visual-bottom { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; gap: 16px; }
.visual-top { font-size: .75rem; font-weight: 600; letter-spacing: .1em; }
.visual-bottom { font-size: .875rem; letter-spacing: -.02em; }
.small-cross { display: block; position: relative; width: 14px; height: 14px; }
.small-cross::before, .small-cross::after { content: ""; position: absolute; background: currentColor; }
.small-cross::before { width: 14px; height: 1px; top: 6px; }
.small-cross::after { height: 14px; width: 1px; left: 6px; }
.test-mark { position: absolute; width: 91%; height: auto; inset: 50% auto auto 50%; transform: translate(-50%, -50%); }

.footer { border-top: 1px solid var(--line); min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer p { margin: 0; font-size: .8125rem; line-height: 1.6; }
.footer-note { text-align: right; }

@keyframes arrive {
  from { opacity: 0; transform: translateY(15px) rotate(0); }
  to { opacity: 1; transform: translateY(0) rotate(2deg); }
}

@media (min-width: 1600px) { .main { padding-block: 100px; } }

@media (max-width: 1000px) {
  .hero { gap: 42px; }
  h1 { font-size: clamp(3.75rem, 8.6vw, 6rem); }
  .visual { border-radius: 24px; }
  .visual-bottom { font-size: .8125rem; }
  .desktop-break { display: none; }
}

@media (max-width: 700px) {
  .header { min-height: 90px; gap: 14px; }
  .identity { font-size: 1rem; gap: 9px; }
  .identity-mark { width: 28px; height: 28px; }
  .header-label { max-width: 110px; font-size: .75rem; text-align: right; line-height: 1.5; }
  .main { padding: 45px 0 48px; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .eyebrow { font-size: .8125rem; margin-bottom: 24px; }
  h1 { font-size: clamp(3.625rem, 13.8vw, 5.75rem); margin-bottom: 22px; }
  .description { max-width: 340px; font-size: 1rem; }
  .placement { margin-top: 25px; }
  .visual { aspect-ratio: 1.27; max-width: 430px; justify-self: center; border-radius: 24px; padding: 25px; }
  .test-mark { width: 72%; }
  .visual-bottom { font-size: .8125rem; }
  .footer { min-height: 100px; padding-block: 22px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
  .footer p { font-size: .75rem; }
  .footer-note { text-align: left; }
}

@media (max-width: 359px) {
  .page { padding-inline: 20px; }
  .header-label { max-width: 90px; }
  .visual { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
