
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;600;700&display=swap');

:root{
  --bg-ink: #0a0620;
  --ink: #101027;
  --muted: #5a5a78;
  --white: #ffffff;
  --card: rgba(255,255,255,0.92);
  --glass: rgba(255,255,255,0.12);
  --stroke: rgba(255,255,255,0.18);
  --shadow: 0 18px 50px rgba(10, 10, 30, 0.22);
  --shadow-2: 0 14px 28px rgba(10, 10, 30, 0.18);
  --radius: 18px;
  --radius-2: 24px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  /* Persistently visible on all sections */
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
/* Darken slightly once scrolling begins */
.site-header.is-scrolled{
  background: rgba(0,0,0,0.92);
  border-bottom-color: rgba(255,255,255,0.16);
}
.site-header.is-hidden{
  transform: translateY(-110%);
}

.site-header.is-scrolled{
  background: rgba(0,0,0,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  display:flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
}
.brand .name{
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 18px;
}
.brand .tag{
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 13px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}
.nav a:hover{
  background: rgba(255,255,255,0.12);
}
.nav a.active{
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
}

.nav-toggle{
  display:none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 700;
}

/* Hero */
.hero{
  position: relative;
  color: #fff;
  overflow:hidden;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(54,74,255,0.9), transparent 60%),
              radial-gradient(900px 600px at 80% 40%, rgba(255,70,210,0.85), transparent 65%),
              linear-gradient(135deg, #0b0630 0%, #1d0b54 30%, #7b1ad4 70%, #ff51d2 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("../img/hero-gradient.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  mix-blend-mode: screen;
  pointer-events:none;
}
.hero-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 116px 18px 74px;
  position: relative;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items:center;
}

.hero h1{
  margin: 0 0 6px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}
.hero h2{
  margin: 0 0 14px;
  font-weight: 600;
  font-size: clamp(18px, 2.6vw, 26px);
  color: rgba(255,255,255,0.92);
}
.hero p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  max-width: 58ch;
}
.hero-cta{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.16); }
.btn.primary{
  background: rgba(255,255,255,0.92);
  color: #1a1241;
  border-color: transparent;
}
.btn.primary:hover{ background: #fff; }

.hero-art{
  position: relative;
  min-height: 260px;
}
.hero-art .dandelion{
  position:absolute;
  left: clamp(-10px, -2vw, 0px);
  bottom: -10px;
  width: min(520px, 92%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  opacity: 0.92;
}

/* Main content */
.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 18px;
}
.kicker{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b63c9;
  margin: 0 0 10px;
}
.section h3{
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
}
.lead{
  color: var(--muted);
  max-width: 70ch;
}

/* Ways of working cards */
.cards{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card{
  background: var(--card);
  border-radius: var(--radius-2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 10, 60, 0.10);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(10, 10, 30, 0.28);
}
.card-media{
  position: relative;
  height: 150px;
  overflow:hidden;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.03);
}
.card-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 10%, rgba(0,0,0,0.36) 100%);
}
.card-media .media-label{
  position:absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 12px 24px rgba(0,0,0,0.45);
  font-size: 16px;
}
.card-body{
  padding: 16px 16px 18px;
}
.card-body p{
  margin: 8px 0 0;
  color: #3e3a63;
  font-size: 14px;
}
.card .pill{
  display:inline-flex;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(110, 74, 255, 0.10);
  border: 1px solid rgba(110, 74, 255, 0.22);
  color: #3a2bb7;
  font-weight: 800;
  font-size: 13px;
}

/* Purple section */
.band{
  background: linear-gradient(160deg, #4b1aa5 0%, #7a18c8 45%, #b21de0 100%);
  color: #fff;
  padding: 62px 0 72px;
}
.band .section{
  padding: 0 18px;
}
.band p{
  color: rgba(255,255,255,0.88);
  max-width: 82ch;
}

/* Footer */
.footer{
  padding: 28px 18px;
  border-top: 1px solid rgba(20,10,60,0.10);
  color: #5b5877;
}
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
    padding: 104px 18px 86px;
  }
  .hero-art{
    min-height: 220px;
  }
  .hero-art .dandelion{
    position: relative;
    left: 0;
    bottom: 0;
    width: min(520px, 100%);
    margin: 10px auto 0;
  }
  .cards{
    grid-template-columns: 1fr;
  }
  .card-media{ height: 180px; }
  .nav{
    position: fixed;
    top: 62px;
    right: 14px;
    left: 14px;
    background: rgba(10,6,32,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 12px;
    display:none;
    flex-direction: column;
    gap: 6px;
  }
  .nav.open{ display:flex; }
  .nav a{ width:100%; }
  .nav-toggle{ display:inline-flex; }
}
/* Wave to white (responsive SVG) */
.hero{ --wave-h: clamp(120px, 16vw, 210px); }
.hero-inner{
  padding-bottom: calc(74px + var(--wave-h));
}
.wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  width:100%;
  height: var(--wave-h);
  pointer-events:none;
}
.wave path{ fill: #fff; }

/* Reflective blockquote with feature quotation marks */

blockquote.reflective {
  position: relative;
  margin: 36px 0;
  padding: 28px 34px 26px 44px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(110, 74, 255, 0.08),
    rgba(255, 255, 255, 0.9)
  );
  border-left: 4px solid rgba(110, 74, 255, 0.6);
  box-shadow: 0 18px 42px rgba(10, 10, 30, 0.14);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #2a2555;
}

/* Opening quote */
blockquote.reflective::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 14px;
  font-size: 88px;
  line-height: 1;
  font-family: Fraunces, Georgia, serif;
  color: rgba(110, 74, 255, 0.28);
  text-shadow: 0 6px 18px rgba(110, 74, 255, 0.25);
  pointer-events: none;
}

/* Closing quote */
blockquote.reflective::after {
  content: "”";
  position: absolute;
  bottom: -28px;
  right: 18px;
  font-size: 88px;
  line-height: 1;
  font-family: Fraunces, Georgia, serif;
  color: rgba(110, 74, 255, 0.22);
  text-shadow: 0 6px 18px rgba(110, 74, 255, 0.22);
  pointer-events: none;
}

/* Attribution */
blockquote.reflective cite {
  display: block;
  margin-top: 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: #5b57a6;
  letter-spacing: 0.03em;
}

/* Dark background (purple band) */
.band blockquote.reflective {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.band blockquote.reflective::before,
.band blockquote.reflective::after {
  color: rgba(255, 255, 255, 0.35);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.band blockquote.reflective cite {
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile tuning */
@media (max-width: 600px) {
  blockquote.reflective {
    padding: 22px 22px 22px 30px;
    font-size: 1rem;
  }

  blockquote.reflective::before,
  blockquote.reflective::after {
    font-size: 64px;
  }

  blockquote.reflective::before {
    top: -12px;
    left: 8px;
  }

  blockquote.reflective::after {
    bottom: -20px;
    right: 10px;
  }
}


