@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Unbounded:wght@500;600&display=swap");

:root {
  --ink: #17241d;
  --paper: #f4f0e8;
  --accent: #ef5b3f;
  --line: rgba(23, 36, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 45%, rgba(239, 91, 63, 0.08), transparent 28rem),
    var(--paper);
  font-family: "Manrope", sans-serif;
}

.page {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1600px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 64px);
  overflow: hidden;
  overflow: clip;
}

.header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand__mark path {
  stroke: var(--accent);
  stroke-width: 2.6;
}

.brand__name {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.header__type,
.footer {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: 6vw;
  padding: clamp(70px, 9vh, 130px) 0;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 960px;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(44px, 6.35vw, 104px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

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

.intro {
  max-width: 590px;
  margin: clamp(30px, 5vh, 56px) 0 0;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.orbit {
  position: relative;
  aspect-ratio: 1;
  width: min(36vw, 510px);
  justify-self: end;
}

.orbit__circle,
.orbit__core {
  position: absolute;
  border-radius: 50%;
}

.orbit__circle {
  border: 1px solid var(--line);
}

.orbit__circle--outer {
  inset: 0;
  animation: breathe 8s ease-in-out infinite;
}

.orbit__circle--inner {
  inset: 17%;
  border-style: dashed;
  animation: rotate 32s linear infinite;
}

.orbit__core {
  inset: 34%;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit__dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
}

.orbit__dot--one {
  top: 15%;
  left: 15%;
}

.orbit__dot--two {
  right: 3%;
  bottom: 32%;
  width: 9px;
  height: 9px;
  background: var(--ink);
}

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

.footer p {
  margin: 0;
}

.footer__note {
  color: var(--accent);
}

.consent {
  position: fixed;
  z-index: 10;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 42px);
  width: min(420px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.96);
  box-shadow: 0 18px 60px rgba(23, 36, 29, 0.16);
  backdrop-filter: blur(12px);
}

.consent[hidden] {
  display: none;
}

.consent p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.consent__actions {
  display: flex;
  gap: 8px;
}

.consent__button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: 600 11px/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.consent__button--accept {
  color: var(--paper);
  background: var(--ink);
}

.consent__button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  50% {
    transform: scale(0.96);
    opacity: 0.6;
  }
}

@media (max-width: 800px) {
  .page {
    padding: 24px 20px;
  }

  .header__type {
    max-width: 105px;
    text-align: right;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 42px;
    padding: 55px 0 45px;
  }

  h1 {
    font-size: clamp(37px, 11.4vw, 60px);
    line-height: 1.07;
  }

  .intro {
    max-width: 34rem;
    margin-top: 28px;
  }

  .orbit {
    position: absolute;
    right: -28vw;
    bottom: 8vh;
    width: min(90vw, 430px);
    opacity: 0.32;
  }
}

@media (max-width: 420px) {
  .brand__mark {
    width: 38px;
  }

  .brand__name {
    font-size: 11px;
  }

  .header__type {
    font-size: 10px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .footer {
    font-size: 9px;
  }

  .consent {
    padding: 17px;
  }

  .consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
