/* =========================
   Arc Strategy Partners
   Global Styles
   ========================= */

:root{
  --blue:#1867A5;
  --graphite:#414042;

  --teal:#1A7676;
  --copper:#B96140;
  --maroon:#802F3A;
  --gold:#F1B80E;
  --yellow:rgb(255, 206, 59);
  --darkblue:#053472;

  --bg:#0b0f14;
  --paper:#ffffff;
  --ink:#12151a;

  --radius:0px;               /* square corners for containers */
  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --hairline: rgba(255,255,255,.14);
  --max: 1120px;

  --ease: cubic-bezier(.2,.9,.2,1);

  --font-body: "Montserrat", sans-serif;
  --font-display: "Montserrat", sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(24,103,165,.18), transparent 60%),
    radial-gradient(700px 500px at 90% 20%, rgba(26,118,118,.14), transparent 55%),
    radial-gradient(900px 600px at 60% 90%, rgba(241,184,14,.10), transparent 60%),
    #f6f7f9;
  overflow-x:hidden;
}

/* Display typography (logo-adjacent) */
h1, h2, h3, .nav-links, .btn, .eyebrow{
  font-family: var(--font-display);
  font-weight: normal;
}

p, li, input, textarea{
  font-family: var(--font-body);
}

h1, h2{
  letter-spacing: -0.01em;
  font-weight: normal;
}

/* Links */
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

/* Layout helpers */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.section{
  padding: 72px 0;
  position: relative;
}
.section.tight{padding:52px 0}
.section.flush{padding:0}
.grid{
  display:grid;
  gap:22px;
}
@media (min-width: 900px){
  .grid.cols-2{grid-template-columns: 1.2fr .8fr}
  .grid.cols-3{grid-template-columns: repeat(3, 1fr)}
}

/* Header/Nav */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246,247,249,.78);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;

}
.brand img{
  height: 60px;
  width:auto;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 400;
  color: rgba(18,21,26,.78);
  text-transform: uppercase;
}
.nav-links a{
  padding:10px 10px;
  letter-spacing: 0.00em;
  position: relative;
  border-bottom: none;
}

/* The animated underline */
.nav-links a::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:0;

  width:0%;

  height:2px;

  background: linear-gradient(
    90deg,
    var(--blue),
    var(--teal)
  );

  transform: translateX(-50%);

  transition: width .35s cubic-bezier(.2,.9,.2,1);

}
/* Hover state */
.nav-links a:hover::after{

  width:100%;
  color: var(--blue);

}
/* Active page state (always visible) */
.nav-links a.active::after{

  width:100%;

}
.nav-links a.active{
  color: var(--ink);
  border-bottom-color: var(--blue);
}
.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}
.burger{
  display:none;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
  padding:10px 12px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:20px;height:2px;background:rgba(18,21,26,.7);
  margin:4px 0;
}
@media (max-width: 980px){
  .nav-links{display:none}
  .burger{display:inline-block}
  .nav-cta .btn.primary {display:none;}
}

/* Mobile drawer */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.drawer.open{display:block}
.drawer .backdrop{
  position:absolute; inset:0;
  background: rgba(10,12,16,.55);
}
.drawer .panel{
  position:absolute; top:0; right:0;
  width: min(360px, 92vw);
  height: 100%;
  background: #fff;
  padding: 18px 16px;
  border-left: 1px solid rgba(0,0,0,.08);
  transform: translateX(0);
}
.drawer .panel header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:10px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.drawer nav{
  display:flex;
  flex-direction:column;
  padding: 14px 0;
}
.drawer nav a{
  padding: 12px 10px;
  font-weight: 400;
  border-left: 3px solid transparent;
}
.drawer nav a.active{
  border-left-color: var(--blue);
  background: rgba(24,103,165,.06);
}
.icon-btn{
  cursor:pointer;
  background: transparent;
  border:1px solid rgba(0,0,0,.12);
  padding:8px 10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 6px;
  font-weight: 400;
  letter-spacing:.2px;
  text-transform: uppercase;
  cursor:pointer;
  background: #fff;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover{/*transform: translateY(2px);*/ box-shadow: 3px 3px 5px rgba(0,0,0,.46)}
.btn:active{transform: translateY(0px) scale(.99)}

.btn.primary{
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--teal),
    var(--blue),
    var(--teal),
    var(--blue)
  );

  background-size: 300% 100%;
  background-position: 0% 50%;

  border-color: rgba(0,0,0,.08);
  color: #fff;

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease);
}

/* Continuous motion on hover */
.btn.primary:hover{
  animation: gradientMoveRight 1.4s linear infinite reverse;
}

/* Stop animation when not hovering */
.btn.primary:not(:hover){
  animation: none;
}


/* Animation definition */
@keyframes gradientMoveRight{

  0%{
    background-position: 0% 50%;
  }

  100%{
    background-position: 200% 50%;
  }

}

.btn.ghost{

  background: rgba(255,255,255,.6);

  color: var(--darkblue);



  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    background .18s var(--ease),
    color .18s var(--ease);

}


/* Hover state */
.btn.ghost:hover{

  background: var(--blue);

  color: white;

  box-shadow: 0 12px 30px rgba(24,103,165,.25);

}

/* Hover state */
.hero .btn.ghost:hover{

  background: var(--paper);

  color: var(--blue);

  box-shadow: 0 12px 30px rgba(24,103,165,.25);

}

/* Active state */
.btn.ghost:active{

  transform: translateY(0) scale(.98);

}
.btn .arrow{
  width: 10px; height:10px;
  border-right:2px solid currentColor;
  border-top:2px solid currentColor;
  transform: rotate(45deg);
  opacity:.9;
}

/* Hero */
.hero{
  min-height: 70vh;
  display:flex;
  align-items: stretch;
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 560px at 20% 30%, rgba(24,103,165,.38), transparent 20%),
              radial-gradient(700px 520px at 80% 40%, rgba(26,118,118,.26), transparent 20%),
              linear-gradient(135deg, var(--darkblue), transparent 40%, var(--teal));
  pointer-events:none;
  z-index:2;
}
.hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.02);
}
.hero-content{
  position:relative;
  z-index:3;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 64px;
  display:grid;
  gap:18px;
  align-content:center;
}
.home .hero-content{
  padding: 64px 0 64px;
}
.hero h1{
  margin:0;
  color:#fff;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  line-height: 1.02;
}
.hero p.kicker{
  margin:0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 70ch;
  font-family: var(--font-body);
  font-weight: 400;
}

.home .hero p.kicker{
  margin:0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: none;
  font-family: var(--font-body);
  font-weight: 400;
}
.hero .cta-row{display:flex; gap:12px; flex-wrap:wrap}

/* Floating copy card that overlaps hero edge */
.hero-card{
  margin-top: 18px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);

  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  max-width: 92ch;
  border-radius: 8px;
  position: relative;
  color: var(--paper);
}

.home .hero-card{
  max-width: none;
}
.hero-card p{
  margin:0;
  color: var(--paper);
  line-height: 1.55;
  font-size: 1.04rem;
  font-weight: 300;
}

/* Animated Arc overlay */
.arc-overlay{
  position:absolute;
  inset: -10% -10% auto auto;
  width: min(720px, 70vw);
  height: auto;
  z-index:2;
  opacity:.55;
  pointer-events:none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));

  transform-origin: 70% 30%;

  /* Simplified: pulse + slow clockwise rotation */
  animation: arcPulse 30s cubic-bezier(.45,0,.25,1) infinite alternate,
             arcSpin 300s linear infinite;
}

/* Slow grow / shrink */
@keyframes arcPulse{
  from { transform: scale(0.98); }
  to   { transform: scale(1.06); }
}

/* Slow clockwise rotation */
@keyframes arcSpin{
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}
.arc-overlay .stroke{
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: arcDraw 2.4s cubic-bezier(.65,0,.35,1) .2s forwards;
}
@keyframes arcDraw{
  to{stroke-dashoffset: 0}
}

/* Sections / Cards */
.card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}
.card .eyebrow{
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(18,21,26,.58);
}
.h2{
  margin: 10px 0 8px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing:-0.02em;
}
.lede{
  margin: 0;
  color: rgba(18,21,26,.72);
  line-height: 1.6;
  font-size: 1.04rem;
}
.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(18,21,26,.78);
}
.list li{margin: 8px 0; line-height: 1.5}

/* Organic image mask */

.mask-wrap{

  position: relative;

  width: 100%;

  height: 100%;

  min-height: 260px;

  overflow: hidden;

  box-shadow: var(--shadow);

  border-radius: 18px;

}


/* Make image fully fill container */

.mask-wrap img{

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* Overlap layout block */
.overlap{
  display:grid;
  gap:18px;
}
@media (min-width: 900px){
  .overlap{
    grid-template-columns: 1.05fr .95fr;
    align-items:center;
  }
  .overlap .card{
    margin-left: -56px;   /* overlap the organic image */
  }
}
@media (max-width: 899px){
  .overlap .card{
    margin-top: -56px;   /* overlap the organic image */
  }
}

/* 3-column feature blocks */
.feature{
  padding: 18px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  position:relative;
  overflow:hidden;
}
.feature .icon-top{
  height: 200px;
  border-radius: 16px;
  overflow:hidden;
  margin-bottom: 14px;
  position:relative;
}
.feature .icon-top img{
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.04);
}
.feature h3{
  margin: 4px 0 8px;
  font-size: 1.15rem;
}
.feature p{
  margin: 0 0 10px;
  color: rgba(18,21,26,.74);
  line-height: 1.55;
  font-size: 1.02rem;
  font-family: var(--font-body);
}
.feature ul{margin: 0; padding-left: 18px}
.feature li{margin: 7px 0; line-height: 1.45; color: rgba(18,21,26,.8)}

/* Statement callouts */
.statement{

  position: relative;

  padding: 36px 36px;

  border-radius: var(--radius);

  overflow: hidden;

  border: 1px solid rgba(24,103,165,.18);
  text-align: center;
  font-size: 1.4em;
  background:
    linear-gradient(
      120deg,
      rgba(24,103,165,.10) 0%,
      rgba(26,118,118,.08) 40%,
      rgba(241,184,14,.10) 100%
    ),

    radial-gradient(
      circle at 85% 20%,
      rgba(241,184,14,.18),
      transparent 55%
    ),

    #ffffff;

  box-shadow:
    0 18px 50px rgba(0,0,0,.08);

}


/* Momentum accent line */

.statement::before{

  content:"";

  position:absolute;

  left:0;
  top:0;
  right:0;

  height:6px;

background: linear-gradient(90deg, var(--copper), var(--gold), var(--copper));

}


/* Soft glow accent */

.statement::after{

  content:"";

  position:absolute;



  width:300px;
  height:300px;

  background: radial-gradient(
    circle,
    rgba(24,103,165,.18),
    transparent 70%
  );

  pointer-events:none;

}
/*.statement{
  background: linear-gradient(135deg, rgba(24,103,165,.10), rgba(26,118,118,.08));
  border: 1px solid rgba(24,103,165,.16);
  padding: 22px;
  text-align: center;
  font-size: 1.4em;
}*/
.statement strong{
  color: var(--darkblue);
}

/* Contrast CTA band */
.cta-band{
  background: linear-gradient(120deg, rgba(24,103,165,.95), rgba(26,118,118,.92), rgba(128,47,58,.88));
  color:#fff;
  overflow:hidden;
}
.cta-band .card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.cta-band h2, .cta-band p, .cta-band li{color:#fff}
.cta-band .btn.primary{
  background: linear-gradient(90deg, var(--gold), rgba(241,184,14,.55));
  color: rgba(10,12,16,.88);
}

.cta-band .btn.primary{

  background: linear-gradient(
    90deg,
    var(--gold),
    var(--yellow),
    var(--gold),
    var(--yellow),
    var(--gold)
  );

  background-size: 300% 100%;

}


/* Hover acceleration */

.cta-band .btn.primary:hover{
  animation: ctaGradientFlow 10s linear infinite reverse;

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    animation-duration .6s var(--ease);

  animation-duration: 2.5s;

}


/* Click acceleration */

.cta-band .btn.primary:active{

  animation-duration: .5s;

}


/* Gold gradient animation */

@keyframes ctaGradientFlow{

  from{
    background-position: 0% 50%;
  }

  to{
    background-position: 200% 50%;
  }

}

.hero .btn.primary{

  background: linear-gradient(
    90deg,
    var(--gold),
    var(--yellow),
    var(--gold),
    var(--yellow),
    var(--gold)
  );

  background-size: 300% 100%;
  color: #0b0f14;
}


/* Hover acceleration */

.hero .btn.primary:hover{
  animation: heroGradientFlow 10s linear infinite reverse;

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    animation-duration .6s var(--ease);

  animation-duration: 2.5s;

}


/* Click acceleration */

.hero .btn.primary:active{

  animation-duration: .5s;

}


/* Gold gradient animation */

@keyframes heroGradientFlow{

  from{
    background-position: 0% 50%;
  }

  to{
    background-position: 200% 50%;
  }

}

/* Tabs */
.tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin: 12px 0 14px;
}
.tab-btn{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.8);
  padding: 10px 12px;
  font-weight: 600;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease);
}
.tab-btn:hover{transform: translateY(-1px)}
.tab-btn.active{
  background: rgba(24,103,165,.10);
  border-color: rgba(24,103,165,.25);
}
.tab-panel{
  display:none;
  color: rgba(18,21,26,.78);
  line-height: 1.6;
}
.tab-panel.active{display:block}

/* Team blocks */
.person{
  display:grid;
  gap:16px;
  align-items:start;
}
@media (min-width: 900px){
  .person{grid-template-columns: 275px 1fr}
}
.avatar img{
  width: 100%;
  height: auto;
  border-radius: 9999px;
  overflow:hidden;
  border: 3px solid rgba(24,103,165,.20);
  object-fit: cover;
  box-sizing: border-box;
}


/* Forms */
form{display:grid; gap:12px}
.field{
  display:grid;
  gap:6px;
}
label{font-weight: 800; font-size:.92rem}
input, textarea{
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.14);
  font: inherit;
  outline:none;
  background:#fff;
}
textarea{min-height: 140px; resize: vertical}
input:focus, textarea:focus{
  border-color: rgba(24,103,165,.55);
  box-shadow: 0 0 0 4px rgba(24,103,165,.10);
}

/* Footer */
footer{
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  color: rgba(18,21,26,.68);
  font-weight: 400;
  background: rgba(255,255,255,.55);
}
.footer-inner{
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

/* Subtle entrance animations */
[data-animate]{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.in-view{
  opacity:1 !important;
  transform: translateY(0) !important;
}

/* Tiny flourish line (momentum motif) */
.momentum{
  height: 3px;
  max-width: 92ch;
  background: linear-gradient(90deg, var(--copper), var(--gold), var(--copper));
  margin: 14px 0 0;
}

