@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg: #0A0A0A;
  --bg2: #0A0A0A;
  --card: #111111;
  --text: #F3F4F6;
  --muted: #9CA3AF;
  --line: rgba(255,255,255,0.08);
  --brand: #3B82F6;
  --brand2: #2563EB;
  --brand3: #60A5FA;
  --shadow: 0 24px 60px rgba(0,0,0,0.6);
  --shadow2: 0 10px 40px rgba(59,130,246,0.1);
  --radius: 12px;
  --radius2: 20px;
  --max: 1200px;

  /* Light surfaces (Blitz-like segmentation) */
  --l-bg: #FFFFFF;
  --l-surface: #F9FAFB;
  --l-text: #111827;
  --l-muted: #6B7280;
  --l-line: rgba(0,0,0,0.08);
  --l-shadow: 0 16px 42px rgba(0,0,0,0.05);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.6;
}

a{color:inherit; text-decoration:none; transition: color 0.3s ease, background 0.3s ease}
img{max-width:100%; height:auto}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:#0B1020;
  border:1px solid var(--line);
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid rgba(234,240,255,.08);
}
.site-header.is-scrolled{
  background: rgba(7,10,18,.78);
  border-bottom-color: rgba(234,240,255,.12);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.brand-mark {
  height: 88px; /* 2X larger as requested */
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: none;
}


.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.site-nav a{
  font-size:14px;
  color:rgba(234,240,255,.86);
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
}
.site-nav a:hover{background:rgba(234,240,255,.06)}
.nav-cta{
  border:1px solid rgba(110,231,255,.28);
  background: linear-gradient(135deg, rgba(110,231,255,.14), rgba(167,139,250,.10));
}
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(234,240,255,.14);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
}
.nav-toggle-lines{
  width:22px;
  height:14px;
  display:block;
  background:
    linear-gradient(var(--text),var(--text)) 0 0/100% 2px,
    linear-gradient(var(--text),var(--text)) 0 50%/100% 2px,
    linear-gradient(var(--text),var(--text)) 0 100%/100% 2px;
  background-repeat:no-repeat;
  opacity:.9;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 24px;
  border-radius: 8px; /* Sharper, cleaner look */
  border:1px solid transparent;
  font-weight:600;
  font-size:15px;
  letter-spacing:.05em;
  cursor:pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  color: #FFFFFF;
  background: var(--brand);
  box-shadow: 0 8px 20px rgba(59,130,246,0.25);
}
.btn-primary:hover{
  background: var(--brand2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59,130,246,0.3);
}
.btn-secondary{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.btn-secondary:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.1);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* Hero */
.hero{
  position:relative;
  padding: 120px 0 60px; /* Lots of whitespace */
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:stretch;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  color:rgba(234,240,255,.78);
  letter-spacing:.28em;
  text-transform:uppercase;
  margin:0 0 14px;
  font-weight:700;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(36px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 20px;
  color:rgba(234,240,255,.84);
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 58ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin: 18px 0 0;
}
.stat{
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}
.stat:hover{
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.stat dt{
  font-size:12px;
  color: var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:0;
}
.stat dd{
  margin: 6px 0 0;
  font-weight:900;
  font-size:14px;
}

.hero-card{position:relative}
.hero-card .glow{display: none;} /* Removed for minimal aesthetic */
.card{
  position:relative;
  padding: 40px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  height:100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-card:hover .card{
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.card-title{
  margin:0 0 14px;
  font-weight:900;
  letter-spacing:.2px;
}
.checklist{
  margin:0 0 16px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checklist li{
  position:relative;
  padding-left:26px;
  color: rgba(234,240,255,.86);
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:14px;
  height:14px;
  border-radius:5px;
  background: linear-gradient(135deg, rgba(34,197,94,1), rgba(110,231,255,1));
  box-shadow: 0 12px 30px rgba(34,197,94,.12);
}
.card-link{
  display:inline-flex;
  font-weight:900;
  color: rgba(110,231,255,.92);
}
.card-link:hover{color: rgba(110,231,255,1)}

.hero-bg{position:absolute; inset:0; z-index:1; pointer-events:none}
.hero-bg .grid{
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at top center, black, transparent 80%);
}
.blob{display: none;} /* Minimal aesthetic, removed heavy blobs */

/* Sections */
.strip{
  border-top:1px solid rgba(14,22,49,.10);
  border-bottom:1px solid rgba(14,22,49,.10);
  background: rgba(255,255,255,.92);
}
.strip-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding: 14px 0;
  flex-wrap:wrap;
}
.strip-inner p{margin:0; color: rgba(14,22,49,.86); font-weight:900}
.pill-row{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(14,22,49,.12);
  background: rgba(14,22,49,.03);
  color: rgba(14,22,49,.78);
}

.section{padding: 120px 0} /* Massive whitespace between sections */
.section.alt{
  background: var(--l-bg);
  border-top:1px solid var(--l-line);
  border-bottom:1px solid var(--l-line);
  color: var(--l-text);
}
.section.alt a{color: inherit}
.section.alt .muted{color: var(--l-muted)}
.section.alt .section-head p{color: var(--l-muted)}
.section.alt h1,
.section.alt h2,
.section.alt h3{color: var(--l-text)}
.section.alt .panel-title{color: var(--l-text)}
.section.alt .btn-secondary{
  background: rgba(14,22,49,.03);
  border-color: rgba(14,22,49,.14);
  color: var(--l-text);
}
.section.alt .btn-ghost{
  border-color: rgba(14,22,49,.16);
  color: var(--l-text);
}
.section.alt .btn-ghost:hover{background: rgba(14,22,49,.05)}
.section.alt .card-link{color: rgba(124,58,237,.92)}
.section.alt .card-link:hover{color: rgba(124,58,237,1)}
.section.alt .tag{
  border-color: rgba(124,58,237,.18);
  background: rgba(167,139,250,.14);
  color: rgba(14,22,49,.86);
}
.section.alt .pill{
  border-color: rgba(14,22,49,.12);
  background: rgba(255,255,255,.92);
  color: rgba(14,22,49,.80);
}
.section.alt .service,
.section.alt .feature,
.section.alt .audience,
.section.alt .work,
.section.alt .tile,
.section.alt .post,
.section.alt .panel,
.section.alt .tag-cloud,
.section.alt .side-card,
.section.alt .metric,
.section.alt .job{
  background: var(--l-surface);
  border-color: var(--l-line);
  box-shadow: var(--l-shadow);
}
.section.alt .service p,
.section.alt .feature p,
.section.alt .audience p,
.section.alt .work p,
.section.alt .tile p,
.section.alt .post p,
.section.alt .post .meta,
.section.alt .metric-label,
.section.alt .contact-form label span,
.section.alt .form-note,
.section.alt small,
.section.alt .bullets,
.section.alt .steps,
.section.alt .contact-points,
.section.alt .audience .mini,
.section.alt .side-list{
  color: var(--l-muted);
}
.section.alt .steps strong{
  color: var(--l-text);
}
.section.alt .eyebrow{color: rgba(75,90,120,.92)}
.section.alt .stat dt{color: rgba(75,90,120,.92)}
.section.alt .stat dd{color: rgba(14,22,49,.92)}
.section.alt .icon-badge{
  background: rgba(14,22,49,.04);
  border-color: rgba(14,22,49,.12);
  color: rgba(14,22,49,.92);
}

/* Shared media */
.page-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:center;
}
.media-frame{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  overflow:hidden;
  transition: transform 0.3s ease;
}
.media-frame:hover {
  transform: scale(1.02);
}
.media-frame img{
  width:100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display:block;
  filter: grayscale(20%) contrast(1.1); /* Slightly premium desaturated look */
}
.section.alt .media-frame{
  border-color: rgba(14,22,49,.12);
  background: rgba(255,255,255,.92);
  box-shadow: var(--l-shadow);
}
.section.alt .media-frame img{filter:none}
.section.alt .chip{
  border-color: rgba(14,22,49,.14);
  background: rgba(14,22,49,.03);
  color: rgba(14,22,49,.78);
}
.section.alt .chip:hover{
  border-color: rgba(6,182,212,.26);
  background: rgba(6,182,212,.10);
}
.section.alt input,
.section.alt textarea{
  border-color: rgba(14,22,49,.14);
  background: rgba(255,255,255,.92);
  color: rgba(14,22,49,.92);
}
.section.alt input::placeholder,
.section.alt textarea::placeholder{color: rgba(75,90,120,.60)}
.section.alt input:focus,
.section.alt textarea:focus{border-color: rgba(6,182,212,.55); box-shadow: 0 0 0 3px rgba(6,182,212,.14)}
.section-actions{
  margin-top: 18px;
  display:flex;
  justify-content:flex-start;
  gap: 12px;
  flex-wrap:wrap;
}

/* Inner pages */
.page-hero{
  padding: 54px 0 26px;
  position:relative;
  overflow:hidden;
}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 10px;
  color: rgba(234,240,255,.70);
  font-size: 13px;
}
.breadcrumbs a{color: rgba(110,231,255,.92); font-weight:800}
.breadcrumbs span{opacity:.8}
.page-hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.page-hero p{
  margin:0;
  color: rgba(234,240,255,.78);
  max-width: 78ch;
}

.page-layout{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:start;
}
.side-card{
  border-radius: var(--radius2);
  border:1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(520px 240px at 10% 0%, rgba(110,231,255,.10), transparent 60%),
    rgba(234,240,255,.03);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
  padding: 18px;
}
.side-card h3{margin:0 0 10px}
.side-card p{margin:0 0 12px; color: rgba(234,240,255,.74)}
.side-list{margin:0; padding-left:18px; color: rgba(234,240,255,.78)}
.side-list li{margin: 8px 0}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.post-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.post{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.03);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.post:hover{
  transform: translateY(-2px);
  border-color: rgba(110,231,255,.24);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}
.post .meta{margin:0 0 10px; color: rgba(234,240,255,.62); font-size: 12px; letter-spacing:.08em; text-transform:uppercase}
.post h3{margin:0 0 8px}
.post p{margin:0; color: rgba(234,240,255,.74)}
.post a{display:inline-flex; margin-top: 10px; font-weight:900; color: rgba(110,231,255,.92)}

.jobs{
  display:grid;
  gap: 12px;
}
.job{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.03);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.job h3{margin:0 0 6px}
.job p{margin:0; color: rgba(234,240,255,.74)}
.job .pill{
  background: rgba(110,231,255,.08);
  border-color: rgba(110,231,255,.20);
  color: rgba(110,231,255,.9);
  box-shadow:none;
}

.tiles{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.tile{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(255,255,255,.07), transparent 60%),
    rgba(234,240,255,.03);
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}
.tile h3{margin:0 0 8px}
.tile p{margin:0; color: rgba(234,240,255,.74)}
.tile .tag{margin-bottom: 12px}
.section-head{max-width: 78ch; margin-bottom: 26px}
.section-head h2{
  margin:0 0 10px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height:1.15;
  letter-spacing:-.01em;
}
.section-head p{margin:0; color: rgba(234,240,255,.76)}
.muted{color: rgba(234,240,255,.70)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service{
  padding: 18px 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.03);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service:hover{
  transform: translateY(-2px);
  border-color: rgba(110,231,255,.24);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}
.service h3{margin:0 0 8px; font-size:16px}
.service p{margin:0; color: rgba(234,240,255,.74); font-size:14px}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature{
  padding: 18px 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(420px 220px at 10% 0%, rgba(110,231,255,.09), transparent 60%),
    rgba(234,240,255,.03);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature:hover{
  transform: translateY(-2px);
  border-color: rgba(167,139,250,.26);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}
.icon-badge{
  width:40px;
  height:40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  margin-bottom: 12px;
  background: rgba(234,240,255,.05);
  border:1px solid rgba(234,240,255,.14);
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color: rgba(234,240,255,.74); font-size:14px}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}
.bullets{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: rgba(234,240,255,.78);
}
.bullets li{margin: 8px 0}

.tag-cloud{
  border-radius: var(--radius2);
  border:1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(520px 260px at 80% 0%, rgba(110,231,255,.10), transparent 62%),
    rgba(234,240,255,.03);
  padding: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-content:flex-start;
  min-height: 220px;
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}
.chip{
  font-size:13px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(7,10,18,.22);
  color: rgba(234,240,255,.80);
}
.chip:hover{
  border-color: rgba(110,231,255,.28);
  background: rgba(110,231,255,.07);
}

.audience-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.audience{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(255,255,255,.07), transparent 60%),
    rgba(234,240,255,.03);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}
.audience h3{margin: 0 0 8px}
.audience .mini{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(234,240,255,.78);
}
.audience .mini li{margin: 8px 0}

.cta-band{
  margin-top: 16px;
  border-radius: var(--radius2);
  padding: 18px;
  border: 1px solid rgba(234,240,255,.14);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(110,231,255,.14), transparent 60%),
    radial-gradient(520px 240px at 100% 40%, rgba(167,139,250,.12), transparent 60%),
    rgba(234,240,255,.03);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.cta-band h3{margin:0 0 6px}
.cta-band p{margin:0}
.how-panel{margin-top: 14px}

.panel{
  border-radius: var(--radius2);
  border:1px solid rgba(234,240,255,.12);
  background:
    radial-gradient(500px 240px at 20% 0%, rgba(255,255,255,.08), transparent 60%),
    rgba(234,240,255,.03);
  padding: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.panel-title{margin:0 0 12px; font-weight:900}
.steps{
  margin:0;
  padding-left: 18px;
  color: rgba(234,240,255,.76);
}
.steps li{margin: 10px 0}
.steps strong{color: rgba(234,240,255,.92)}

.metrics{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.metric{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.03);
}
.metric-number{
  margin:0;
  font-size: 28px;
  font-weight:1000;
  letter-spacing:-.02em;
  background: linear-gradient(135deg, rgba(110,231,255,1), rgba(167,139,250,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.metric-label{margin:6px 0 0; color: rgba(234,240,255,.74)}

.work-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.work{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.03);
}
.tag{
  display:inline-flex;
  margin:0 0 10px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(110,231,255,.20);
  background: rgba(110,231,255,.08);
  color: rgba(110,231,255,.9);
}
.work h3{margin:0 0 8px}
.work p{margin:0}

/* Contact */
.contact-card{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(234,240,255,.14);
  background:
    radial-gradient(520px 240px at 10% 0%, rgba(110,231,255,.10), transparent 60%),
    radial-gradient(560px 240px at 90% 30%, rgba(167,139,250,.10), transparent 60%),
    rgba(234,240,255,.03);
  box-shadow: var(--shadow);
}
.contact-copy h2{margin: 8px 0 10px}
.contact-points{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(234,240,255,.78);
}
.contact-points li{margin: 8px 0}

.contact-form{
  display:grid;
  gap: 10px;
  align-content:start;
}
.contact-form label span{
  display:block;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(234,240,255,.72);
  margin-bottom: 6px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(7,10,18,.35);
  color: rgba(234,240,255,.92);
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(234,240,255,.42)}
input:focus, textarea:focus{border-color: rgba(110,231,255,.45); box-shadow: 0 0 0 3px rgba(110,231,255,.12)}
.form-note{margin:0; min-height: 1.4em; color: rgba(234,240,255,.72); font-size:13px}
.form-note.ok{color: rgba(34,197,94,.92)}
.form-note.err{color: rgba(248,113,113,.92)}

/* Footer */
.site-footer{
  border-top:1px solid rgba(14,22,49,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,245,250,.80));
  padding: 26px 0 16px;
  color: rgba(14,22,49,.90);
}
.site-footer .muted{color: rgba(75,90,120,.92)}
.site-footer a{color: rgba(14,22,49,.84)}
.site-footer a:hover{color: rgba(124,58,237,.92)}
.footer-inner{
  display:flex;
  gap:18px;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
}
.footer-brand{margin:0 0 6px; font-weight:1000}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{
  color: rgba(14,22,49,.74);
  padding: 8px 10px;
  border-radius:12px;
}
.footer-links a:hover{background: rgba(14,22,49,.05)}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top:1px solid rgba(14,22,49,.10);
  color: rgba(75,90,120,.92);
}
.to-top{
  color: rgba(124,58,237,.92);
  font-weight:800;
}

/* Responsive Layout Adjustments */
@media (max-width: 960px) {
  .section {
    padding: 80px 0; /* Balanced section padding for tablets */
  }
  .hero {
    padding: 100px 0 50px; /* Balanced hero padding */
  }
  .brand-mark {
    height: 60px; /* Scale down logo height on tablets */
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(234,240,255,.14);
    background: rgba(7,10,18,.95);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 100; /* Ensure mobile menu sits above all content */
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 12px 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Keep 3 stats columns on tablet */
  }
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .page-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2-column layout on tablets */
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .media-frame img {
    max-height: 320px;
  }
  .strip-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .pill-row {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0; /* Compact section padding for mobile */
  }
  .hero {
    padding: 80px 0 40px; /* Compact hero padding */
  }
  .brand-mark {
    height: 52px; /* Compact logo height for mobile */
  }
  .cards {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .feature-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .work-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .hero-stats {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .audience-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .grid-2 {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .post-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .tiles {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .media-frame img {
    max-height: 240px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important; animation:none !important}
}



.footer-divider {
  margin: 0 8px;
  opacity: 0.5;
  color: inherit;
}

/* ========== ENHANCED ANIMATIONS & TRANSITIONS ========== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  }
}

/* Apply animations to elements */
main section {
  animation: fadeIn 0.6s ease-out;
}

.hero-copy {
  animation: slideInLeft 0.7s ease-out;
}

.hero-card {
  animation: slideInRight 0.7s ease-out;
  animation-fill-mode: forwards;
}

.hero-card:hover {
  animation: none;
  animation: float 3s ease-in-out infinite;
}

.page-hero-grid > div:first-child {
  animation: slideInLeft 0.6s ease-out;
}

.page-hero-grid > div:last-child {
  animation: slideInRight 0.6s ease-out;
}

.tiles .tile {
  animation: scaleIn 0.5s ease-out forwards;
}

.tiles .tile:nth-child(1) { animation-delay: 0.1s; }
.tiles .tile:nth-child(2) { animation-delay: 0.2s; }
.tiles .tile:nth-child(3) { animation-delay: 0.3s; }
.tiles .tile:nth-child(4) { animation-delay: 0.4s; }
.tiles .tile:nth-child(5) { animation-delay: 0.5s; }
.tiles .tile:nth-child(6) { animation-delay: 0.6s; }
.tiles .tile:nth-child(7) { animation-delay: 0.7s; }
.tiles .tile:nth-child(8) { animation-delay: 0.8s; }
.tiles .tile:nth-child(9) { animation-delay: 0.9s; }
.tiles .tile:nth-child(10) { animation-delay: 1s; }

.cards .service {
  animation: scaleIn 0.5s ease-out forwards;
}

.cards .service:nth-child(1) { animation-delay: 0.1s; }
.cards .service:nth-child(2) { animation-delay: 0.2s; }
.cards .service:nth-child(3) { animation-delay: 0.3s; }
.cards .service:nth-child(4) { animation-delay: 0.4s; }
.cards .service:nth-child(5) { animation-delay: 0.5s; }
.cards .service:nth-child(6) { animation-delay: 0.6s; }

.feature-grid .feature {
  animation: slideInUp 0.6s ease-out forwards;
}

.feature-grid .feature:nth-child(1) { animation-delay: 0.1s; }
.feature-grid .feature:nth-child(2) { animation-delay: 0.2s; }
.feature-grid .feature:nth-child(3) { animation-delay: 0.3s; }
.feature-grid .feature:nth-child(4) { animation-delay: 0.4s; }
.feature-grid .feature:nth-child(5) { animation-delay: 0.5s; }
.feature-grid .feature:nth-child(6) { animation-delay: 0.6s; }

.work-grid .work {
  animation: scaleIn 0.5s ease-out forwards;
}

.work-grid .work:nth-child(1) { animation-delay: 0.1s; }
.work-grid .work:nth-child(2) { animation-delay: 0.2s; }
.work-grid .work:nth-child(3) { animation-delay: 0.3s; }

.audience-grid .audience {
  animation: slideInUp 0.6s ease-out forwards;
}

.audience-grid .audience:nth-child(1) { animation-delay: 0.1s; }
.audience-grid .audience:nth-child(2) { animation-delay: 0.2s; }
.audience-grid .audience:nth-child(3) { animation-delay: 0.3s; }

.hero-stats .stat {
  animation: slideInUp 0.5s ease-out forwards;
}

.hero-stats .stat:nth-child(1) { animation-delay: 0.1s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.2s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.3s; }

.metrics .metric {
  animation: scaleIn 0.5s ease-out forwards;
}

.metrics .metric:nth-child(1) { animation-delay: 0.1s; }
.metrics .metric:nth-child(2) { animation-delay: 0.2s; }
.metrics .metric:nth-child(3) { animation-delay: 0.3s; }
.metrics .metric:nth-child(4) { animation-delay: 0.4s; }

/* Hover animations for interactive elements */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.tile, .service, .work, .feature, .audience {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tile:hover, .service:hover, .work:hover, .feature:hover, .audience:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.card-link, a {
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--brand3);
  transform: translateX(4px);
}

.site-nav a {
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a:hover {
  color: var(--brand);
}

.site-nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  animation: slideInLeft 0.3s ease;
}

/* Image animations */
.media-frame {
  animation: slideInRight 0.7s ease-out;
  overflow: hidden;
  border-radius: var(--radius2);
}

.media-frame img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100%;
  height: auto;
}

.media-frame:hover img {
  transform: scale(1.05);
}

/* Glow effect */
.glow {
  animation: glow 2s ease-in-out infinite;
}

/* Section reveal animations */
.section-head {
  animation: slideInUp 0.6s ease-out;
}

h1 {
  animation: slideInDown 0.5s ease-out;
}

h2 {
  animation: slideInDown 0.5s ease-out;
}

h3 {
  animation: fadeIn 0.5s ease-out;
}

/* Form animations */
.contact-form label {
  animation: slideInUp 0.6s ease-out forwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.1s; }
.contact-form label:nth-child(2) { animation-delay: 0.2s; }
.contact-form label:nth-child(3) { animation-delay: 0.3s; }
.contact-form button { animation-delay: 0.4s; }

input, textarea {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

input:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
  transform: scale(1.01);
}

/* Loading state animation for images */
.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, var(--card) 25%, var(--bg) 50%, var(--card) 75%);
  background-size: 1000px 100%;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .hero-grid {
    gap: 40px;
  }
  
  .hero-card {
    margin-top: 20px;
  }

  .page-hero-grid {
    gap: 30px;
  }

  .split {
    gap: 40px;
  }

  section {
    padding: 60px 0;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-band > div:last-child {
    width: 100%;
    align-items: flex-start !important;
  }

  .contact-card {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    max-width: 100%;
  }

  /* Reduce animation durations on mobile for better performance */
  main section {
    animation: fadeIn 0.4s ease-out;
  }

  .hero-copy {
    animation: slideInLeft 0.4s ease-out;
  }

  .hero-card {
    animation: slideInRight 0.4s ease-out;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-card .card {
    padding: 20px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .contact-card {
    gap: 20px;
  }

  .cta-band > div:last-child {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .tiles {
    gap: 20px;
  }

  .cards {
    gap: 20px;
  }

  .feature-grid {
    gap: 20px;
  }

  /* Optimize animations for very small screens */
  * {
    animation-duration: 0.3s !important;
  }
}

/* Smooth scroll behavior enhancement */
html {
  scroll-behavior: smooth;
}

/* Touch device optimizations */
@media (hover: none) {
  .tile:hover, .service:hover, .work:hover, .feature:hover, .audience:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .media-frame:hover img {
    transform: none;
  }

  /* Add active state for touch devices */
  .tile:active, .service:active, .work:active, .feature:active, .audience:active,
  .btn:active {
    opacity: 0.8;
    transform: scale(0.98);
  }
}
/* Mobile-First Enhancements */

/* Viewport and Touch Optimizations */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly button sizes */
button, .btn, a, input[type="submit"], input[type="button"] {
  min-height: 48px;
  min-width: 48px;
  touch-action: manipulation;
}

/* Improved mobile form inputs */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
  }

  /* Remove default iOS styling */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
  }

  /* Custom select dropdown arrow */
  select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 24px;
    padding-right: 40px;
  }
}

/* Mobile-optimized hero section */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-grid {
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-copy p.lead {
    font-size: 16px;
  }

  .hero-card {
    width: 100%;
    margin-top: 0;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

/* Mobile-optimized sections */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 15px;
  }

  /* Stack cards vertically */
  .cards, .tiles, .work-grid, .feature-grid, .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Adjust card spacing */
  .tile, .service, .work, .feature, .audience {
    padding: 24px;
    gap: 12px;
  }

  .tile h3, .service h3, .work h3, .feature h3, .audience h3 {
    font-size: 18px;
  }

  .tile p, .service p, .work p, .feature p, .audience p {
    font-size: 14px;
  }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    z-index: 49;
    animation: slideInDown 0.3s ease-out;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border: none;
    background: transparent;
    z-index: 51;
  }

  .nav-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
  }

  .nav-toggle.is-active .nav-toggle-lines::before {
    transform: rotate(45deg) translate(14px, 14px);
  }

  .nav-toggle.is-active .nav-toggle-lines::after {
    transform: rotate(-45deg) translate(12px, -12px);
  }
}

/* Mobile-optimized layout */
@media (max-width: 600px) {
  .page-layout {
    flex-direction: column;
  }

  .side-card {
    order: -1;
    margin-bottom: 24px;
  }

  .cta-band {
    flex-direction: column;
  }

  .cta-band > div:last-child {
    width: 100%;
    align-items: stretch !important;
  }

  .cta-band .btn {
    width: 100%;
  }

  .contact-card {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }

  /* Adjust metrics grid */
  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-stats .stat {
    text-align: center;
  }

  /* Footer adjustments */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    padding: 8px 12px;
  }
}

/* Ultra-small screens */
@media (max-width: 400px) {
  .container {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .pill-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pill {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Optimize images for mobile */
@media (max-width: 768px) {
  .media-frame {
    max-height: 300px;
    margin: 0 -20px;
    border-radius: 0;
  }

  .media-frame img {
    object-fit: cover;
    height: 300px;
  }
}

/* Optimize strips for mobile */
@media (max-width: 768px) {
  .strip {
    padding: 30px 0;
  }

  .strip-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pill-row {
    justify-content: center;
  }
}

/* Loading state for network */
@media (prefers-color-scheme: dark) {
  .loading {
    background: linear-gradient(
      90deg,
      #1a1a1a 25%,
      #222 50%,
      #1a1a1a 75%
    );
  }
}

/* Print styles */
@media print {
  body, .site-header, .site-footer {
    background: white;
    color: black;
  }

  .nav-toggle, .contact-form {
    display: none;
  }

  .site-nav {
    display: block !important;
  }

  a {
    text-decoration: underline;
  }

  section {
    page-break-inside: avoid;
  }
}

/* Viewport scrollbar optimization */
@media (max-width: 480px) {
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}
