:root {
  --navy: #10233f;
  --navy-2: #17365f;
  --blue: #2f6fae;
  --blue-soft: #eaf3fb;
  --ice: #f5f9fd;
  --ink: #162033;
  --muted: #66758a;
  --line: #d8e3ee;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16,35,63,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 18px;
  top: 18px;
  z-index: 100;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
}

.site-header {
  min-height: 78px;
  padding: 14px clamp(22px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
}

.brand span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  letter-spacing: .08em;
  font-size: 14px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

.hero {
  position: relative;
  min-height: 700px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246,250,253,.98) 0%, rgba(246,250,253,.92) 44%, rgba(246,250,253,.35) 67%, rgba(16,35,63,.12) 100%),
    url("/assets/sage-reception-office-v1.png") center center / cover no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: clamp(70px, 8vw, 118px) clamp(28px, 6vw, 92px);
  align-self: center;
  max-width: min(880px, 62%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.hero h1,
.hero h2,
.section h2,
.workflow-section h2,
.video-section h2,
.support-section h2,
.get-sage h2 {
  margin: 0;
  color: var(--navy);
}

.hero h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -.06em;
}

.hero h1 span { color: var(--blue); }

.hero h2 {
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -.035em;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
}

.primary-button {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(16,35,63,.2);
}

.secondary-button {
  border: 1px solid #b8cce0;
  background: white;
  color: var(--navy);
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  color: #45556a;
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: static;
  min-height: 0;
  overflow: visible;
}

.office-panel {
  display: none;
}

.sage-portrait {
  position: absolute;
  z-index: 2;
  right: 8%;
  left: auto;
  bottom: -18px;
  transform: none;
  width: min(40vw, 520px);
  max-height: 680px;
  object-fit: contain;
  object-position: center bottom;
}

.identity-card {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 3px;
}

.identity-card strong {
  color: var(--navy);
  font-size: 18px;
  letter-spacing: .09em;
}

.identity-card span {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.identity-card small {
  color: var(--muted);
  font-size: 11px;
}

.business-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.business-strip div {
  padding: 30px clamp(24px, 4vw, 54px);
  display: grid;
  gap: 7px;
}

.business-strip div + div { border-left: 1px solid var(--line); }

.business-strip strong { color: var(--navy); }

.business-strip span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.section,
.workflow-section,
.video-section,
.support-section,
.get-sage {
  padding: clamp(72px, 8vw, 116px) clamp(24px, 6vw, 92px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading h2,
.workflow-section h2,
.video-section h2,
.support-section h2,
.get-sage h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 16px 38px rgba(16,35,63,.06);
}

.capability-grid article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.capability-grid h3 {
  margin: 42px 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.capability-grid p,
.workflow-copy > p,
.video-copy > p,
.support-section > p,
.get-sage p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
  gap: 56px;
  background: var(--ice);
}

.workflow-copy > p { margin-top: 22px; }

.steps {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.steps li > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.steps div {
  display: grid;
  gap: 5px;
}

.steps strong { color: var(--navy); }

.steps small {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.coordination-card {
  align-self: center;
  padding: 34px;
  border-radius: 24px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.coordination-card .eyebrow { color: #a9d3f4; }

.coordination-card h3 {
  margin: 0 0 28px;
  font-size: 30px;
  line-height: 1.15;
}

.coordination-row {
  padding: 18px 0;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.coordination-row strong { color: white; }

.coordination-row span {
  color: #c9d5e2;
  font-size: 14px;
  line-height: 1.5;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
  gap: 60px;
  align-items: center;
}

.video-copy > p { margin-top: 22px; }

.video-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 340px;
  border-radius: 26px;
  border: 1px solid #bed0e1;
  background:
    linear-gradient(135deg, rgba(16,35,63,.88), rgba(47,111,174,.72)),
    url("/assets/sage-reception-office-v1.png") center / cover no-repeat;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--navy);
  font-size: 24px;
  padding-left: 4px;
}

.video-placeholder strong { font-size: 22px; }

.video-placeholder span {
  color: #dbe9f6;
  font-size: 13px;
}

.support-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--navy);
  color: white;
}

.support-section .eyebrow { color: #9fd0f6; }

.support-section h2 { color: white; }

.support-section > p {
  align-self: center;
  color: #c9d5e2;
  max-width: 680px;
}

.get-sage {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #eff6fc, #fff);
}

.get-sage p {
  max-width: 760px;
  margin-top: 18px;
}

.get-sage-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.get-sage-actions small {
  max-width: 300px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

footer {
  padding: 28px clamp(24px, 6vw, 92px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .site-header nav a:not(.nav-cta) { display: none; }

  .hero {
    min-height: 640px;
  }

  .hero-visual {
    min-height: 0;
  }

  .sage-portrait {
    right: 3%;
    left: auto;
    width: min(62vw, 500px);
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-section,
  .video-section,
  .support-section,
  .get-sage {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .brand small { display: none; }

  .site-header {
    padding-inline: 18px;
  }

  .hero-copy {
    padding: 64px 22px 42px;
    max-width: 72%;
  }

  .hero-visual {
    min-height: 0;
  }

  .sage-portrait {
    right: -9%;
    left: auto;
    bottom: -10px;
    width: min(90vw, 410px);
    max-height: 500px;
  }

  .identity-card {
    right: 16px;
    bottom: 16px;
    min-width: 160px;
  }

  .business-strip,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .business-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section,
  .workflow-section,
  .video-section,
  .support-section,
  .get-sage {
    padding: 64px 22px;
  }

  footer {
    flex-direction: column;
  }
}
/* Official AI Tasklets.com logo standard v1 */
.site-logo {
  display: block;
  width: 230px;
  height: 86px;
  object-fit: cover;
  object-position: center 82%;
}
@media (max-width: 700px) {
  .site-logo {
    width: 190px;
    height: 70px;
    object-position: center 82%;
  }
}
