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

:root {
  --green: #005a2b;
  --purple: #3b1e6d;
  --ink: #101010;
  --muted: #5f5f68;
  --soft: #f5f3f0;
  --line: rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

button,
a,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
select {
  cursor: pointer;
  text-decoration: none;
}

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

#loader {
  align-items: center;
  background: black;
  display: flex;
  height: 100%;
  inset: 0;
  justify-content: center;
  position: fixed;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  width: 100%;
  z-index: 99999;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#loader video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 22px 22px, rgba(255, 255, 255, 0.09) 0 2px, transparent 2.5px),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    repeating-radial-gradient(ellipse at 20% 82%, transparent 0 86px, rgba(255, 255, 255, 0.08) 88px 91px, transparent 93px 170px),
    repeating-radial-gradient(ellipse at 82% 8%, transparent 0 100px, rgba(255, 255, 255, 0.07) 102px 105px, transparent 107px 190px),
    linear-gradient(135deg, #073719 0%, #005a2b 52%, #102f1d 100%);
  background-size: 68px 68px, 104px 104px, auto, auto, auto;
  color: white;
  min-height: 70vh;
  overflow: hidden;
  padding: 1rem clamp(1rem, 4vw, 4rem) clamp(4.2rem, 7vw, 6rem);
  position: relative;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.logo-button {
  background: transparent;
  border: 0;
  width: min(210px, 42vw);
}

.topbar-actions { align-items: center; display: flex; gap: 0.65rem; }

.language-switcher {
  align-items: center;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: flex;
  gap: 0.25rem;
  padding: 0.3rem;
}

.language-switcher button {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  height: 32px;
  opacity: 0.58;
  overflow: hidden;
  padding: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  width: 32px;
}

.language-switcher button:hover { opacity: 1; transform: translateY(-1px); }
.language-switcher button[aria-pressed="true"] { border-color: white; opacity: 1; }
.language-switcher img { border-radius: 50%; height: 100%; object-fit: cover; width: 100%; }
body.menu-open .language-switcher { opacity: 0; pointer-events: none; }

.hamburger {
  align-items: center;
  background: transparent;
  border: 0;
  display: grid;
  gap: 6px;
  height: 46px;
  justify-content: center;
  position: relative;
  width: 46px;
  z-index: 10000;
}

.hamburger span {
  background: white;
  border-radius: 999px;
  display: block;
  height: 4px;
  left: 8px;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.25s ease;
  width: 30px;
}

.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 31px; }

.nav-links {
  align-items: center;
  background: linear-gradient(#00371b, #002211), url("assets/menubackground.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100dvh;
  inset: 0;
  justify-content: center;
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5.5rem 1rem 2rem;
  pointer-events: none;
  position: fixed;
  transform: translateX(-100%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  visibility: hidden;
  width: 100vw;
  z-index: 9999;
}

.nav-links.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

body.menu-open { height: 100dvh; overflow: hidden; }
body.menu-open .hamburger { background: rgba(255, 255, 255, 0.1); border-radius: 12px; position: fixed; right: clamp(1rem, 4vw, 4rem); top: 1rem; }
body.menu-open .hamburger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-links button,
.nav-links a {
  background: transparent;
  border: 0;
  color: white;
  font-size: clamp(1.35rem, 4vw, 2.7rem);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content {
  margin: clamp(1.2rem, 4vh, 3rem) auto 0;
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.eyebrow {
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3 {
  font-style: italic;
  font-weight: 900;
  line-height: 0.98;
}

h1 {
  animation: heroTitleGroove 3.8s ease-in-out infinite;
  color: white;
  font-size: clamp(3rem, 8.8vw, 7rem);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  transform-origin: center;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.7rem;
}

.white-btn,
.outline-btn,
.article-card a {
  border-radius: 999px;
  border: 3px solid white;
  font-weight: 900;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.white-btn {
  background: white;
  color: var(--green);
}

.outline-btn {
  background: rgba(0, 0, 0, 0.12);
  color: white;
}

.white-btn:hover,
.outline-btn:hover,
.article-card a:hover {
  transform: translateY(-2px);
}

.white-btn,
.outline-btn {
  position: relative;
  overflow: hidden;
}

.white-btn::after,
.outline-btn::after,
.article-card a::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  content: "";
  height: 140%;
  left: -80%;
  position: absolute;
  top: -20%;
  transform: rotate(18deg);
  width: 42%;
}

.white-btn:hover::after,
.outline-btn:hover::after,
.article-card a:hover::after {
  animation: buttonShine 0.75s ease;
}

.chevron {
  background: transparent;
  border: 0;
  bottom: clamp(2.2rem, 4vw, 3.5rem);
  color: black;
  font-size: 2rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-wave {
  animation: seaWave 6.5s ease-in-out infinite;
  bottom: -1px;
  height: clamp(64px, 9vw, 116px);
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  height: 100%;
  width: 100%;
}

.hero-wave path {
  fill: white;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.about {
  align-items: center;
  display: block;
  gap: 2.5rem;
  margin: 0 auto;
  max-width: 1120px;
  padding-top: clamp(0.8rem, 2.5vw, 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.about-copy h2,
.section-heading h2 {
  color: var(--purple);
  font-size: clamp(2rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-copy p {
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 auto 1rem;
  max-width: 680px;
}

.about-copy .lead {
  font-weight: 900;
}

.media-band {
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    linear-gradient(135deg, #064421, #005a2b 52%, #12371f);
  background-size: 54px 54px, 80px 80px, auto;
  color: white;
  margin-top: -0.75rem;
  overflow: clip;
  padding-bottom: clamp(8.5rem, 13vw, 12rem);
  padding-top: clamp(7rem, 10vw, 9rem);
  position: relative;
}

.media-band .section-heading,
.media-band .slider {
  position: relative;
  z-index: 2;
}

.section-wave {
  animation: seaWave 7.2s ease-in-out infinite;
  height: clamp(86px, 12vw, 160px);
  left: -6%;
  pointer-events: none;
  position: absolute;
  width: 112%;
  z-index: 1;
}

.section-wave svg {
  display: block;
  height: 100%;
  width: 100%;
}

.section-wave path {
  fill: white;
}

.section-wave-top {
  top: -26px;
}

.section-wave-bottom {
  animation-delay: -3.6s;
  bottom: -18px;
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 1120px;
  text-align: center;
}

.media-band .section-heading h2 {
  color: white;
}

.slider {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}

.slider-window {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slide {
  flex: 0 0 33.333%;
  padding: 0 0.35rem;
}

.video-slide iframe {
  aspect-ratio: 16 / 9;
  background: #081b11;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  display: block;
  width: 100%;
}

.video-card {
  background: #081b11;
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  color: white;
  display: block;
  overflow: hidden;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  width: 100%;
}

.project-video-frame {
  aspect-ratio: 16 / 9;
  background: #050806;
  overflow: hidden;
  width: 100%;
}

.video-card video {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.video-card strong {
  display: block;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.25;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
}

.video-card:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px) rotate(-0.35deg);
}

.slider-arrow {
  background: transparent;
  border: 0;
  color: white;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  z-index: 10;
}

.slider-arrow[hidden] {
  display: none;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.12);
}

.slider-arrow.left {
  left: -0.35rem;
}

.slider-arrow.right {
  right: -0.35rem;
}

.dark-arrow {
  color: var(--purple);
}

.reviews {
  background:
    radial-gradient(circle at 18px 18px, rgba(0, 90, 43, 0.09) 0 2px, transparent 2.5px),
    radial-gradient(circle at 80% 18%, rgba(59, 30, 109, 0.08) 0 1px, transparent 2px),
    white;
  background-size: 54px 54px, 90px 90px, auto;
  position: relative;
}

.review-slider .slide {
  flex-basis: 50%;
}

.review-card {
  animation: softFloat 7s ease-in-out infinite;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 240, 0.96)),
    radial-gradient(circle at 90% 14%, rgba(0, 90, 43, 0.16) 0 12px, transparent 13px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 245px;
  padding: 1.4rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card:nth-child(even) {
  animation-delay: -2.2s;
}

.review-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px) rotate(-0.4deg);
}

.review-card blockquote {
  color: #242424;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.3;
}

.review-card figcaption {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.5rem;
}

.review-card span {
  color: var(--muted);
}

.brands {
  background:
    radial-gradient(circle at 12px 12px, rgba(59, 30, 109, 0.09) 0 2px, transparent 2.5px),
    linear-gradient(180deg, #f7f6f3, #ffffff);
  background-size: 58px 58px, auto;
  padding-top: clamp(5.5rem, 9vw, 8rem);
}

.brand-strip {
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
}

.brand-track {
  animation: logoMarquee 28s linear infinite;
  display: flex;
  gap: 1rem;
  width: max-content;
}

.brand-logo {
  align-items: center;
  animation: logoWiggle 4.8s ease-in-out infinite;
  background:
    radial-gradient(circle at 88% 22%, rgba(0, 90, 43, 0.12) 0 10px, transparent 11px),
    white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  height: 96px;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: 180px;
}

.brand-logo:nth-child(3n) {
  animation-delay: -1.1s;
}

.brand-logo:nth-child(3n + 2) {
  animation-delay: -2.4s;
}

.brand-logo:hover {
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.11);
  transform: translateY(-5px) rotate(1deg);
}

.brand-logo img {
  max-height: 58px;
  object-fit: contain;
}

.brand-logo span {
  display: none;
}

.brand-logo.missing-logo span {
  color: var(--purple);
  display: block;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.articles {
  background:
    radial-gradient(circle at 24px 24px, rgba(255, 255, 255, 0.12) 0 2px, transparent 2.5px),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    linear-gradient(135deg, #064421, #005a2b 52%, #12371f);
  background-size: 64px 64px, 96px 96px, auto;
  color: white;
  margin: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
  border-radius: clamp(28px, 5vw, 56px);
  padding-left: clamp(1rem, 4vw, 4rem);
  padding-right: clamp(1rem, 4vw, 4rem);
}

.articles .section-heading h2,
.articles .eyebrow.dark {
  color: white;
}

.article-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.news-section {
  background: white;
  overflow: hidden;
}

.news-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 2rem;
  max-width: 1180px;
}

.news-heading h2 {
  color: var(--green);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-style: italic;
  line-height: 0.88;
  text-transform: uppercase;
}

.news-controls {
  display: flex;
  gap: 0.6rem;
}

.news-controls button {
  align-items: center;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 2rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.news-powered-tape {
  align-items: center;
  background: #101010;
  display: flex;
  height: 58px;
  justify-content: center;
  margin: -0.7rem auto 1.8rem;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  transform: rotate(-1.1deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 285px;
}

.news-powered-tape:hover,
.news-powered-tape:focus-visible {
  box-shadow: 0 8px 0 rgba(0, 90, 43, 0.2);
  outline: 0;
  transform: rotate(0.4deg) translateY(-2px);
}

.news-powered-tape img {
  flex: 0 0 auto;
  height: 270px;
  max-width: none;
  width: 270px;
}

.news-window {
  margin: 0 auto;
  max-width: 1180px;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-window::-webkit-scrollbar { display: none; }

.news-track {
  display: grid;
  gap: 1rem;
  grid-auto-columns: calc((100% - 2rem) / 3);
  grid-auto-flow: column;
}

.news-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: 220px 1fr;
  min-width: 0;
  overflow: hidden;
}

.news-card-image { background: #dfe8e2; overflow: hidden; }
.news-card-image img { height: 100%; object-fit: cover; transition: transform 0.35s ease; width: 100%; }
.news-card:hover .news-card-image img { transform: scale(1.035); }

.news-card-copy {
  align-items: start;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.news-card-copy > span,
.news-dialog .article-meta {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card-copy h3 {
  font-size: 1.35rem;
  line-height: 1.05;
  margin: 0.65rem 0;
}

.news-card-copy p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.news-card-copy button {
  background: transparent;
  border: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: auto;
  padding-top: 1.2rem;
  text-transform: uppercase;
}

.news-card-copy button b { font-size: 1rem; margin-left: 0.35rem; }
.news-dialog { max-height: min(88vh, 900px); overflow-y: auto; padding: 0 0 2.2rem; }
.news-dialog .dialog-close { position: fixed; }
.news-dialog-image { aspect-ratio: 16 / 8; height: auto; object-fit: cover; width: 100%; }
.news-dialog [data-news-detail] > :not(.news-dialog-image) { margin-left: clamp(1.25rem, 4vw, 2.5rem); margin-right: clamp(1.25rem, 4vw, 2.5rem); }
.news-dialog .article-meta { display: block; margin-top: 1.5rem; }
.news-dialog-excerpt { color: var(--green); font-size: 1.05rem; font-weight: 800; }
.news-dialog-body { border-top: 1px solid var(--line); margin-top: 1.25rem; padding-top: 1.25rem; }
body.dialog-open { overflow: hidden; }

.pricing-promo {
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  max-width: 1120px;
}

.pricing-video-frame {
  aspect-ratio: 16 / 9;
  background: #07170e;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(7, 55, 25, 0.2);
  overflow: hidden;
  position: relative;
}

.pricing-video-frame video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pricing-video-frame::after {
  background: linear-gradient(transparent 54%, rgba(0, 28, 13, 0.72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.pricing-video-play {
  align-items: center;
  background: var(--green);
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  height: clamp(66px, 9vw, 92px);
  inset: 50% auto auto 50%;
  justify-content: center;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: clamp(66px, 9vw, 92px);
  z-index: 3;
}

.pricing-video-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.pricing-video-play svg { fill: currentColor; height: 40%; margin-left: 5%; width: 40%; }
.pricing-video-frame.is-playing .pricing-video-play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.82); }

.pricing-video-controls {
  align-items: center;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
  left: 0;
  padding: clamp(0.8rem, 2vw, 1.25rem);
  position: absolute;
  right: 0;
  z-index: 4;
}

.pricing-video-controls button {
  align-items: center;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  color: white;
  display: flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.pricing-video-controls button svg { fill: currentColor; height: 20px; width: 20px; }
.pricing-video-controls .pause-icon { display: none; }
.pricing-video-frame.is-playing .pricing-video-controls .play-icon { display: none; }
.pricing-video-frame.is-playing .pricing-video-controls .pause-icon { display: block; }

.pricing-video-controls input[type="range"] {
  --progress: 0%;
  appearance: none;
  background: linear-gradient(to right, var(--green) var(--progress), rgba(255, 255, 255, 0.48) var(--progress));
  border-radius: 99px;
  cursor: pointer;
  flex: 1;
  height: 7px;
  min-width: 0;
}

.pricing-video-controls input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: var(--green);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.28);
  height: 19px;
  width: 19px;
}

.pricing-video-controls input[type="range"]::-moz-range-thumb {
  background: var(--green);
  border: 3px solid white;
  border-radius: 50%;
  height: 13px;
  width: 13px;
}

.pricing-video-controls span {
  color: white;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 76px;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.pricing-promo figcaption {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding: 1rem 0.25rem 0;
}

.pricing-promo figcaption > span {
  background: white;
  border-radius: 99px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.7rem;
  text-transform: uppercase;
}

.pricing-promo figcaption strong { color: white; font-size: 1rem; }
.pricing-promo figcaption p { color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; line-height: 1.45; margin: 0.2rem 0 0; }

.price-indicator-cta {
  align-items: center;
  background: linear-gradient(125deg, var(--green), #073719 62%, var(--purple));
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 90, 43, 0.2);
  color: white;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto clamp(1.5rem, 4vw, 3rem);
  max-width: 1120px;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-indicator-cta::before {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -45px;
  top: -105px;
  width: 220px;
}

.price-indicator-cta:hover {
  box-shadow: 0 22px 58px rgba(0, 90, 43, 0.3);
  transform: translateY(-3px);
}

.price-indicator-cta span {
  display: grid;
  gap: 0.4rem;
}

.price-indicator-cta small {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-indicator-cta strong {
  font-size: clamp(1.55rem, 4vw, 2.65rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price-indicator-cta em {
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.5;
  opacity: 0.82;
}

.price-indicator-cta b {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: var(--green);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.8rem;
  height: 58px;
  isolation: isolate;
  justify-content: center;
  position: relative;
  width: 58px;
}

.socials-package-card {
  align-items: stretch;
  background: white;
  border-radius: 28px;
  color: var(--ink);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1120px;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.package-label {
  background: #e6f2eb;
  border-radius: 999px;
  color: var(--green);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
}

.socials-package-card h3 {
  color: var(--green);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
}

.client-tape {
  background:
    repeating-linear-gradient(93deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 9px),
    #eadb91;
  box-shadow: 0 5px 13px rgba(39, 36, 17, 0.16);
  clip-path: polygon(2% 7%, 98% 0, 100% 91%, 1% 100%);
  color: #263326 !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.9rem 0 0.25rem !important;
  padding: 0.7rem 1.1rem !important;
  transform: rotate(-1.4deg);
  width: fit-content;
}

.client-tape span { font-size: 0.75rem; font-weight: 700; }
.client-tape strong { color: var(--green); font-size: 0.8rem; font-weight: 900; text-transform: uppercase; }

.socials-package-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0.9rem 0 1rem;
  max-width: 680px;
}

.socials-package-card ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials-package-card li { font-size: 0.86rem; font-weight: 700; padding-left: 1.5rem; position: relative; }
.socials-package-card li::before { color: var(--green); content: "✓"; font-weight: 900; left: 0; position: absolute; }

.package-price {
  align-items: center;
  background: var(--green);
  border-radius: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 245px;
  padding: 1.5rem;
  text-align: center;
}

.package-price > strong { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 900; letter-spacing: -0.06em; line-height: 1; }
.package-price > span { font-size: 0.75rem; font-weight: 800; margin-top: 0.3rem; opacity: 0.75; text-transform: uppercase; }
.package-price a { background: white; border-radius: 999px; color: var(--green); font-size: 0.78rem; font-weight: 900; margin-top: 1.25rem; padding: 0.75rem 1rem; text-transform: uppercase; }
.package-price a b { margin-left: 0.4rem; }

.article-card {
  animation: cardRise 0.7s ease both;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 100% 0, rgba(59, 30, 109, 0.16) 0 34px, transparent 35px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 310px;
  padding: 1.25rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.article-card:nth-child(2) {
  animation-delay: 0.1s;
}

.article-card:nth-child(3) {
  animation-delay: 0.2s;
}

.article-card:hover {
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px) rotate(0.45deg);
}

.article-card p,
.article-meta {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  color: var(--purple);
  font-size: 1.55rem;
  line-height: 1.05;
}

.article-card strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-card span {
  color: #333;
  line-height: 1.55;
}

.article-card a {
  align-items: center;
  background: var(--green);
  border-color: var(--green);
  color: white;
  display: inline-flex;
  margin-top: auto;
  overflow: hidden;
  position: relative;
  width: fit-content;
}

@keyframes heroTitleGroove {
  0%,
  100% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.34), 0 0 0 rgba(217, 255, 233, 0);
    transform: translateY(0) rotate(-0.55deg) scale(1);
  }
  18% {
    transform: translateY(-5px) rotate(0.55deg) scale(1.018) skewX(-1deg);
  }
  35% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 0 10px 22px rgba(0, 0, 0, 0.34), 0 0 34px rgba(217, 255, 233, 0.36);
    transform: translateY(-2px) rotate(0.2deg) scale(1.028);
  }
  52% {
    transform: translateY(2px) rotate(-0.25deg) scale(1.006) skewX(0.8deg);
  }
  68% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.34), 0 0 18px rgba(255, 255, 255, 0.24);
    transform: translateY(1px) rotate(-0.4deg) scale(0.998);
  }
}

@keyframes waveDrift {
  0%,
  100% {
    transform: translateX(0) translateY(0) scaleX(1);
  }
  50% {
    transform: translateX(-1.8%) translateY(7px) scaleX(1.045);
  }
}

@keyframes seaWave {
  0%,
  100% {
    transform: translateX(-2%) translateY(0) scaleX(1.05) scaleY(1);
  }
  20% {
    transform: translateX(1.6%) translateY(5px) scaleX(1.09) scaleY(0.94);
  }
  45% {
    transform: translateX(-3.2%) translateY(11px) scaleX(1.13) scaleY(1.08);
  }
  70% {
    transform: translateX(2.2%) translateY(4px) scaleX(1.08) scaleY(0.98);
  }
}

@keyframes buttonShine {
  from {
    left: -80%;
  }
  to {
    left: 130%;
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes logoBob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(-0.6deg);
  }
}

@keyframes logoWiggle {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  25% {
    transform: translateY(-6px) rotate(1.1deg);
  }
  50% {
    transform: translateY(2px) rotate(-0.9deg);
  }
  75% {
    transform: translateY(-4px) rotate(0.6deg);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.article-dialog {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  margin: auto;
  max-width: 760px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  width: min(92vw, 760px);
}

.article-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.dialog-close {
  background: black;
  border: 0;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  height: 40px;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 40px;
}

#articleDetail h2 {
  color: var(--purple);
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 1rem 2rem 1rem 0;
}

#articleDetail p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-section {
  background: linear-gradient(145deg, #073719, var(--green) 62%, var(--purple));
  color: white;
}

.contact-heading { margin: 0 auto 2rem; max-width: 1120px; text-align: center; }
.contact-heading h2 { font-size: clamp(2.4rem, 6vw, 5rem); text-transform: uppercase; }
.contact-heading > p:last-child { line-height: 1.6; margin: 1rem auto 0; max-width: 680px; opacity: 0.78; }

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  margin: 0 auto;
  max-width: 1120px;
}

.contact-details, .homepage-contact-form { border-radius: 24px; padding: clamp(1.35rem, 4vw, 2.3rem); }
.contact-details { background: rgba(0, 0, 0, 0.18); border: 1px solid rgba(255, 255, 255, 0.16); }
.contact-kicker { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; margin: 0 0 0.75rem; text-transform: uppercase; }
.contact-details h3, .location-copy h3 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
.contact-details > p:not(.contact-kicker) { line-height: 1.6; margin: 1rem 0 1.5rem; opacity: 0.75; }
.contact-links { display: grid; gap: 0.7rem; }
.contact-links a { align-items: center; background: rgba(255, 255, 255, 0.1); border-radius: 14px; display: flex; gap: 0.8rem; padding: 0.8rem; }
.contact-links a > span { align-items: center; background: white; border-radius: 50%; color: var(--green); display: flex; flex: 0 0 auto; font-weight: 900; height: 40px; justify-content: center; width: 40px; }
.contact-links a div { display: grid; gap: 0.15rem; }
.contact-links small { font-size: 0.64rem; opacity: 0.68; text-transform: uppercase; }
.contact-links strong { font-size: 0.82rem; }

.homepage-contact-form { background: white; color: var(--ink); display: grid; gap: 1rem; }
.contact-form-row { display: grid; gap: 0.8rem; grid-template-columns: 1fr 1fr; }
.homepage-contact-form label { display: grid; font-size: 0.78rem; font-weight: 800; gap: 0.4rem; }
.homepage-contact-form label b { color: #a52626; }
.homepage-contact-form label small { color: var(--muted); font-weight: 400; }
.homepage-contact-form input:not([type="checkbox"]), .homepage-contact-form select, .homepage-contact-form textarea { background: #f7f7f5; border: 1px solid #d9ddd9; border-radius: 11px; min-height: 49px; padding: 0.75rem 0.85rem; width: 100%; }
.homepage-contact-form textarea { min-height: 125px; resize: vertical; }
.homepage-contact-form input:focus, .homepage-contact-form select:focus, .homepage-contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 90, 43, 0.12); outline: 0; }
.contact-consent { align-items: flex-start; display: flex !important; font-size: 0.7rem !important; font-weight: 500 !important; line-height: 1.45; }
.contact-consent input { accent-color: var(--green); flex: 0 0 auto; margin-top: 0.15rem; }
.homepage-contact-form > button { align-items: center; background: var(--green); border: 0; border-radius: 999px; color: white; display: flex; font-weight: 900; gap: 0.8rem; justify-content: center; min-height: 52px; padding: 0.8rem 1.2rem; text-transform: uppercase; }
.homepage-contact-form > button:hover { background: var(--green-dark); transform: translateY(-1px); }
.contact-trap { height: 0; left: -9999px; overflow: hidden; position: absolute; width: 0; }
.contact-status { background: #e6f4eb; border-radius: 10px; color: var(--green); font-size: 0.8rem; font-weight: 700; line-height: 1.45; padding: 0.85rem; }
.contact-status.is-error { background: #fff0f0; color: #a52626; }

.location-card { background: white; border-radius: 24px; color: var(--ink); display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); margin: 1rem auto 0; max-width: 1120px; overflow: hidden; }
.location-copy { padding: clamp(1.4rem, 4vw, 2.4rem); }
.location-copy .contact-kicker { color: var(--green); }
.location-copy > p:not(.contact-kicker) { color: var(--muted); line-height: 1.6; margin: 0.9rem 0; }
.location-copy .address-notice { background: #f3eff9; border-left: 3px solid var(--purple); border-radius: 0 8px 8px 0; color: var(--purple) !important; font-size: 0.78rem; font-weight: 800; padding: 0.7rem 0.85rem; }
.location-copy > a { color: var(--green); display: inline-block; font-size: 0.78rem; font-weight: 900; margin-top: 0.4rem; text-transform: uppercase; }
.location-card iframe { border: 0; height: 100%; min-height: 360px; width: 100%; }

.floating-price-link {
  align-items: center;
  animation: priceFloat 3.2s ease-in-out infinite;
  background: var(--green);
  border: 3px solid white;
  border-radius: 999px;
  bottom: 1.25rem;
  box-shadow: 0 12px 34px rgba(0, 55, 27, 0.34);
  color: white;
  display: flex;
  gap: 0.65rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  position: fixed;
  right: 1.25rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9000;
}

.floating-price-link > span {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: var(--green);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.15rem;
  font-weight: 900;
  height: 39px;
  justify-content: center;
  width: 39px;
}

.floating-price-link strong { font-size: 0.78rem; font-style: italic; font-weight: 900; text-transform: uppercase; }
.floating-price-link:hover { animation-play-state: paused; transform: translateY(-3px) scale(1.02); }
body.menu-open .floating-price-link { opacity: 0; pointer-events: none; }

.floating-socials {
  display: grid;
  gap: 5px;
  left: 0;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  z-index: 8500;
}

.floating-social-link {
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  height: 58px;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, width 0.2s ease;
  width: 58px;
}

.floating-social-link.instagram { background: linear-gradient(145deg, #833ab4, #fd1d1d 55%, #fcb045); }
.floating-social-link.tiktok { background: #101010; }
.floating-social-link svg { fill: none; height: 30px; overflow: visible; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.6; width: 30px; }
.floating-social-link .social-dot { fill: currentColor; stroke: none; }
.floating-social-link::after {
  background: #111;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  color: white;
  content: attr(data-social-label);
  font-size: 0.7rem;
  font-weight: 900;
  left: calc(100% - 5px);
  opacity: 0;
  padding: 0.55rem 0.7rem;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  visibility: hidden;
  white-space: nowrap;
  z-index: -1;
}

.floating-social-link:hover { transform: translateX(4px); }
.floating-social-link:hover::after { opacity: 1; transform: translateX(0); visibility: visible; }
body.menu-open .floating-socials { opacity: 0; pointer-events: none; }

@keyframes priceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

footer {
  background: linear-gradient(to bottom, white, #787878, #111);
  color: white;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
  padding: 2rem 1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-track { grid-auto-columns: calc((100% - 1rem) / 2); }
}

@media (max-width: 760px) {
  .news-heading { align-items: center; }
  .news-controls button { height: 42px; width: 42px; }
  .news-powered-tape { height: 52px; margin-bottom: 1.4rem; width: 245px; }
  .news-powered-tape img { height: 235px; width: 235px; }
  .news-track { grid-auto-columns: 88%; }
  .news-card { grid-template-rows: 190px 1fr; }
  .floating-socials { gap: 3px; }
  .floating-social-link { border-radius: 0 11px 11px 0; height: 48px; width: 48px; }
  .floating-social-link svg { height: 25px; width: 25px; }
  .floating-social-link::after { display: none; }
  .topbar-actions { gap: 0.35rem; }
  .language-switcher { gap: 0.1rem; padding: 0.2rem; }
  .language-switcher button { height: 27px; width: 27px; }
  .floating-price-link { bottom: 0.85rem; right: 0.85rem; }
  .floating-price-link strong { font-size: 0.7rem; }
  .contact-grid, .location-card { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .location-card iframe { min-height: 300px; }
  .socials-package-card { grid-template-columns: 1fr; }
  .package-price { min-width: 0; }
  .pricing-video-frame { border-radius: 18px; }
  .pricing-video-controls { gap: 0.5rem; padding: 0.65rem; }
  .pricing-video-controls button { height: 34px; width: 34px; }
  .pricing-video-controls span { font-size: 0.62rem; min-width: 65px; }
  .pricing-promo figcaption { align-items: flex-start; }
  .pricing-promo figcaption p { display: none; }
  .price-indicator-cta b {
    height: 46px;
    width: 46px;
  }
  .hero {
    min-height: 70vh;
    padding-bottom: 5rem;
  }

  .media-band {
    padding-bottom: 7rem;
    padding-top: 5.5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 5.2rem);
  }

  .slide,
  .review-slider .slide {
    flex-basis: 100%;
  }

  .slider-arrow {
    font-size: 3.2rem;
  }

  .slider-arrow.left {
    left: -0.6rem;
  }

  .slider-arrow.right {
    right: -0.6rem;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 0;
  }
}
