:root{
  --futura: Futura, "Futura PT", "Avenir Next", Avenir, Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --card: rgba(12, 18, 32, 0.52);
  --card-border: rgba(255,255,255,0.10);

  /* Virtus palette vibe */
  --c1: rgba(62,146,204,0.55);  /* #3e92cc */
  --c2: rgba(42,98,143,0.55);   /* #2a628f */
  --c3: rgba(19,41,61,0.70);    /* #13293d */
  --c4: rgba(22,50,79,0.55);    /* #16324f */
  --c5: rgba(24,67,90,0.60);    /* #18435a */
}





/* Foreground content */
.holding-wrap{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem;
}

.holding-header{
  display:flex;
  justify-content: center;
}

.brand{
  display:flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.logo-slot{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  overflow:hidden;
}
.logo-slot img{
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.brand-name{
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
}
.brand-sub{
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.holding-content{
  padding: 0.5rem 0.25rem;
}

.eyebrow{
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.title, .subtitle, .prose, .eyebrow, .fineprint{
  text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.title, .subtitle, .content, .prose{
  color: var(--text);
}

.subtitle{
  color: var(--muted);
}

.holding-divider{
  height: 1px;
  width: 100%;
  margin: 1.25rem 0 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.contact-grid{
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .contact-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-pill{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;

  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);

  text-decoration: none;
  color: var(--text);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.contact-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.contact-pill.is-static:hover{
  transform: none;
}

.contact-label{
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-value{
  font-weight: 600;
  letter-spacing: 0.2px;
  word-break: break-word;
}



.fineprint{
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.credibility{
  text-align:center;
  color: rgba(255,255,255,0.60);
  font-size: 0.95rem;
}

.hero-type{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;

  /* gives breathing room for center block only, not for corner type */
  display: grid;
  place-items: center;
  padding: 0;
}

.corner-type{
  position: fixed;
  z-index: 1;
  font-family: var(--futura);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  /* big, responsive */
  font-size: clamp(64px, 12vw, 180px);

  /* clean but readable on particles */
  color: rgba(255,255,255,0.14);
  text-shadow: 0 18px 60px rgba(0,0,0,0.45);

  /* no margin, flush to viewport */
  padding: 0;
  margin: 0;

  user-select: none;
  pointer-events: none;
}

.corner-type--tl{
  top: 0;
  left: 0;
  transform: translate(0, 0);
}

.corner-type--br{
  bottom: 0;
  right: 0;
  transform: translate(0, 0);
  text-align: right;
}

.center-stack{
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;

  /* keep it visually minimal */
  padding: 1rem;
  max-width: 860px;
  width: 100%;
}

.coming-soon{
  font-family: var(--futura);
  color: var(--text);
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;

  /* slight lift off background */
  text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.contact-card{
  width: min(860px, calc(100vw - 2rem));
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  padding: 0.9rem;
}

@media (max-width: 520px){
  .corner-type{
    font-size: clamp(52px, 14vw, 120px);
    color: rgba(255,255,255,0.11);
  }
  .contact-card{
    padding: 0.75rem;
  }
}


.bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050b17; /* fallback */
}

/* Animated gradients (slow + premium) */
.bg-gradient{
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(900px 700px at 20% 20%, var(--c1), transparent 60%),
    radial-gradient(900px 700px at 80% 30%, var(--c5), transparent 60%),
    radial-gradient(800px 700px at 50% 85%, var(--c3), transparent 65%),
    linear-gradient(135deg, #050b17, #0b1220 55%, #050b17);
  filter: saturate(1.15) contrast(1.05);
  animation: gradientDrift 18s ease-in-out infinite alternate;
  transform: translate3d(0,0,0);
}

/* Subtle drafting-grid overlay (architectural feel) */
.bg-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.10;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.95), transparent 70%);
  pointer-events: none;
}

@keyframes gradientDrift{
  0%   { transform: translate3d(-2%, -2%, 0) scale(1.02); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.05); }
}

.blocks{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.block{
  position: absolute;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);

  transform: translate3d(0,0,0);
  animation: floatY 10s ease-in-out infinite;
  opacity: 0.65;
}

/* Motion: subtle vertical float + tiny rotate */
@keyframes floatY{
  0%   { transform: translate3d(0, 0, 0) rotate(0.2deg); }
  50%  { transform: translate3d(0, -18px, 0) rotate(-0.2deg); }
  100% { transform: translate3d(0, 0, 0) rotate(0.2deg); }
}

/* Individual placements + sizes (grid-ish, not random chaos) */
.b1  { width: 240px; height: 120px; left: 6%;  top: 14%; animation-duration: 12s; opacity: .45; }
.b2  { width: 160px; height: 160px; left: 18%; top: 62%; animation-duration: 14s; opacity: .35; }
.b3  { width: 320px; height: 140px; left: 62%; top: 18%; animation-duration: 13s; opacity: .42; }
.b4  { width: 180px; height: 110px; left: 76%; top: 58%; animation-duration: 11s; opacity: .30; }
.b5  { width: 110px; height: 260px; left: 88%; top: 12%; animation-duration: 15s; opacity: .26; }
.b6  { width: 260px; height: 120px; left: 40%; top: 72%; animation-duration: 12.5s; opacity: .30; }

.b7  { width: 140px; height: 90px;  left: 8%;  top: 38%; animation-duration: 10.5s; opacity: .28; }
.b8  { width: 220px; height: 110px; left: 30%; top: 22%; animation-duration: 16s; opacity: .22; }
.b9  { width: 120px; height: 120px; left: 54%; top: 40%; animation-duration: 11.5s; opacity: .18; }
.b10 { width: 260px; height: 140px; left: 70%; top: 34%; animation-duration: 14.5s; opacity: .22; }
.b11 { width: 160px; height: 120px; left: 44%; top: 10%; animation-duration: 13.5s; opacity: .18; }
.b12 { width: 120px; height: 220px; left: 12%; top: 76%; animation-duration: 17s; opacity: .20; }

/* Responsiveness: reduce block count / intensity on small screens */
@media (max-width: 640px){
  .b5, .b8, .b10, .b11 { display: none; }
  .bg-grid{ background-size: 56px 56px; opacity: 0.08; }
}


.hero-type{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.center-stack{ z-index: 3; }
.corner-type{ z-index: 2; }

@media (prefers-reduced-motion: reduce){
  .bg-gradient, .block{
    animation: none !important;
  }
}

.corner-type{
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.16);
  text-shadow: none;
}

.block{ border-radius: 14px; }

.cta-wrap{
  margin-top: 0.75rem;
}

.cta-form{
  width: 100%;
}

.cta-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.cta-form input{
  appearance: none;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);

  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--futura);

  backdrop-filter: blur(6px);
}

.cta-form input::placeholder{
  color: rgba(255,255,255,0.55);
}

.cta-form input:focus{
  outline: none;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}

.cta-form button{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.20),
      rgba(255,255,255,0.06)
    );

  color: white;
  font-family: var(--futura);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;

  padding: 0.75rem 1.1rem;
  cursor: pointer;

  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.cta-form button:hover{
  transform: translateY(-1px);
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.28),
      rgba(255,255,255,0.10)
    );
  border-color: rgba(255,255,255,0.32);
}

.cta-form button:active{
  transform: translateY(0);
}


@media (max-width: 520px){
  .cta-grid{
    grid-template-columns: 1fr;
  }

  .cta-form button{
    width: 100%;
  }
}
