/* ============================================================
   WIN WIN Financial Brokerage Services — Coming Soon
   ============================================================ */

:root{
  --brown-espresso:#24130D;
  --brown-black:#160D09;
  --orange:#FF6A00;
  --amber:#FF9D24;
  --white:#FFFFFF;
  --off-white:#F7F4F0;
  --warm-gray:#B9A99E;
  --warm-gray-dim:#8B7A70;

  --font-display:"Fraunces", Georgia, serif;
  --font-body:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gradient-brand: linear-gradient(100deg, var(--orange) 0%, var(--amber) 100%);
  --gradient-bg: radial-gradient(120% 140% at 82% 12%, rgba(255,106,0,0.16) 0%, rgba(36,19,13,0) 45%),
                 radial-gradient(90% 90% at 8% 92%, rgba(255,157,36,0.10) 0%, rgba(36,19,13,0) 50%),
                 linear-gradient(160deg, var(--brown-black) 0%, var(--brown-espresso) 55%, #2c150d 100%);

  --header-h: 84px;
  --container: 1240px;
}

*, *::before, *::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--brown-black);
  color:var(--off-white);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }

a{ color:inherit; text-decoration:none; }

/* subtle film-grain overlay for a premium, non-flat surface */
.grain{
  position:fixed; inset:0; z-index:60; pointer-events:none;
  opacity:0.035; mix-blend-mode:overlay;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------- Header ---------------------------------- */

.site-header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:rgba(22,13,9,0.82);
  backdrop-filter:blur(10px) saturate(120%);
  -webkit-backdrop-filter:blur(10px) saturate(120%);
}

.header-inner{
  max-width:var(--container);
  margin:0 auto;
  height:var(--header-h);
  padding:0 clamp(20px, 4vw, 48px);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{ display:flex; align-items:center; }

.brand-logo{
  height:clamp(30px, 4vw, 40px);
  width:auto;
}

.header-right{ display:flex; align-items:center; }

.header-tag{
  font-family:var(--font-body);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.06em;
  color:var(--amber);
  border:1px solid rgba(255,157,36,0.35);
  padding:7px 16px;
  border-radius:100px;
  white-space:nowrap;
}

.header-line{
  height:1px;
  background:linear-gradient(90deg, rgba(255,106,0,0) 0%, rgba(255,106,0,0.55) 50%, rgba(255,106,0,0) 100%);
}

/* ---------------------------------- Hero ---------------------------------- */

.hero{
  position:relative;
  min-height:100svh;
  padding-top:var(--header-h);
  background:var(--gradient-bg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
}

.hero-field{
  position:absolute; inset:0; z-index:0;
  pointer-events:none;
}

.network-svg{
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0.16;
}

.net-lines line{
  stroke:var(--amber);
  stroke-width:1;
}

.net-nodes circle{
  fill:var(--orange);
}

.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:0.5;
}

.glow-a{
  width:640px; height:640px;
  top:-180px; right:-160px;
  background:radial-gradient(circle, rgba(255,106,0,0.35), transparent 70%);
}

.glow-b{
  width:520px; height:520px;
  bottom:-220px; left:-140px;
  background:radial-gradient(circle, rgba(255,157,36,0.20), transparent 70%);
}

.hero-inner{
  position:relative; z-index:1;
  max-width:var(--container);
  width:100%;
  margin:0 auto;
  padding:clamp(48px, 7vh, 96px) clamp(20px, 4vw, 48px) clamp(32px, 6vh, 64px);
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:clamp(32px, 5vw, 72px);
  align-items:center;
}

.hero-copy{ max-width:640px; }

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 28px;
  padding:8px 16px 8px 12px;
  border:1px solid rgba(255,157,36,0.30);
  border-radius:100px;
  background:rgba(255,106,0,0.06);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.06em;
  color:var(--amber);
}

.status-dot{
  position:relative;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--orange);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 0 rgba(255,106,0,0.55);
  animation:pulse-ring 2.4s ease-out infinite;
}

.status-dot-core{
  width:4px; height:4px;
  border-radius:50%;
  background:#fff;
}

@keyframes pulse-ring{
  0%   { box-shadow:0 0 0 0 rgba(255,106,0,0.45); }
  70%  { box-shadow:0 0 0 9px rgba(255,106,0,0); }
  100% { box-shadow:0 0 0 0 rgba(255,106,0,0); }
}

.headline{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(2.4rem, 5.4vw, 4.4rem);
  line-height:1.06;
  letter-spacing:-0.01em;
  color:var(--white);
  margin:0 0 22px;
}

.subheadline{
  font-family:var(--font-body);
  font-weight:600;
  font-size:clamp(1.02rem, 1.6vw, 1.28rem);
  line-height:1.4;
  color:var(--off-white);
  margin:0 0 18px;
  max-width:34ch;
}

.description{
  font-size:clamp(0.98rem, 1.15vw, 1.06rem);
  line-height:1.7;
  color:var(--warm-gray);
  max-width:52ch;
  margin:0 0 36px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:0.98rem;
  font-weight:600;
  padding:15px 30px;
  border-radius:8px;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  min-height:50px;
}

.btn-primary{
  background:var(--gradient-brand);
  color:var(--brown-black);
  box-shadow:0 8px 24px -8px rgba(255,106,0,0.55);
}

.btn-primary svg{ transition:transform 0.25s ease; }

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px -8px rgba(255,106,0,0.7);
}

.btn-primary:hover svg{ transform:translateX(3px); }

.btn-outline{
  background:transparent;
  color:var(--off-white);
  border:1px solid rgba(247,244,240,0.28);
}

.btn-outline:hover{
  border-color:var(--amber);
  color:var(--amber);
  transform:translateY(-2px);
}

/* --- Emblem --- */

.hero-emblem{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:280px;
}

.emblem-ring{
  position:absolute;
  width:min(76%, 340px);
  aspect-ratio:1/1;
  border-radius:50%;
  border:1px solid rgba(255,157,36,0.22);
}

.emblem-ring::before{
  content:"";
  position:absolute;
  inset:-34px;
  border-radius:50%;
  border:1px solid rgba(255,157,36,0.10);
}

.emblem-logo{
  position:relative;
  width:min(64%, 300px);
  filter:drop-shadow(0 18px 40px rgba(255,106,0,0.28));
}

/* --- Slogan block --- */

.slogan-block{
  position:relative; z-index:1;
  max-width:var(--container);
  margin:0 auto;
  width:100%;
  padding:clamp(20px, 4vh, 40px) clamp(20px, 4vw, 48px) clamp(40px, 6vh, 64px);
  text-align:center;
}

.slogan-rule{
  display:block;
  width:56px;
  height:2px;
  margin:0 auto 22px;
  background:var(--gradient-brand);
  border-radius:2px;
}

.slogan{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing:0.02em;
  margin:0;
  background:var(--gradient-brand);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------------------------------- Footer ---------------------------------- */

.site-footer{
  position:relative; z-index:1;
  background:var(--brown-black);
  border-top:1px solid rgba(255,157,36,0.14);
}

.footer-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:clamp(28px, 4vh, 36px) clamp(20px, 4vw, 48px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-name{
  margin:0;
  font-size:0.92rem;
  font-weight:600;
  color:var(--off-white);
}

.footer-slogan{
  margin:4px 0 0;
  font-size:0.8rem;
  color:var(--warm-gray-dim);
  letter-spacing:0.02em;
}

.footer-social{
  display:flex;
  gap:16px;
}

.footer-social a{
  color:var(--warm-gray);
  transition:color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover{
  color:var(--amber);
  transform:translateY(-2px);
}

.footer-copy{
  margin:0;
  font-size:0.78rem;
  color:var(--warm-gray-dim);
  width:100%;
  text-align:center;
  order:3;
  padding-top:18px;
  border-top:1px solid rgba(247,244,240,0.06);
}

/* ---------------------------------- Reveal animation ---------------------------------- */

[data-reveal]{
  opacity:0;
  transform:translateY(16px);
}

.is-ready [data-reveal]{
  animation:reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal-up{
  to{ opacity:1; transform:translateY(0); }
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--amber);
  outline-offset:3px;
}

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 980px){
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
    padding-top:clamp(28px, 5vh, 48px);
  }
  .hero-copy{ max-width:640px; margin:0 auto; }
  .subheadline, .description{ margin-left:auto; margin-right:auto; }
  .cta-row{ justify-content:center; }
  .hero-emblem{ order:-1; min-height:0; margin-bottom:8px; }
  .emblem-logo{ width:min(70%, 260px); }
  .emblem-ring{ width:min(60%, 260px); }
}

@media (max-width: 640px){
  :root{ --header-h:68px; }
  .header-tag{ font-size:11px; padding:6px 12px; }
  .hero-inner{ padding-bottom:24px; }
  .cta-row{ flex-direction:column; width:100%; }
  .btn{ width:100%; }
  .description{ max-width:none; }
  .subheadline{ max-width:none; }
  .footer-inner{ flex-direction:column; text-align:center; justify-content:center; }
  .footer-social{ order:2; }
  .footer-brand{ order:1; }
}

@media (max-width: 380px){
  .headline{ font-size:2rem; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .status-dot{ animation:none; }
  [data-reveal]{ opacity:1; transform:none; animation:none; }
  .btn, .footer-social a{ transition:none; }
}
