/* Pablo Abreu — marketing pages. Editorial minimalism aligned with the landing:
   warm near-black + amber, oversized type, hairline dividers, flat offset shadows.
   No heavy panels or boxed cards. */
:root {
  --bg: #0b0c0f;
  --bg-2: #111318;
  --text: #f2f0ea;
  --muted: #9a9da5;
  --accent: #b9ff66;
  --accent-2: #8aa6ff;
  --accent-3: #d9ffae;
  --line: rgba(242, 240, 234, 0.16);
  --line-strong: rgba(242, 240, 234, 0.34);
  --glass: rgba(22, 22, 20, 0.68);
  --glass-light: rgba(242, 240, 234, 0.06);
  --radius: 8px;
  --font: "IBM Plex Mono", "SFMono-Regular", "Cascadia Code", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 70% -10%, rgba(138, 166, 255, 0.13), transparent 32rem),
    linear-gradient(180deg, #0d0e12, #090a0c 72%);
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Faint editorial grid, masked toward the top — same signature as the landing. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(242, 240, 234, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 240, 234, 0.03) 1px, transparent 1px);
  background-size: clamp(64px, 8vw, 128px) clamp(64px, 8vw, 128px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 82%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

::selection {
  color: #0b0c0f;
  background: var(--accent);
}

/* ---------- Header: continuous glass, uppercase micro-nav ---------- */
.site-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 78%),
    rgba(16, 16, 15, 0.52);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(185, 255, 102, 0.22), transparent);
}

.site-shell--footer {
  position: relative;
  top: auto;
  border-top: 1px solid rgba(242, 240, 234, 0.1);
  border-bottom: 0;
  background: rgba(16, 16, 15, 0.74);
  box-shadow: none;
}

.site-shell--footer::after {
  display: none;
}

.site-shell__inner,
.content-shell {
  width: min(1240px, calc(100vw - 44px));
  margin: 0 auto;
}

.site-shell__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 68px;
  padding: 8px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-brand img {
  width: auto;
  height: 40px;
  filter: grayscale(1) brightness(2.1) drop-shadow(0 0 12px rgba(185, 255, 102, 0.18));
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav {
  justify-content: center;
}

.site-nav a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  color: rgba(242, 240, 234, 0.68);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-languages {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.site-languages a {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 30px;
  border-radius: 6px;
  color: rgba(242, 240, 234, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-languages a:hover {
  color: var(--text);
}

.site-languages a[aria-current='page'] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

/* ---------- Layout ---------- */
.marketing-page {
  padding: clamp(28px, 5vw, 56px) 0 clamp(64px, 10vw, 110px);
}

.content-shell {
  display: grid;
  gap: clamp(40px, 6vw, 76px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: -20px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.breadcrumbs a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumbs__sep {
  color: rgba(242, 240, 234, 0.28);
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 6.4vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
}

h3,
summary {
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 600;
}

p,
li,
label span,
input,
select,
textarea {
  font-size: 1rem;
  line-height: 1.68;
}

p,
ul,
ol {
  margin: 0;
}

/* ---------- Hero: open, no box ---------- */
.hero-block {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 3vw, 40px) 0 clamp(8px, 2vw, 20px);
  max-width: min(1060px, 100%);
}

.hero-block--compact {
  padding-top: clamp(8px, 2vw, 24px);
}

.hero-block__eyebrow,
.service-tile__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-block__eyebrow::before,
.service-tile__eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.hero-block__lead {
  max-width: 62ch;
  margin: 0;
  color: rgba(242, 240, 234, 0.7);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.hero-block__actions,
.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* ---------- Buttons: sharp, flat offset shadow ---------- */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #0b0c0f;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button::after {
  content: "\2197";
  margin-left: 12px;
  font-size: 1.05em;
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 14px 38px rgba(185, 255, 102, 0.16);
}

.button:hover::after {
  transform: translate(3px, -3px);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: rgba(185, 255, 102, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--text);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ---------- Grids ---------- */
.content-grid,
.services-grid {
  display: grid;
  gap: 10px;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ---------- Service tiles: subtle glass, editorial silhouette ---------- */
.service-tile {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(15, 17, 16, 0.86);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 255, 102, 0.46);
  background-color: rgba(18, 22, 18, 0.96);
}

.service-tile h2 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.04;
}

.service-tile h2 a {
  transition: color 0.2s ease;
}

.service-tile:hover h2 a {
  color: var(--accent);
}

.service-tile p {
  color: var(--muted);
  font-size: 0.97rem;
}

.service-tile .text-link {
  margin-top: 4px;
}

/* ---------- Content sections: hairline-separated, no boxes ---------- */
.panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.panel > h2 {
  max-width: 22ch;
}

.check-list,
.number-list,
.link-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li,
.number-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "\2197";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 800;
}

.number-list {
  counter-reset: step;
}

.number-list li {
  counter-increment: step;
}

.number-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 3px;
  background: rgba(185, 255, 102, 0.16);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
}

.link-list {
  gap: 0;
}

.link-list li + li {
  border-top: 1px solid var(--line);
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 4px;
  color: var(--text);
  font-weight: 650;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.link-list a::after {
  content: "\2197";
  color: var(--accent-2);
  transition: transform 0.2s ease;
}

.link-list a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.link-list a:hover::after {
  transform: translate(3px, -3px);
}

.contact-quick-links .text-link {
  font-size: 0.95rem;
}

/* ---------- CTA panel: inverted focal card, like the landing ---------- */
.panel--cta {
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid #0b0c0f;
  border-top: 1px solid #0b0c0f;
  border-radius: 4px 34px 4px 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 45%),
    var(--text);
  color: #0b0c0f;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

.panel--cta h2 {
  color: #0b0c0f;
}

.panel--cta p {
  max-width: 52ch;
  color: rgba(16, 16, 15, 0.64);
}

.panel--cta .button {
  border-color: #0b0c0f;
  background: #0b0c0f;
  color: var(--text);
  box-shadow: none;
}

.panel--cta .button:hover {
  box-shadow: 0 14px 34px rgba(11, 12, 15, 0.3);
}

.panel--cta .button--ghost {
  background: transparent;
  color: #0b0c0f;
  border-color: rgba(16, 16, 15, 0.4);
  box-shadow: none;
}

.panel--cta .button--ghost:hover {
  border-color: #0b0c0f;
  background: rgba(16, 16, 15, 0.06);
}

/* ---------- FAQ (marketing) ---------- */
.faq-list {
  display: grid;
  gap: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-list details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: none;
  color: var(--accent-2);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0 0 18px;
  padding-right: 40px;
  color: var(--muted);
}

/* ---------- Lead form: underline fields, no boxes ---------- */
.lead-form {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 11px 2px;
  background: transparent;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: right 6px center, right 1px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.lead-form select option {
  background: var(--bg-2);
  color: var(--text);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(242, 240, 234, 0.34);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}

.lead-form textarea {
  resize: vertical;
  min-height: 120px;
}

.lead-form__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.lead-form__consent span {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.lead-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-bottom: 0;
  accent-color: var(--accent-2);
}

.lead-form .button {
  justify-self: start;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #8fe0a3;
}

/* ---------- Footer ---------- */
.site-shell__inner--footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  padding: 34px 0;
}

.site-shell__inner--footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.site-shell__inner--footer p {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-shell {
    position: relative;
  }

  .site-shell__inner {
    grid-template-columns: auto auto;
    row-gap: 14px;
  }

  .site-shell__inner nav {
    grid-column: 1 / -1;
    order: 3;
  }

  .site-nav {
    justify-content: flex-start;
    margin-left: -12px;
  }

  .content-grid,
  .services-grid,
  .site-shell__inner--footer {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 9vw, 4rem);
  }
}

@media (max-width: 640px) {
  .site-shell__inner,
  .content-shell {
    width: min(100vw - 28px, 1240px);
  }

  .content-grid {
    gap: 34px;
  }

  .panel--cta {
    padding: 26px 20px;
    border-radius: 4px 24px 4px 4px;
    box-shadow: 7px 7px 0 var(--accent-2), 0 30px 80px rgba(0, 0, 0, 0.4);
  }

  .button {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
