/* Ocasio Partners — v1 (clean, modern, navy-led). Ambient motion only. */
:root{
  --navy-900:#071226;
  --navy-800:#0B1B3A;
  --navy-700:#0F2B5B;
  --ink:#0D1220;

  --paper:#F7F8FB;
  --panel: rgba(255,255,255,.78);
  --panel-strong: rgba(255,255,255,.86);

  --text:#0D1220;
  --muted: rgba(13,18,32,.70);
  --ring: rgba(15,43,91,.32);

  /* subtle premium accent; not "Lionheart gold" — just a warm highlight */
  --accent-1:#D6B36A;
  --accent-2:#F1E1B8;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  letter-spacing:.2px;
  background: var(--paper);
  overflow-x:hidden;
}

.hero{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding: 56px 18px;
  position:relative;
  overflow:hidden;
}

/* Background: light paper + navy depth, no black */
.hero__bg{
  position:absolute; inset:-24px;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(15,43,91,.18), transparent 62%),
    radial-gradient(900px 520px at 80% 30%, rgba(11,27,58,.16), transparent 62%),
    radial-gradient(700px 420px at 50% 85%, rgba(214,179,106,.14), transparent 60%),
    linear-gradient(180deg, #F7F8FB 0%, #EEF2F8 40%, #F7F8FB 100%);
  filter: saturate(1.02) contrast(1.02);
  animation: bgDrift 16s cubic-bezier(.2,.8,.2,1) infinite alternate;
  will-change: transform;
}
@keyframes bgDrift{
  0%   { transform: translate3d(0,0,0) scale(1.05); }
  50%  { transform: translate3d(14px,-10px,0) scale(1.07); }
  100% { transform: translate3d(-10px,-18px,0) scale(1.06); }
}

/* subtle film grain */
.grain{
  position:absolute; inset:-40px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  opacity:.20;
  mix-blend-mode:multiply;
  pointer-events:none;
  animation: grainMove 8s steps(2) infinite;
}
@keyframes grainMove{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-20px,-26px,0); }
}

/* soft floating orbs */
.orbs{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 25% 35%, rgba(214,179,106,.18) 0 90px, transparent 140px),
    radial-gradient(circle at 70% 25%, rgba(15,43,91,.16) 0 110px, transparent 170px),
    radial-gradient(circle at 60% 80%, rgba(11,27,58,.12) 0 140px, transparent 210px);
  filter: blur(18px);
  opacity:.70;
  animation: orbFloat 10s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes orbFloat{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(0,-18px,0); }
}

.card{
  position:relative;
  z-index:2;
  width: min(980px, 94vw);
  padding: 46px 28px 30px;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid rgba(15,43,91,.10);
  box-shadow:
    0 22px 58px rgba(7,18,38,.18),
    inset 0 1px 0 rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align:center;
}

.halo{
  position:absolute; inset:-70px;
  background:
    radial-gradient(520px 260px at 50% 28%, rgba(15,43,91,.16), transparent 65%),
    radial-gradient(520px 260px at 50% 34%, rgba(214,179,106,.10), transparent 68%);
  opacity:.90;
  filter: blur(12px);
  animation: haloMove 6.5s ease-in-out infinite alternate;
  pointer-events:none;
  z-index:0;
}
@keyframes haloMove{
  from{ transform: translate3d(-26px,-8px,0); opacity:.65; }
  to  { transform: translate3d(26px,-16px,0); opacity:.92; }
}

.logo{
  width: min(520px, 78vw);
  height:auto;
  display:block;
  margin: 0 auto 18px;
  user-select:none;
  -webkit-user-drag:none;
  filter:
    drop-shadow(0 18px 44px rgba(7,18,38,.20))
    drop-shadow(0 0 22px rgba(15,43,91,.08));
  transform-origin: 50% 60%;
  animation: logoFloat 4.6s ease-in-out infinite;
  will-change: transform, filter;
  position:relative;
  z-index:1;
}
@keyframes logoFloat{
  0%,100%{ transform: translateY(0px) scale(1); }
  50%    { transform: translateY(-8px) scale(1.01); }
}

.descriptor{
  font-size: 16px;
  letter-spacing: 2.8px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  position:relative;
  z-index:1;
}
.statement{
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: .6px;
  color: rgba(11,27,58,.88);
  position:relative;
  z-index:1;
}

.contact{
  margin-top: 26px;
  display:grid;
  gap: 12px;
  justify-content:center;
  position:relative;
  z-index:1;
}
.contact__row{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--text);
  border: 1px solid rgba(15,43,91,.12);
  background: rgba(255,255,255,.72);
  transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease, background .20s ease;
  outline:none;
  overflow:hidden;
}
.contact__row:focus-visible{
  box-shadow: 0 0 0 3px var(--ring);
  border-color: rgba(15,43,91,.32);
}
.contact__row:hover{
  transform: translateY(-3px);
  border-color: rgba(15,43,91,.22);
  background: var(--panel-strong);
  box-shadow: 0 18px 34px rgba(7,18,38,.14);
}
.icon{
  width: 24px;
  height: 24px;
  display:grid;
  place-items:center;
  font-size: 18px;
  color: rgba(15,43,91,.90);
}
.text{
  font-size: 18px;
  letter-spacing: .2px;
}

/* premium underline shimmer, very subtle */
.contact__row::after{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214,179,106,.55), transparent);
  transform: translateX(-30%);
  opacity: 0;
}
.contact__row:hover::after{
  opacity: 1;
  animation: lineSweep 900ms ease forwards;
}
@keyframes lineSweep{
  to{ transform: translateX(30%); }
}

.footer{
  margin-top: 24px;
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: .35px;
  color: rgba(13,18,32,.66);
  position:relative;
  z-index:1;
}

/* Enter animation */
.enter{
  opacity:0;
  transform: translateY(26px) scale(.99);
  filter: blur(10px);
  animation: enter 1.10s cubic-bezier(.12, 1, .22, 1) forwards;
}
.enter--1{ animation-delay: 110ms; }
.enter--2{ animation-delay: 320ms; }
.enter--3{ animation-delay: 470ms; }
.enter--4{ animation-delay: 610ms; }
.enter--5{ animation-delay: 760ms; }

@keyframes enter{
  60%{ filter: blur(3px); }
  to{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 640px){
  .card{ padding: 38px 18px 22px; }
  .descriptor{ font-size: 14px; letter-spacing: 2.4px; }
  .statement{ font-size: 18px; }
  .text{ font-size: 16px; }
}

@media (prefers-reduced-motion: reduce){
  .hero__bg, .grain, .orbs, .logo, .halo{ animation: none !important; }
  .enter{ animation: none !important; opacity: 1; transform: none; filter: none; }
  .contact__row:hover::after{ animation: none !important; }
}


/* === CENTER CONTACT ROW CONTENT (FINAL TWEAK) === */
.contact{
  align-items: center;
}

.contact__row{
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact__row .text{
  text-align: center;
}
