
:root {
  --black: #050506;
  --ink: #111113;
  --beige: #e8dfd1;
  --beige-soft: #f5efe7;
  --white: #ffffff;
  --purple: #9c82ff;
  --muted: #aaa6a0;
  --line: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 800; }

.site-header {
  height: 94px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,6,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; }
.brand img { width: 205px; display: block; }
nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 750; }
.nav-cta { padding: 14px 22px; color: var(--black); background: var(--beige); border-radius: 99px; }

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 75px 0 95px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.eyebrow { margin-bottom: 20px; color: var(--beige); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: #5c5449; }
h1 { margin-bottom: 28px; font-size: clamp(58px, 5.2vw, 78px); line-height: .98; letter-spacing: -.055em; }
h1 em { color: var(--beige); font-style: normal; }
.hero-text { max-width: 610px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.button { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border-radius: 8px; font-size: 14px; font-weight: 850; transition: transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.26); }
.button.beige { color: var(--black); background: var(--beige); }
.button.black { color: white; background: var(--black); }
.text-link { padding: 14px 0; border-bottom: 1px solid #77736e; font-size: 14px; font-weight: 800; }

.hero-art { min-height: 480px; position: relative; display: grid; place-items: center; }
.circle { position: absolute; border: 1px solid rgba(156,130,255,.58); border-radius: 50%; }
.circle-one { width: 465px; height: 465px; }
.circle-two { width: 340px; height: 340px; border-color: rgba(232,223,209,.25); border-style: dashed; animation: spin 28s linear infinite; }
.lead-card { width: 390px; min-height: 335px; padding: 45px 48px; position: relative; z-index: 2; color: var(--black); background: var(--beige); border-radius: 42px; box-shadow: 0 30px 75px rgba(0,0,0,.38); animation: float 5s ease-in-out infinite; }
.lead-card > span { color: #665f56; font-size: 10px; font-weight: 850; letter-spacing: .18em; }
.lead-card > strong { display: block; margin: 22px 0 28px; font-size: 27px; line-height: 1.15; letter-spacing: -.03em; }
.lead-card > div { padding: 13px 0; display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(5,5,6,.2); color: #4f4a44; font-size: 12px; }
.lead-card i { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-9px); } }

.statement { padding: 90px max(24px, calc((100% - 1000px) / 2)); color: var(--black); background: var(--beige); }
.statement p { margin: 0; font-size: clamp(34px, 4vw, 56px); font-weight: 750; line-height: 1.15; letter-spacing: -.04em; text-align: center; }

.development-section { padding: 115px max(24px, calc((100% - 1180px) / 2)) 125px; color: var(--black); background: var(--beige-soft); }
.section-heading { margin-bottom: 58px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.section-heading h2, .work-intro h2 { margin-bottom: 0; font-size: clamp(42px, 4.2vw, 61px); line-height: 1.02; letter-spacing: -.045em; }
.section-heading > p { margin-bottom: 5px; color: #625d56; font-size: 15px; line-height: 1.75; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pillar-grid article { min-height: 300px; padding: 30px; background: white; border: 1px solid #ded5c8; border-radius: 22px; transition: transform .25s ease, box-shadow .25s ease; }
.pillar-grid article:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(63,52,39,.1); }
.pillar-grid span { font-size: 11px; font-weight: 850; }
.pillar-grid h3 { margin: 48px 0 16px; font-size: 29px; letter-spacing: -.03em; }
.pillar-grid p { max-width: 460px; margin: 0; color: #655f58; font-size: 14px; line-height: 1.7; }

.work-section { padding: 115px max(24px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; background: var(--black); }
.work-intro > p:not(.eyebrow) { max-width: 470px; color: var(--muted); line-height: 1.75; }
.work-options article { padding: 38px 0; display: grid; grid-template-columns: 50px 1fr; gap: 20px; border-top: 1px solid var(--line); }
.work-options article:last-child { border-bottom: 1px solid var(--line); }
.work-options > article > span { color: var(--purple); font-size: 11px; font-weight: 850; }
.work-options h3 { margin-bottom: 13px; font-size: 25px; }
.work-options p { max-width: 590px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.final-cta { min-height: 470px; padding: 85px max(24px, calc((100% - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 55px; color: var(--black); background: var(--beige); }
.final-cta h2 { margin: 0; font-size: clamp(42px, 4.5vw, 64px); line-height: 1.02; letter-spacing: -.05em; }
.final-cta .button { flex: 0 0 auto; }

footer { min-height: 165px; padding: 35px max(24px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; background: var(--black); }
footer img { width: 178px; }
footer p { margin: 0; color: #89857f; text-align: center; font-size: 11px; }
footer > div { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; font-size: 11px; font-weight: 750; }

.whatsapp-float { min-height: 58px; padding: 10px 19px; display: flex; flex-direction: column; justify-content: center; position: fixed; right: 20px; bottom: 20px; z-index: 30; color: white; background: #159a50; border-radius: 99px; box-shadow: 0 15px 36px rgba(8,75,35,.25); font-size: 11px; line-height: 1.2; }
.whatsapp-float small { font-size: 9px; opacity: .8; }

@media (max-width: 820px) {
  .site-header { height: 74px; padding: 0 16px; }
  .brand img { width: 150px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 11px 14px; font-size: 11px; }
  .hero { width: calc(100% - 32px); min-height: auto; padding: 55px 0 60px; grid-template-columns: 1fr; gap: 28px; }
  h1 { font-size: clamp(44px, 12.8vw, 62px); }
  .hero-text { font-size: 16px; }
  .hero-actions { margin-top: 28px; flex-direction: column; align-items: stretch; gap: 9px; }
  .text-link { align-self: flex-start; }
  .hero-art { min-height: 380px; margin: -10px -28px; transform: scale(.84); }
  .statement { padding: 70px 18px; }
  .development-section { padding: 78px 16px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid article { min-height: 270px; }
  .work-section { padding: 78px 18px; grid-template-columns: 1fr; gap: 40px; }
  .final-cta { min-height: 480px; padding: 72px 18px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .final-cta .button { width: 100%; }
  footer { padding: 45px 18px 90px; grid-template-columns: 1fr; }
  footer p { text-align: left; }
  footer > div { align-items: flex-start; }
  .whatsapp-float { right: 13px; bottom: 13px; }
}

@media (max-width: 520px) {
  .site-header { height: 68px; padding: 0 12px; }
  .brand img { width: 132px; }
  .nav-cta { padding: 9px 11px; }
  .hero { width: calc(100% - 28px); padding-top: 43px; }
  .eyebrow { margin-bottom: 15px; font-size: 10px; }
  h1 { font-size: clamp(39px, 12.2vw, 52px); }
  .hero-art { min-height: 335px; margin: -18px -46px; transform: scale(.75); }
  .section-heading h2, .work-intro h2 { font-size: clamp(34px, 10.5vw, 44px); }
  .pillar-grid article { min-height: 250px; padding: 25px 22px; }
  .pillar-grid h3 { margin-top: 38px; font-size: 25px; }
  .final-cta h2 { font-size: clamp(35px, 10.5vw, 47px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .circle-two, .lead-card { animation: none; }
}
