:root {
  --ink: #16251f;
  --muted: #66726d;
  --paper: #f3f0e8;
  --card: rgba(255, 255, 255, 0.52);
  --accent: #ff6b35;
  --line: rgba(22, 37, 31, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 107, 53, 0.12), transparent 24rem),
    radial-gradient(circle at 10% 90%, rgba(55, 113, 86, 0.12), transparent 25rem),
    var(--paper);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.16;
  pointer-events: none;
}

a {
  color: inherit;
}

.page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding: 0 5vw;
}

header,
footer {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

header {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.15em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.13);
  animation: pulse 2.2s ease-out infinite;
}

main {
  display: grid;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  padding-block: clamp(70px, 10vh, 130px);
}

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

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3.4rem, 8.5vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.intro {
  max-width: 510px;
  margin: clamp(30px, 4vw, 48px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.visual {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.orb {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

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

.orb::before {
  inset: 16%;
  background: var(--ink);
}

.orb::after {
  top: 4%;
  right: 5%;
  width: 38%;
  aspect-ratio: 1;
  background: var(--accent);
  mix-blend-mode: multiply;
}

.cross {
  position: absolute;
  right: 2%;
  bottom: 12%;
  z-index: 2;
  color: var(--paper);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 600;
  line-height: 0.6;
  transform: rotate(15deg);
}

.tag {
  position: absolute;
  top: 12%;
  left: -8%;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--card);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

footer {
  padding-block: 24px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.progress {
  display: flex;
  gap: 5px;
  align-items: center;
}

.progress span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 10px;
  background: var(--line);
}

.progress span:first-child {
  background: var(--accent);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

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

  main {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-block: 72px;
  }

  .visual {
    width: min(88vw, 390px);
    margin-inline: auto;
  }

  .tag {
    left: -2%;
  }
}

@media (max-width: 480px) {
  header {
    padding-block: 22px;
  }

  .status {
    font-size: 0;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  footer {
    align-items: flex-end;
    gap: 20px;
  }
}

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