:root {
  --navy-950: #04111f;
  --navy-900: #06172a;
  --navy-800: #0a2842;
  --navy-700: #12415d;
  --blue-500: #1879a8;
  --teal-400: #4dd6c7;
  --teal-300: #70e5d8;
  --gold-500: #d99b15;
  --gold-400: #e4ad2a;
  --gold-300: #f1ca6d;
  --ice-100: #f2f8fb;
  --ice-200: #deedf3;
  --slate-300: #a9bbc7;
  --slate-500: #5e7483;
  --slate-700: #2d4553;
  --ink: #102633;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(2, 18, 31, 0.14);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.35rem, 6.4vw, 6rem);
  letter-spacing: -0.058em;
}

h1 em {
  display: inline-block;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.6vw, 4.65rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1.2rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 142px;
  height: 64px;
  padding: 4px 7px;
  object-fit: contain;
  background: var(--white);
  border-radius: 5px;
}

.brand-context {
  color: var(--slate-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--ice-200);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-300);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(217, 155, 21, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(217, 155, 21, 0.3);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 870px;
  display: flex;
  align-items: center;
  padding: 158px 0 92px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 17, 31, 0.98), rgba(6, 31, 51, 0.96) 58%, rgba(10, 47, 67, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(77, 214, 199, 0.22), transparent 40%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  top: 60px;
  border: 1px solid rgba(77, 214, 199, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(77, 214, 199, 0.08) inset;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal-300);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: var(--gold-400);
}

.eyebrow.dark {
  color: var(--navy-700);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--ice-200);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 4px;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.dark-link {
  color: var(--navy-800);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.trust-row span {
  padding: 7px 11px;
  color: var(--ice-200);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}

.workflow-demo {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
  transform: translateY(14px);
}

.demo-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  align-items: center;
  padding: 20px 22px;
  color: var(--white);
  background: var(--navy-800);
}

.demo-header small {
  grid-column: 2;
  color: var(--slate-300);
  font-size: 0.76rem;
}

.live-dot {
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(77, 214, 199, 0.12);
}

.caller-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 22px;
  padding: 16px;
  color: var(--ink);
  background: var(--ice-100);
  border: 1px solid var(--ice-200);
  border-radius: 12px;
}

.caller-card p,
.caller-card small {
  margin: 0;
}

.caller-card small {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caller-card p {
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.caller-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-500);
  border-radius: 50%;
  font-weight: 850;
}

.connector-line {
  position: relative;
  height: 24px;
  margin: 0 22px;
  border-left: 2px dashed var(--teal-400);
}

.connector-line span {
  position: absolute;
  left: 14px;
  top: 1px;
  color: var(--navy-700);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 6px 22px 22px;
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0 11px;
  align-items: center;
  padding: 11px 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--ice-200);
}

.outcome-list li > span {
  grid-row: 1 / span 2;
  color: var(--teal-400);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.outcome-list strong {
  font-size: 0.93rem;
}

.outcome-list small {
  color: var(--slate-500);
  font-size: 0.78rem;
}

.demo-footer {
  padding: 15px 22px;
  color: var(--navy-800);
  background: linear-gradient(90deg, rgba(77, 214, 199, 0.18), rgba(228, 173, 42, 0.16));
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.proof-grid span {
  color: var(--slate-300);
  font-size: 0.78rem;
}

.section {
  padding: 116px 0;
}

.challenge-section {
  background: var(--white);
}

.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: 92px;
  align-items: start;
}

.challenge-copy {
  padding-top: 48px;
  color: var(--slate-700);
  font-size: 1.15rem;
}

.capability-section,
.fit-section {
  color: var(--white);
  background: var(--navy-900);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 56px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--slate-300);
  font-size: 1.12rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.capability-card {
  position: relative;
  min-height: 520px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.capability-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.front-office {
  background: linear-gradient(145deg, #0b3550, #071f35);
}

.back-office {
  background: linear-gradient(145deg, #123c48, #082430);
}

.card-number {
  margin-bottom: 56px;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 3rem;
}

.card-label {
  margin-bottom: 8px;
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capability-card > p:not(.card-label) {
  max-width: 510px;
  color: var(--ice-200);
  font-size: 1.05rem;
}

.capability-card ul,
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li,
.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-400);
  font-weight: 900;
}

.workflows-section {
  background: var(--ice-100);
}

.workflows-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 78px;
}

.workflow-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.workflow-intro > p:not(.eyebrow) {
  color: var(--slate-700);
  font-size: 1.05rem;
}

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

.workflow-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--ice-200);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(7, 40, 64, 0.04);
}

.workflow-grid article > span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-weight: 700;
}

.workflow-grid h3 {
  font-size: 1.35rem;
}

.workflow-grid p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.93rem;
}

.fit-section {
  background:
    linear-gradient(rgba(6, 23, 42, 0.95), rgba(6, 23, 42, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(77, 214, 199, 0.26), transparent 46%);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fit-grid > div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--navy-900);
}

.fit-grid strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.2rem;
}

.fit-grid span {
  color: var(--slate-300);
  font-size: 0.9rem;
}

.connector-section {
  overflow: hidden;
}

.connector-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: center;
}

.connector-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--ice-200);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(77, 214, 199, 0.14) 0 24%, transparent 25%),
    repeating-radial-gradient(circle, transparent 0 64px, rgba(10, 65, 93, 0.08) 65px 66px);
}

.connector-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 180px;
  height: 180px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--navy-800);
  border: 8px solid rgba(77, 214, 199, 0.18);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.connector-center span {
  color: var(--gold-300);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.orbit-item {
  position: absolute;
  min-width: 104px;
  padding: 9px 12px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--ice-200);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 24px rgba(7, 40, 64, 0.08);
}

.orbit-item.one { left: 50%; top: 4%; transform: translateX(-50%); }
.orbit-item.two { right: 2%; top: 24%; }
.orbit-item.three { right: 2%; bottom: 24%; }
.orbit-item.four { left: 50%; bottom: 4%; transform: translateX(-50%); }
.orbit-item.five { left: 2%; bottom: 24%; }
.orbit-item.six { left: 2%; top: 24%; }

.large-copy {
  color: var(--slate-700);
  font-size: 1.08rem;
}

.connector-section .check-list li {
  border-color: var(--ice-200);
}

.security-section {
  color: var(--white);
  background: var(--navy-800);
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
  gap: 90px;
  align-items: center;
}

.security-grid > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ice-200);
  font-size: 1.05rem;
}

.security-points {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.security-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-points div:last-child {
  border-bottom: 0;
}

.security-points span {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.contact-section {
  padding: 118px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 17, 31, 0.98), rgba(8, 45, 62, 0.97)),
    radial-gradient(circle at 80% 20%, rgba(77, 214, 199, 0.25), transparent 38%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.62fr);
  gap: 90px;
  align-items: center;
}

.contact-grid > div > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ice-200);
  font-size: 1.1rem;
}

.contact-card {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-label {
  margin-bottom: 22px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.contact-card > p:not(.contact-label) {
  color: var(--slate-700);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-links a {
  padding: 13px 15px;
  color: var(--navy-800);
  background: var(--ice-100);
  border: 1px solid var(--ice-200);
  border-radius: 8px;
  text-decoration: none;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.full-width {
  width: 100%;
}

footer {
  padding: 52px 0 30px;
  color: var(--ice-200);
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-inner > div:first-child {
  max-width: 620px;
}

.footer-inner strong {
  color: var(--white);
  font-size: 1.08rem;
}

.footer-logo {
  width: 178px;
  height: auto;
  margin-bottom: 15px;
  padding: 5px 8px;
  background: var(--white);
  border-radius: 5px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--slate-300);
}

.legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal p {
  max-width: 940px;
  margin: 0;
  color: var(--slate-300);
  font-size: 0.74rem;
}

@media (max-width: 980px) {
  .header-inner nav,
  .header-inner > .button {
    display: none;
  }

  .hero {
    padding-top: 142px;
  }

  .hero-grid,
  .challenge-grid,
  .workflows-layout,
  .connector-grid,
  .security-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .challenge-grid,
  .workflows-layout,
  .connector-grid,
  .security-grid,
  .contact-grid {
    gap: 54px;
  }

  .workflow-demo {
    width: min(620px, 100%);
  }

  .challenge-copy {
    padding-top: 0;
  }

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

  .workflow-intro {
    position: static;
  }

  .connector-visual {
    width: min(520px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.45rem);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-context {
    display: none;
  }

  .brand-logo {
    width: 126px;
    height: 57px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 72px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .workflow-demo {
    transform: none;
  }

  .proof-grid,
  .capability-grid,
  .workflow-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:last-child {
    min-height: 100px;
    padding: 18px 12px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .section,
  .contact-section {
    padding: 82px 0;
  }

  .capability-card {
    min-height: auto;
    padding: 30px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .workflow-grid article {
    min-height: auto;
  }

  .connector-visual {
    min-height: 350px;
  }

  .connector-center {
    width: 136px;
    height: 136px;
    border-width: 5px;
    font-size: 0.86rem;
  }

  .orbit-item {
    min-width: 84px;
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .contact-card {
    padding: 27px;
  }

  .footer-inner {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
