:root {
  --ink: #071019;
  --ink-deep: #030a11;
  --surface: #0a1724;
  --green-dark: #09281f;
  --paper: #f5f3ed;
  --muted: #b9c3cb;
  --green: #24d790;
  --green-soft: #65c879;
  --blue: #3d87e8;
  --rule: rgba(245, 243, 237, .22);
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --shell: min(1380px, calc(100vw - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  background: rgba(3,10,17,.82);
  backdrop-filter: blur(18px);
}
.brand, .contact-brand {
  font: 600 27px/1 var(--serif);
  text-decoration: none;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand span, .contact-brand span { color: var(--green); }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.primary-nav a {
  color: #e8ecec;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--green); }
.primary-nav .nav-contact {
  padding: 12px 19px;
  border: 1px solid rgba(101,200,121,.75);
  border-radius: 3px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(690px, 82vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(36,215,144,.4);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,10,17,.98) 0%, rgba(3,10,17,.9) 36%, rgba(3,10,17,.34) 66%, rgba(3,10,17,.08) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 105px; }
.hero h1, .business h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.05em;
}
.hero h1 { max-width: 820px; font-size: clamp(56px, 6.2vw, 94px); line-height: .94; }
.hero-content > p { max-width: 720px; margin: 28px 0 0; color: #e4e8e8; font-size: clamp(18px, 1.7vw, 25px); line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; }

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .index-arrow { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #03110d; background: var(--green); }
.button-primary:hover { background: #55e3aa; }
.button-outline { border-color: rgba(101,200,121,.82); background: rgba(3,10,17,.36); }
.button-blue { color: #fff; background: #1454a2; }
.button-blue:hover { background: #1a67c5; }

.service-index { border-bottom: 1px solid rgba(36,215,144,.38); background: var(--ink-deep); }
.index-row {
  position: relative;
  height: 154px;
  display: grid;
  grid-template-columns: 180px minmax(420px, 1fr) minmax(300px, 42%);
  align-items: stretch;
  border-bottom: 1px solid rgba(245,243,237,.2);
  overflow: hidden;
  text-decoration: none;
}
.index-number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid currentColor;
  color: var(--green);
  font: 500 82px/1 var(--serif);
}
.index-row-chile .index-number { color: var(--blue); }
.index-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px 56px;
  background: linear-gradient(90deg, var(--ink-deep) 5%, rgba(3,10,17,.96) 74%, rgba(3,10,17,.14));
}
.index-copy strong { font: 500 clamp(27px, 2.5vw, 41px)/1.05 var(--serif); letter-spacing: -.035em; }
.index-copy small { max-width: 660px; color: #d3d9dc; font-size: 16px; line-height: 1.5; }
.index-row img { width: 100%; height: 154px; object-fit: cover; transition: transform .55s ease; }
.index-row:hover img { transform: scale(1.035); }
.index-row::after { content: ""; position: absolute; inset: 0; border-left: 5px solid transparent; transition: border-color .2s; }
.index-row:hover::after { border-left-color: var(--green); }
.index-arrow { position: absolute; z-index: 3; right: 32px; top: 50%; transform: translateY(-50%); }
.index-crypto { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 76px; padding: 18px; color: #dce4e4; font-size: 15px; }
.crypto-mark { display: inline-grid; place-items: center; flex: 0 0 auto; width: 36px; height: 36px; border: 1px solid var(--green); border-radius: 50%; color: var(--green); font-size: 21px; }

.business { scroll-margin-top: 74px; }
.business-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, .8fr); gap: clamp(70px, 8vw, 140px); align-items: center; }
.business-copy { position: relative; }
.business-number { display: block; margin-bottom: 6px; color: rgba(101,200,121,.55); font: 500 clamp(72px, 7vw, 112px)/.8 var(--serif); }
.business h2 { font-size: clamp(48px, 5.1vw, 76px); line-height: 1.02; }
.business-lead { margin: 26px 0 0; color: var(--green-soft); font-size: clamp(19px, 1.7vw, 25px); line-height: 1.5; }
.business-body { max-width: 710px; margin: 22px 0 0; color: #e1e6e7; font-size: 17px; line-height: 1.75; }
.business-ai { padding: 118px 0; background: radial-gradient(circle at 80% 40%, rgba(18,63,46,.25), transparent 35%), var(--ink-deep); }
.service-lines { margin: 34px 0; padding: 0; border-top: 1px solid var(--rule); list-style: none; }
.service-lines li { min-height: 72px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--rule); }
.service-lines svg { width: 31px; height: 31px; fill: none; stroke: var(--green-soft); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-lines strong { font-size: 17px; font-weight: 500; }
.crypto-note { display: flex; align-items: center; gap: 12px; margin: 24px 0 0; color: #e4e9e9; font-size: 15px; }

.casachat-feature { align-self: center; }
.phone { width: min(100%, 415px); margin: auto; padding: 12px; border: 1px solid #7c8387; border-radius: 52px; background: linear-gradient(140deg, #10151a, #3b4043 48%, #101418); box-shadow: 0 36px 90px rgba(0,0,0,.48); }
.phone-screen { overflow: hidden; border-radius: 41px; background: #0d171a; }
.phone-status { height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 21px; color: #fff; font-size: 11px; }
.phone-status i { width: 65px; height: 20px; border-radius: 20px; background: #000; }
.chat-head { height: 66px; display: flex; align-items: center; gap: 12px; padding: 0 18px; background: #182329; }
.chat-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #1e7456; font-weight: 700; }
.chat-head strong, .chat-head small { display: block; }
.chat-head small { margin-top: 2px; color: #a7b3b6; font-size: 10px; }
.chat-body { min-height: 455px; padding: 18px 15px; background: #091316; }
.message { position: relative; max-width: 81%; margin: 0 0 10px; padding: 11px 12px 22px; border-radius: 9px; color: #e9edee; font-size: 12px; line-height: 1.45; }
.message small { position: absolute; right: 7px; bottom: 5px; color: #aeb8ba; font-size: 8px; }
.message.received { background: #202c31; }
.message.sent { margin-left: auto; background: #0f593e; }
.property-message { display: grid; grid-template-columns: 94px 1fr; gap: 10px; max-width: 90%; margin-bottom: 10px; padding: 6px; border-radius: 10px; background: #1c282e; }
.property-message img { width: 94px; height: 83px; object-fit: cover; border-radius: 7px; }
.property-message div { display: flex; flex-direction: column; justify-content: center; gap: 5px; font-size: 11px; }
.property-message span { color: #bcc7ca; }
.property-message small { color: #5bb6ff; }
.chat-input { display: flex; justify-content: space-between; margin: 10px 14px 16px; padding: 12px 14px; border-radius: 28px; background: #1b282d; color: #879397; font-size: 12px; }
.chat-input span { color: var(--green); }
.casachat-copy { width: min(100%, 480px); margin: 24px auto 0; }
.casachat-logo { width: 180px; height: auto; filter: brightness(1.35); }
.casachat-copy p { margin: 12px 0; color: #dce3e4; font-size: 15px; line-height: 1.55; }
.casachat-copy > strong { font-size: 15px; }
.casachat-copy > strong span { color: var(--green-soft); }

.business-chile { min-height: 920px; display: grid; grid-template-columns: minmax(0, .84fr) minmax(600px, 1.16fr); background: var(--ink); }
.chile-media { position: relative; min-height: 920px; }
.chile-media img { width: 100%; height: 100%; object-fit: cover; }
.chile-media small { position: absolute; left: 24px; bottom: 20px; padding: 8px 11px; background: rgba(3,10,17,.78); color: #d8e0e3; font-size: 10px; }
.chile-copy { align-self: center; padding: 80px clamp(48px, 7vw, 120px); }
.chile-copy .business-number { color: rgba(61,135,232,.7); }
.chile-copy .business-lead { color: #d9e5f8; }
.process-lines { margin: 30px 0; padding: 0; border-top: 1px solid var(--rule); list-style: none; }
.process-lines li { min-height: 86px; display: grid; grid-template-columns: 54px minmax(190px, .9fr) 1.15fr; align-items: center; gap: 18px; border-bottom: 1px solid var(--rule); }
.process-lines li > span { color: var(--blue); font: 500 29px/1 var(--serif); }
.process-lines strong { font-size: 15px; }
.process-lines p { margin: 0; color: #cfd7dc; font-size: 13px; line-height: 1.5; }
.disclosure { max-width: 760px; margin: 28px 0 0; padding-top: 22px; border-top: 1px solid var(--rule); color: #aeb8bf; font-size: 11px; line-height: 1.55; }
.disclosure strong { color: #dbe2e5; }

.business-florida { min-height: 810px; display: grid; grid-template-columns: minmax(580px, 1fr) minmax(0, 1fr); background: var(--ink); }
.florida-copy { align-self: center; padding: 88px clamp(48px, 7vw, 120px); }
.florida-media { min-height: 810px; }
.florida-media img { width: 100%; height: 100%; object-fit: cover; }
.service-lines-detail li { min-height: 82px; }
.service-lines-detail li::before { content: ""; width: 10px; height: 10px; border: 1px solid var(--green); transform: rotate(45deg); }
.service-lines-detail div { display: grid; grid-template-columns: minmax(210px, .9fr) 1fr; align-items: center; gap: 22px; width: 100%; }
.service-lines-detail p { margin: 0; color: #cbd4d7; font-size: 13px; line-height: 1.5; }

.contact { scroll-margin-top: 74px; border-top: 1px solid rgba(36,215,144,.28); border-bottom: 1px solid var(--rule); background: #081624; }
.contact-inner { min-height: 235px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 48px; }
.contact-brand { padding-right: 44px; border-right: 1px solid var(--rule); }
.contact h2 { font-size: clamp(36px, 3.4vw, 54px); line-height: 1; }
.contact-copy p { max-width: 680px; margin: 14px 0 0; color: #d3dadd; font-size: 15px; line-height: 1.6; }
.contact-links { display: flex; align-items: stretch; }
.contact-links a { display: grid; place-items: center; min-height: 64px; padding: 0 24px; border-left: 1px solid var(--rule); color: #e9eeee; font-size: 14px; text-decoration: none; }
.contact-links a:hover { color: var(--green); }

footer { background: var(--ink-deep); }
.footer-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #89959c; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 56px, 1000px); }
  .site-header { padding-inline: 28px; }
  .primary-nav { gap: 19px; }
  .primary-nav a { font-size: 12px; }
  .index-row { grid-template-columns: 140px 1fr 33%; }
  .index-copy { padding-inline: 38px; }
  .business-grid { grid-template-columns: 1fr 390px; gap: 56px; }
  .business-chile, .business-florida { grid-template-columns: 1fr 1.15fr; }
  .chile-copy, .florida-copy { padding-inline: 46px; }
  .contact-inner { grid-template-columns: 180px 1fr; padding-block: 42px; }
  .contact-links { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 40px); }
  .site-header { min-height: 68px; padding-inline: 20px; }
  .brand { font-size: 23px; }
  .menu-button { display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 1px solid rgba(255,255,255,.22); border-radius: 3px; background: transparent; }
  .menu-button > span:not(.sr-only) { display: block; width: 18px; height: 1px; background: #fff; transition: transform .2s, opacity .2s; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 68px 0 auto; display: none; align-items: stretch; gap: 0; padding: 18px 20px 28px; border-bottom: 1px solid var(--rule); background: rgba(3,10,17,.98); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 15px; }
  .primary-nav .nav-contact { margin-top: 12px; padding: 14px; text-align: center; }
  .hero { min-height: 720px; align-items: end; }
  .hero-media { object-position: 70% center; }
  .hero-fade { background: linear-gradient(180deg, rgba(3,10,17,.18) 5%, rgba(3,10,17,.7) 47%, rgba(3,10,17,.98) 79%); }
  .hero-content { padding: 150px 0 62px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-content > p { font-size: 17px; }
  .index-row { height: 220px; grid-template-columns: 82px 1fr; }
  .index-row img { position: absolute; inset: 0; height: 220px; opacity: .25; }
  .index-number { font-size: 55px; background: rgba(3,10,17,.68); }
  .index-copy { padding: 28px 48px 28px 28px; background: linear-gradient(90deg, rgba(3,10,17,.96), rgba(3,10,17,.72)); }
  .index-copy strong { font-size: 30px; }
  .index-copy small { font-size: 14px; }
  .index-arrow { right: 17px; }
  .business-grid { grid-template-columns: 1fr; }
  .business-ai { padding: 92px 0; }
  .casachat-feature { margin-top: 16px; }
  .business-chile, .business-florida { display: flex; min-height: 0; flex-direction: column; }
  .chile-media, .florida-media { min-height: 510px; }
  .chile-copy, .florida-copy { padding: 82px 20px; }
  .business-chile .chile-media { order: 2; }
  .business-florida .florida-media { order: 2; }
  .contact-inner { grid-template-columns: 1fr; gap: 26px; padding-block: 54px; }
  .contact-brand { padding: 0 0 24px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .contact-links { grid-column: auto; flex-wrap: wrap; }
  .contact-links a { min-height: 52px; padding-inline: 18px; border: 1px solid var(--rule); margin: -1px 0 0 -1px; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 32px); }
  .hero { min-height: 690px; }
  .hero h1 { font-size: 50px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .index-row { grid-template-columns: 64px 1fr; height: 235px; }
  .index-row img { height: 235px; }
  .index-number { font-size: 43px; }
  .index-copy { padding: 24px 35px 24px 20px; }
  .index-copy strong { font-size: 27px; }
  .index-crypto { align-items: flex-start; font-size: 13px; line-height: 1.5; }
  .business h2 { font-size: 43px; }
  .business-number { font-size: 74px; }
  .business-lead { font-size: 19px; }
  .business-body { font-size: 15px; }
  .phone { width: 100%; border-radius: 40px; }
  .phone-screen { border-radius: 31px; }
  .chat-body { min-height: 405px; }
  .casachat-logo { width: 150px; }
  .process-lines li { grid-template-columns: 42px 1fr; gap: 8px 13px; padding-block: 17px; }
  .process-lines p { grid-column: 2; }
  .service-lines-detail div { grid-template-columns: 1fr; gap: 7px; padding-block: 14px; }
  .chile-media, .florida-media { min-height: 360px; }
  .contact-links { display: grid; width: 100%; }
  .footer-inner { min-height: 94px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

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