/* ==========================================================================
   Suki Rockett Consulting — site.css
   Light, airy, minimal. Navy / blue / silver.
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #0d1b34;
  --navy-700: #1a3054;
  --blue-600: #1f5fbf;
  --blue-500: #2b76e0;
  --blue-400: #4a90ea;
  --blue-100: #e6f0fd;
  --blue-050: #f2f7ff;

  /* Neutrals */
  --ink: #0d1b34;
  --text: #1d2735;
  --muted: #5d6b80;
  --muted-2: #8792a3;
  --line: #e4e8ee;
  --line-2: #eef1f5;
  --surface: #ffffff;
  --surface-2: #f7f9fc;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
          Inter, Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 860px;
  --nav-h: 62px;
  --radius: 18px;

  --shadow-md: 0 2px 6px rgba(13, 27, 52, .06), 0 18px 44px rgba(13, 27, 52, .09);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }

:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: 108px 0; }
.section-sm { padding: 72px 0; }
.section-tint { background: var(--surface-2); }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); margin: 0 0 18px;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { font-size: 19px; color: var(--muted); margin: 0; }

.lead { font-size: 21px; line-height: 1.5; color: var(--muted); }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 980px;
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-500); color: #fff; }
.btn-ghost { background: transparent; color: var(--blue-600); border-color: rgba(31, 95, 191, .3); }
.btn-ghost:hover { background: var(--blue-050); border-color: rgba(31, 95, 191, .5); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { background: #eef3fa; color: var(--navy-900); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 16px; }
.link-arrow svg { transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------------------------------------------ nav -- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(13, 27, 52, .07);
}
.nav-inner {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 30px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 15px; font-weight: 600; color: var(--navy-900); letter-spacing: -0.015em; }
.brand-sub { font-size: 9.5px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 400; color: var(--text);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-links a:hover { color: var(--blue-600); background: rgba(31, 95, 191, .06); }
.nav-links a.active { color: var(--blue-600); font-weight: 500; }
.nav-cta { margin-left: 12px; padding: 9px 20px !important; background: var(--blue-600); color: #fff !important; border-radius: 980px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--blue-500) !important; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border: 0; background: transparent;
  cursor: pointer; align-items: center; justify-content: center; border-radius: 8px;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .28s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden;
  padding: 132px 0 120px;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(74, 144, 234, .17), transparent 62%),
    radial-gradient(700px 420px at 8% 8%, rgba(31, 95, 191, .09), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 62%);
}
.hero-inner { max-width: 860px; }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.03; letter-spacing: -0.035em; margin-bottom: 26px;
}
.hero h1 .grad {
  background: linear-gradient(96deg, var(--blue-600) 0%, var(--blue-400) 52%, #7fa9db 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero p { font-size: clamp(18px, 2.1vw, 22px); color: var(--muted); max-width: 640px; margin-bottom: 34px; line-height: 1.5; }

.hero-page {
  padding: 96px 0 76px;
  background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line-2);
}
.hero-page h1 { font-size: clamp(36px, 5.2vw, 60px); letter-spacing: -0.032em; margin-bottom: 20px; }
.hero-page p { font-size: 20px; color: var(--muted); max-width: 660px; margin: 0; }

/* ---------------------------------------------------------------- stats -- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 640px; }
.stat { padding: 26px 0; border-top: 1px solid var(--line); }
.stat-num { font-size: 40px; font-weight: 600; letter-spacing: -0.035em; color: var(--navy-900); line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--blue-500); }
.stat-label { font-size: 15px; color: var(--muted); line-height: 1.4; }

/* ---------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d7dfeb; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 16px; color: var(--muted); margin: 0; }
.card-link { display: block; color: inherit; }
.card-link:hover { color: inherit; }

.card-tint { background: var(--surface-2); border-color: transparent; }
.card-tint:hover { background: #fff; border-color: var(--line); }

.icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100); color: var(--blue-600); flex: none;
}
.icon svg { width: 21px; height: 21px; }

/* feature list inside cards */
.ticks { list-style: none; margin: 16px 0 0; }
.ticks li {
  position: relative; padding-left: 24px; margin-bottom: 9px;
  font-size: 15.5px; color: var(--muted); line-height: 1.5;
}
.ticks li::before {
  content: ''; position: absolute; left: 2px; top: .58em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400);
}
.ticks li:last-child { margin-bottom: 0; }

/* --------------------------------------------------- solution list rows -- */
.rows { border-top: 1px solid var(--line); }
.row-item {
  display: grid; grid-template-columns: 260px 1fr auto; gap: 32px; align-items: start;
  padding: 30px 0; border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.row-item:hover { background: var(--surface-2); }
.row-item h3 { font-size: 19px; margin: 0; }
.row-item p { font-size: 16px; color: var(--muted); margin: 0; }
.row-tag {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-600); background: var(--blue-050); border: 1px solid var(--blue-100);
  padding: 5px 12px; border-radius: 980px; white-space: nowrap;
}

/* --------------------------------------------------------------- chips  -- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.chip {
  padding: 10px 20px; border-radius: 980px; font-size: 15px;
  background: #fff; border: 1px solid var(--line); color: var(--text);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.chip:hover { border-color: var(--blue-400); color: var(--blue-600); background: var(--blue-050); }

/* ------------------------------------------------------------- split    -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split h2 { font-size: clamp(28px, 3.4vw, 40px); }
.split p { color: var(--muted); font-size: 18px; }

.panel {
  border-radius: 22px; padding: 40px;
  background: linear-gradient(150deg, #f4f8fd 0%, #eaf1fa 100%);
  border: 1px solid #e2eaf4;
}
.panel h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 20px; font-weight: 600; }

/* --------------------------------------------------------------- people -- */
.person { text-align: left; }
.person-photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: linear-gradient(155deg, #eef3fa 0%, #dde7f4 55%, #cfdcee 100%);
  border: 1px solid var(--line);
  margin-bottom: 22px; position: relative; overflow: hidden;
}
.person-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.person h3 { font-size: 22px; margin-bottom: 4px; }
.person .role { font-size: 15px; font-weight: 500; color: var(--blue-600); margin-bottom: 14px; }
.person p { font-size: 16px; color: var(--muted); }

/* ------------------------------------------------------------- CTA band -- */
.cta-band {
  background:
    radial-gradient(760px 380px at 82% 12%, rgba(74, 144, 234, .3), transparent 62%),
    linear-gradient(140deg, var(--navy-900) 0%, var(--navy-700) 58%, #1c3f70 100%);
  color: #fff; padding: 104px 0; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.76); font-size: 19px; max-width: 560px; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }

/* ---------------------------------------------------------------- forms -- */
.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--text);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(74, 144, 234, .14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 13.5px; color: var(--muted-2); margin: 0; }
.form-status { font-size: 15px; padding: 12px 16px; border-radius: 12px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--blue-050); color: var(--blue-600); border: 1px solid var(--blue-100); }

.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 26px; }
.contact-line .icon { width: 38px; height: 38px; margin: 0; border-radius: 10px; }
.contact-line .icon svg { width: 17px; height: 17px; }
.contact-line strong { display: block; font-size: 15px; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.contact-line span, .contact-line a { font-size: 16px; color: var(--muted); }

/* --------------------------------------------------------------- footer -- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.62); padding: 76px 0 34px; font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer-brand img { height: 96px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 11px; }
.footer a { color: rgba(255,255,255,.62); }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.45);
}
.footer-bottom .partner-line { display: flex; align-items: center; gap: 8px; }

/* ---------------------------------------------------------- animations -- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------ responsive-- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { gap: 44px; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 0 22px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(13, 27, 52, .1);
    border-bottom: 1px solid var(--line);
    padding: 12px 22px 26px;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 15px 4px; font-size: 18px; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .nav-links a.nav-cta {
    display: block; width: 100%; margin: 20px 0 0; text-align: center;
    padding: 15px 20px !important; border-radius: 980px; border-bottom: 0;
  }

  .hero { padding: 84px 0 76px; }
  .hero-page { padding: 68px 0 56px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }

  .row-item { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .row-tag { justify-self: start; }

  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 76px 0; }
  .card { padding: 26px; }
  .panel { padding: 28px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; justify-content: center; }
}
