:root {
  --ink: #131316;
  --paper: #f7f3ea;
  --white: #fffdf8;
  --muted: #65615d;
  --line: rgba(19, 19, 22, 0.16);
  --orange: #ff5a36;
  --yellow: #f4cf55;
  --blue: #2457e6;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 4%, rgba(244, 207, 85, 0.24), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.brand img { width: 38px; height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: .9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible { border-color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(19, 19, 22, .12);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76vh;
  margin: auto;
  padding: clamp(4rem, 10vw, 9rem) 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.045em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  font-weight: 900;
}

h2 { font-size: clamp(2.1rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }

.hero-copy {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.art {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.art::before,
.art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.art::before {
  width: 280px;
  height: 280px;
  top: 0;
  right: 0;
  background: var(--orange);
}

.art::after {
  width: 230px;
  height: 230px;
  right: 110px;
  bottom: 0;
  background: var(--blue);
  mix-blend-mode: multiply;
}

.art-card {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 125px;
  width: min(300px, 82%);
  padding: 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 14px 14px 0 var(--yellow);
  transform: rotate(-4deg);
}

.art-card strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.05;
}

.art-card span { color: var(--muted); }

.section {
  padding: clamp(4rem, 8vw, 8rem) 1rem;
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(100%, var(--max));
  margin: auto;
}

.section-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.card {
  min-height: 240px;
  padding: 2rem;
  background: var(--white);
}

.card .number {
  display: block;
  margin-bottom: 3rem;
  color: var(--orange);
  font-weight: 900;
}

.card p { color: var(--muted); }

.band {
  color: white;
  background: var(--ink);
}

.band .eyebrow { color: var(--yellow); }
.band p { color: rgba(255, 255, 255, .7); }

.product-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.document-hero {
  width: min(calc(100% - 2rem), 900px);
  margin: auto;
  padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}

.document-hero h1 { font-size: clamp(2.6rem, 7vw, 6rem); }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .92rem;
}

.language-nav {
  display: flex;
  gap: .6rem;
  margin-top: 2rem;
}

.language-nav a {
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.legal {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto 6rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(19, 19, 22, .08);
}

.legal h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.03em;
}

.legal h2:first-child { margin-top: 0; }

.legal h3 {
  margin: 2.4rem 0 .8rem;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.legal p,
.legal li { color: #383634; }

.legal li + li { margin-top: .4rem; }

.legal .language-break {
  margin: 4rem -1rem 1rem;
  padding: 2rem 1rem 0;
  border-top: 3px solid var(--ink);
}

.notice {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: rgba(255, 90, 54, .08);
}

.site-footer {
  padding: 3rem 1rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.3rem;
}

.footer-links a { color: var(--muted); }

.small {
  color: var(--muted);
  font-size: .88rem;
}

@media (max-width: 800px) {
  .nav { min-height: 68px; }
  .nav-links a:not(.button) { display: none; }
  .hero,
  .section-head,
  .product-note { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .art { min-height: 350px; }
  .grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
