:root{
  --bg:#FEFEFE;
  --surface:#ffffff;
  --ink:#0b1220;
  --muted:#475569;
  --primary:#004AAD;
  --accent:#CB6BE6;
  --border:rgba(2,6,23,.12);
  --shadow:0 18px 50px rgba(2,6,23,.10);
  --radius:18px;
  --radius-sm:12px;
  --container:1100px;
  --focus:0 0 0 4px rgba(203,107,230,.22);
}
*{box-sizing:border-box}
html{color-scheme:light}
body{
  margin:0;
  font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1200px 800px at 12% -12%, rgba(203,107,230,.18), transparent 55%),
    radial-gradient(900px 700px at 88% -10%, rgba(0,74,173,.18), transparent 55%),
    var(--bg);
  color:var(--ink);
  line-height:1.55;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}
.skip-link{
  position:absolute;
  left:16px;
  top:12px;
  transform:translateY(-200%);
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  box-shadow:var(--shadow);
  z-index:9999;
}
.skip-link:focus{transform:translateY(0);outline:none;box-shadow:var(--shadow),var(--focus)}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(254,254,254,.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(2,6,23,.06);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{width:164px;height:auto}
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  color:rgba(11,18,32,.88);
  padding:10px 12px;
  border-radius:999px;
  transition:background .18s ease, color .18s ease;
}
.nav a:not(.nav-cta):hover{background:rgba(0,74,173,.08)}
.nav a:not(.nav-cta)[aria-current="page"]{
  background:rgba(203,107,230,.14);
  color:var(--ink);
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff;
  box-shadow:0 16px 40px rgba(0,74,173,.22);
  transition:filter .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav a.nav-cta{color:#fff}
.nav a.nav-cta:visited{color:#fff}
.nav-cta:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}
.nav-cta[aria-current="page"]{
  box-shadow:0 16px 40px rgba(0,74,173,.22), 0 0 0 4px rgba(255,255,255,.65);
}
.nav-cta:focus{outline:none;box-shadow:0 16px 40px rgba(0,74,173,.22),var(--focus)}
.ig-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:800;
  color:rgba(11,18,32,.92);
  box-shadow:0 10px 30px rgba(2,6,23,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}
.ig-link:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 42px rgba(2,6,23,.10);
}
.ig-link:focus{outline:none;box-shadow:var(--focus)}
.ig-link svg{width:18px;height:18px;flex-shrink:0}
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:999px;
  padding:10px 12px;
  font:inherit;
  font-weight:700;
}
.nav-toggle:focus{outline:none;box-shadow:var(--focus)}
.mobile-panel{
  display:none;
  padding:0 0 14px 0;
}
.mobile-panel[data-open="true"]{display:block}
.mobile-panel a{
  display:block;
  padding:12px 14px;
  border:1px solid rgba(2,6,23,.08);
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  margin-top:10px;
  background:rgba(255,255,255,.65);
}
.hero{
  padding:64px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(0,74,173,.08);
  border:1px solid rgba(0,74,173,.10);
  color:rgba(0,74,173,.92);
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
}
.title{
  margin:16px 0 10px;
  font-size:clamp(30px, 4.2vw, 52px);
  line-height:1.1;
  letter-spacing:-.02em;
}
.title strong{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 22px;
  font-size:18px;
  color:var(--muted);
  max-width:62ch;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.contact-form{
  margin-top:16px;
  padding:0;
  border-radius:0;
  background:transparent;
  border:0;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.field label{
  display:block;
  font-weight:800;
  color:rgba(11,18,32,.88);
  font-size:13px;
  margin:0 0 8px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.92);
  padding:12px 12px;
  font:inherit;
  color:var(--ink);
  outline:none;
  box-shadow:none;
  transition:box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.field textarea{resize:vertical}
.field input::placeholder,
.field textarea::placeholder{color:rgba(71,85,105,.70)}
.field input:focus,
.field select:focus,
.field textarea:focus{box-shadow:var(--focus);border-color:rgba(203,107,230,.38)}
@media (max-width:640px){
  .form-grid{grid-template-columns:1fr}
}
.countdown{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}
.countdown-item{
  border-radius:16px;
  padding:14px 12px 12px;
  background:
    radial-gradient(320px 180px at 20% 10%, rgba(203,107,230,.18), transparent 55%),
    radial-gradient(320px 180px at 80% 10%, rgba(0,74,173,.18), transparent 55%),
    rgba(255,255,255,.78);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 16px 46px rgba(2,6,23,.10);
  text-align:center;
}
.countdown-num{
  font-weight:900;
  letter-spacing:-.03em;
  font-size:clamp(22px, 3.8vw, 34px);
  line-height:1.05;
  color:rgba(11,18,32,.92);
}
.countdown-label{
  margin-top:6px;
  font-weight:800;
  color:rgba(71,85,105,.90);
  font-size:12px;
  letter-spacing:.02em;
}
@media (max-width:520px){
  .countdown{grid-template-columns:repeat(2, 1fr)}
}
.mosaic{display:grid;gap:14px}
.mosaic-head{max-width:78ch}
.room-mockups{
  position:relative;
  height:clamp(340px, 44vw, 560px);
  margin-top:14px;
}
.room-mock{
  position:absolute;
  margin:0;
  padding:12px;
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(203,107,230,.16), transparent 55%),
    radial-gradient(520px 260px at 90% 10%, rgba(0,74,173,.14), transparent 60%),
    rgba(255,255,255,.62);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 34px 96px rgba(2,6,23,.18);
  backdrop-filter:blur(10px);
  overflow:hidden;
  transform:translateZ(0);
  transition:transform .24s ease, box-shadow .24s ease;
}
.room-mock::after{
  content:'';
  position:absolute;
  inset:12px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(203,107,230,.18), rgba(0,74,173,.16));
  mix-blend-mode:color;
  opacity:.28;
  pointer-events:none;
}
.room-mock img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:14px;
  filter:saturate(1.32) contrast(1.10) brightness(1.06);
}
.room-mock-3 img{filter:saturate(1.22) contrast(1.08) brightness(.98)}
.room-mock-1{
  left:0;
  top:10px;
  width:54%;
  height:72%;
  border-radius:34px 18px 50px 22px;
  clip-path:polygon(0% 0%, 96% 0%, 100% 18%, 92% 42%, 100% 64%, 86% 100%, 0% 100%);
  animation:roomFloat1 10.5s ease-in-out infinite;
}
.room-mock-2{
  right:0;
  top:0;
  width:42%;
  height:46%;
  border-radius:52px 22px 18px 38px;
  clip-path:polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 18%);
  animation:roomFloat2 11.2s ease-in-out infinite;
}
.room-mock-3{
  right:6%;
  bottom:0;
  width:30%;
  height:60%;
  border-radius:22px;
  clip-path:none;
  animation:roomFloat3 10.8s ease-in-out infinite;
}
.room-mock-4{
  left:18%;
  bottom:-8px;
  width:44%;
  height:42%;
  border-radius:44px 18px 56px 20px;
  clip-path:none;
  animation:roomFloat4 11.6s ease-in-out infinite;
}
.room-mockups:hover .room-mock{transform:translateY(-4px) scale(1.01)}
@keyframes roomFloat1{
  0%,100%{transform:translateY(0) rotate(-2deg)}
  50%{transform:translateY(-5px) rotate(-1.2deg)}
}
@keyframes roomFloat2{
  0%,100%{transform:translateY(0) rotate(2.4deg)}
  50%{transform:translateY(-6px) rotate(1.4deg)}
}
@keyframes roomFloat3{
  0%,100%{transform:translateY(0) rotate(-1.8deg)}
  50%{transform:translateY(-4px) rotate(-1deg)}
}
@keyframes roomFloat4{
  0%,100%{transform:translateY(0) rotate(1.6deg)}
  50%{transform:translateY(-6px) rotate(.9deg)}
}
@media (prefers-reduced-motion: reduce){
  .room-mock{animation:none;transition:none}
}
@media (max-width:820px){
  .room-mockups{height:clamp(460px, 92vw, 700px)}
  .room-mock{clip-path:none}
  .room-mock-1{width:74%;height:52%;left:0;top:0}
  .room-mock-2{width:58%;height:44%;right:0;top:16%}
  .room-mock-3{width:54%;height:54%;right:0;bottom:0}
  .room-mock-4{width:66%;height:40%;left:0;bottom:6%}
  .room-mock-3{z-index:50}
  .room-mock-4{z-index:40}
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change:transform;
}
.btn-sm{
  padding:10px 14px;
  font-weight:800;
}
.btn:focus{outline:none;box-shadow:var(--focus)}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff;
  box-shadow:0 18px 45px rgba(2,6,23,.16);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  background:rgba(255,255,255,.66);
  border-color:rgba(2,6,23,.10);
}
.btn-secondary:hover{transform:translateY(-1px)}
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:66px;
  height:66px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow:
    0 26px 70px rgba(2,6,23,.28),
    0 10px 26px rgba(2,6,23,.16),
    0 0 0 10px rgba(37,211,102,.20),
    0 0 0 18px rgba(37,211,102,.10);
  z-index:9999;
  border:1px solid rgba(255,255,255,.22);
  transition:transform .18s ease, box-shadow .18s ease;
  animation:whatsFloat 3.8s ease-in-out infinite;
  will-change:transform;
}
.whatsapp-float::before{
  content:'';
  position:absolute;
  inset:-10px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(37,211,102,.42), rgba(37,211,102,.14) 56%, transparent 72%);
  opacity:.95;
  filter:blur(10px);
  z-index:-1;
  animation:whatsPulse 2.6s ease-in-out infinite;
}
.whatsapp-float::after{
  content:attr(data-tooltip);
  position:absolute;
  right:calc(100% + 12px);
  bottom:50%;
  transform:translateY(50%) translateX(6px);
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(2,6,23,.10);
  color:rgba(11,18,32,.92);
  box-shadow:0 16px 42px rgba(2,6,23,.14);
  white-space:nowrap;
  font-weight:800;
  font-size:13px;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.whatsapp-float svg{width:30px;height:30px;filter:drop-shadow(0 12px 22px rgba(2,6,23,.26))}
.whatsapp-float:hover{transform:translateY(-4px) scale(1.02)}
.whatsapp-float:hover::after,
.whatsapp-float:focus::after{opacity:1;transform:translateY(50%) translateX(0)}
.whatsapp-float:focus{
  outline:none;
  box-shadow:
    0 24px 60px rgba(2,6,23,.26),
    0 10px 24px rgba(2,6,23,.16),
    0 0 0 0 rgba(37,211,102,.30),
    var(--focus);
}
@keyframes whatsFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
@keyframes whatsPulse{
  0%,100%{transform:scale(.98);opacity:.55}
  50%{transform:scale(1.07);opacity:.90}
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float{animation:none}
  .whatsapp-float::before{animation:none}
}
@media (max-width:480px){
  .whatsapp-float{right:14px;bottom:14px;width:60px;height:60px}
  .whatsapp-float svg{width:28px;height:28px}
  .whatsapp-float::after{display:none}
}
.hero-card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-card .logo{
  width:100%;
  height:auto;
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.9);
  border:1px solid rgba(2,6,23,.06);
  padding:14px;
}
.hero-card ul{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}
.pill{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,74,173,.06);
  border:1px solid rgba(0,74,173,.08);
}
.pill b{display:block}
.pill span{color:var(--muted);font-weight:600;font-size:14px}
.section{
  padding:48px 0;
}
.section-title{
  font-size:clamp(22px, 2.3vw, 30px);
  margin:0 0 10px;
  letter-spacing:-.015em;
}
.section-sub{
  margin:0 0 22px;
  color:var(--muted);
  max-width:75ch;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
.card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 10px 34px rgba(2,6,23,.08);
  padding:18px;
}
.card h3{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:-.01em;
}
.card p{margin:0;color:var(--muted)}
.card a.link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
  text-decoration:none;
  font-weight:800;
  color:var(--primary);
}
.card a.link:focus{outline:none;box-shadow:var(--focus);border-radius:999px}
.protocol-card{display:flex;flex-direction:column}
.protocol-card .proto-text{flex:1 1 auto;margin-bottom:12px}
.protocol-card p{
  text-align:justify;
  text-justify:inter-word;
}
.protocol-card p + p{margin-top:10px}
.protocol-card a.link{margin-top:auto}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
}
.callout{
  border-radius:var(--radius);
  padding:18px;
  background:linear-gradient(135deg, rgba(0,74,173,.10), rgba(203,107,230,.12));
  border:1px solid rgba(2,6,23,.10);
}
.callout strong{font-weight:900}
.story-split{align-items:stretch}
.story-split > *{height:100%}
.story p{
  margin:0;
  color:var(--muted);
  text-align:justify;
  text-justify:inter-word;
}
.story p + p{margin-top:12px}
.story strong{color:rgba(71,85,105,.92);font-weight:900}
.story-end{margin-top:16px}
.story-divider{height:1px;background:rgba(2,6,23,.08);margin:0 0 14px}
.story-cloud{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px 14px;
  padding:10px 6px 2px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(0,74,173,.06), rgba(203,107,230,.06));
}
.story-word{
  font-weight:900;
  letter-spacing:-.01em;
  opacity:.72;
  line-height:1;
  user-select:none;
  white-space:nowrap;
}
.story-word[data-tone="primary"]{color:rgba(0,74,173,.78)}
.story-word[data-tone="accent"]{color:rgba(203,107,230,.78)}
.story-word[data-tone="muted"]{color:rgba(71,85,105,.78)}
.story-word[data-size="s"]{font-size:13px}
.story-word[data-size="m"]{font-size:15px}
.story-word[data-size="l"]{font-size:18px}
.story-word[data-size="xl"]{font-size:22px}
.story-cloud .story-word:nth-child(3n){transform:rotate(-2deg)}
.story-cloud .story-word:nth-child(4n){transform:rotate(2deg)}
.about{
  text-align:justify;
  text-justify:inter-word;
}
.about-block p{margin:0}
.about-block p + p{margin-top:12px}
.about-split{align-items:stretch}
.about-split > *{height:100%;display:flex;flex-direction:column}
.about-split .about-actions{margin-top:auto}
.areas-list{display:flex;flex-direction:column;flex:1 1 auto;justify-content:space-between}
.areas-list li + li{margin-top:10px}
.btn-row-sm{gap:18px}
.mockup{
  margin:0;
  display:flex;
}
.mockup-frame{
  position:relative;
  display:flex;
  flex-direction:column;
  width:100%;
  height:100%;
  border-radius:26px;
  padding:14px;
  border:1px solid rgba(2,6,23,.12);
  background:
    radial-gradient(900px 380px at 10% -10%, rgba(203,107,230,.22), transparent 60%),
    radial-gradient(900px 380px at 90% -10%, rgba(0,74,173,.22), transparent 60%),
    rgba(255,255,255,.68);
  box-shadow:0 30px 80px rgba(2,6,23,.16);
  overflow:hidden;
  animation:mockupFloat 5.6s ease-in-out infinite;
  transform:translateZ(0);
}
@keyframes mockupFloat{
  0%,100%{transform:translateY(0) rotate(-.35deg)}
  50%{transform:translateY(-10px) rotate(.35deg)}
}
.mockup-frame::after{
  content:'';
  position:absolute;
  inset:-60px -40px auto -40px;
  height:200px;
  background:linear-gradient(135deg, rgba(255,255,255,.55), transparent 60%);
  pointer-events:none;
  transform:rotate(-8deg);
}
.mockup-top{
  position:relative;
  height:44px;
  border-radius:18px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.55);
  box-shadow:0 14px 30px rgba(2,6,23,.08);
  flex:0 0 auto;
}
.mockup-top::before{
  content:'';
  position:absolute;
  left:14px;
  top:50%;
  width:10px;
  height:10px;
  border-radius:999px;
  transform:translateY(-50%);
  background:linear-gradient(135deg, #f58529, #dd2a7b);
  box-shadow:
    16px 0 0 0 rgba(129,52,175,.95),
    32px 0 0 0 rgba(81,91,212,.95);
}
.mockup-screen{
  position:relative;
  margin-top:12px;
  border-radius:22px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.72);
  box-shadow:0 18px 45px rgba(2,6,23,.10);
  overflow:hidden;
  flex:1 1 auto;
  min-height:0;
}
.mockup-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.timeline-wave{
  overflow-x:auto;
  padding:8px 4px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.timeline-wave::-webkit-scrollbar{display:none}
.timeline-wave-inner{
  position:relative;
  height:260px;
  min-width:980px;
}
.timeline-wave-line{
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:120px;
  transform:translateY(-50%);
  pointer-events:none;
  z-index:0;
}
.timeline-wave-line::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,10 300,110 450,60 C600,10 750,110 900,60 C1050,10 1200,110 1200,60' fill='none' stroke='rgba(0,74,173,.28)' stroke-width='4'/%3E%3Cpath d='M0,60 C150,10 300,110 450,60 C600,10 750,110 900,60 C1050,10 1200,110 1200,60' fill='none' stroke='rgba(203,107,230,.22)' stroke-width='8' stroke-linecap='round' stroke-opacity='.35'/%3E%3C/svg%3E");
  background-repeat:repeat-x;
  background-size:600px 120px;
  background-position:0 50%;
  filter:drop-shadow(0 18px 35px rgba(2,6,23,.10));
  animation:waveMove 10s linear infinite;
}
@keyframes waveMove{
  from{background-position:0 50%}
  to{background-position:-600px 50%}
}
.timeline-node{
  position:absolute;
  left:var(--x);
  top:50%;
  transform:translate(-50%,-50%);
  animation:nodeFloat 4.2s ease-in-out infinite;
  animation-delay:var(--d,0s);
  z-index:10;
}
.timeline-node:hover,
.timeline-node:focus-within{
  z-index:60;
}
@keyframes nodeFloat{
  0%,100%{transform:translate(-50%,-50%) translateY(0)}
  50%{transform:translate(-50%,-50%) translateY(-10px)}
}
.timeline-node[data-side="top"]{top:calc(50% - 52px)}
.timeline-node[data-side="bottom"]{top:calc(50% + 52px)}
.timeline-year-btn{
  position:relative;
  z-index:30;
  border:0;
  border-radius:999px;
  padding:12px 14px;
  font:inherit;
  font-weight:900;
  letter-spacing:-.01em;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 18px 45px rgba(2,6,23,.16);
  cursor:pointer;
  transform:translateZ(0);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.timeline-year-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
  box-shadow:0 22px 58px rgba(2,6,23,.18);
}
.timeline-year-btn:focus{outline:none;box-shadow:0 22px 58px rgba(2,6,23,.18),var(--focus)}
.timeline-bubble{
  position:absolute;
  left:50%;
  width:min(420px, calc(100vw - 80px));
  --tx:-50%;
  --s:.98;
  transform:translateX(var(--tx)) scale(var(--s));
  opacity:0;
  pointer-events:none;
  z-index:40;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(2,6,23,.12);
  box-shadow:var(--shadow);
  padding:14px 16px;
  transition:opacity .18s ease, transform .18s ease;
  backdrop-filter:blur(10px);
}
.timeline-node[data-side="top"] .timeline-bubble{top:calc(100% + 14px)}
.timeline-node[data-side="bottom"] .timeline-bubble{bottom:calc(100% + 14px)}
.timeline-node[data-align="left"] .timeline-bubble{left:0;--tx:0}
.timeline-node[data-align="right"] .timeline-bubble{left:auto;right:0;--tx:0}
.timeline-bubble::before{
  content:'';
  position:absolute;
  left:50%;
  width:14px;
  height:14px;
  background:rgba(255,255,255,.92);
  transform:translateX(-50%) rotate(45deg);
  border-left:1px solid rgba(2,6,23,.12);
  border-bottom:1px solid rgba(2,6,23,.12);
}
.timeline-node[data-side="top"] .timeline-bubble::before{top:-8px}
.timeline-node[data-side="bottom"] .timeline-bubble::before{bottom:-8px;transform:translateX(-50%) rotate(225deg)}
.timeline-node[data-align="left"] .timeline-bubble::before{left:26px;transform:rotate(45deg)}
.timeline-node[data-align="left"][data-side="bottom"] .timeline-bubble::before{transform:rotate(225deg)}
.timeline-node[data-align="right"] .timeline-bubble::before{left:auto;right:26px;transform:rotate(45deg)}
.timeline-node[data-align="right"][data-side="bottom"] .timeline-bubble::before{transform:rotate(225deg)}
.timeline-bubble-title{font-weight:900;letter-spacing:-.01em;margin:0 0 6px}
.timeline-bubble p{margin:0;color:var(--muted)}
.timeline-node:hover .timeline-bubble,
.timeline-node:focus-within .timeline-bubble,
.timeline-node.is-open .timeline-bubble{
  opacity:1;
  pointer-events:auto;
  --s:1;
}
.timeline-vertical{display:none}
.timeline-vertical-item{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 10px 34px rgba(2,6,23,.08);
  padding:14px 16px;
}
.timeline-vertical-year{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  letter-spacing:-.01em;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 18px 45px rgba(2,6,23,.16);
}
.timeline-vertical-title{margin:12px 0 0;font-weight:900;letter-spacing:-.01em}
.timeline-vertical-text{margin:8px 0 0;color:var(--muted)}
.details{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 10px 34px rgba(2,6,23,.08);
  padding:14px 16px;
}
.details + .details{margin-top:12px}
.details > summary{
  cursor:pointer;
  font-weight:900;
  color:rgba(11,18,32,.92);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.details > summary::-webkit-details-marker{display:none}
.details > summary::after{
  content:'';
  width:10px;
  height:10px;
  border-right:2px solid rgba(71,85,105,.7);
  border-bottom:2px solid rgba(71,85,105,.7);
  transform:rotate(45deg);
  transition:transform .18s ease, border-color .18s ease;
  flex:0 0 auto;
}
.details[open] > summary::after{transform:rotate(225deg)}
.details strong{color:rgba(71,85,105,.92);font-weight:900}
.details > summary:focus{
  outline:3px solid rgba(203,107,230,.28);
  outline-offset:4px;
  border-radius:12px;
}
.details[open]{padding-bottom:16px}
.details .details-body{margin-top:10px}
.details .details-body p{margin:0;color:var(--muted)}
.details .details-body p + p{margin-top:10px}
.details .details-body ul{margin:10px 0 0;color:var(--muted)}
.details-compact{margin-top:12px}
.details-nested{
  background:rgba(255,255,255,.55);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:none;
  padding:12px 14px;
}
.details-nested + .details-nested{margin-top:10px}
.soft-strong{color:rgba(71,85,105,.92);font-weight:900}
.address{
  font-weight:800;
  color:rgba(11,18,32,.92);
}
.map{
  width:100%;
  height:360px;
  border:0;
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(2,6,23,.10);
}
.site-footer{
  padding:40px 0;
  border-top:1px solid rgba(2,6,23,.08);
  background:rgba(255,255,255,.66);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-title{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:-.01em;
}
.footer-links{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.footer-links a{text-decoration:none;font-weight:700;color:rgba(11,18,32,.82)}
.footer-links a:hover{color:var(--primary)}
.fineprint{margin:20px 0 0;color:rgba(71,85,105,.9);font-weight:600;font-size:13px}
.divider{height:1px;background:rgba(2,6,23,.08);margin:20px 0}
.page-hero{
  padding:56px 0 26px;
}
.page-hero p{margin:10px 0 0;color:var(--muted);max-width:78ch}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;gap:18px}
  .footer-grid{grid-template-columns:1fr;gap:18px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .timeline-wave-inner{min-width:920px}
  .brand img{width:150px}
}
@media (max-width: 760px){
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .hero{padding:44px 0 22px}

  .timeline-wave{display:none}
  .timeline-vertical{display:grid;gap:12px;margin-top:16px}

  .timeline-wave{padding:8px 0}
  .timeline-wave-inner{height:220px;min-width:860px}
  .timeline-node{animation-duration:5.6s}
  @keyframes nodeFloat{
    0%,100%{transform:translate(-50%,-50%) translateY(0)}
    50%{transform:translate(-50%,-50%) translateY(-6px)}
  }
  .timeline-node[data-side="top"]{top:calc(50% - 44px)}
  .timeline-node[data-side="bottom"]{top:calc(50% + 44px)}
  .timeline-year-btn{padding:10px 12px;font-size:14px}

  .timeline-bubble{
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    top:auto;
    width:auto;
    max-width:none;
    transform:translateY(10px) scale(var(--s));
    z-index:999;
  }
  .timeline-node[data-side="top"] .timeline-bubble,
  .timeline-node[data-side="bottom"] .timeline-bubble{
    top:auto;
    bottom:14px;
  }
  .timeline-node[data-align="left"] .timeline-bubble,
  .timeline-node[data-align="right"] .timeline-bubble{
    left:14px;
    right:14px;
  }
  .timeline-bubble::before{display:none}
  .timeline-node:hover .timeline-bubble,
  .timeline-node:focus-within .timeline-bubble{
    transform:translateY(0) scale(var(--s));
  }

  .timeline-node:hover .timeline-bubble,
  .timeline-node:focus-within .timeline-bubble,
  .timeline-node.is-open .timeline-bubble{
    opacity:0;
    pointer-events:none;
  }

  .timeline-sheet{
    position:fixed;
    inset:0;
    padding:14px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    background:rgba(2,6,23,.35);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease;
    z-index:2500;
  }
  .timeline-sheet[data-open="true"]{
    opacity:1;
    pointer-events:auto;
  }
  .timeline-sheet-card{
    width:min(560px, 100%);
    max-height:calc(100vh - 28px);
    overflow:auto;
    border-radius:16px;
    background:rgba(255,255,255,.95);
    border:1px solid rgba(2,6,23,.14);
    box-shadow:0 22px 64px rgba(2,6,23,.22);
    backdrop-filter:blur(12px);
    padding:14px 16px 16px;
  }
  .timeline-sheet-close{
    width:100%;
    border:0;
    border-radius:12px;
    padding:10px 12px;
    font:inherit;
    font-weight:900;
    cursor:pointer;
    background:rgba(2,6,23,.06);
    color:rgba(11,18,32,.9);
    box-shadow:inset 0 0 0 1px rgba(2,6,23,.10);
  }
  .timeline-sheet-close:focus{outline:none;box-shadow:inset 0 0 0 1px rgba(2,6,23,.10),var(--focus)}
  .timeline-sheet-body{margin-top:12px}
}
