:root {
  --content-max: 1200px;
  --content-gutter: 1rem;
  --forest: #0f3f30;
  --forest-deep: #09261d;
  --night: #102637;
  --paper: #f7f1e6;
  --paper-soft: #fffaf0;
  --stone: #dce3d7;
  --fogata: #f2c14e;
  --leaf: #628c5d;
  --ink: #12241c;
  --muted: #526459;
  --danger: #a33a2d;
  --shadow: 0 24px 70px rgba(13, 38, 29, 0.14);
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-fast: 220ms;
  --motion-base: 620ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

main {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 28;
}

.site-header {
  align-items: center;
  background: rgba(9, 38, 29, 0.92);
  backdrop-filter: blur(16px);
  color: #fff7e8;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 0.85rem max(var(--content-gutter), calc((100vw - var(--content-max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 80;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 0.65rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  display: block;
  height: 2.35rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-mark {
  align-items: center;
  background: var(--fogata);
  border-radius: 50%;
  color: var(--forest-deep);
  display: inline-flex;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}

.brand-mark svg {
  fill: none;
  height: 1.45rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 1.45rem;
}

.brand-mark svg path:first-child {
  fill: rgba(9, 38, 29, 0.06);
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  justify-content: center;
}

.main-nav a,
.header-cta {
  color: rgba(255, 247, 232, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.header-cta:hover {
  color: #fff;
}

.header-cta {
  border: 1px solid rgba(255, 247, 232, 0.3);
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.header-cta:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 2.5rem;
  position: relative;
  width: 2.5rem;
}

.menu-toggle span {
  background: #fff7e8;
  border-radius: 999px;
  height: 2px;
  left: 0.55rem;
  position: absolute;
  right: 0.55rem;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span:first-child {
  top: 0.9rem;
}

.menu-toggle span:last-child {
  top: 1.45rem;
}

.nav-open .menu-toggle span:first-child {
  top: 1.15rem;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  top: 1.15rem;
  transform: rotate(-45deg);
}

.hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(242, 193, 78, 0.2), transparent 30%),
    radial-gradient(circle at 8% 86%, rgba(98, 140, 93, 0.28), transparent 36%),
    linear-gradient(135deg, #09261d 0%, #143f31 52%, #102637 100%);
  color: #fff7e8;
  /*min-height: calc(100vh - 66px);*/
  overflow: hidden;
  padding: clamp(4.2rem, 8vw, 7rem) 0 clamp(2.5rem, 6vw, 7rem);
  position: relative;
}

.hero-inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  margin: 0 auto;
  padding: 0 max(var(--content-gutter), calc((100vw - var(--content-max)) / 2));
  width: 100%;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  color: var(--fogata);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  max-width: 860px;
}

h2 {
  color: var(--forest-deep);
  font-size: clamp(2.05rem, 3.7vw, 3.55rem);
}

h3 {
  color: var(--forest-deep);
  letter-spacing: 0;
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  color: rgba(255, 247, 232, 0.9);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  margin: 1.4rem 0 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(120deg, #f2c14e 0%, #ffd77a 48%, #f2c14e 100%);
  background-size: 170% 100%;
  box-shadow: 0 18px 42px rgba(242, 193, 78, 0.28);
  color: #15251b;
}

.button-primary:hover {
  background-position: 100% 0;
}

.button-ghost {
  border: 1px solid rgba(255, 247, 232, 0.36);
  color: #fff7e8;
}

.hero-metrics {
  border-top: 1px solid rgba(255, 247, 232, 0.24);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  padding-top: 1.35rem;
}

.hero-metrics article {
  min-width: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-metrics span {
  color: rgba(255, 247, 232, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0.2rem;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.app-preview-frame {
  animation: floatDevice 6s ease-in-out infinite;
  position: relative;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  width: min(100%, 920px);
}

.hero-mask-image {
  background-image: url("https://images.unsplash.com/photo-1478131143081-80f7f84ca84d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: min(62vh, 460px);
  width: 100%;
  -webkit-mask-image: url("./mask-brush.png");
  mask-image: url("./mask-brush.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 108% 90%;
  mask-size: 108% 90%;
}
.hero-mask-image-rol {
  background-image: url("./explorer.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: min(62vh, 460px);
  width: 100%;
  -webkit-mask-image: url("./mask-brush.png");
  mask-image: url("./mask-brush.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 108% 90%;
  mask-size: 108% 90%;
}

@media (max-width: 1280px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 7.2vw, 4.1rem);
    max-width: 100%;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .app-preview-frame {
    animation: none;
    max-width: 920px;
    width: 100%;
  }

  .hero-mask-image {
    height: min(52vh, 420px);
  }
}

.device {
  animation: floatDevice 6s ease-in-out infinite;
  background: linear-gradient(180deg, #143b2e, #071c15);
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-radius: 2.2rem;
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.32);
  max-width: 360px;
  padding: 1rem;
  width: min(100%, 360px);
}

.device-bar {
  background: rgba(255, 247, 232, 0.18);
  border-radius: 999px;
  height: 0.35rem;
  margin: 0 auto 1.2rem;
  width: 5.5rem;
}

.status-row {
  align-items: center;
  color: rgba(255, 247, 232, 0.78);
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.status-row strong {
  background: rgba(242, 193, 78, 0.18);
  border-radius: 999px;
  color: var(--fogata);
  padding: 0.35rem 0.55rem;
}

.app-card {
  align-items: center;
  background: rgba(255, 247, 232, 0.1);
  border: 1px solid rgba(255, 247, 232, 0.13);
  border-radius: 1rem;
  display: flex;
  gap: 0.85rem;
  margin-top: 0.75rem;
  padding: 1rem;
}

.app-card-primary {
  background: #fff7e8;
  color: var(--ink);
}

.app-card .material-symbols-rounded {
  color: var(--fogata);
  font-size: 2rem;
}

.app-card strong,
.app-card small {
  display: block;
}

.app-card strong {
  font-weight: 900;
}

.app-card small {
  color: inherit;
  line-height: 1.4;
  opacity: 0.72;
}

.device-tabs {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.85rem;
}

.device-tabs span {
  background: rgba(98, 140, 93, 0.32);
  border-radius: 999px;
  color: #fff7e8;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.58rem 0.3rem;
  text-align: center;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) max(var(--content-gutter), calc((100vw - var(--content-max)) / 2));
}

.section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
}

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

.section-copy {
  max-width: 760px;
}

.split-section,
.roles-section,
.map-section,
.privacy-section {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
}

.quote {
  border-left: 4px solid var(--fogata);
  color: var(--forest-deep);
  font-size: 1.08rem;
  font-weight: 800;
  padding-left: 1rem;
}

.problem-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-list article,
.benefit-card,
.timeline article,
.solution-steps article {
  background: var(--paper-soft);
  border: 1px solid rgba(15, 63, 48, 0.12);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.problem-list article:hover,
.benefit-card:hover,
.timeline article:hover,
.solution-steps article:hover,
.audience-card:hover,
.faq-grid article:hover,
.pricing-card:hover {
  border-color: rgba(15, 63, 48, 0.24);
  box-shadow: 0 28px 60px rgba(13, 38, 29, 0.18);
  transform: translateY(-4px);
}

.problem-list .material-symbols-rounded,
.benefit-card .material-symbols-rounded {
  color: var(--leaf);
  font-size: 2.1rem;
}

.problem-list h3,
.benefit-card h3,
.timeline h3,
.solution-steps h3 {
  font-size: 1.08rem;
  margin-top: 0.75rem;
}

.problem-list p,
.benefit-card p,
.timeline p,
.solution-steps p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

.solution-section {
  background: var(--forest-deep);
  color: #fff7e8;
}

.solution-copy {
  margin: 0 auto 2.5rem;
  max-width: 980px;
  text-align: center;
}

.solution-copy h2,
.solution-copy p {
  color: #fff7e8;
}

.solution-copy p {
  color: rgba(255, 247, 232, 0.76);
}

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

.solution-steps article {
  background: rgba(255, 247, 232, 0.08);
  border-color: rgba(255, 247, 232, 0.14);
  box-shadow: none;
}

.solution-steps span {
  color: var(--fogata);
  font-weight: 900;
}

.solution-steps h3,
.solution-steps p {
  color: #fff7e8;
}

.solution-steps p {
  color: rgba(255, 247, 232, 0.74);
}

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

.audience-section {
  background: #fffaf0;
}

.audience-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

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

.audience-card,
.faq-grid article {
  background: var(--paper);
  border: 1px solid rgba(15, 63, 48, 0.12);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.audience-card .material-symbols-rounded {
  color: var(--leaf);
  font-size: 2.15rem;
}

.audience-card h3,
.faq-grid h3 {
  font-size: 1.08rem;
  margin-top: 0.75rem;
}

.audience-card p,
.faq-grid p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

.community-callout {
  align-items: center;
  background: var(--forest-deep);
  border-radius: 0.5rem;
  color: #fff7e8;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.community-callout h3,
.community-callout p {
  color: #fff7e8;
}

.community-callout h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.community-callout p {
  color: rgba(255, 247, 232, 0.78);
  margin-bottom: 0;
}

.roles-section {
  background: #eef2ea;
  align-items: center;
}

.roles-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roles-grid span {
  background: var(--forest);
  border-radius: 999px;
  color: #fff7e8;
  font-weight: 900;
  padding: 0.9rem 1rem;
  text-align: center;
}

.camp-section {
  background: var(--paper);
}

.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline span {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-section {
  align-items: center;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.82fr);
}

.map-visual {
  background:
    linear-gradient(135deg, rgba(15, 63, 48, 0.08) 25%, transparent 25%) 0 0/38px 38px,
    linear-gradient(45deg, rgba(98, 140, 93, 0.13) 25%, transparent 25%) 0 0/38px 38px,
    #dfe8dc;
  border: 1px solid rgba(15, 63, 48, 0.12);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.map-route {
  border: 4px dashed rgba(16, 38, 55, 0.26);
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 160px 0 0;
  height: 230px;
  left: 20%;
  position: absolute;
  top: 34%;
  transform: rotate(-12deg);
  width: 60%;
}

.map-pin {
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(16, 38, 29, 0.2);
  display: flex;
  height: 3.5rem;
  justify-content: center;
  position: absolute;
  width: 3.5rem;
}

.map-pin.camp {
  background: var(--fogata);
  bottom: 18%;
  color: var(--forest-deep);
  left: 46%;
}

.map-pin.health {
  background: #fff7e8;
  color: var(--danger);
  left: 16%;
  top: 22%;
}

.map-pin.police {
  background: var(--night);
  color: #fff;
  right: 17%;
  top: 18%;
}

.map-label {
  background: rgba(255, 250, 240, 0.94);
  border-radius: 999px;
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.42rem 0.65rem;
  position: absolute;
}

.label-camp {
  bottom: 11%;
  left: 43%;
}

.label-health {
  left: 13%;
  top: 12%;
}

.label-police {
  right: 10%;
  top: 9%;
}

.impact-section {
  background: #eef2ea;
}

.pricing-section {
  border-top: 1px solid rgba(13, 38, 29, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.pricing-card {
  border: 1px solid rgba(13, 38, 29, 0.12);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 45px rgba(13, 38, 29, 0.08);
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-label {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.pricing-card h3 {
  color: var(--forest-deep);
  font-size: 1.55rem;
  margin: 0;
}

.pricing-card ul {
  margin: 0.85rem 0 1rem;
  padding-left: 1.1rem;
}

.pricing-card li {
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.code-pack-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.code-pack-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(13, 38, 29, 0.12);
  background: var(--paper-soft);
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
}

.pricing-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
}

.impact-hero {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
}

.impact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(
    180deg,
    rgba(9, 38, 29, 0.12) 0%,
    rgba(9, 38, 29, 0.88) 72%
  );
}

.impact-hero-overlay .eyebrow {
  margin: 0;
}

.impact-hero-overlay h2 {
  color: #fff;
  max-width: 900px;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
}

.impact-hero-overlay p {
  margin: 0;
  color: rgba(255, 247, 232, 0.92);
  max-width: 760px;
  font-size: 1.02rem;
}

.paper-stack {
  display: grid;
  min-height: 280px;
  place-items: center;
  position: relative;
}

.paper-stack span {
  background: #fffdf7;
  border: 1px solid rgba(15, 63, 48, 0.14);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  height: 190px;
  position: absolute;
  width: 240px;
}

.paper-stack span:nth-child(1) {
  transform: rotate(-8deg) translateX(-18px);
}

.paper-stack span:nth-child(2) {
  transform: rotate(5deg) translateX(12px);
}

.paper-stack span:nth-child(3) {
  transform: rotate(-1deg) translateY(12px);
}

.paper-stack strong {
  color: var(--forest-deep);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
  position: relative;
  text-align: center;
  z-index: 2;
}

.privacy-section {
  background: var(--night);
  align-items: center;
}

.privacy-copy h2,
.privacy-copy p {
  color: #fff7e8;
}

.privacy-copy p {
  color: rgba(255, 247, 232, 0.75);
}

.privacy-list {
  display: grid;
  gap: 0.8rem;
}

.privacy-list article {
  align-items: center;
  background: rgba(255, 247, 232, 0.08);
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: 999px;
  color: #fff7e8;
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
}

.privacy-list .material-symbols-rounded {
  color: var(--fogata);
}

.faq-section {
  background: var(--paper);
}

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

.final-cta {
  background:
    linear-gradient(rgba(9, 38, 29, 0.84), rgba(9, 38, 29, 0.84)),
    url("https://images.unsplash.com/photo-1473773508845-188df298d2d1?auto=format&fit=crop&w=2000&q=84") center/cover;
  color: #fff7e8;
  padding: clamp(4rem, 9vw, 8rem) max(var(--content-gutter), calc((100vw - var(--content-max)) / 2));
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: #fff7e8;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-form {
  background: rgba(255, 247, 232, 0.12);
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 0.75rem;
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem auto 0;
  max-width: 680px;
  padding: 1.2rem;
  text-align: left;
}

.contact-form label {
  color: #fff7e8;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(9, 38, 29, 0.22);
  border-radius: 0.5rem;
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--fogata);
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.22);
  outline: 0;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover {
  transform: translateY(-1px);
}

.contact-submit {
  border: 0;
  cursor: pointer;
  margin-top: 0.35rem;
  width: 100%;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.75;
}

.contact-status {
  color: rgba(255, 247, 232, 0.94);
  font-size: 0.92rem;
  margin: 0.3rem 0 0;
}

.contact-hp {
  left: -9999px;
  position: absolute;
}

.site-footer {
  background: #0b2119;
  border-top: 1px solid rgba(255, 247, 232, 0.12);
  color: #fff7e8;
  padding: 1rem max(var(--content-gutter), calc((100vw - var(--content-max)) / 2)) 1.2rem;
}

.site-footer-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.site-footer-copy {
  color: rgba(255, 247, 232, 0.8);
  font-size: 0.88rem;
  margin: 0;
}

.site-footer-instagram {
  align-items: center;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 999px;
  color: #fff7e8;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer-instagram:hover {
  background: rgba(255, 247, 232, 0.1);
  border-color: rgba(255, 247, 232, 0.48);
  transform: translateY(-1px);
}

.site-footer-instagram .material-symbols-rounded {
  font-size: 1.05rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity var(--motion-base) var(--motion-ease), transform var(--motion-base) var(--motion-ease);
}

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

.js-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
}

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

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-actions,
.hero-copy .hero-metrics {
  animation: heroFadeUp 0.75s var(--motion-ease) both;
}

.hero-copy h1 {
  animation-delay: 0.06s;
}

.hero-copy .hero-lead {
  animation-delay: 0.12s;
}

.hero-copy .hero-actions {
  animation-delay: 0.18s;
}

.hero-copy .hero-metrics {
  animation-delay: 0.24s;
}

.app-preview-frame {
  animation: floatDevice 6s ease-in-out infinite, heroFadeIn 0.95s var(--motion-ease) both;
}

.problem-list article,
.benefit-card,
.timeline article,
.solution-steps article,
.audience-card,
.faq-grid article,
.pricing-card {
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.js-motion .problem-list article:nth-child(2),
.js-motion .benefit-grid .benefit-card:nth-child(2),
.js-motion .solution-steps article:nth-child(2),
.js-motion .audience-grid .audience-card:nth-child(2),
.js-motion .timeline article:nth-child(2),
.js-motion .faq-grid article:nth-child(2),
.js-motion .pricing-grid .pricing-card:nth-child(2) {
  transition-delay: 80ms;
}

.js-motion .problem-list article:nth-child(3),
.js-motion .benefit-grid .benefit-card:nth-child(3),
.js-motion .solution-steps article:nth-child(3),
.js-motion .audience-grid .audience-card:nth-child(3),
.js-motion .timeline article:nth-child(3),
.js-motion .faq-grid article:nth-child(3) {
  transition-delay: 140ms;
}

.js-motion .problem-list article:nth-child(4),
.js-motion .benefit-grid .benefit-card:nth-child(4),
.js-motion .timeline article:nth-child(4),
.js-motion .faq-grid article:nth-child(4) {
  transition-delay: 190ms;
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .device,
  .app-preview-frame {
    animation: none;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .hero-actions,
  .hero-copy .hero-metrics {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    align-items: stretch;
    background: linear-gradient(180deg, #143b2e, #071c15);
    height:100vh;
    bottom: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    left: 0;
    padding: 5rem 1rem 1rem;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 247, 232, 0.12);
    font-size: 1.15rem;
    padding: 1rem;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .split-section,
  .roles-section,
  .map-section,
  .privacy-section,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .benefit-grid,
  .audience-grid,
  .solution-steps,
  .faq-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-callout {
    grid-template-columns: 1fr;
  }

  .community-callout .button {
    justify-self: start;
  }

  .impact-hero,
  .impact-hero-overlay {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  .brand span:last-child {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .section,
  .final-cta {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
  }

  .hero {
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .hero-inner {
    gap: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.05rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-metrics {
    gap: 0.8rem;
    margin-top: 1.8rem;
  }

  .hero-metrics article {
    background: rgba(255, 247, 232, 0.08);
    border: 1px solid rgba(255, 247, 232, 0.1);
    border-radius: 0.5rem;
    padding: 0.85rem;
  }

  .hero-metrics strong {
    font-size: 1rem;
  }

  .hero-metrics span {
    font-size: 0.84rem;
  }

  .hero-metrics,
  .problem-list,
  .benefit-grid,
  .audience-grid,
  .solution-steps,
  .faq-grid,
  .timeline,
  .roles-grid {
    grid-template-columns: 1fr;
  }

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

  .community-callout .button {
    justify-self: stretch;
  }

  .device {
    border-radius: 1.4rem;
  }

  .map-visual {
    min-height: 320px;
  }

  .map-label {
    display: none;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
#inicio{
  top:0;position: relative;
  margin-top: -67px;
  padding-top:4rem;
}

.privacy-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(16, 35, 26, 0.72);
}

.privacy-modal-panel {
  position: relative;
  width: min(980px, 100%);
  height: min(88vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: #fffdf7;
}

.privacy-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: 1px solid #d8e2d8;
  border-radius: 8px;
  background: #fff;
  color: #10231a;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  cursor: pointer;
}

.privacy-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.hidden {
  display: none !important;
}
