:root {
  --purple: #92288f;
  --purple-deep: #4d164d;
  --purple-dark: #241126;
  --green: #69bd45;
  --green-soft: #a7d88c;
  --ink: #211d21;
  --muted: #6f686f;
  --cream: #f5f1ec;
  --paper: #fffefd;
  --white: #ffffff;
  --line: rgba(33, 29, 33, 0.13);
  --shadow: 0 24px 70px rgba(42, 21, 40, 0.12);
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--white);
  color: var(--purple-deep);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #b8e69e);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 8px 32px rgba(38, 18, 38, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 92px;
  transition: min-height 0.35s ease;
}

.is-scrolled .header-inner {
  min-height: 74px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 225px;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px rgba(31, 15, 30, 0.12);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.header-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 99px;
  font-size: 0.86rem;
  font-weight: 800;
}

.is-scrolled .header-cta {
  border-color: var(--line);
  background: var(--white);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(105, 189, 69, 0.6);
  animation: pulse 2.2s infinite;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--purple-deep);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 860px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--purple-dark);
}

.hero-image,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-image {
  inset: -4%;
  background: url("assets/img/hero-vinedo.jpg") center center / cover no-repeat;
  transform: scale(1.035);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(25, 12, 26, 0.9) 0%, rgba(46, 18, 45, 0.68) 36%, rgba(30, 17, 30, 0.1) 70%),
    linear-gradient(0deg, rgba(19, 13, 18, 0.7) 0%, transparent 44%);
}

.hero-grain {
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.65px, transparent 0.65px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(82px, 10vh, 126px);
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--purple);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green);
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  animation: rise-in 0.8s 0.15s var(--ease) forwards;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.3rem, 7.4vw, 7.2rem);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.91;
  text-wrap: balance;
  opacity: 0;
  animation: rise-in 1s 0.26s var(--ease) forwards;
}

.hero h1 em {
  color: var(--green-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
  opacity: 0;
  animation: rise-in 0.9s 0.4s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  opacity: 0;
  animation: rise-in 0.9s 0.53s var(--ease) forwards;
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 850;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--purple-dark);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(105, 189, 69, 0.2);
}

.button-primary:hover {
  background: #7bd052;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: clamp(82px, 10vh, 126px);
  display: flex;
  gap: 34px;
  align-items: flex-end;
  padding: 18px 0 18px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: rise-in 0.9s 0.68s var(--ease) forwards;
}

.hero-proof div {
  display: grid;
  gap: 1px;
}

.hero-proof strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 34px;
  display: flex;
  gap: 13px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  animation: slide-line 2.2s infinite var(--ease);
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 25px;
  align-items: center;
  padding: 15px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.marquee i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: 132px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.field-copy h2,
.alerts-copy h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.services {
  background:
    radial-gradient(circle at 92% 6%, rgba(146, 40, 143, 0.07), transparent 25%),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  transition: color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--purple-deep);
  transition: height 0.5s var(--ease);
}

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

.service-card:hover {
  z-index: 2;
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  height: 100%;
}

.card-number {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
}

.service-card:hover .card-number,
.service-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.card-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 28px 0 45px;
  border: 1px solid rgba(146, 40, 143, 0.25);
  border-radius: 50%;
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.5s var(--ease);
}

.service-card:hover .card-mark {
  color: var(--green-soft);
  border-color: rgba(255, 255, 255, 0.28);
  transform: rotate(-10deg) scale(1.05);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.card-line {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover .card-line {
  transform: scaleX(1);
}

.field-story {
  position: relative;
  padding: 144px 0;
  overflow: hidden;
  background: var(--cream);
}

.field-shape {
  position: absolute;
  top: -260px;
  right: -200px;
  width: 620px;
  height: 620px;
  border: 110px solid rgba(146, 40, 143, 0.045);
  border-radius: 50%;
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
  align-items: center;
}

.field-visual {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
  border-radius: 50% 50% 46% 54% / 58% 42% 58% 42%;
  color: var(--white);
  background: var(--purple-deep);
  box-shadow: 0 30px 90px rgba(77, 22, 77, 0.24);
}

.field-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
}

.field-visual > p {
  position: relative;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-align: center;
}

.year-stamp {
  position: absolute;
  z-index: 2;
  top: 48px;
  left: -24px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--purple-deep);
  background: var(--green);
  transform: rotate(-8deg);
}

.year-stamp span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.year-stamp strong {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(105, 189, 69, 0.35);
  border-radius: 50%;
  animation: orbit 14s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.orbit-one {
  inset: -6%;
}

.orbit-two {
  inset: 18%;
  animation-direction: reverse;
  animation-duration: 10s;
}

.field-copy .eyebrow,
.alerts-copy .eyebrow {
  margin-bottom: 25px;
}

.lead {
  margin: 32px 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 13px;
  align-items: center;
  font-weight: 700;
}

.check-list span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-deep);
  background: rgba(105, 189, 69, 0.2);
  font-size: 0.72rem;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--purple);
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 850;
}

.text-link span {
  transition: transform 0.3s var(--ease);
}

.text-link:hover span {
  transform: translateX(6px);
}

.products {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(146, 40, 143, 0.34), transparent 32%),
    var(--purple-dark);
}

.section-heading-light .eyebrow {
  color: var(--green-soft);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.58);
}

.product-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.product-row {
  display: grid;
  grid-template-columns: 70px minmax(240px, 1.2fr) minmax(260px, 0.8fr) 48px;
  gap: 26px;
  align-items: center;
  min-height: 122px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding 0.35s var(--ease), background 0.35s ease;
}

.product-row:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.product-index {
  color: var(--green-soft);
  font-family: Georgia, serif;
  font-style: italic;
}

.product-row h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  letter-spacing: -0.045em;
}

.product-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.row-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.product-row:hover .row-arrow {
  color: var(--purple-dark);
  background: var(--green);
  transform: rotate(45deg);
}

.product-note {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.product-note a {
  color: var(--white);
  font-weight: 800;
}

.product-note strong {
  margin-left: 10px;
  color: var(--green);
}

.alerts {
  padding: 145px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 45%, rgba(105, 189, 69, 0.13), transparent 28%),
    var(--paper);
}

.alerts-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: 120px;
  align-items: center;
}

.phone-scene {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 40, 143, 0.2), rgba(146, 40, 143, 0));
}

.phone {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 580px;
  padding: 11px;
  border: 2px solid rgba(33, 29, 33, 0.24);
  border-radius: 43px;
  background: #181318;
  box-shadow: 0 38px 90px rgba(53, 24, 51, 0.26);
  transform: rotate(-5deg);
  animation: phone-float 5s ease-in-out infinite;
}

.phone-top {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 99px;
  background: #181318;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 58px 20px 22px;
  overflow: hidden;
  border-radius: 33px;
  background:
    radial-gradient(circle at 80% 10%, rgba(105, 189, 69, 0.2), transparent 28%),
    linear-gradient(160deg, #fbf8f4, #eee6eb);
}

.phone-brand {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 35% 25%, #d877cf, var(--purple-deep));
  font-size: 1.25rem;
  font-weight: 900;
}

.phone-label {
  margin: 12px 0 26px;
  color: var(--purple-deep);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.message {
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 5px 16px 16px 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(41, 26, 40, 0.08);
}

.message-two {
  margin-left: 25px;
  border-radius: 16px 5px 16px 16px;
  background: #dff1d5;
}

.message small {
  color: var(--purple);
  font-size: 0.63rem;
  font-weight: 850;
  text-transform: uppercase;
}

.message p {
  margin: 5px 0 0;
  color: #3a3039;
  font-size: 0.78rem;
  line-height: 1.5;
}

.signal {
  position: absolute;
  z-index: 3;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(105, 189, 69, 0.4);
  animation: signal 2.4s infinite;
}

.signal-one {
  top: 120px;
  right: 35px;
}

.signal-two {
  bottom: 160px;
  left: 30px;
  animation-delay: 1.2s;
}

.alerts-copy {
  max-width: 630px;
}

.alerts-copy h2 {
  max-width: 650px;
}

.button-whatsapp {
  color: var(--white);
  background: #2c9f50;
  box-shadow: 0 14px 34px rgba(44, 159, 80, 0.18);
}

.button-whatsapp span {
  color: #a9ecbb;
}

.alerts-copy > small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.about-lead {
  margin: 3px 0 45px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 1.4;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-columns p {
  margin: 0;
  color: var(--muted);
}

.manifesto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 105px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  color: var(--purple-deep);
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 3.1rem);
  font-style: italic;
}

.manifesto i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.contact {
  position: relative;
  padding: 145px 0 125px;
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.contact-orb {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.contact-inner {
  position: relative;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact h2 {
  max-width: 900px;
}

.contact-inner > p:not(.eyebrow) {
  margin: 30px 0 52px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-actions a {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 0.3s ease, background 0.3s ease;
}

.contact-actions a:hover {
  color: var(--purple-deep);
  background: var(--green);
}

.contact-actions small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.contact-actions a:hover small {
  color: rgba(77, 22, 77, 0.7);
}

.contact-actions strong {
  overflow: hidden;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
}

.site-footer {
  padding: 78px 0 26px;
  color: rgba(255, 255, 255, 0.66);
  background: #171017;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 1fr 0.7fr;
  gap: 70px;
}

.footer-brand a {
  display: block;
  width: 230px;
  padding: 8px 10px;
  border-radius: 7px;
  background: var(--white);
}

.footer-brand p {
  margin: 22px 0 0;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-title {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  font-size: 0.87rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--green-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 13px 17px;
  border-radius: 99px;
  color: var(--white);
  background: #279b4d;
  box-shadow: 0 10px 35px rgba(21, 92, 47, 0.28);
  font-size: 0.76rem;
  transition: transform 0.3s var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

.floating-whatsapp span {
  color: #b7f2c5;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(105, 189, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(105, 189, 69, 0); }
}

@keyframes slide-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

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

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

@keyframes signal {
  70% { box-shadow: 0 0 0 22px rgba(105, 189, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(105, 189, 69, 0); }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 40px, 960px); }

  .header-inner { grid-template-columns: 205px 1fr auto; gap: 18px; }
  .brand { width: 200px; }
  .header-cta { display: none; }
  .main-nav { justify-content: flex-end; }
  .hero-proof { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .field-grid { gap: 70px; }
  .alerts-grid { gap: 70px; }
  .about-grid { gap: 65px; }
  .footer-grid { grid-template-columns: 1.7fr 0.8fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 32px, 680px); }

  html { scroll-padding-top: 76px; }
  .site-header,
  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 254, 253, 0.98);
    box-shadow: 0 8px 28px rgba(38, 18, 38, 0.08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .header-inner, .is-scrolled .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .brand { width: 176px; padding: 5px 7px; box-shadow: none; }
  .menu-toggle { position: relative; z-index: 3; display: block; }
  .main-nav {
    position: fixed;
    z-index: 2;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    min-height: 440px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    padding: clamp(28px, 6vh, 58px) max(24px, calc((100vw - 680px) / 2 + 16px));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background:
      radial-gradient(circle at 92% 8%, rgba(146, 40, 143, 0.34), transparent 30%),
      radial-gradient(circle at 8% 92%, rgba(105, 189, 69, 0.13), transparent 28%),
      #241126;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.4s var(--ease), visibility 0.4s;
  }
  .main-nav a {
    display: flex;
    width: 100%;
    max-width: 680px;
    min-height: clamp(68px, 11vh, 92px);
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: clamp(1.5rem, 7vw, 2.15rem);
    font-weight: 720;
    letter-spacing: -0.04em;
    line-height: 1.08;
    transition: color 0.25s ease;
  }
  .main-nav a:first-child { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .main-nav a::after {
    content: "↗";
    position: static;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: var(--green-soft);
    background: transparent;
    transform: none;
    transition: color 0.25s ease, background 0.25s ease, transform 0.3s var(--ease);
  }
  .main-nav a:hover,
  .main-nav a:focus-visible { color: var(--green-soft); }
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    color: var(--purple-dark);
    background: var(--green);
    transform: translate(2px, -2px);
  }
  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 760px; height: 100svh; align-items: flex-end; }
  .hero-image { background-position: 61% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(25, 12, 26, 0.82), rgba(25, 12, 26, 0.25)),
      linear-gradient(0deg, rgba(19, 13, 18, 0.9) 0%, rgba(19, 13, 18, 0.24) 70%);
  }
  .hero-content { padding-bottom: 60px; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); line-height: 0.93; }
  .hero-copy { margin-top: 26px; font-size: 1rem; }
  .hero-actions { margin-top: 28px; }
  .button { width: 100%; }
  .scroll-cue { display: none; }

  .section { padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .section-heading h2, .field-copy h2, .alerts-copy h2, .about h2, .contact h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }

  .field-story { padding: 94px 0; }
  .field-grid { grid-template-columns: 1fr; gap: 70px; }
  .field-visual { width: min(100%, 480px); min-height: 440px; margin: 0 auto; }
  .year-stamp { left: 8px; }

  .product-row { grid-template-columns: 40px 1fr 42px; gap: 14px; min-height: 110px; }
  .product-row p { display: none; }
  .product-row:hover { padding-inline: 8px; }
  .product-note { display: grid; gap: 14px; }

  .alerts { padding: 90px 0; }
  .alerts-grid { grid-template-columns: 1fr; gap: 65px; }
  .phone-scene { min-height: 510px; order: 2; }
  .phone { width: 250px; height: 500px; }
  .signal-one { right: 14%; }
  .signal-two { left: 13%; }

  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-columns { grid-template-columns: 1fr; gap: 20px; }
  .manifesto { margin-top: 70px; font-size: clamp(1.2rem, 5.5vw, 2rem); }

  .contact { padding: 100px 0 90px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-actions a { padding: 22px; }
  .contact-actions strong { font-size: 1.1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 8px; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 48px; height: 48px; justify-content: center; padding: 0; }
}

@media (max-width: 440px) {
  :root { --shell: calc(100% - 28px); }
  .hero h1 { font-size: 3.18rem; }
  .hero-eyebrow { font-size: 0.64rem; }
  .hero-actions .button-ghost { display: none; }
  .field-visual { min-height: 370px; }
  .orbit-one { inset: 0; }
  .phone-scene { transform: scale(0.93); }
  .manifesto { gap: 10px; }
  .manifesto i { width: 6px; height: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
