:root {
  --bg: #07111b;
  --bg-soft: #0b1826;
  --surface: rgba(10, 28, 43, 0.78);
  --surface-strong: #10253a;
  --surface-alt: #0c1e2f;
  --card: rgba(15, 33, 50, 0.9);
  --line: rgba(237, 242, 247, 0.08);
  --line-strong: rgba(237, 242, 247, 0.16);
  --text: #f3f7fb;
  --muted: #a4b5c5;
  --accent: #d7a252;
  --accent-strong: #f0c16d;
  --teal: #46bfd0;
  --teal-soft: rgba(70, 191, 208, 0.14);
  --shadow: 0 24px 80px rgba(1, 10, 18, 0.35);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(215, 162, 82, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(70, 191, 208, 0.14), transparent 24%),
    linear-gradient(180deg, #08131e 0%, #07111b 44%, #060d16 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
  opacity: 0.22;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 14, 22, 0.55);
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.scrolled {
  background: rgba(5, 14, 22, 0.84);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #08131e;
  background:
    linear-gradient(135deg, var(--accent-strong), #f8dfab),
    linear-gradient(135deg, #fff, #fff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

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

.button-primary {
  color: #07111b;
  background: linear-gradient(135deg, var(--accent), #f0cf98);
  box-shadow: 0 16px 40px rgba(215, 162, 82, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button-whatsapp {
  border-color: rgba(79, 206, 139, 0.28);
  color: #ecfff4;
  background: linear-gradient(135deg, rgba(38, 166, 91, 0.26), rgba(79, 206, 139, 0.12));
  box-shadow: 0 16px 40px rgba(38, 166, 91, 0.16);
}

.button-nav {
  min-height: 44px;
  padding-inline: 18px;
  color: #07111b !important;
  background: linear-gradient(135deg, var(--accent), #f0cf98);
}

.button-block {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  color: var(--text);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 44px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.insight-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.75rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead,
.section-head p,
.insight-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.lead {
  margin: 24px 0 0;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.hero-highlights li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 5px rgba(215, 162, 82, 0.1);
}

.hero-panel {
  position: relative;
  min-height: 520px;
}

.panel,
.floating-note,
.service-card,
.process-step,
.board-card,
.engagement-card,
.faq-item,
.contact-form,
.trust-band-inner,
.guide-card,
.risk-cta,
.contact-direct {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%),
    var(--card);
  box-shadow: var(--shadow);
}

.panel {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 191, 208, 0.22), transparent 70%);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 22px;
}

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

.metric-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
  color: var(--text);
}

.metric-card p,
.service-card p,
.process-step p,
.board-card p,
.engagement-card p,
.contact-points p,
.site-footer p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(215, 162, 82, 0.16), rgba(70, 191, 208, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.signal-card {
  margin-top: 20px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.signal-title,
.board-label,
.featured-label,
.floating-note-label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-tags span,
.trust-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.88rem;
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(290px, 76%);
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(215, 162, 82, 0.18), rgba(6, 13, 22, 0.96) 72%);
}

.floating-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.floating-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-orbit-one {
  top: 120px;
  left: -140px;
  width: 360px;
  height: 360px;
}

.hero-orbit-two {
  right: -120px;
  bottom: 40px;
  width: 320px;
  height: 320px;
}

.trust-band {
  padding: 12px 0 34px;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 28px;
}

.trust-band-inner p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.section {
  padding: 94px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 24%, rgba(70, 191, 208, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(10, 24, 38, 0.62), rgba(5, 14, 22, 0.62));
}

.section-accent {
  background:
    radial-gradient(circle at 80% 25%, rgba(215, 162, 82, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-head {
  max-width: 720px;
}

.section-head h2,
.insight-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-top: 0;
}

.section-head p {
  margin-top: 18px;
}

.service-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card,
.engagement-card {
  padding: 28px;
  border-radius: 28px;
}

.service-index,
.process-number,
.contact-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(215, 162, 82, 0.14);
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card h3,
.process-step h3,
.board-card h3,
.engagement-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.case-tag {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-outcome {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.process-layout,
.insight-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 32px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(70, 191, 208, 0.12);
}

.market-board {
  display: grid;
  gap: 18px;
}

.board-card {
  padding: 28px;
  border-radius: 28px;
}

.board-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  line-height: 1.12;
}

.founder-card {
  position: relative;
  overflow: hidden;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 193, 109, 0.3), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list strong {
  font-size: 1rem;
  font-weight: 600;
}

.placeholder-note {
  margin-top: 18px !important;
  color: rgba(240, 193, 109, 0.84) !important;
  font-size: 0.86rem !important;
}

.featured {
  position: relative;
  border-color: rgba(215, 162, 82, 0.34);
  background:
    linear-gradient(180deg, rgba(215, 162, 82, 0.14), rgba(255, 255, 255, 0.02) 40%),
    var(--card);
}

.featured-label {
  margin-bottom: 16px;
}

.engagement-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.risk-grid {
  align-items: stretch;
}

.risk-card {
  min-height: 100%;
}

.risk-cta {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
}

.risk-cta h3,
.guide-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.risk-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  font-weight: 600;
}

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

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  padding: 0 26px 24px;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.8;
}

.guide-actions {
  display: grid;
  gap: 20px;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.guide-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 5px rgba(70, 191, 208, 0.1);
}

.contact-grid {
  align-items: center;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.contact-points strong {
  display: block;
  margin-bottom: 8px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
}

.contact-direct p {
  margin: 0;
  color: var(--muted);
}

.contact-direct strong {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(164, 181, 197, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(70, 191, 208, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.5em;
  color: var(--accent-strong);
}

.site-footer {
  padding: 24px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-legal {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(79, 206, 139, 0.24);
  background: linear-gradient(135deg, rgba(38, 166, 91, 0.9), rgba(79, 206, 139, 0.8));
  color: #03150a;
  font-weight: 700;
  box-shadow: 0 16px 44px rgba(20, 82, 47, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .process-layout,
  .insight-grid,
  .contact-grid,
  .trust-band-inner,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .floating-note {
    position: relative;
    inset: auto;
    margin-top: 18px;
    width: 100%;
  }

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

  .trust-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
      rgba(7, 17, 27, 0.96);
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 200ms ease,
      visibility 200ms ease,
      transform 200ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 12px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1,
  .section-head h2,
  .insight-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .metric-grid,
  .service-grid,
  .engagement-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .panel,
  .service-card,
  .process-step,
  .board-card,
  .engagement-card,
  .contact-form,
  .trust-band-inner,
  .guide-card,
  .risk-cta,
  .contact-direct {
    border-radius: 24px;
  }

  .footer-inner {
    align-items: start;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .panel,
  .contact-form,
  .service-card,
  .board-card,
  .engagement-card,
  .process-step {
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .panel-topline {
    flex-direction: column;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-fab {
    right: 14px;
    left: 14px;
    bottom: 14px;
    min-width: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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