/* Waymark HR Group */

:root {
  --navy: #14304C;
  --navy-deep: #1B3A5C;
  --sky: #63B3ED;
  --sky-soft: #E3F0FB;
  --gold: #C99A2E;
  --gold-deep: #A87F1F;
  --paper: #F7F9FB;
  --panel: #E9F0F7;
  --ink-2: #4A5568;
  --line: #D6E2ED;
  --white: #FFFFFF;

  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1120px;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(20, 48, 76, .06), 0 8px 24px rgba(20, 48, 76, .07);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-deep); text-decoration-color: var(--sky); text-underline-offset: 3px; }
a:hover { color: var(--sky); }

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

.section { padding: 60px 0; }
.section-lg { padding: 76px 0; }

.panel { background: var(--panel); }
.panel-white { background: var(--white); }
.panel-navy { background: var(--navy); color: var(--white); }
.panel-navy h2, .panel-navy h3 { color: var(--white); }
.panel-navy p { color: #D9E4EF; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 12px 18px; z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* Type helpers */
.eyebrow {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 .9rem;
}
.panel-navy .eyebrow { color: var(--sky); }

.lede { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }
.panel-navy .lede { color: #CFDDEA; }

.tagline {
  font-style: italic;
  color: var(--sky);
  font-size: 1.05rem;
}

.muted { color: var(--ink-2); font-size: .95rem; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--gold); color: #23200F; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: var(--sky-soft); color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.center .btn-row { justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 249, 251, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 4px 0; }
.brand img { width: 66px; height: auto; display: block; flex-shrink: 0; }
@media (min-width: 700px) {
  .brand img { width: 76px; }
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--line);
  border-radius: 8px; padding: 9px 12px;
  font-family: var(--body); font-weight: 600; font-size: .9rem;
  color: var(--navy); cursor: pointer;
}
.nav-toggle-bars { display: block; width: 18px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy);
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-menu { display: none; }
.nav-menu.is-open {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px 20px 22px;
}
.nav-menu ul { list-style: none; margin: 0; padding: 0; }
.nav-menu li { border-bottom: 1px solid var(--line); }
.nav-menu li:last-child { border-bottom: 0; }
.nav-menu a {
  display: block; padding: 14px 2px;
  font-weight: 500; color: var(--navy); text-decoration: none;
}
.nav-menu a:hover { color: var(--sky); }
.nav-menu a[aria-current="page"] { color: var(--sky); font-weight: 600; }
.nav-cta { margin-top: 18px; }
.nav-cta .btn { width: 100%; text-align: center; }
.nav-menu .nav-cta a.btn-navy,
.nav-menu .nav-cta a.btn-navy:hover { color: var(--white); }

/* Hero */
.hero { padding: 56px 0 44px; }
.hero.hero-founder { padding-bottom: 10px; }
.hero.hero-founder + .section { padding-top: 30px; }
.hero h1 { max-width: 16ch; }
.hero .lede { margin-top: 4px; }
.hero-rule {
  width: 64px; height: 4px; background: var(--sky);
  border-radius: 2px; margin: 0 0 26px;
}

/* Fork cards */
.fork { display: grid; gap: 20px; margin-top: 8px; }

.fork-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--sky);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.fork-card h3 { margin-bottom: .45em; }
.fork-card p { color: var(--ink-2); }
.fork-card .btn { margin-top: auto; align-self: flex-start; }
.fork-num {
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sky);
  margin-bottom: 10px; display: block;
}

/* Route / wayfinding */
.route { list-style: none; margin: 34px 0 0; padding: 0 0 0 42px; position: relative; }
.route::before {
  content: ""; position: absolute; left: 11px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(var(--sky), var(--sky-soft));
}
.route li { position: relative; padding: 0 0 30px; }
.route li:last-child { padding-bottom: 0; }
.route li::before {
  content: ""; position: absolute; left: -42px; top: 3px;
  width: 24px; height: 24px;
  background: var(--sky);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 5px var(--paper);
}
.route li::after {
  content: ""; position: absolute; left: -34px; top: 11px;
  width: 8px; height: 8px; background: var(--white); border-radius: 50%;
}
.panel .route li::before { box-shadow: 0 0 0 5px var(--panel); }
.panel-white .route li::before { box-shadow: 0 0 0 5px var(--white); }
.panel-navy .route li::before { box-shadow: 0 0 0 5px var(--navy); background: var(--sky); }
.panel-navy .route::before { background: linear-gradient(var(--sky), rgba(99,179,237,.2)); }
.route h3 { font-size: 1.25rem; margin-bottom: .3em; }
.route p { color: var(--ink-2); margin: 0; }
.panel-navy .route p { color: #CFDDEA; }

/* Included list */
.included { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 16px; }
.included li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.included h3 { font-size: 1.2rem; margin-bottom: .25em; }
.included p { color: var(--ink-2); margin: 0; font-size: .98rem; }

.included-note {
  margin-top: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.included-note p { color: #D9E4EF; margin: 0; }
.included-note strong { color: var(--white); }

/* Guarantee */
.guarantee {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.guarantee .eyebrow { color: var(--gold-deep); }
.guarantee h2, .guarantee h3 { margin-bottom: .4em; }
.guarantee p { color: var(--ink-2); margin: 0; }

/* Product cards */
.products { display: grid; gap: 24px; margin-top: 36px; }
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.product h3 { margin-bottom: .5em; text-align: center; }
.product .for {
  font-size: .9rem; font-weight: 600; color: var(--navy-deep);
  background: var(--sky-soft);
  border-radius: 999px; padding: 7px 14px;
  display: inline-block; margin-bottom: 18px; align-self: center;
  text-align: center;
}
.product p { color: var(--ink-2); }
.product ul { margin: 0 0 20px; padding-left: 20px; color: var(--ink-2); }
.product ul li { margin-bottom: 7px; }
.product .btn { margin-top: auto; align-self: stretch; text-align: center; }
.product .note {
  border-top: 1px solid var(--line);
  margin-top: 4px; padding-top: 16px; margin-bottom: 20px;
  font-size: .95rem; color: var(--navy-deep);
}
.product .tool-url {
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  color: var(--navy-deep); background: var(--paper);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 9px 12px; margin: 0 0 20px;
  overflow-wrap: anywhere; text-align: center;
}

/* Founder */
.founder { display: grid; gap: 30px; align-items: center; }
.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 340px;
}
.founder-photo img { width: 100%; height: auto; }
.cred {
  display: inline-block;
  font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); background: var(--sky-soft);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 18px;
}

/* Secondary lead magnet strip */
.strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
}
.strip h3 { margin-bottom: .35em; }
.strip p { color: var(--ink-2); }
.strip + .strip { margin-top: 20px; }
.strip-sky { border-left-color: var(--sky); }
.strip .btn { margin-top: 8px; }

/* Contact blocks */
.contact-grid { display: grid; gap: 22px; margin-top: 34px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--sky);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.contact-card p { color: var(--ink-2); }
.contact-card .btn { margin-top: auto; align-self: flex-start; }

.details { list-style: none; margin: 0; padding: 0; }
.details li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.details li:last-child { border-bottom: 0; }
.details .label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--sky);
  margin-bottom: 2px;
}

/* Form */
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 30px; box-shadow: var(--shadow); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 1rem;
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--paper); color: var(--navy);
}
.field input:focus, .field select:focus { border-color: var(--sky); background: var(--white); }
.form .btn { width: 100%; text-align: center; }
.form-note { margin-top: 14px; font-size: .88rem; color: var(--ink-2); text-align: center; }

/* Checklist */
.checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 32px; color: var(--ink-2); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sky-soft); border: 2px solid var(--sky);
}

/* Footer */
.site-footer { background: var(--panel); border-top: 1px solid var(--line); padding: 48px 0 0; margin-top: 20px; }
.footer-grid { display: grid; gap: 32px; }
.footer-logo { width: 118px; height: auto; margin-bottom: 14px; }
.site-footer h3 {
  font-family: var(--body); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 14px;
}
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: var(--navy); text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: var(--sky); }
.footer-contact { list-style: none; margin: 0; padding: 0; color: var(--ink-2); }
.footer-contact li { margin-bottom: 10px; }
.footer-contact a { color: var(--navy); text-decoration: none; }
.footer-contact a:hover { color: var(--sky); }
.footer-bar {
  margin-top: 40px; background: var(--navy); color: #B9CBDC;
  padding: 18px 0; font-size: .88rem;
}
.footer-bar .wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }

/* Responsive */
@media (min-width: 700px) {
  body { font-size: 18px; }
  .section { padding: 76px 0; }
  .section-lg { padding: 100px 0; }
  .hero { padding: 76px 0 60px; }
  .fork { grid-template-columns: 1fr 1fr; gap: 26px; }
  .included { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .founder { grid-template-columns: 300px 1fr; gap: 44px; }
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 96px 0 70px; }
}

@media (min-width: 1120px) {
  .nav-toggle { display: none; }
  .nav-menu, .nav-menu.is-open {
    display: flex; align-items: center; gap: 6px;
    position: static; background: transparent; border: 0;
    box-shadow: none; padding: 0;
  }
  .nav-menu ul { display: flex; align-items: center; gap: 2px; }
  .nav-menu li { border-bottom: 0; }
  .nav-menu a {
    padding: 10px 10px; font-size: .93rem; border-radius: 6px;
    white-space: nowrap;
  }
  .nav-menu a[aria-current="page"] { background: var(--sky-soft); }
  .nav-cta { margin: 0 0 0 8px; }
  .nav-cta .btn { width: auto; padding: 11px 17px; font-size: .92rem; white-space: nowrap; }
}

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