:root {
  --green: #3f8f1f;
  --green-strong: #2f7d18;
  --green-bright: #77bd28;
  --navy: #06283a;
  --navy-deep: #031824;
  --ink: #0b2a39;
  --muted: #60727c;
  --line: rgba(6, 40, 58, 0.12);
  --paper: #f4faf6;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.74);
  --shadow: 0 24px 70px rgba(6, 40, 58, 0.15);
  --shadow-hover: 0 30px 80px rgba(6, 40, 58, 0.2);
  --mx: 0;
  --my: 0;
  --dock-x: calc(-50vw + 176px);
  --dock-y: calc(-50vh + 74px);
  --dock-scale: 0.23;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(6, 40, 58, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 40, 58, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  pointer-events: none;
  animation: intro-exit 620ms 2.48s ease forwards;
}

.intro-bg {
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(115deg, rgba(3, 24, 36, 0.92), rgba(3, 24, 36, 0.56) 48%, rgba(63, 143, 31, 0.38)),
    url("assets/farm-bg.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.08);
  animation: intro-bg 2.8s ease forwards;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(119, 189, 40, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.intro-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 30px;
  transform-origin: center center;
  animation: logo-dock 980ms 1.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-mark img {
  width: min(520px, 78vw);
  height: min(260px, 40vh);
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.34));
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  animation: intro-logo 760ms 160ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-name {
  display: flex;
  gap: 0.16em;
  color: var(--white);
  font-size: clamp(2.2rem, 7vw, 5.6rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  animation: intro-name-out 420ms 1.22s ease forwards;
}

.intro-name span {
  opacity: 0;
  transform: translateY(0.4em);
  animation: intro-word 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-name span:first-child {
  animation-delay: 420ms;
}

.intro-name span:last-child {
  color: var(--green-bright);
  animation-delay: 540ms;
}

.intro-line {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 8vh, 80px);
  z-index: 1;
  width: min(320px, 72vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.intro-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-bright), #ffffff);
  transform: translateX(-100%);
  animation: intro-line 1.05s 420ms ease forwards;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(244, 250, 246, 0.82);
  border-bottom: 1px solid rgba(6, 40, 58, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-12px);
  animation: header-in 560ms 2.35s ease forwards;
}

.brand img {
  display: block;
  width: min(238px, 48vw);
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(52px, 6vw, 78px);
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 250, 246, 0.98) 0%, rgba(244, 250, 246, 0.92) 42%, rgba(244, 250, 246, 0.58) 68%, rgba(63, 143, 31, 0.16) 100%),
    linear-gradient(90deg, rgba(244, 250, 246, 0.92), rgba(244, 250, 246, 0.26)),
    url("assets/farm-bg.webp");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18vw -28vw auto;
  width: min(850px, 80vw);
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(63, 143, 31, 0.22), rgba(6, 40, 58, 0.08));
  border: 1px solid rgba(63, 143, 31, 0.18);
  transform: translate3d(calc(var(--mx) * 20px), calc(var(--my) * 14px), 0) rotate(-12deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  bottom: clamp(46px, 9vw, 118px);
  z-index: 0;
  width: min(680px, 48vw);
  aspect-ratio: 760 / 520;
  background: url("assets/cow-photo.webp") center / contain no-repeat;
  opacity: 0.18;
  filter: drop-shadow(0 28px 60px rgba(6, 40, 58, 0.2));
  transform: translate3d(calc(var(--mx) * 22px), calc(var(--my) * 16px), 0);
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 730px;
  opacity: 0;
  animation: hero-reveal 780ms 2.02s ease both;
  translate: calc(var(--mx) * -10px) calc(var(--my) * -7px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--navy-deep);
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: #385462;
  font-size: clamp(1.08rem, 1.65vw, 1.24rem);
}

.hero-actions,
.floating-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-strong), var(--green-bright));
  box-shadow: 0 16px 36px rgba(63, 143, 31, 0.28);
}

.btn.primary:hover {
  box-shadow: 0 22px 46px rgba(63, 143, 31, 0.36);
}

.btn.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 40, 58, 0.13);
  backdrop-filter: blur(12px);
}

.hero-panel {
  min-width: 0;
  translate: calc(var(--mx) * 18px) calc(var(--my) * 14px);
  transition: translate 160ms ease-out;
}

.product-showcase {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    linear-gradient(135deg, rgba(63, 143, 31, 0.15), rgba(6, 40, 58, 0.1));
  box-shadow: 0 40px 110px rgba(3, 24, 36, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  animation: stage-in 900ms 2.18s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: -35% -25% auto auto;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(119, 189, 40, 0.28), rgba(119, 189, 40, 0.06) 52%, transparent 70%);
  filter: blur(8px);
  transform: translate3d(calc(var(--mx) * 22px), calc(var(--my) * 18px), 0);
}

.showcase-logo {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(6, 40, 58, 0.16);
  opacity: 0;
  animation: core-pop 760ms 2.38s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  translate: calc(var(--mx) * -8px) calc(var(--my) * -6px);
}

.showcase-logo img {
  width: min(420px, 100%);
  height: clamp(126px, 15vw, 180px);
  object-fit: contain;
}

.showcase-logo span {
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.showcase-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.showcase-card {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 52px rgba(6, 40, 58, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  animation: chip-in 640ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(119, 189, 40, 0.6), rgba(6, 40, 58, 0.1), rgba(255, 255, 255, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.showcase-card span,
.features span {
  display: block;
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-card strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.showcase-card small {
  color: var(--muted);
  font-weight: 750;
}

.showcase-card:nth-child(1) {
  animation-delay: 2.72s;
  translate: calc(var(--mx) * 8px) calc(var(--my) * 6px);
}

.showcase-card:nth-child(2) {
  animation-delay: 2.9s;
  translate: calc(var(--mx) * -8px) calc(var(--my) * 6px);
}

.showcase-card:nth-child(3) {
  animation-delay: 3.08s;
  translate: calc(var(--mx) * 8px) calc(var(--my) * -6px);
}

.showcase-card:nth-child(4) {
  animation-delay: 3.26s;
  translate: calc(var(--mx) * -8px) calc(var(--my) * -6px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: 42px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 40, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 40px rgba(6, 40, 58, 0.1);
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  animation: cue-in 520ms 3.35s ease forwards;
}

.scroll-cue span {
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: var(--green-strong);
  animation: cue-dot 1.35s ease-in-out infinite;
}

.features article:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px;
}

.stat-strip div {
  padding: 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.stat-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  color: var(--muted);
  font-size: 1.08rem;
}

.journey {
  background:
    linear-gradient(180deg, rgba(244, 250, 246, 0.94), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(6, 40, 58, 0.035) 1px, transparent 1px);
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-strong), var(--green-bright), var(--navy));
  opacity: 0.35;
}

.journey-step {
  position: relative;
  min-height: 220px;
  padding: 74px 22px 24px;
  border: 1px solid rgba(6, 40, 58, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(6, 40, 58, 0.08);
}

.journey-step span {
  position: absolute;
  top: 16px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-strong), var(--green-bright));
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(63, 143, 31, 0.26);
}

.journey-step h3 {
  margin-bottom: 10px;
}

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

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(180deg, #ffffff, #f6faf8);
}

.features article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(6, 40, 58, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at calc(50% + var(--mx) * 80px) calc(20% + var(--my) * 60px), rgba(119, 189, 40, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.86));
  box-shadow: 0 18px 55px rgba(6, 40, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.features article::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(119, 189, 40, 0.7), rgba(6, 40, 58, 0.08), rgba(255, 255, 255, 0.8));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.feature-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.features .feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 14px;
  color: var(--green-strong);
  background: rgba(119, 189, 40, 0.12);
  box-shadow: inset 0 0 0 1px rgba(63, 143, 31, 0.18);
}

.features .feature-icon svg,
.float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features .feature-index {
  margin: 0;
  color: rgba(6, 40, 58, 0.26);
  font-size: 1.95rem;
  line-height: 1;
}

.features article h3,
.features article p {
  position: relative;
  z-index: 1;
}

.features article:hover {
  border-color: rgba(63, 143, 31, 0.24);
}

.features article:hover::before {
  opacity: 1;
}

.features article:hover .feature-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-strong), var(--green-bright));
  box-shadow: 0 16px 34px rgba(63, 143, 31, 0.28);
}

.features p,
.proof li,
.contact p {
  color: var(--muted);
}

.proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 24, 36, 0.98), rgba(6, 40, 58, 0.92));
}

.proof::after {
  content: "";
  position: absolute;
  inset: 18px clamp(18px, 5vw, 72px) 18px auto;
  width: min(560px, 42vw);
  background: url("assets/cow-photo.webp") center / contain no-repeat;
  opacity: 0.24;
  filter: drop-shadow(0 24px 60px rgba(119, 189, 40, 0.12));
  pointer-events: none;
}

.proof > * {
  position: relative;
  z-index: 1;
}

.proof h2,
.proof .eyebrow {
  color: var(--white);
}

.proof ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #d9e8e2;
  font-weight: 850;
}

.proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-bright);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(6, 40, 58, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card a {
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 950;
  word-break: break-word;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: #d8e5df;
  background: #041c28;
}

.site-footer img {
  width: 180px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  flex-direction: column;
  gap: 10px;
}

.float {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(6, 40, 58, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.float.whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(6, 40, 58, 0.28);
}

.float.whatsapp {
  background: #25d366;
}

.float.email {
  background: var(--navy);
}

.float.whatsapp::after,
.float.email::after {
  position: absolute;
  right: 66px;
  min-width: max-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 24, 36, 0.9);
  font-size: 0.78rem;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.float.whatsapp::after {
  content: "WhatsApp";
}

.float.email::after {
  content: "E-mail";
}

.float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features .reveal-item:nth-child(2) {
  transition-delay: 90ms;
}

.features .reveal-item:nth-child(3) {
  transition-delay: 180ms;
}

.features .reveal-item:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-dock {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(var(--dock-x), var(--dock-y), 0) scale(var(--dock-scale));
  }
}

@keyframes intro-name-out {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes intro-bg {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

@keyframes cue-in {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes cue-dot {
  0%,
  100% {
    transform: translateY(-9px);
    opacity: 0.42;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

@keyframes stage-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes core-pop {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }
  70% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes chip-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-logo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-word {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-line {
  0% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes intro-exit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

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

  .intro {
    display: none;
  }

  .site-header,
  .hero-content,
  .product-showcase,
  .showcase-logo,
  .showcase-card,
  .scroll-cue {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .proof,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    right: -60px;
    bottom: 14%;
    width: min(560px, 62vw);
    opacity: 0.14;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-track::before {
    display: none;
  }

  .product-showcase {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .brand img {
    height: 58px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .features,
  .journey-track,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .showcase-flow {
    grid-template-columns: 1fr;
  }

  .hero::after {
    right: -150px;
    bottom: 34%;
    width: 440px;
    opacity: 0.1;
  }

  .showcase-logo img {
    height: 132px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-contact {
    left: auto;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
  }

  .float {
    width: 52px;
    height: 52px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 92px;
  }
}
