/* ===========================================================
   Virtually Earthed — landing page styles
   Palette: warm cream, terracotta, deep moss, ink
   Type: Fraunces (display) + Instrument Serif (italic accents)
         + DM Mono (UI labels)
   =========================================================== */

:root {
  --cream: #f3ead8;
  --cream-2: #ece1c8;
  --clay: #c8542a;
  --clay-deep: #a8401e;
  --moss: #2c3a1f;
  --moss-2: #3c4f2a;
  --ink: #1a1a17;
  --chalk: #fbf6e8;
  --accent: #e8a23a;
  --line: rgba(26, 26, 23, 0.12);

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-italic: "Instrument Serif", "Times New Roman", serif;
  --f-mono: "DM Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--clay);
  color: var(--chalk);
}

/* Subtle film grain over everything */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad-x);
  background: color-mix(in srgb, var(--cream) 85%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav__mark {
  color: var(--clay);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav__brand:hover .nav__mark {
  transform: rotate(180deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  background: var(--ink);
  color: var(--chalk);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav__cta:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x) clamp(4rem, 9vw, 7rem);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--clay) 25%, transparent);
  animation: pulse 2.2s infinite ease-in-out;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 2rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__title .line:nth-child(1) {
  animation-delay: 0.15s;
}
.hero__title .line:nth-child(2) {
  animation-delay: 0.32s;
}
.hero__title .line:nth-child(3) {
  animation-delay: 0.49s;
}

.hero__title .line--accent {
  color: var(--clay);
  position: relative;
  display: inline-block;
  padding-right: 0.2em;
}

.swoop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.22em;
  color: var(--accent);
  opacity: 0;
  animation: drawIn 1.2s 0.9s ease-out forwards;
}

.hero__title .line--italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
  letter-spacing: -0.02em;
}

.hero__sub {
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  margin: 0 0 2.25rem;
  opacity: 0;
  animation: rise 0.9s 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  background: transparent;
  color: var(--ink);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--ink);
  color: var(--chalk);
}
.btn--primary:hover {
  background: var(--clay);
  border-color: var(--clay);
}
.btn--on-dark {
  background: var(--chalk);
  color: var(--ink);
  border-color: var(--chalk);
}
.btn--on-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--chalk);
}
.btn--big {
  padding: 1.05rem 1.6rem;
  font-size: 0.9rem;
}

/* ---- floating decorations ---- */
.float {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  animation: rise 1.2s 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.float--ring {
  width: clamp(120px, 16vw, 200px);
  top: 8%;
  right: 4%;
  color: var(--moss);
  animation: rise 1.2s 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    spin 28s linear infinite 1s;
}
.float--beam {
  width: clamp(180px, 22vw, 280px);
  bottom: 14%;
  right: 6%;
  color: var(--clay);
  transform-origin: center;
  animation: rise 1.2s 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    sway 6s ease-in-out infinite 1.5s;
}
.float--ribbon {
  width: clamp(220px, 28vw, 340px);
  top: 18%;
  right: 18%;
  color: var(--accent);
  opacity: 0;
  animation: rise 1.2s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    flow 8s ease-in-out infinite 2s;
}

@media (max-width: 860px) {
  .float--ring {
    top: auto;
    bottom: -2%;
    right: -8%;
    width: 160px;
  }
  .float--beam {
    display: none;
  }
  .float--ribbon {
    top: 2%;
    right: -10%;
    width: 220px;
  }
}

.scroll-hint {
  position: absolute;
  left: var(--pad-x);
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  opacity: 0;
  animation: rise 1s 1.4s ease forwards;
}
.scroll-hint__line {
  display: block;
  width: 60px;
  height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.scroll-hint__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clay);
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink);
  color: var(--chalk);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.4rem;
  width: max-content;
  animation: scroll-x 36s linear infinite;
}
.marquee__track span {
  flex-shrink: 0;
}
.marquee__track span[aria-hidden] {
  color: var(--clay);
}

/* ============== SECTIONS / WHAT ============== */
.kicker {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1.25rem;
}
.kicker--light {
  color: var(--accent);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
}
.section-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}
.highlight {
  background: linear-gradient(
    transparent 60%,
    color-mix(in srgb, var(--accent) 65%, transparent) 60%
  );
  padding: 0 0.1em;
}

.what {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .what {
    grid-template-columns: 1fr;
  }
}

.what__grid {
  display: grid;
  gap: 1rem;
}
.card {
  position: relative;
  padding: 1.6rem 1.6rem 1.4rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.35s ease, background 0.35s ease,
    border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-3px);
  background: var(--chalk);
  border-color: var(--clay);
}
.card__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--clay);
  margin-bottom: 0.4rem;
}
.card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
}
.card p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ============== PODIUM ============== */
.podium {
  background: var(--moss);
  color: var(--chalk);
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x);
  overflow: hidden;
}
.podium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      color-mix(in srgb, var(--moss-2) 80%, transparent) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 70%,
      color-mix(in srgb, var(--clay) 25%, transparent) 0%,
      transparent 45%
    );
  pointer-events: none;
}

.podium__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .podium__wrap {
    grid-template-columns: 1fr;
  }
}

.podium__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1.4rem;
}
.podium__title span {
  display: block;
  color: var(--accent);
}
.podium__title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  display: block;
  color: var(--chalk);
}

.podium__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--chalk) 80%, transparent);
  max-width: 50ch;
  margin: 0 0 1.5rem;
}

.podium__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.88rem;
}
.podium__bullets li {
  position: relative;
  padding-left: 1.5rem;
}
.podium__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.podium__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.podium__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--chalk) 70%, transparent);
}
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 80%, transparent);
  animation: pulse 1.8s infinite;
}

/* podium art */
.podium__art {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.6rem;
}
.step {
  position: relative;
  width: 26%;
  background: var(--chalk);
  color: var(--ink);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
  transition: transform 0.4s ease;
  box-shadow: inset 0 -10px 0 color-mix(in srgb, var(--ink) 12%, transparent);
}
.step:hover {
  transform: translateY(-6px);
}
.step__label {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
}
.step--1 {
  height: 92%;
  background: var(--accent);
  order: 2;
}
.step--2 {
  height: 70%;
  background: var(--chalk);
  order: 1;
}
.step--3 {
  height: 55%;
  background: var(--clay);
  color: var(--chalk);
  order: 3;
}
.step__star {
  position: absolute;
  top: -28px;
  width: 44px;
  color: var(--accent);
  animation: spin 12s linear infinite;
}
.podium__ground {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 4px;
  background: color-mix(in srgb, var(--chalk) 50%, transparent);
}

/* ============== KIT ============== */
.kit {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x);
}
.kit__head {
  max-width: 60ch;
  margin-bottom: 3rem;
}
.kit__note {
  margin-top: 1rem;
  font-family: var(--f-italic);
  font-style: italic;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-size: 1.1rem;
}

.kit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.kit__item {
  display: grid;
  grid-template-columns: 110px 1fr 2fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.6rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease, background 0.3s ease;
  position: relative;
}
.kit__item:hover {
  padding-left: 1rem;
  background: color-mix(in srgb, var(--cream-2) 80%, transparent);
}
.kit__item::before {
  content: "→";
  position: absolute;
  left: -0.2rem;
  top: 1.65rem;
  opacity: 0;
  color: var(--clay);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.kit__item:hover::before {
  opacity: 1;
  transform: translateX(4px);
}
.kit__tag {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  justify-self: start;
  color: var(--ink);
}
.kit__tag--live {
  background: var(--ink);
  color: var(--chalk);
}
.kit__item h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}
.kit__item p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: 1.02rem;
}
@media (max-width: 720px) {
  .kit__item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* ============== CONTACT ============== */
.contact {
  position: relative;
  background: var(--clay);
  color: var(--chalk);
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x);
}
.contact__bg {
  position: absolute;
  inset: 0;
  color: var(--chalk);
  pointer-events: none;
}
.contact__bg svg {
  width: 100%;
  height: 100%;
}

.contact__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.contact .kicker {
  color: var(--chalk);
  opacity: 0.8;
}

.contact__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.contact__title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.contact__sub {
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 0 2.5rem;
  color: color-mix(in srgb, var(--chalk) 90%, transparent);
}

/* ---- form ---- */
.form {
  background: var(--chalk);
  color: var(--ink);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 18px;
  box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--ink) 50%, transparent);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: block;
}
.field span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 1.5px solid var(--ink);
  padding: 0.6rem 0;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clay);
}
.field--full {
  margin-bottom: 1.5rem;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.form__note {
  margin: 0;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ink) 65%, transparent);
}

/* ============== THANKS PAGE ============== */
.thanks {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x);
  max-width: 720px;
  margin: 0 auto;
}
.thanks__mark {
  width: 72px;
  height: 72px;
  color: var(--clay);
  margin-bottom: 2rem;
  animation: spin 18s linear infinite;
}
.thanks__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.thanks__title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}
.thanks__sub {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  max-width: 50ch;
  margin: 0 0 2.5rem;
}

/* ============== FOOTER ============== */
.foot {
  background: var(--ink);
  color: var(--chalk);
  padding: 3rem var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
@media (max-width: 700px) {
  .foot {
    grid-template-columns: 1fr;
  }
}
.foot__brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.foot__by {
  margin: 0;
  font-family: var(--f-italic);
  font-style: italic;
  color: color-mix(in srgb, var(--chalk) 70%, transparent);
  font-size: 1rem;
  line-height: 1.5;
}
.foot__right {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: right;
}
.foot__right p {
  margin: 0.3rem 0;
}
.foot__right a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
@media (max-width: 700px) {
  .foot__right {
    text-align: left;
  }
}

/* ============== KEYFRAMES ============== */
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 80%, transparent);
  }
  50% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 0%, transparent);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sway {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-6px);
  }
}
@keyframes flow {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(-12px) scaleX(1.02);
  }
}
@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}
@keyframes drawIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero__title .line,
  .hero__eyebrow,
  .hero__sub,
  .hero__cta,
  .swoop,
  .float {
    opacity: 1;
    transform: none;
  }
}
