:root {
  --bg: #050609;
  --bg-2: #0b0d12;
  --panel: rgba(14, 17, 23, 0.78);
  --panel-strong: rgba(18, 21, 29, 0.94);
  --text: #f7f0df;
  --muted: #b8b1a2;
  --line: rgba(255, 226, 139, 0.18);
  --gold: #d4a645;
  --gold-soft: #fff0a9;
  --gold-dark: #8e6428;
  --tech: #43fff1;
  --tech-soft: rgba(67, 255, 241, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 226, 139, 0.09), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(67, 255, 241, 0.09), transparent 26rem),
    linear-gradient(180deg, #030405 0%, var(--bg) 42%, #07080c 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 240, 169, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 240, 169, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,.04) 49%, transparent 53% 100%);
  opacity: .28;
}

body.menu-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 110px;
}

.container.narrow {
  max-width: 890px;
  text-align: center;
}

.section {
  padding: 104px 0;
  position: relative;
}

.site-glow {
  position: fixed;
  inset: auto -15vw -30vh auto;
  width: 50vw;
  height: 50vw;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 166, 69, .16), rgba(67, 255, 241, .06) 38%, transparent 68%);
  filter: blur(20px);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 9, 0.64);
  border-bottom: 1px solid rgba(255, 226, 139, 0.12);
  transition: background .25s ease, height .25s ease;
}

.header.is-scrolled {
  height: 72px;
  background: rgba(5, 6, 9, 0.86);
}

.brand {
  width: 214px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 0 22px rgba(212, 166, 69, 0.18));
}

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

.nav a {
  color: rgba(247, 240, 223, .76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 12px 15px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav a:hover {
  color: var(--gold-soft);
  background: rgba(255, 226, 139, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-soft);
  border-radius: 99px;
}

.hero {
  min-height: min(100vh, 940px);
  padding: 150px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: 46px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 104px auto auto 8%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 226, 139, .16);
  transform: rotate(45deg);
  opacity: .25;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 20px 0 22px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 760px;
}

h1::selection, h2::selection, p::selection, span::selection, strong::selection, a::selection {
  background: rgba(212,166,69,.34);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-content > p {
  max-width: 640px;
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

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

.btn-primary {
  color: #11100c;
  background: linear-gradient(100deg, #b98232 0%, #fff0a9 48%, #d1a13d 100%);
  box-shadow: 0 16px 46px rgba(212, 166, 69, .24);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .035);
}

.btn-secondary:hover {
  border-color: rgba(255, 240, 169, .42);
  background: rgba(255, 240, 169, .07);
}

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

.trust-strip span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  color: rgba(247, 240, 223, .74);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,240,169,.24), rgba(67,255,241,.09) 32%, rgba(255,255,255,.05));
  border: 1px solid rgba(255, 240, 169, .18);
  box-shadow: var(--shadow);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 2px);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.06);
}

.visual-card img {
  width: 100%;
  border-radius: 25px;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.hud {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,240,169,.22);
  background: rgba(5, 6, 9, .66);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,.32);
}

.hud small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hud strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
  color: var(--gold-soft);
}

.hud-top { top: 34px; right: 30px; }
.hud-bottom { bottom: 32px; left: 28px; }

.manifesto {
  padding-top: 60px;
}

.manifesto h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p { margin-bottom: 0; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.026));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  transition: .28s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 240, 169, .42);
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.solution-card > div {
  padding: 26px;
}

.solution-card p {
  font-size: 15.5px;
  margin-bottom: 0;
}

.card-kicker {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.dark-panel {
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 226, 139, .09), transparent 30rem),
    radial-gradient(circle at 95% 20%, rgba(67,255,241,.08), transparent 28rem),
    rgba(0,0,0,.16);
}

.split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 62px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 900;
  border-bottom: 1px solid rgba(255,240,169,.42);
  padding-bottom: 7px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.046);
  border: 1px solid var(--line);
}

.feature-item > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #11100c;
  background: linear-gradient(135deg, #b98232, #fff0a9 58%, #d1a13d);
  font-weight: 950;
}

.feature-item p {
  margin-bottom: 0;
  font-size: 15.5px;
}

.application-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.application-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.application-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.application-grid div {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 240, 169, .14), rgba(255,255,255,.036));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.application-grid div::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255,240,169,.2);
  background: rgba(67,255,241,.06);
  transform: rotate(45deg);
}

.application-grid strong {
  color: var(--gold-soft);
  font-size: 20px;
  margin-bottom: 8px;
}

.application-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212,166,69,.2), transparent 65%);
}

.process-card > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 14px;
  color: #0a0803;
  background: linear-gradient(135deg, #b98232, #fff0a9 55%, #d1a13d);
  font-weight: 950;
}

.process-card p {
  font-size: 15.5px;
  margin-bottom: 0;
}

.leadership {
  padding-top: 50px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(255, 240, 169, .24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 240, 169, .11), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.026));
  box-shadow: var(--shadow);
}

.leadership-card p { margin-bottom: 0; max-width: 760px; }

.leadership-heading {
  margin-bottom: 32px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 240, 169, .18);
  background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.026));
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.founder-image-wrap {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,240,169,.1), rgba(67,255,241,.06));
}

.founder-image-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-content {
  padding: 28px;
}

.founder-role {
  display: block;
  margin: -2px 0 14px;
  color: var(--gold-soft);
  font-size: 14px;
  letter-spacing: .03em;
}

.founder-content p {
  font-size: 15.5px;
  margin-bottom: 0;
}

.leadership-stats {
  min-height: 210px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.24);
  border: 1px solid var(--line);
}

.leadership-stats strong {
  font-size: 76px;
  line-height: .85;
  letter-spacing: -.06em;
  background: linear-gradient(100deg, #b98232 0%, #fff0a9 48%, #d1a13d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.leadership-stats span {
  display: block;
  max-width: 230px;
  color: var(--muted);
  margin: 16px auto 0;
  line-height: 1.5;
}

.final-cta {
  padding-top: 60px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 36px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 78% 22%, rgba(67, 255, 241, .14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 240, 169, .14), rgba(255,255,255,.045));
  border: 1px solid rgba(255, 240, 169, .25);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 9px;
  background: linear-gradient(180deg, #fff0a9, #b98232, #43fff1);
}

.cta-card p { max-width: 720px; margin-bottom: 0; }

.contact-panel {
  display: grid;
  gap: 15px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(5,6,9,.42);
  border: 1px solid var(--line);
}

.contact-panel > a:not(.btn) {
  color: var(--gold-soft);
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.socials a {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: rgba(247,240,223,.82);
  font-weight: 800;
  font-size: 14px;
}

.footer {
  padding: 36px 0 92px;
  border-top: 1px solid rgba(255, 226, 139, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 188px;
}

.footer p {
  font-size: 14px;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 25;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  min-height: 58px;
  max-width: calc(100vw - 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #0b0c0f;
  font-weight: 950;
  white-space: nowrap;
  background: linear-gradient(100deg, #b98232 0%, #fff0a9 48%, #d1a13d 100%);
  box-shadow: 0 18px 48px rgba(212, 166, 69, .28);
  border: 1px solid rgba(255,255,255,.25);
}

.whatsapp-float::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, .13);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .hero,
  .split,
  .application-wrap,
  .leadership-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
    gap: 34px;
  }

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

  .solution-card {
    display: grid;
    grid-template-columns: 260px 1fr;
  }

  .solution-card img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .leadership-stats,
  .contact-panel {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .section { padding: 74px 0; }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header {
    height: 76px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .brand { width: 178px; }

  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 6, 9, .96);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 96px);
    overflow: auto;
  }

  .nav.is-open { display: flex; }

  .nav a {
    border-radius: 16px;
    padding: 15px;
  }

  .hero {
    width: min(var(--max), calc(100% - 28px));
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 30px;
    gap: 24px;
  }

  .hero::before {
    width: 220px;
    height: 220px;
    inset: 96px auto auto -20px;
  }

  h1 { font-size: clamp(40px, 14vw, 60px); }
  h2 { font-size: clamp(30px, 10vw, 42px); }

  p, .hero-content > p { font-size: 16px; line-height: 1.6; }

  .hero-actions .btn,
  .contact-panel .btn { width: 100%; }

  .trust-strip span { width: 100%; text-align: center; }

  .hud { display: none; }

  .solution-card,
  .founder-card {
    display: block;
  }

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

  .application-grid div {
    min-height: 152px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .founder-content,
  .feature-item,
  .process-card {
    padding: 24px;
  }

  .leadership-card,
  .cta-card {
    padding: 28px;
    border-radius: 28px;
  }

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

  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 0 15px;
    font-size: 14px;
  }
}


@media (max-width: 480px) {
  .section { padding: 64px 0; }

  .header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand { width: 162px; }

  .hero {
    width: calc(100% - 22px);
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(36px, 13vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 14px;
  }

  .visual-card {
    padding: 9px;
  }

  .visual-card img {
    border-radius: 20px;
  }

  .founder-content,
  .feature-item,
  .process-card,
  .contact-panel {
    padding: 20px;
  }

  .whatsapp-float {
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float::before {
    box-shadow: 0 0 0 9px rgba(37, 211, 102, .13);
  }
}

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