:root {
  --black: #081226;
  --navy: #0B1B34;
  --blue: #183B6B;
  --yellow: #D4A73D;
  --yellow-strong: #B9891F;
  --white: #FFFFFF;
  --text: #C7D2E0;
  --line: rgba(212, 167, 61, 0.2);
  --panel: rgba(11, 27, 52, 0.65);
  --panel-strong: rgba(8, 18, 38, 0.85);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --max: 1180px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 18%, #183B6B44, transparent 40rem),
    radial-gradient(circle at 12% 82%, #D4A73D14, transparent 32rem),
    linear-gradient(135deg, #081226 0%, #0B1B34 45%, #183B6B 100%);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(212, 167, 61, 0.15) 48%, transparent 49% 100%),
    linear-gradient(130deg, transparent 0 57%, rgba(24, 59, 107, 0.25) 58%, transparent 59% 100%);
  opacity: 0.6;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}

.site-energy {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.energy-line {
  position: absolute;
  width: min(58vw, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 167, 61, 0.8), rgba(24, 59, 107, 0.8), transparent);
  filter: drop-shadow(0 0 14px rgba(212, 167, 61, 0.45));
  opacity: 0.45;
  transform-origin: left center;
  animation: pulseLine 6s ease-in-out infinite;
}

.line-a {
  top: 24%;
  left: -10%;
  transform: rotate(-18deg);
}

.line-b {
  top: 58%;
  right: -16%;
  transform: rotate(15deg);
  animation-delay: 1.8s;
}

.line-c {
  bottom: 18%;
  left: 12%;
  transform: rotate(-5deg);
  animation-delay: 3.2s;
}

@keyframes pulseLine {

  0%,
  100% {
    opacity: 0.18;
    clip-path: inset(0 100% 0 0);
  }

  40%,
  65% {
    opacity: 0.58;
    clip-path: inset(0 0 0 0);
  }
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar.is-scrolled {
  top: 12px;
  padding: 10px 14px;
  background: rgba(11, 15, 20, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px #D4A73D52);
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.nav a {
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav a:hover {
  color: var(--yellow);
  text-shadow: 0 0 18px #D4A73D6B;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  will-change: transform;
}

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

.btn-primary,
.btn-whatsapp {
  background: linear-gradient(135deg, #F3D27A 0%, #D4A73D 45%, #B9891F 100%);
  color: #151000;
  box-shadow: 0 10px 30px rgba(185, 137, 31, 0.3);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: #F3D27A;
  box-shadow: 0 15px 40px rgba(212, 167, 61, 0.4);
}

.btn-secondary {
  color: var(--white);
  background: rgba(11, 27, 52, 0.4);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  background: rgba(11, 27, 52, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.section-panel {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #D4A73D47;
  border-radius: 999px;
  background: #D4A73D14;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
}

p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.48);
  font-size: 0.88rem;
}

.power-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 167, 61, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 59, 107, 0.2), transparent 40%),
    var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(212, 167, 61, 0.1);
  padding: clamp(22px, 4vw, 34px);
}

.power-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.04) 25px 26px);
  opacity: 0.42;
  pointer-events: none;
}

.console-header,
.voltage-readout,
.circuit-board,
.console-list {
  position: relative;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe5f2;
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px #D4A73DE6;
}

.voltage-readout {
  margin: 44px 0 26px;
  display: grid;
}

.voltage-readout strong {
  font-size: clamp(4.8rem, 10vw, 7.2rem);
  line-height: 0.82;
  color: var(--yellow);
  text-shadow: 0 0 34px #D4A73D57;
}

.voltage-readout small {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.circuit-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.circuit-board span {
  height: 72px;
  border: 1px solid #D4A73D2E;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #D4A73D33, transparent),
    rgba(11, 15, 20, 0.62);
}

.circuit-board span:nth-child(even) {
  transform: translateY(16px);
  border-color: #183B6B70;
}

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

.console-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #dbe5f2;
  background: rgba(11, 15, 20, 0.54);
}

.console-list span {
  color: var(--yellow);
  font-weight: 900;
}

.about,
.services,
.differentials,
.main-cta {
  padding: clamp(72px, 10vw, 124px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  margin-top: 22px;
}

.section-title h2,
.section-heading h2,
.cta-box h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-text {
  color: #cbd5e1;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading .section-kicker {
  margin-bottom: 18px;
}

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

.service-card {
  min-height: 286px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 59, 107, 0.2), transparent 45%),
    var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 167, 61, 0.5);
  background:
    linear-gradient(135deg, rgba(24, 59, 107, 0.25), transparent 45%),
    var(--panel-strong);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 167, 61, 0.1);
}

.service-card svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  color: var(--yellow);
  background: #D4A73D17;
  box-shadow: 0 0 24px #D4A73D21;
}

.service-card h3 {
  margin: 24px 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.diff-item {
  min-height: 130px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(8px);
  overflow: hidden;
  word-break: break-word;
}

.diff-item strong {
  color: var(--yellow);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.diff-item span {
  color: #cbd5e1;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(212, 167, 61, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(212, 167, 61, 0.15), transparent 36%),
    linear-gradient(135deg, rgba(24, 59, 107, 0.4), var(--panel-strong));
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--blue), transparent);
  opacity: 0.85;
}

.cta-box p {
  max-width: 620px;
  color: #dbe5f2;
  font-size: 1.08rem;
}

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(180px, 0.5fr);
  gap: 28px;
  color: #cbd5e1;
}

.footer p {
  max-width: 390px;
  color: var(--text);
}

address,
.socials {
  display: grid;
  gap: 9px;
  font-style: normal;
}

address a,
.socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbe5f2;
  text-decoration: none;
}

address a:hover,
.socials a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.copyright {
  margin: 0;
  font-size: 0.86rem;
}

.developer-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.developer-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.developer-logo img {
  width: 84px;
  height: auto;
  max-height: 24px;
  object-fit: contain;
}

.float-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #151000;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 14px 40px #B9891F6B, 0 0 0 8px #D4A73D17;
  transition: transform 180ms ease;
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.bio-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.bio-shell {
  position: relative;
  overflow: hidden;
  width: min(100%, 480px);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 6vw, 34px);
  border: 1px solid rgba(212, 167, 61, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 167, 61, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(24, 59, 107, 0.3), transparent 42%),
    var(--panel-strong);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  text-align: center;
}

.bio-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, #D4A73D3D, transparent) top / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, 0.035) 31px 32px);
  pointer-events: none;
}

.bio-identity,
.bio-proof,
.bio-services,
.bio-links {
  position: relative;
}

.bio-identity {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.bio-logo {
  width: 250px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px #D4A73D57);
}

.bio-shell h1 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  line-height: 1;
}

.bio-shell p {
  max-width: 340px;
  margin-bottom: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.bio-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bio-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.55);
  color: #dbe5f2;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.bio-service-item svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.bio-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(5px);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bio-link-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.bio-link-icon svg {
  width: 18px;
  height: 18px;
}

.bio-link-arrow {
  margin-left: auto;
  color: var(--yellow);
  font-size: 1rem;
}

.bio-links {
  display: grid;
  gap: 10px;
}

.bio-link:hover {
  border-color: var(--yellow);
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.bio-link.primary {
  color: #151000;
  background: linear-gradient(135deg, #F3D27A 0%, #D4A73D 45%, #B9891F 100%);
  border: none;
}

.bio-link.primary .bio-link-icon {
  background: rgba(0, 0, 0, 0.15);
}

.bio-link.primary .bio-link-arrow {
  color: rgba(0, 0, 0, 0.5);
}

.bio-link-ghost {
  border-style: dashed;
  opacity: 0.75;
}

.bio-link-ghost:hover {
  opacity: 1;
}

.bio-footer-note {
  margin: 0;
  color: rgba(203, 213, 225, 0.4);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 980px) {
  .topbar {
    width: min(calc(100% - 20px), var(--max));
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .power-console {
    max-width: 560px;
  }

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

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

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

@media (max-width: 620px) {
  .topbar {
    min-height: 68px;
  }

  .brand img {
    width: 140px;
    height: 60px;
  }

  .brand small {
    display: none;
  }

  .btn-small {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0;
  }

  .btn-small svg {
    width: 24px;
    height: 24px;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .main-cta .btn {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .bio-page {
    align-items: center;
    padding: 18px 12px;
  }

  .bio-proof {
    grid-template-columns: 1fr;
  }

  .bio-link {
    min-height: 56px;
  }

  .circuit-board span {
    height: 54px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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