:root {
  --blue: #063f82;
  --blue-2: #0a5cbd;
  --blue-3: #1592ff;
  --grey: #6f766f;
  --silver: #eaf0f7;
  --white: #ffffff;
  --ink: #0d1b2d;
  --muted-text: #617086;
  --line: rgba(6, 63, 130, 0.14);
  --soft-blue: #f2f8ff;
  --shadow: 0 24px 70px rgba(12, 39, 78, 0.14);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f9ff;
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.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; }

/* Opening screen: click-to-open clean digital card */
.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 34%, rgba(21, 146, 255, .18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 48%, #e6f1ff 100%);
  transition: opacity .75s ease, visibility .75s ease;
}
.launch-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.launch-screen.is-opening::before,
.launch-screen.is-opening::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(222,239,255,.97));
  z-index: 3;
  border-color: rgba(6, 63, 130, .12);
  box-shadow: inset 0 0 70px rgba(6,63,130,.08);
  animation: panelOpen .72s cubic-bezier(.7,0,.2,1) forwards;
}
.launch-screen.is-opening::before { left: 0; transform-origin: left; border-right: 1px solid rgba(6,63,130,.13); }
.launch-screen.is-opening::after { right: 0; transform-origin: right; animation-name: panelOpenRight; border-left: 1px solid rgba(6,63,130,.13); }
.launch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,63,130,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,63,130,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  opacity: .58;
  animation: gridFloat 7s linear infinite;
}
.launch-card {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100vw - 44px));
  min-height: 405px;
  padding: 30px 24px 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 15px;
  border: 1px solid rgba(6, 63, 130, .12);
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 24px 72px rgba(6, 63, 130, .16), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.launch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(21,146,255,.11) 44%, rgba(255,255,255,.4) 50%, transparent 66%);
  transform: translateX(-100%);
  animation: scanLine 2.7s ease-in-out infinite;
  pointer-events: none;
}
.launch-card strong {
  position: relative;
  z-index: 1;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--blue);
}
.launch-card small {
  position: relative;
  z-index: 1;
  color: var(--muted-text);
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}
.mini-label {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  border: 1px solid rgba(6,63,130,.12);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.launch-logo-wrap {
  position: relative;
  z-index: 1;
  width: min(222px, 61vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.launch-logo { width: 100%; display: block; filter: drop-shadow(0 12px 20px rgba(6,63,130,.18)); }
.click-device { position: relative; z-index: 1; width: 74px; height: 74px; display: grid; place-items: center; margin-top: 2px; }
.cursor-shape {
  width: 0; height: 0;
  border-left: 18px solid var(--blue);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  filter: drop-shadow(0 8px 16px rgba(21,146,255,.32));
  transform: rotate(45deg);
  animation: cursorTap 1.55s ease-in-out infinite;
}
.pulse-ring { position: absolute; inset: 13px; border: 2px solid rgba(21,146,255,.62); border-radius: 50%; opacity: 0; animation: pulseOut 1.55s ease-out infinite; }
.ring-two { animation-delay: .42s; border-color: rgba(6,63,130,.35); }
.pixel { position: absolute; width: 68px; height: 68px; border-radius: 18px; background: linear-gradient(135deg, rgba(21,146,255,.22), rgba(6,63,130,.09)); opacity: .55; animation: pixelDrift 7s ease-in-out infinite; }
.pixel-1 { left: 9%; top: 14%; }
.pixel-2 { right: 10%; top: 18%; animation-delay: -1.5s; }
.pixel-3 { left: 15%; bottom: 14%; animation-delay: -2.4s; }
.pixel-4 { right: 16%; bottom: 12%; animation-delay: -3.2s; }

@keyframes gridFloat { to { background-position: 46px 46px; } }
@keyframes scanLine { 0%, 36% { transform: translateX(-100%); } 74%, 100% { transform: translateX(100%); } }
@keyframes cursorTap { 0%,100% { transform: rotate(45deg) translate(0,0) scale(1); } 45% { transform: rotate(45deg) translate(8px,8px) scale(.92); } }
@keyframes pulseOut { 0% { transform: scale(.42); opacity:.9; } 100% { transform: scale(2.25); opacity:0; } }
@keyframes pixelDrift { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(18px,-18px,0) rotate(8deg); } }
@keyframes panelOpen { to { transform: translateX(-105%); } }
@keyframes panelOpenRight { to { transform: translateX(105%); } }

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 34px 18px 48px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(21,146,255,.20), transparent 27%),
    radial-gradient(circle at 91% 12%, rgba(6,63,130,.11), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 43%, #edf5ff 100%);
}
.bg-layer { position: absolute; pointer-events: none; }
.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(6,63,130,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,63,130,.038) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 88%);
}
.bg-glow-one { width: 330px; height: 330px; left: -120px; top: 120px; border-radius: 50%; background: rgba(21,146,255,.13); filter: blur(74px); }
.bg-glow-two { width: 310px; height: 310px; right: -120px; bottom: 70px; border-radius: 50%; background: rgba(6,63,130,.08); filter: blur(74px); }

.bio-card {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
  padding: 24px;
  border: 1px solid rgba(6,63,130,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
}
.hero { text-align: center; }
.logo-stage { position: relative; width: min(250px, 70%); margin: 0 auto 12px; display: grid; place-items: center; min-height: 105px; }
.logo-orbit { display: none; }
.logo-box { position: relative; z-index: 2; width: 100%; padding: 0; border-radius: 0; background: transparent; border: 0; box-shadow: none; }
.brand-logo { width: 100%; display: block; filter: drop-shadow(0 10px 20px rgba(6,63,130,.14)); }

.brand-copy { margin-top: 4px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; background: #edf6ff; border: 1px solid rgba(6,63,130,.11); color: var(--blue); font-size: 10.5px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.tagline { margin: 15px auto 8px; max-width: 610px; color: var(--ink); font-size: clamp(22px, 4.6vw, 34px); font-weight: 700; line-height: 1.12; letter-spacing: -.035em; }
.intro { margin: 0 auto; max-width: 575px; color: #506178; font-size: 14.5px; font-weight: 700; line-height: 1.65; }
.ticker { margin: 19px auto 0; width: fit-content; max-width: 100%; min-height: 43px; padding: 11px 16px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; background: #f4f9ff; border: 1px solid rgba(6,63,130,.12); color: var(--blue); font-size: 12.5px; font-weight: 900; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.ticker-dot { width: 9px; height: 9px; border-radius: 50%; background: #1592ff; box-shadow: 0 0 16px rgba(21,146,255,.48); }
#tickerText { transition: opacity .25s ease, transform .25s ease; }
#tickerText.is-changing { opacity: 0; transform: translateY(8px); }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 24px; }
.quick-actions a { min-height: 48px; display: grid; place-items: center; border-radius: 999px; font-size: 14px; font-weight: 900; background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(6,63,130,.18); transition: transform .25s ease, box-shadow .25s ease; }
.quick-actions a:nth-child(1) { background: linear-gradient(135deg, #25d366, #0ebd54); color: #fff; }
.quick-actions a:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(6,63,130,.24); }

.section-block, .link-group { margin-top: 22px; }
.section-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-title span { height: 1px; background: linear-gradient(90deg, transparent, rgba(6,63,130,.18), transparent); }
.section-title h2 { margin: 0; color: var(--blue); font-size: 11.5px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.service-card { min-height: 92px; padding: 15px; border-radius: 20px; background: linear-gradient(180deg, #ffffff, #f7fbff); border: 1px solid rgba(6,63,130,.11); box-shadow: 0 10px 28px rgba(6,63,130,.07), inset 0 1px 0 rgba(255,255,255,.95); transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card strong { display:block; font-size: 14px; margin-bottom: 7px; color: var(--blue); letter-spacing: -.02em; }
.service-card small { display:block; color: #60728a; font-size: 12px; font-weight: 700; line-height: 1.45; }
.service-card:hover { transform: translateY(-3px); background: #ffffff; border-color: rgba(21,146,255,.38); box-shadow: 0 16px 34px rgba(6,63,130,.12); }

.link-list { display: grid; gap: 12px; }
.link-card {
  --accent: var(--blue-2);
  --x: 50%;
  --y: 50%;
  position: relative;
  isolation: isolate;
  min-height: 76px;
  display: grid;
  grid-template-columns: 54px 1fr 30px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--x) var(--y), color-mix(in srgb, var(--accent) 10%, transparent), transparent 32%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(6,63,130,.11);
  box-shadow: 0 12px 30px rgba(6,63,130,.08), inset 0 1px 0 rgba(255,255,255,.95);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.link-card::after { content: ''; position: absolute; inset: auto 18px 0; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 55%, white), transparent); opacity: .6; }
.link-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, white); box-shadow: 0 18px 38px rgba(6,63,130,.14), 0 0 28px color-mix(in srgb, var(--accent) 12%, transparent); }
.link-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: #fff; color: var(--accent); box-shadow: 0 10px 24px rgba(6,63,130,.12); }
.link-icon svg { width: 27px; height: 27px; display: block; fill: currentColor; }
.link-text { min-width: 0; display: grid; gap: 5px; }
.link-text strong { font-size: 15px; font-weight: 900; letter-spacing: -.025em; color: #13243a; }
.link-text small { color: #65758c; font-size: 12px; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.link-arrow { color: rgba(6,63,130,.42); display: grid; place-items: center; }
.link-arrow svg { width: 20px; height: 20px; fill: currentColor; }

.website { --accent: #1592ff; }
.google { --accent: #4285F4; }
.whatsapp { --accent: #25d366; }
.email { --accent: #6f766f; }
.instagram { --accent: #d62976; }
.facebook { --accent: #1877f2; }
.linkedin { --accent: #0a66c2; }
.youtube { --accent: #ff0033; }
.call { --accent: #20a9ff; }
.second { --accent: #6f766f; }
.link-icon.instagram { background: transparent; box-shadow: 0 12px 28px rgba(214,41,118,.18); overflow: hidden; }
.link-icon.instagram svg { width: 54px; height: 54px; border-radius: 17px; }
.link-icon.google svg { width: 31px; height: 31px; }
.link-icon.google { color: initial; }
.link-icon.facebook { color: #1877f2; }
.link-icon.linkedin { color: #0a66c2; }
.link-icon.youtube { color: #ff0033; }
.link-icon.whatsapp { color: #25d366; }

.info-card { margin-top: 24px; display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; padding: 15px; border-radius: 22px; background: #f7fbff; border: 1px solid rgba(6,63,130,.11); box-shadow: 0 10px 28px rgba(6,63,130,.07); }
.info-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; background: var(--blue); color: #fff; }
.info-icon svg { width: 24px; height: 24px; fill: currentColor; }
.info-card strong { display:block; margin-bottom: 5px; font-size: 14px; color: #13243a; }
.info-card p { margin: 0; color: #66758b; font-size: 13px; font-weight: 700; line-height: 1.45; }
.footer { margin-top: 22px; text-align: center; color: #7a8798; font-size: 12px; font-weight: 700; }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 20px 45px rgba(6,63,130,.22), 0 0 0 8px rgba(37,211,102,.12); transition: transform .25s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 31px; height: 31px; fill: currentColor; }

.reveal-item { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.is-ready .reveal-item { opacity: 1; transform: translateY(0); }
.is-ready .reveal-item:nth-of-type(2) { transition-delay: .08s; }

@media (max-width: 560px) {
  .page-shell { padding: 18px 12px 38px; }
  .bio-card { padding: 18px 13px; border-radius: 26px; }
  .launch-card { min-height: 375px; padding: 28px 18px; }
  .launch-logo-wrap { width: min(205px, 60vw); }
  .logo-stage { width: min(215px, 68%); min-height: 94px; }
  .tagline { font-size: 26px; }
  .intro { font-size: 13.5px; }
  .quick-actions { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .link-card { grid-template-columns: 50px 1fr 22px; min-height: 72px; padding: 11px; border-radius: 20px; }
  .link-icon { width: 50px; height: 50px; border-radius: 16px; }
  .link-icon.instagram svg { width: 50px; height: 50px; border-radius: 16px; }
  .link-text strong { font-size: 14px; }
  .link-text small { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
