/* ==========================================================================
   REISTECH — GLOBAL TOKENS & BASE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* --- color --- */
  --c-bg:            #08070c;
  --c-bg-elev:       #0e0c14;
  --c-bg-elev-2:     #141019;
  --c-purple:        #7c4dff;
  --c-purple-deep:   #3d2270;
  --c-purple-glow:   rgba(124, 77, 255, .18);
  --c-gold:          #c9a24d;
  --c-gold-soft:     rgba(201, 162, 77, .5);
  --c-text:          #f4f2f7;
  --c-text-muted:    #a49dae;
  --c-text-faint:    #6f6878;
  --c-border:        rgba(244, 242, 247, .08);
  --c-border-strong: rgba(244, 242, 247, .16);

  /* --- type --- */
  --f-display: 'Space Grotesk', 'Inter', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* --- layout --- */
  --header-h: 84px;
  --container: 1240px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  /* --- motion --- */
  --ease: cubic-bezier(.16,.8,.24,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

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

html{
  scroll-behavior: smooth;
  background: var(--c-bg);
}

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

body{
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle base texture: a near-invisible grain + vertical vignette so the
   black never reads as flat/dead */
body::before{
  content:'';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 0%, var(--c-purple-glow), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 30%, rgba(201,162,77,.06), transparent 60%);
}

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

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

button{ font-family: inherit; cursor: pointer; }

ul{ list-style: none; margin: 0; padding: 0; }

h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

p{ margin: 0; }

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

@media (max-width: 720px){
  .container{ padding-inline: 20px; }
}

/* --- focus states: always visible --- */
:focus-visible{
  outline: 2px solid var(--c-purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- eyebrow / mono label, used sparingly as a technical marker --- */
.eyebrow{
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:'';
  width: 18px;
  height: 1px;
  background: var(--c-gold-soft);
}

/* --- buttons --- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn-primary{
  background: linear-gradient(135deg, #8a5cff, #6b35e8);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124,77,255,.55);
}
.btn-primary:hover{
  box-shadow: 0 10px 30px -6px rgba(124,77,255,.75);
  transform: translateY(-1px);
}

.btn-ghost{
  background: transparent;
  border-color: var(--c-border-strong);
  color: var(--c-text);
}
.btn-ghost:hover{
  border-color: var(--c-gold-soft);
  color: var(--c-gold);
}

.btn-sm{ padding: 10px 20px; font-size: 13px; }

/* --- section rhythm --- */
.section{
  position: relative;
  padding: 64px 0;
  z-index: 1;
}
@media (max-width: 900px){
  .section{ padding: 88px 0; }
}

.section-head{
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head h2{
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 18px;
}
.section-head p{
  color: var(--c-text-muted);
  font-size: 17px;
  margin-top: 18px;
  max-width: 520px;
}

/* --- skip link --- */
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-purple);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus{ left: 20px; top: 20px; }

/* --- scroll reveal base --- */
[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
}

/* --- generic divider with technical tick, used between major blocks --- */
.tick-divider{
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-text-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
}
.tick-divider::before,
.tick-divider::after{
  content:'';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.visually-hidden{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   FOOTER (shared across all pages)
   ========================================================================== */
.site-footer{
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--c-border);
  padding: 80px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(124,77,255,.04));
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand .brand{ margin-bottom: 18px; }
.footer-brand p{
  color: var(--c-text-muted);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-brand a img{
  width: 150px;
  height: 60px;

}

.footer-col h4{
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{
  color: var(--c-text-muted);
  font-size: 14.5px;
  transition: color .3s var(--ease);
}
.footer-col a:hover{ color: var(--c-gold); }

.footer-bottom{
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--c-text-faint);
  font-size: 13px;
}
.footer-signature{
  font-family: var(--f-mono);
  letter-spacing: .04em;
  color: var(--c-text-faint);
}

@media (max-width: 800px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   SHARED: simple page hero (used by orcamento + lion-king)
   ========================================================================== */
.page-hero{
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow{ margin-bottom: 18px; }
.page-hero h1{ font-size: clamp(32px, 5vw, 52px); max-width: 780px; }
.page-hero p{ margin-top: 20px; color: var(--c-text-muted); max-width: 520px; font-size: 16.5px; }

.breadcrumb-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-faint);
  font-family: var(--f-mono);
  font-size: 12.5px;
  margin-bottom: 26px;
  transition: color .3s var(--ease);
}
.breadcrumb-back:hover{ color: var(--c-gold); }
