:root {
  --green-900: #003f2f;
  --green-800: #075b3e;
  --green-700: #008653;
  --green-600: #12a667;
  --green-100: #e7f7ec;
  --gold-500: #f4a622;
  --gold-100: #fff2d6;
  --sky-100: #e9f7fb;
  --ink: #18332b;
  --muted: #5d7069;
  --line: #dce8e1;
  --surface: #ffffff;
  --page: #f5f8f4;
  --shadow: 0 24px 60px rgba(20, 70, 45, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes connectionPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.44;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.84;
  }

  100% {
    transform: scale(0.96);
    opacity: 0.44;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(244, 166, 34, 0.18);
  }

  50% {
    box-shadow: 0 0 0 13px rgba(244, 166, 34, 0.09);
  }
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

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

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 122, 77, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 26px rgba(20, 70, 45, 0.055);
}

.header-top {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 355px;
  max-width: 46vw;
  display: block;
}

.primary-nav,
.secondary-nav {
  display: flex;
  align-items: center;
}

.primary-nav a,
.secondary-nav a {
  cursor: pointer;
}

.primary-nav {
  gap: 18px;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 800;
}

.primary-nav a,
.secondary-nav a {
  white-space: nowrap;
}

.nav-featured {
  margin-right: 10px;
  font-size: 19px;
}

.header-button {
  min-height: 46px;
  padding: 0 20px;
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 122, 77, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-button:hover,
.button-primary:hover {
  background: #007648;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 122, 77, 0.22);
}

.header-subnav {
  border-top: 1px solid rgba(0, 122, 77, 0.14);
  border-bottom: 1px solid rgba(0, 122, 77, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 249, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.secondary-nav {
  min-height: 58px;
  justify-content: center;
  gap: 70px;
  color: var(--green-900);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.secondary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.secondary-nav .nav-login {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--green-700);
  border-radius: 6px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  background:
    linear-gradient(135deg, rgba(231, 247, 236, 0.94), rgba(233, 247, 251, 0.92)),
    radial-gradient(circle at 80% 18%, rgba(244, 166, 34, 0.24), transparent 28%),
    var(--page);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(10, 155, 95, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: 60px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.positioning h2,
.profile-card h2 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: var(--green-900);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: 55px;
  line-height: 1.06;
}

.hero h1 span {
  display: block;
}

.hero h1::first-letter {
  letter-spacing: 0;
}

.lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.supporting-lead {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.brand-word {
  font-weight: 900;
}

.brand-word span {
  color: #8fbd3a;
}

.brand-word strong {
  color: var(--gold-500);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 122, 77, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button-secondary {
  background: #fff;
  color: var(--green-900);
  border: 1px solid var(--green-700);
}

.hero-panel {
  position: relative;
  min-height: 520px;
  padding: 32px;
  border: 1px solid rgba(0, 122, 77, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(231, 247, 236, 0.68)),
    url("../../img/content/agro6.jpg") center/cover;
  background-blend-mode: screen;
  box-shadow: var(--shadow);
  animation: fadeLift 520ms ease both;
}

.network-card,
.signal-card {
  position: absolute;
  width: 250px;
  padding: 22px;
  border: 1px solid rgba(0, 122, 77, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(28, 67, 48, 0.12);
  animation: fadeLift 560ms ease both;
}

.producer-card {
  top: 34px;
  left: 28px;
}

.buyer-card {
  right: 22px;
  bottom: 24px;
  animation-delay: 120ms;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.network-card strong,
.signal-card strong {
  display: block;
  color: var(--green-900);
  font-size: 19px;
  line-height: 1.2;
}

.network-card p,
.signal-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.connection-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.connection-line span {
  width: 256px;
  height: 256px;
  border: 2px dashed rgba(0, 122, 77, 0.72);
  border-radius: 50%;
  animation: connectionPulse 3.2s ease-in-out infinite;
  transform-origin: center;
  background: rgba(0, 122, 77, 0.075);
}

.signal-card {
  left: 54%;
  top: 41.5%;
  bottom: auto;
  width: 300px;
  min-width: 300px;
  padding: 13px 16px;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 122, 77, 0.16);
  z-index: 2;
  animation-delay: 220ms;
  box-shadow: 0 18px 42px rgba(0, 83, 55, 0.2);
}

.signal-card strong,
.signal-card p {
  color: var(--green-900);
}

.signal-card strong {
  font-size: 20px;
  white-space: nowrap;
}

.signal-card p {
  grid-column: 2;
  margin-top: 0;
  opacity: 0.86;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.signal-brand span {
  color: #84b82f;
}

.signal-brand em {
  color: #f0a51c;
  font-style: normal;
}

.signal-dot {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0;
  border-radius: 50%;
  background: #ffb21f;
  border: 3px solid rgba(255, 244, 205, 0.95);
  box-shadow: 0 0 0 8px rgba(255, 178, 31, 0.24), 0 0 26px rgba(255, 164, 18, 0.76);
  animation: dotPulse 2.4s ease-in-out infinite;
}

.signal-dot::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 174, 24, 0.9);
  animation: connectionPulse 2.8s ease-in-out infinite;
}

.profiles,
.how-it-works,
.about-section,
.contact-section,
.positioning {
  padding: 54px 0;
}

.profiles,
.how-it-works,
.about-section,
.contact-section {
  min-height: calc(100vh - 184px);
  scroll-margin-top: 184px;
}

.profile-card {
  scroll-margin-top: 220px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.profile-card {
  min-height: 286px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 18px 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(20, 70, 45, 0.08);
}

.profile-focus {
  position: relative;
  min-height: calc(100vh - 184px);
  padding: 70px 0;
  scroll-margin-top: 184px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-blend-mode: normal;
}

.profile-focus::before,
.profile-focus::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.profile-focus::before {
  inset: 24px 4% 24px auto;
  width: min(620px, 48vw);
  border: 1px solid rgba(0, 122, 77, 0.16);
  border-radius: 42% 58% 48% 52%;
  background:
    linear-gradient(90deg, rgba(0, 122, 77, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 122, 77, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.78;
  transform: rotate(-6deg);
}

.profile-focus::after {
  inset: auto auto 54px 8%;
  width: min(460px, 40vw);
  height: 160px;
  background:
    radial-gradient(circle at 12% 40%, rgba(0, 122, 77, 0.35) 0 4px, transparent 5px),
    radial-gradient(circle at 42% 24%, rgba(244, 166, 34, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 58%, rgba(0, 122, 77, 0.28) 0 4px, transparent 5px),
    linear-gradient(125deg, transparent 0 18%, rgba(0, 122, 77, 0.18) 19% 20%, transparent 21% 48%, rgba(244, 166, 34, 0.2) 49% 50%, transparent 51%);
  opacity: 0.72;
}

.profile-map-bg {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(660px, 52vw);
  transform: translate(-50%, -50%);
  color: rgba(0, 91, 62, 0.17);
  pointer-events: none;
  z-index: 0;
}

.profile-focus-buyer .profile-map-bg {
  color: rgba(244, 166, 34, 0.2);
}

.profile-map-bg svg {
  width: 100%;
  display: block;
  filter: drop-shadow(0 28px 52px rgba(20, 70, 45, 0.08));
}

.profile-map-bg path:first-child {
  fill: currentColor;
  stroke: rgba(0, 91, 62, 0.13);
  stroke-width: 2;
}

.profile-map-bg circle {
  fill: rgba(0, 134, 83, 0.28);
}

.profile-focus-buyer .profile-map-bg circle {
  fill: rgba(244, 166, 34, 0.34);
}

.profile-map-bg .map-line {
  fill: none;
  stroke: rgba(0, 134, 83, 0.26);
  stroke-width: 4;
  stroke-dasharray: 9 10;
  animation: connectionPulse 3.4s ease-in-out infinite;
}

.profile-focus-buyer .profile-map-bg .map-line {
  stroke: rgba(244, 166, 34, 0.32);
}

.profile-focus-producer {
  background:
    radial-gradient(circle at 22% 24%, rgba(244, 166, 34, 0.12), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(0, 134, 83, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(247, 251, 246, 0.98), rgba(238, 248, 241, 0.98));
}

.profile-focus-buyer {
  background:
    radial-gradient(circle at 18% 74%, rgba(244, 166, 34, 0.14), transparent 30%),
    radial-gradient(circle at 78% 24%, rgba(0, 134, 83, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(246, 251, 244, 0.98));
}

.profile-single {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.profile-focus .profile-card {
  width: min(760px, 100%);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 46px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 248, 0.94));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: fadeLift 520ms ease both, slowFloat 6.5s ease-in-out 800ms infinite;
  overflow: hidden;
  position: relative;
}

.profile-focus .profile-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(0, 122, 77, 0.13);
  border-radius: 8px;
  pointer-events: none;
}

.profile-focus .profile-card::after {
  content: "";
  position: absolute;
  right: -82px;
  top: -82px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 77, 0.13), transparent 68%);
  pointer-events: none;
}

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

.profile-focus .profile-card:hover {
  border-color: rgba(0, 122, 77, 0.24);
  box-shadow: 0 22px 58px rgba(20, 70, 45, 0.13);
  transform: translateY(-3px);
}

.onboarding-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 134, 83, 0.98), rgba(0, 104, 70, 0.96));
  box-shadow: 0 22px 48px rgba(0, 122, 77, 0.18);
  display: grid;
  place-items: center;
  position: relative;
}

.onboarding-icon svg {
  width: 70px;
  height: 70px;
  overflow: visible;
}

.onboarding-icon .icon-sun,
.onboarding-icon .icon-fruit-gold {
  fill: #f7b22a;
}

.onboarding-icon .icon-hill,
.onboarding-icon .icon-tractor-body,
.onboarding-icon .icon-tractor-cab,
.onboarding-icon .icon-counter {
  fill: rgba(255, 255, 255, 0.94);
}

.onboarding-icon .icon-tractor-window {
  fill: #bfe7d8;
}

.onboarding-icon .icon-row {
  fill: none;
  stroke: rgba(0, 104, 70, 0.72);
  stroke-linecap: round;
  stroke-width: 3;
}

.onboarding-icon .icon-wheel {
  fill: #004b36;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3;
}

.profile-buyer .onboarding-icon {
  background: linear-gradient(135deg, rgba(244, 166, 34, 0.98), rgba(236, 151, 17, 0.96));
  box-shadow: 0 22px 48px rgba(244, 166, 34, 0.18);
}

.onboarding-icon .icon-awning {
  fill: rgba(255, 255, 255, 0.96);
}

.onboarding-icon .icon-stand {
  fill: rgba(255, 255, 255, 0.9);
}

.onboarding-icon .icon-crate {
  fill: rgba(0, 104, 70, 0.82);
}

.onboarding-icon .icon-crate-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-linecap: round;
  stroke-width: 3;
}

.onboarding-icon .icon-fruit-green {
  fill: #008653;
}

.onboarding-icon .icon-fruit-light {
  fill: #e8f6ec;
}

.onboarding-icon .icon-stem {
  fill: none;
  stroke: #008653;
  stroke-linecap: round;
  stroke-width: 4;
}

.profile-focus .card-kicker {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.profile-focus .profile-card h2 {
  max-width: 660px;
  font-size: 38px;
  line-height: 1.18;
}

.profile-focus .profile-card p:not(.card-kicker) {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 18px;
}

.profile-focus .profile-card .profile-subtitle {
  max-width: 620px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.45;
}

.profile-focus .profile-card .profile-note {
  max-width: 610px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.profile-focus .profile-card .text-link {
  grid-column: auto;
  margin-top: 36px;
  min-width: 238px;
  font-size: 20px;
  padding: 15px 24px;
  border: 1px solid rgba(0, 122, 77, 0.2);
  border-radius: 7px;
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 122, 77, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.profile-focus .profile-card .text-link:hover {
  border-color: rgba(0, 122, 77, 0.32);
  box-shadow: 0 22px 42px rgba(0, 122, 77, 0.2);
  transform: translateY(-2px);
}

.profile-card .text-link {
  grid-column: 2;
}

.profile-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.profile-producer .profile-icon {
  background: var(--green-700);
}

.profile-buyer .profile-icon {
  background: var(--gold-500);
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-card h2 {
  font-size: 26px;
  line-height: 1.2;
}

.profile-card p:not(.card-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.text-link {
  color: var(--green-700);
  font-weight: 800;
}

.how-it-works {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.positioning h2 {
  font-size: 36px;
  line-height: 1.18;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbf7);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-100);
  color: #9b6100;
  font-weight: 900;
}

.step-card h3 {
  margin: 22px 0 10px;
  color: var(--green-900);
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.about-section {
  background: var(--page);
}

.about-inner {
  min-height: calc(100vh - 300px);
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.about-inner > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.about-section h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 34px;
  line-height: 1.2;
}

.about-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 16px;
}

.contact-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card {
  min-height: calc(100vh - 300px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f4fbf6);
  box-shadow: 0 16px 38px rgba(28, 67, 48, 0.08);
}

.contact-card h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 34px;
  line-height: 1.2;
}

.contact-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.contact-email {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green-800);
  font-weight: 900;
}

.positioning-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: center;
  padding: 58px;
  border: 1px solid rgba(0, 122, 77, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 22%, rgba(244, 166, 34, 0.14), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(0, 122, 77, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4fbf7);
  color: var(--green-900);
  box-shadow: 0 24px 54px rgba(20, 70, 45, 0.08);
}

.positioning .eyebrow,
.positioning h2 {
  color: var(--green-900);
}

.positioning-copy h2 {
  max-width: 650px;
  font-size: 48px;
  line-height: 1.08;
}

.positioning-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--green-800);
  font-size: 24px;
  line-height: 1.42;
  font-weight: 700;
}

.positioning-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.positioning-points {
  display: grid;
  gap: 14px;
}

.positioning-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(0, 122, 77, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(20, 70, 45, 0.06);
}

.positioning-footer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 122, 77, 0.12);
  color: var(--green-800);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .header-top {
    min-height: auto;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 300px;
    max-width: 100%;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
  }
}

.site-footer-modern {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer-modern-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer-modern-inner p {
  margin: 0;
}

.site-footer-modern-inner nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-modern-inner a {
  color: var(--green-800);
  font-weight: 800;
}

.install-prompt[hidden] {
  display: none !important;
}

.install-prompt {
  bottom: 14px;
  left: 14px;
  position: fixed;
  right: 14px;
  z-index: 9999;
}

.install-prompt-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 134, 83, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(0, 75, 54, 0.22);
  display: grid;
  gap: 12px;
  grid-template-columns: 48px 1fr;
  margin: 0 auto;
  max-width: 460px;
  padding: 14px;
}

.install-prompt-icon {
  border-radius: 14px;
  height: 48px;
  width: 48px;
}

.install-prompt-copy strong {
  color: var(--green-900);
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.install-prompt-copy p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 3px 0 0;
}

.install-prompt-copy .install-prompt-help {
  background: #f0faf5;
  border-radius: 10px;
  color: var(--green-700);
  font-weight: 700;
  margin-top: 8px;
  padding: 8px 10px;
}

.install-prompt-actions {
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
}

.install-prompt-actions button {
  border-radius: 12px;
  cursor: pointer;
  flex: 1;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 12px;
}

.install-prompt-primary {
  background: var(--green-600);
  border: 1px solid var(--green-600);
  box-shadow: 0 12px 22px rgba(0, 134, 83, 0.2);
  color: #fff;
}

.install-prompt-close {
  background: #fff;
  border: 1px solid rgba(0, 75, 54, 0.18);
  color: var(--green-900);
}

@media (min-width: 821px) {
  .install-prompt {
    display: none !important;
  }
}

.instagram-icon-link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background:
    radial-gradient(circle at 32% 100%, #fed373 0 16%, transparent 31%),
    radial-gradient(circle at 12% 86%, #f15245 0 20%, transparent 34%),
    radial-gradient(circle at 88% 10%, #4f5bd5 0 20%, transparent 36%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  font-size: 0;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.instagram-icon-link span {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
}

.instagram-icon-link span::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.instagram-icon-link:hover {
  transform: translateY(-3px);
}

.legal-main {
  background:
    radial-gradient(circle at 86% 12%, rgba(244, 166, 34, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(231, 247, 236, 0.9), rgba(255, 255, 255, 0.95));
  padding: 58px 0 76px;
}

.legal-card {
  max-width: 920px;
  padding: 52px;
  border: 1px solid rgba(0, 122, 77, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(20, 70, 45, 0.08);
}

.legal-card h1 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  color: var(--green-900);
  font-size: 44px;
  line-height: 1.1;
}

.legal-updated {
  margin: 14px 0 34px;
  color: var(--muted);
  font-weight: 700;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--green-900);
  font-size: 20px;
  line-height: 1.3;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.internal-header-top {
  justify-content: center;
}

.internal-primary-nav {
  position: absolute;
  right: max(20px, calc((100vw - 1200px) / 2));
}

.internal-primary-nav:empty {
  display: none;
}

.wrapper.p-t-m {
  width: min(1200px, calc(100% - 40px));
  padding: 36px 0 72px;
}

.wrapper-accounts {
  width: 100%;
  padding: 46px 50px 50px;
  border: 1px solid rgba(0, 122, 77, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 95% 8%, rgba(244, 166, 34, 0.12), transparent 24%),
    radial-gradient(circle at 4% 88%, rgba(0, 134, 83, 0.08), transparent 26%),
    linear-gradient(135deg, #ffffff, #fbfdfb);
  box-shadow: 0 28px 70px rgba(20, 70, 45, 0.1);
}

.wrapper-accounts .title-large {
  margin: 0;
  color: var(--green-900);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  text-transform: none;
}

.wrapper-accounts > p {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.accounts-register .form-register {
  margin-top: 34px;
  padding-top: 6px;
  counter-reset: register-step;
}

.accounts-register .form-register fieldset {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(0, 122, 77, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 251, 0.96));
  box-shadow: 0 14px 34px rgba(20, 70, 45, 0.045);
}

.accounts-register .form-register h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--green-900);
  font-size: 19px;
  line-height: 1.2;
}

.accounts-register .form-register h2::before {
  counter-increment: register-step;
  content: counter(register-step);
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.accounts-register .form-register fieldset ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 26px;
}

.accounts-register .form-register .field {
  margin-bottom: 0;
}

.accounts-register .form-register .field label,
.accounts-login .form label {
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.accounts-register .form-register input,
.accounts-register .form-register select,
.accounts-login input {
  height: 48px;
  border: 1px solid rgba(0, 122, 77, 0.18);
  border-radius: 9px;
  background-color: #fff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.accounts-register .form-register input:focus,
.accounts-register .form-register select:focus,
.accounts-login input:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(0, 134, 83, 0.12);
}

.accounts-register .button-green-light,
.accounts-login .button-green-light {
  min-height: 46px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--green-700);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(0, 122, 77, 0.18);
}

.accounts-register .button-green-light:hover,
.accounts-login .button-green-light:hover {
  background: #007648;
}

.accounts-login > div {
  padding: 0 54px;
}

.accounts-login .text-default p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .header-top {
    min-height: auto;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 300px;
    max-width: 88vw;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 4px;
  }

  .secondary-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, auto));
    justify-content: center;
    gap: 18px 28px;
    overflow-x: visible;
  }

  .secondary-nav a {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero {
    padding: 46px 0;
  }

  .hero-grid,
  .profile-grid,
  .steps,
  .about-inner,
  .contact-card,
  .positioning-inner {
    grid-template-columns: 1fr;
  }

  .about-inner > .eyebrow {
    margin-bottom: -8px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-panel {
    min-height: 470px;
  }

  .contact-card {
    padding: 28px;
  }

  .positioning-inner {
    padding: 38px;
  }

  .site-footer-modern-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .positioning-copy h2 {
    font-size: 40px;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 270px;
  }

  .primary-nav {
    gap: 14px;
    font-size: 14px;
  }

  .nav-featured {
    width: 100%;
    margin-right: 0;
    font-size: 16px;
  }

  .header-button {
    width: calc((100% - 14px) / 2);
    min-height: 42px;
    padding: 0 8px;
    font-size: 13px;
  }

  .secondary-nav {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 8px 12px;
    overflow-x: visible;
    padding: 10px 14px;
    font-size: 12px;
  }

  .secondary-nav a {
    justify-content: center;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .secondary-nav .nav-login {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero h1 {
    width: 100%;
    max-width: min(300px, calc(100vw - 70px));
    font-size: 20px;
    line-height: 1.22;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 span:not(:last-child)::after {
    content: "";
  }

  .hero-grid,
  .hero-copy,
  .lead,
  .supporting-lead {
    width: 100%;
    max-width: min(300px, calc(100vw - 70px));
    min-width: 0;
  }

  .lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
  }

  .supporting-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .button {
    width: 100%;
  }

  .profiles,
  .profile-focus,
  .how-it-works,
  .about-section,
  .contact-section {
    min-height: calc(100vh - 174px);
    scroll-margin-top: 174px;
  }

  .profile-card {
    scroll-margin-top: 190px;
  }

  .profile-focus {
    min-height: calc(100vh - 174px);
    padding: 46px 0;
    scroll-margin-top: 174px;
  }

  .profile-focus .profile-card {
    min-height: 390px;
    padding: 30px 22px;
  }

  .profile-focus .onboarding-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    border-radius: 22px;
  }

  .profile-focus .card-kicker {
    font-size: 18px;
  }

  .profile-focus .profile-card h2 {
    font-size: 29px;
  }

  .profile-focus .profile-card p:not(.card-kicker) {
    font-size: 16px;
  }

  .profile-focus .profile-card .profile-subtitle {
    font-size: 18px;
  }

  .profile-focus .profile-card .profile-note {
    font-size: 15px;
  }

  .profile-focus .profile-card .text-link {
    margin-top: 30px;
    font-size: 18px;
  }

  .hero-panel {
    width: 100%;
    min-height: 560px;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }

  .network-card,
  .signal-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .signal-card {
    transform: none;
    grid-template-columns: auto 1fr;
    order: 2;
  }

  .producer-card {
    order: 1;
  }

  .buyer-card {
    order: 3;
  }

  .signal-card p {
    white-space: normal;
    text-align: left;
  }

  .connection-line {
    display: none;
  }

  .buyer-card,
  .signal-card {
    margin-top: 16px;
  }

  .profile-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .profile-card .text-link {
    grid-column: auto;
  }

  .section-heading h2,
  .contact-card h2,
  .positioning h2 {
    font-size: 29px;
  }

  .positioning-inner {
    padding: 28px 22px;
    gap: 26px;
  }

  .positioning-copy h2 {
    font-size: 32px;
  }

  .positioning-subtitle {
    font-size: 19px;
  }

  .positioning-text {
    font-size: 16px;
  }

  .contact-card {
    min-height: calc(100vh - 240px);
    padding: 24px;
  }

  .contact-email {
    font-size: 14px;
  }

  .legal-main {
    padding: 34px 0 54px;
  }

  .legal-card {
    padding: 30px 22px;
  }

  .legal-card h1 {
    font-size: 32px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 16px;
  }

  .internal-primary-nav {
    position: static;
  }

  .wrapper.p-t-m {
    width: 100%;
    padding: 28px 14px 54px;
  }

  .wrapper-accounts {
    width: 100%;
    padding: 24px 20px;
    border-radius: 10px;
  }

  .wrapper-accounts .title-large {
    font-size: 32px;
  }

  .wrapper-accounts > p,
  .wrapper-accounts .text-medium {
    width: min(100%, 300px);
    max-width: 300px;
    overflow-wrap: break-word;
  }

  .accounts-register .form-register fieldset {
    padding: 22px 20px;
  }

  .accounts-register .form-register fieldset ul {
    display: block;
  }

  .accounts-register .form-register .field,
  .accounts-register .form-register .field > div,
  .accounts-register .form-register input,
  .accounts-register .form-register select,
  .accounts-register .form-register textarea,
  .accounts-login input {
    width: 100% !important;
    max-width: 100%;
  }

  .accounts-register .form-register .field:not(:last-child) {
    margin-bottom: 18px;
  }

  .accounts-register .form-register .field > div {
    float: none;
  }

  .accounts-register .form-register .field > div:not(:last-child) {
    margin-right: 0;
    margin-bottom: 18px;
  }

  .cpf-cnpj label,
  .cpf-cnpj input {
    width: auto !important;
    height: auto !important;
  }

  .accounts-login > div {
    padding: 0;
  }
}
