@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-navy: #0a0f1e;
  --bg-navy-2: #0f1730;
  --bg-navy-3: #131e3d;
  --accent: #35d6e0;
  --accent-2: #c9a24b;
  --accent-soft: rgba(53, 214, 224, 0.1);
  --text-light: #eef2f9;
  --text-muted: #9fadc7;
  --text-faint: #6f7f9e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --card-bg: rgba(255, 255, 255, 0.025);
  --max-width: 1160px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.28);
  --shadow-lift: 0 16px 40px rgba(0, 0, 0, 0.38);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(53, 214, 224, 0.06), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 75, 0.05), transparent 55%),
    var(--bg-navy);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-word {
  font-family: 'Fraunces', 'Fraunces Fallback', Georgia, serif;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header.site-header {
  background: rgba(9, 14, 28, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo-word {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.logo-word .accent-dot { color: var(--accent); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav.main-nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}

nav.main-nav a:not(.btn):hover,
nav.main-nav a.active:not(.btn) {
  color: var(--text-light);
}

nav.main-nav a.active:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #23b2bd);
  color: #04181c;
  box-shadow: 0 6px 20px rgba(53, 214, 224, 0.22);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(53, 214, 224, 0.3); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-light);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.btn svg { width: 15px; height: 15px; }

/* Hero */
.hero {
  padding: 110px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 0%, transparent 75%);
  pointer-events: none;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--card-bg);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  position: relative;
}

.eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--text-light);
  font-weight: 600;
  position: relative;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--text-muted);
  font-size: 1.08rem;
  position: relative;
}

.hero .cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.disclosure {
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--text-faint);
  font-style: italic;
  position: relative;
}

/* Page header (non-home pages) */
.page-header {
  padding: 72px 28px 44px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(53,214,224,0.04), transparent);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0 0 14px;
  color: var(--text-light);
  font-weight: 600;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
}

/* Sections */
section { padding: 76px 28px; }

section.alt { background: var(--bg-navy-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: var(--max-width); margin: 0 auto 40px; }

h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 10px;
  color: var(--text-light);
  font-weight: 600;
}

p.section-sub {
  color: var(--text-muted);
  margin: 0;
  max-width: 640px;
  font-size: 1rem;
}

/* Cards / grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--border-strong);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-badge svg { width: 20px; height: 20px; }

.card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--text-light);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0 0 14px;
}

.card .price-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.card .eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 28px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pricing-card:hover { transform: translateY(-3px); }

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lift);
  background: linear-gradient(180deg, rgba(53,214,224,0.05), var(--card-bg) 40%);
}

.badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: #04181c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
}

.pricing-card h3 { margin: 4px 0 6px; font-size: 1.3rem; font-weight: 600; }
.pricing-card .price { font-size: 1.5rem; color: var(--accent); font-weight: 600; margin: 8px 0 2px; font-family: 'Fraunces', serif; }
.pricing-card .engagement { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 22px; }

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.pricing-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li svg {
  width: 15px; height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* Team */
.team-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .team-layout { grid-template-columns: 1fr; }
}

.avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #1c8f98);
  color: #04181c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
  box-shadow: var(--shadow-soft);
}

.team-layout h2 { margin: 0 0 6px; font-size: 1.6rem; font-weight: 600; }
.team-layout .role { color: var(--accent); font-size: 0.95rem; margin-bottom: 20px; display: block; font-weight: 500; }
.team-layout p { color: var(--text-muted); margin-bottom: 18px; }

.credentials-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  align-self: start;
}

.credentials-box h4 { margin: 0 0 18px; font-size: 0.95rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; }

.cred-item { display: flex; gap: 12px; margin-bottom: 18px; }
.cred-item .cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }
.cred-item strong { display: block; font-size: 0.95rem; color: var(--text-light); font-weight: 600; }
.cred-item span { display: block; font-size: 0.85rem; color: var(--text-muted); }

.notice-box {
  max-width: var(--max-width);
  margin: 44px auto 0;
  background: var(--accent-soft);
  border: 1px solid rgba(53, 214, 224, 0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.notice-box h4 { margin: 0 0 8px; font-size: 1rem; font-family: 'Inter', sans-serif; }
.notice-box p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* Case studies */
.case-card .label { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); display: block; margin-top: 14px; }
.case-card .label + p { margin-top: 6px; }

/* Careers */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.job-card .job-meta { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 10px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item strong { display: block; margin-bottom: 3px; color: var(--text-light); font-weight: 600; }
.contact-info-item span { color: var(--text-muted); font-size: 0.94rem; }

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

form.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 18px;
  font-weight: 500;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
  background: var(--bg-navy);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

form.contact-form textarea { min-height: 130px; resize: vertical; }

form.contact-form button { margin-top: 24px; }

/* CTA band */
.cta-band {
  text-align: center;
  border-radius: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(53,214,224,0.08), rgba(201,162,75,0.05));
  border: 1px solid var(--border);
}

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 28px 28px;
  background: var(--bg-navy-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-grid h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.15s ease; }
.footer-grid ul li a:hover { color: var(--accent); }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-word { font-size: 1.15rem; }

.footer-grid .foot-desc { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; margin: 0 0 18px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* Mobile nav simplification */
@media (max-width: 900px) {
  .nav-wrap { flex-direction: column; gap: 14px; }
  nav.main-nav { gap: 16px 20px; justify-content: center; }
}
