/* ---------------------------------------------------
   Gasme — tokens
--------------------------------------------------- */
:root{
  --ink: #15181d;
  --ink-2: #1e232b;
  --ink-3: #262d37;
  --amber: #f2a71b;
  --amber-deep: #b85f0c;
  --steel: #98a2ae;
  --paper: #eef0f0;
  --white: #ffffff;

  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-eyebrow: 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 10px;
  --wrap: 1180px;
}

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

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus{ left: 12px; top: 12px; }

a{ color: inherit; }

:focus-visible{
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.eyebrow{
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--amber-deep);
  margin: 0 0 10px;
}
.eyebrow-amber{ color: var(--amber); }

.section-title{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: 20ch;
}
.section-title-light{ color: var(--white); }
.section-lede{ color: #444b52; text-align: justify; }

/* ---------------------------------------------------
   Buttons
--------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-eyebrow);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
}
.btn-lg{ padding: 15px 26px; font-size: 0.9rem; }
.btn-amber{ background: var(--amber); color: var(--ink); }
.btn-amber:hover{ background: #ffb833; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(242,167,27,0.35); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover{ border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-ink{ background: var(--ink); color: var(--amber); }
.btn-ink:hover{ background: #000; transform: translateY(-2px); }

/* ---------------------------------------------------
   Header
--------------------------------------------------- */
.site-header{
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--amber);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo{
  height: 46px;
  width: auto;
  flex-shrink: 0;
}

.primary-nav{
  display: flex;
  gap: 28px;
}
.primary-nav a{
  color: var(--steel);
  text-decoration: none;
  font-family: var(--font-eyebrow);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.primary-nav a:hover{ color: var(--amber); }

.header-cta{ flex-shrink: 0; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--white);
}

@media (max-width: 860px){
  .nav-toggle{ display: flex; }
  .primary-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 3px solid var(--amber);
  }
  .primary-nav.is-open{ max-height: 320px; }
  .primary-nav a{
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .header-cta{ display: none; }
}

/* ---------------------------------------------------
   Hero
--------------------------------------------------- */
.hero{
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::after{
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 60%;
  height: 140%;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 22px, transparent 22px 44px);
  opacity: 0.08;
  pointer-events: none;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy h1{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 20px;
}
.hero-lede{
  color: #c7ccd2;
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 0 30px;
  text-align: justify;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

.manifest-card{
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  padding: 22px 24px 20px;
  font-family: var(--font-eyebrow);
}
.manifest-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  padding-bottom: 12px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.manifest-id{ color: var(--amber); }
.manifest-list{
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.manifest-list li{ display: flex; align-items: center; gap: 10px; }
.manifest-list .check{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(242,167,27,0.15);
  color: var(--amber);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.manifest-foot{
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  border-top: 1px dashed rgba(255,255,255,0.18);
  padding-top: 12px;
  white-space: nowrap;
}

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

/* ---------------------------------------------------
   Trust strip
--------------------------------------------------- */
.trust-strip{
  background: var(--ink-2);
  border-bottom: 1px solid var(--ink-3);
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 0 16px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.trust-item:first-child{ border-left: none; }
.trust-item strong{
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1.4rem;
}
.trust-item span{
  color: var(--steel);
  font-size: 0.82rem;
  font-family: var(--font-eyebrow);
  letter-spacing: 0.02em;
}
@media (max-width: 700px){
  .trust-grid{ grid-template-columns: 1fr; gap: 20px 0; }
  .trust-item{ border-left: none; }
}

/* ---------------------------------------------------
   Sections
--------------------------------------------------- */
.section{ padding: 84px 0; }
.section-ink{ background: var(--ink); color: var(--white); }

/* ---------------------------------------------------
   Category tag cards
--------------------------------------------------- */
.tag-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tag-card{
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  box-shadow: 0 1px 2px rgba(21,24,29,0.06);
  border: 1px solid #e2e5e6;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.tag-card::before{
  content: "";
  position: absolute;
  top: -1px; left: 26px;
  width: 16px; height: 16px;
  background: var(--paper);
  border: 1px solid #e2e5e6;
  border-bottom: none;
  border-right: none;
  transform: translateY(-50%) rotate(45deg);
}
.tag-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(21,24,29,0.1);
  border-color: var(--amber);
}
.tag-card-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.tag-code{
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--amber-deep);
  background: rgba(242,167,27,0.14);
  padding: 4px 8px;
  border-radius: 4px;
}
.tag-icon{ width: 34px; height: 34px; color: var(--ink); flex-shrink: 0; }
.tag-card h3{ margin: 0 0 8px; font-size: 1.1rem; }
.tag-card p{ margin: 0 0 16px; color: #565d64; font-size: 0.94rem; text-align: justify; }
.tag-card-accent{ background: var(--ink); border-color: var(--ink); }
.tag-card-accent::before{ background: var(--ink); border-color: var(--ink); }
.tag-card-accent h3, .tag-card-accent p{ color: var(--white); }
.tag-card-accent .tag-icon{ color: var(--amber); }
.tag-card-accent .tag-code{ background: rgba(242,167,27,0.2); }

.tag-link{
  font-family: var(--font-eyebrow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tag-card-accent .tag-link{ color: var(--amber); }
.tag-link span{ transition: transform 0.15s ease; }
.tag-link:hover span{ transform: translateX(3px); }

@media (max-width: 900px){
  .tag-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .tag-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Feature grid
--------------------------------------------------- */
.feature-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.feature-icon{ width: 34px; height: 34px; color: var(--amber); margin-bottom: 14px; }
.feature h3{ margin: 0 0 8px; font-size: 1.05rem; }
.feature p{ margin: 0; color: var(--steel); font-size: 0.94rem; text-align: justify; }
@media (max-width: 900px){
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Nosotros
--------------------------------------------------- */
.nosotros-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.nosotros-copy p{ color: #444b52; text-align: justify; }
.stripe-panel{
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border-top: 6px solid;
  border-image: repeating-linear-gradient(-45deg, var(--amber) 0 12px, var(--ink) 12px 24px) 6;
}
.stripe-stat{
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  margin: 0 0 8px;
}
.stripe-label{ margin: 0; color: var(--steel); max-width: 30ch; }
@media (max-width: 900px){
  .nosotros-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   CTA banner
--------------------------------------------------- */
.cta-banner{
  background: var(--amber);
  background-image: repeating-linear-gradient(-45deg, transparent 0 26px, rgba(21,24,29,0.06) 26px 52px);
  color: var(--ink);
}
.cta-banner-inner{
  padding-top: 46px;
  padding-bottom: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 6px;
}
.cta-banner p{ margin: 0; font-weight: 500; }

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
.site-footer{
  background: var(--ink);
  color: var(--steel);
  padding-top: 64px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ink-3);
}
.footer-logo{ height: 64px; width: auto; display: block; }
.footer-blurb{ margin-top: 18px; font-size: 0.92rem; max-width: 30ch; text-align: justify; }
.footer-col h3{
  color: var(--white);
  font-family: var(--font-eyebrow);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-links, .footer-contact{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-links a, .footer-contact a{ text-decoration: none; color: var(--steel); transition: color 0.15s ease; }
.footer-links a:hover, .footer-contact a:hover{ color: var(--amber); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 0.82rem;
}
.footer-note{ color: #565d64; }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Floating WhatsApp
--------------------------------------------------- */
.mail-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform 0.15s ease;
}
.mail-float:hover{ transform: scale(1.08); background: #ffb833; }

/* ---------------------------------------------------
   Scroll reveal
--------------------------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
}
