/* Volte Advantage — Hostinger static site
   Palette from brand greens; light atmospheric, not default dark UI */

:root {
  --leaf: #9fd43a;
  --lime: #7cbc2a;
  --emerald: #1f6b32;
  --forest: #0f3d22;
  --ink: #122018;
  --mute: #3d5646;
  --mist: #e8f2e0;
  --sand: #f3f7ef;
  --paper: #fbfdf8;
  --line: rgba(15, 61, 34, 0.14);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(159, 212, 58, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(31, 107, 50, 0.12), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand) 45%, #e7efe2 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--emerald);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: white;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* —— Top bar —— */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem clamp(1rem, 3vw, 2rem);
  background: rgba(251, 253, 248, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.top__brand {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  letter-spacing: -0.02em;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
}

.top__nav {
  display: flex;
  gap: 1.4rem;
}

.top__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mute);
  text-decoration: none;
}

.top__nav a:hover {
  color: var(--forest);
}

.top__cta {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 0.1rem;
}

@media (max-width: 720px) {
  .top__nav {
    display: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn--primary {
  background: var(--forest);
  color: #f4fbea;
}

.btn--primary:hover {
  background: var(--emerald);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(15, 61, 34, 0.28);
}

.btn--ghost:hover {
  border-color: var(--emerald);
  background: rgba(159, 212, 58, 0.12);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(0.2rem, 1vw, 0.55rem) clamp(1rem, 2.5vw, 1.75rem) 3.5rem;
  overflow: visible;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(251, 253, 248, 0.92) 0%, rgba(251, 253, 248, 0.55) 42%, rgba(15, 61, 34, 0.08) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 38px,
      rgba(31, 107, 50, 0.035) 38px,
      rgba(31, 107, 50, 0.035) 39px
    );
  pointer-events: none;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-2%, 3%) scale(1.04); }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(300px, 0.85fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
  text-align: left;
}

.hero__brand {
  width: 100%;
  margin: -0.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: rise 1s var(--ease) both;
}

/* —— Independent: logo —— */
.hero__logo-wrap {
  /* move/size this without affecting the statement */
  width: min(100%, 38rem);
  margin: 0 0 1rem -0.85rem;
}

.hero__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: fill;
  aspect-ratio: 2.9 / 1;
  background: transparent;
}

/* —— Independent: statement —— */
.hero__statement {
  /* wider toward circle; does not stretch the logo */
  width: min(100%, 48rem);
  max-width: calc(100% + 2rem);
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.12rem, 2.3vw, 1.35rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--emerald);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  width: min(100%, 36rem);
  margin: 0.5rem 0 0 1.25rem; /* nudge right, still clear of the globe */
  padding: 0;
  box-sizing: border-box;
}

.hero__actions .btn {
  flex: 1 1 0;
  min-width: 9.5rem;
  max-width: 16rem;
}

/* Gateway line lives in the green circle */
.hero__orb {
  width: min(100%, 420px);
  aspect-ratio: 1.06 / 1; /* gentler stretch — closer to round */
  margin: -0.35rem 0.85rem 0 auto; /* near right, not hard against edge */
  justify-self: end;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9% 11% 11%;
  /* Deeper orb = more luster + readable cream type */
  background:
    radial-gradient(
      circle at 36% 30%,
      #b7e85a 0%,
      #6aaa28 28%,
      #1f6b32 58%,
      #0c2f1a 100%
    );
  box-shadow:
    inset 0 -22px 48px rgba(5, 20, 10, 0.45),
    inset 0 12px 28px rgba(255, 255, 255, 0.08);
  animation: rise 1s var(--ease) 0.12s both, drift 14s var(--ease) infinite alternate;
}

.hero__headline {
  margin: 0 0 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.05rem, 4.1vw, 3.15rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #f7ffe9;
  text-align: center;
  text-transform: lowercase;
  max-width: 8ch;
  transform: translateY(-0.55rem); /* gateway block sits a bit higher */
}

.hero__lede {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(0.84rem, 1.35vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: #f4fbea;
  text-align: center;
  transform: translateY(-0.2rem);
  text-shadow: 0 1px 2px rgba(5, 20, 10, 0.35);
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--soft {
  font-weight: 600;
  font-size: 0.48em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 251, 234, 0.78);
  margin: 0.22em 0 0.12em;
}

.hero__headline-line--kick {
  font-size: 1.22em;
  letter-spacing: -0.055em;
  background: linear-gradient(180deg, #f7ffe9 10%, #c8ef6a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 820px) {
  .hero__content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-left: 0;
  }

  .hero__brand {
    width: min(92vw, 42ch);
    margin: 0;
  }

  .hero__actions {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .hero__orb {
    margin: 0.15rem auto 0;
    width: min(88vw, 400px);
    justify-self: center;
  }
}

.hero__road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background:
    linear-gradient(90deg, transparent, rgba(15, 61, 34, 0.18) 20%, rgba(15, 61, 34, 0.18) 80%, transparent),
    repeating-linear-gradient(
      90deg,
      rgba(159, 212, 58, 0.55) 0 18px,
      transparent 18px 36px
    );
  background-size: 100% 3px, 200% 3px;
  background-position: center 50%, 0 50%;
  background-repeat: no-repeat;
  opacity: 0.55;
  animation: road 18s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

@keyframes road {
  to { background-position: center 50%, -200% 50%; }
}

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

@media (max-width: 900px) {
  .hero {
    padding-top: 0.65rem;
  }
}

/* —— Shared section type —— */
.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.18;
  color: var(--forest);
}

/* —— Presence —— */
.presence {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(15, 61, 34, 0.94), rgba(18, 48, 28, 0.98)),
    var(--forest);
  color: #e7f5dc;
}

.presence__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.presence h2 {
  color: #f4fbea;
}

.presence__text {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(231, 245, 220, 0.86);
  max-width: 42ch;
}

/* —— Focus —— */
.focus {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.focus__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.focus__list {
  list-style: none;
  margin: 2.2rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.focus__list li {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1rem 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.focus__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--forest);
}

.focus__desc {
  color: var(--mute);
  font-weight: 300;
  font-size: 1.05rem;
}

.focus__note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mute);
  max-width: 48ch;
}

@media (max-width: 640px) {
  .focus__list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* —— Contact —— */
.contact {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.contact__inner {
  width: min(100%, 640px);
  margin: 0 auto;
}

.contact__text {
  margin: 0 0 1.75rem;
  color: var(--mute);
  font-weight: 300;
  font-size: 1.08rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute);
}

.contact__full {
  grid-column: 1 / -1;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid rgba(124, 188, 42, 0.55);
  outline-offset: 1px;
  border-color: var(--lime);
}

.contact__form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.35rem;
  border: none;
}

.contact__alt {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--mute);
}

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

/* —— Footer —— */
.foot {
  padding: 2.5rem clamp(1rem, 3vw, 2rem) 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--mute);
}

.foot p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.foot__fine {
  font-size: 0.82rem;
  opacity: 0.8;
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}
