:root {
  --ink: #07110c;
  --paper: #f4f7f1;
  --foxena-cyan: #00e5ff;
  --foxena-lime: #7cff3a;
  --nr-blue: #005a9c;
  --nr-green: #3d6b35;
  --nr-leaf: #76a84c;
  --nr-orange: #f5a623;
  --nr-red: #d0021b;
  --glass: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.18);
  --glass-highlight: rgba(255, 255, 255, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 400;
  color: var(--paper);
  background: #050505;
  overflow-x: hidden;
}

.shell {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0 0 1.25rem;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2.75rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.tubes-cursor {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar,
main,
footer {
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.brand img {
  width: auto;
  height: 72px;
  object-fit: contain;
  background: transparent;
}

.brand-foxena {
  justify-self: start;
  padding: 1.1rem 0 0;
}

.brand-foxena img {
  height: 40px;
}

.brand-natural {
  justify-self: end;
  background: #fff;
  border-radius: 0px;
  padding: 0.28rem 0.4rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  animation: nr-drop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-natural img {
  height: 72px;
  background: transparent;
}

@keyframes nr-drop {
  from {
    transform: translateY(-110%);
  }
  to {
    transform: translateY(0);
  }
}

.intro {
  text-align: center;
  padding: 1.15rem 1.4rem 0.2rem;
}

h1 {
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.55rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  max-width: none;
  margin: 0 auto;
  color: #fff;
}

h1 em {
  display: block;
  font-style: normal;
  font-weight: 300;
  color: var(--foxena-lime);
}

.reveal-line {
  display: block;
}

.reveal-word {
  display: inline-block;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(0.18em);
  animation: reveal-from-blur 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.11s);
  will-change: filter, opacity, transform;
}

@keyframes reveal-from-blur {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-word {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

.view-note {
  margin: 0.85rem auto 0;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 247, 241, 0.48);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  width: min(1180px, calc(100% - 2.4rem));
  margin: 1.15rem auto 0;
}

.draft {
  --glass-tint: rgba(124, 255, 58, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.35rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, var(--glass-tint), transparent 58%);
  backdrop-filter: blur(34px) saturate(165%);
  -webkit-backdrop-filter: blur(34px) saturate(165%);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    inset 1px 0 0 rgba(255, 255, 255, 0.14),
    inset 0 -24px 48px rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}

.draft::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.08) 18%, transparent 42%),
    radial-gradient(120% 70% at 12% -8%, rgba(255, 255, 255, 0.28), transparent 46%);
  mix-blend-mode: screen;
  opacity: 0.85;
  z-index: 0;
}

.draft::after {
  content: "";
  position: absolute;
  inset: 8px auto auto 10px;
  width: 46%;
  height: 38%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(8px);
  z-index: 0;
}

.draft-a {
  --glass-tint: rgba(0, 229, 255, 0.1);
}

.draft-b {
  --glass-tint: rgba(61, 107, 53, 0.16);
}

.draft-c {
  --glass-tint: rgba(245, 166, 35, 0.12);
}

.draft-glow {
  position: absolute;
  inset: auto -28% 28% -28%;
  height: 210px;
  filter: blur(48px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  animation: liquid-shift 10s ease-in-out infinite;
}

@keyframes liquid-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6%, -8%, 0) scale(1.08);
  }
}

.draft-a .draft-glow {
  background: linear-gradient(90deg, var(--foxena-cyan), var(--foxena-lime));
}

.draft-b .draft-glow {
  background: linear-gradient(90deg, var(--nr-blue), var(--nr-leaf));
}

.draft-c .draft-glow {
  background: linear-gradient(90deg, var(--nr-orange), var(--nr-red), var(--foxena-cyan));
}

.draft:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    0 28px 64px rgba(0, 0, 0, 0.38);
}

.draft-head {
  position: relative;
  z-index: 1;
}

.main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.06) 22%, transparent 48%);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.draft-head h2 {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0.7rem 0 0.2rem;
  color: #fff;
}

.draft-head p {
  color: rgba(244, 247, 241, 0.62);
  font-size: 0.92rem;
  font-weight: 300;
}

.main-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.12rem 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.main-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.95;
}

.draft-a .main-link {
  color: #041014;
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.18);
}

.draft-a .main-link::before {
  background: linear-gradient(135deg, var(--foxena-cyan), #9ff, var(--foxena-lime));
}

.draft-b .main-link {
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 90, 156, 0.28);
}

.draft-b .main-link::before {
  background: linear-gradient(135deg, var(--nr-blue), var(--nr-leaf));
}

.draft-c .main-link {
  color: #140800;
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.22);
}

.draft-c .main-link::before {
  background: linear-gradient(135deg, var(--nr-orange), #ffe08a, #ff6b57);
}

.main-kicker,
.main-title,
.main-arrow {
  position: relative;
  z-index: 1;
}

.main-kicker {
  grid-column: 1;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 400;
}

.main-title {
  grid-column: 1;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.main-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.main-link:hover .main-arrow,
.main-link:focus-visible .main-arrow {
  transform: translate(4px, -4px);
}

.sublinks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: auto;
}

.sublinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.55rem 0.4rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sublinks a:hover,
.sublinks a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.draft-a .sublinks a:hover {
  color: var(--foxena-cyan);
}

.draft-b .sublinks a:hover {
  color: #b8e08a;
}

.draft-c .sublinks a:hover {
  color: var(--nr-orange);
}

footer {
  text-align: center;
  padding: 2.25rem 1.4rem 0.5rem;
  color: rgba(244, 247, 241, 0.42);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .gallery {
    grid-template-columns: 1fr;
    width: min(520px, calc(100% - 1.6rem));
  }

  .content {
    padding-top: 1.75rem;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-foxena img {
    height: 30px;
  }

  .brand-natural {
    padding: 0.2rem 0.3rem 0.25rem;
    border-radius: 0;
  }

  .brand-natural img {
    height: 48px;
  }

  h1 {
    font-size: 1.9rem;
  }
}
