:root {
  color-scheme: light;
  --ink: #102027;
  --muted: #5d6a70;
  --line: #d9e2e2;
  --paper: #f7faf9;
  --white: #ffffff;
  --navy: #12313b;
  --deep: #071416;
  --green: #47a36f;
  --green-dark: #26704d;
  --gold: #c8963e;
  --steel: #dce7e8;
  --shadow: 0 20px 60px rgba(7, 20, 22, 0.14);
  --soft-shadow: 0 10px 30px rgba(7, 20, 22, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 20, 22, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 360px;
}

.brand-logo {
  display: block;
  width: clamp(300px, 28vw, 390px);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 32px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 22, 0.93) 0%, rgba(7, 20, 22, 0.78) 36%, rgba(7, 20, 22, 0.18) 72%),
    linear-gradient(0deg, rgba(7, 20, 22, 0.88), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 40px));
  margin: 112px 0 48px clamp(20px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #73c996;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.5;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 22px;
}

.hero-proof span {
  min-height: 62px;
  padding: 12px 14px;
  border-top: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--deep);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.band {
  background: var(--white);
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: 30px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

p {
  line-height: 1.62;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 80px);
  max-width: 1120px;
  color: var(--muted);
  font-size: 18px;
}

.process-grid,
.fit-grid,
.platform-grid,
.six-grid,
.system-grid,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article,
.fit-grid article,
.platform-grid article,
.six-grid article,
.system-grid article,
.feature-panel {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.process-grid article strong,
.fit-grid article span,
.platform-grid article span,
.system-grid article span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-grid p,
.fit-grid p,
.platform-grid p,
.six-grid p,
.system-grid p {
  margin: 0;
  color: var(--muted);
}

.fit-section {
  background: #edf3f3;
}

.fit-grid article {
  min-height: 278px;
  background: #ffffff;
}

.logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-grid article {
  min-height: 300px;
}

.logo-grid img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.logo-grid img[src*="rangebot"],
.logo-grid img[src*="golfbot"] {
  max-width: 88px;
  height: 70px;
  object-position: left top;
}

.text-logo {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 12px;
  color: #ee672f;
  font-size: 27px;
  font-weight: 900;
}

.stack-card {
  background: linear-gradient(180deg, #ffffff, #f0f6f4);
}

.stack-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  min-height: 94px;
  margin-bottom: 12px;
}

.stack-logos img {
  width: 100%;
  max-width: 78px;
  height: 34px;
  margin: 0;
  object-position: center;
}

.oracle-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #c74634;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.connections {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbfa;
}

.connection-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
}

.feature-panel {
  min-height: 248px;
  background: #ffffff;
}

.feature-panel:first-child {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(18, 49, 59, 0.96), rgba(7, 20, 22, 0.96)),
    var(--navy);
}

.feature-panel:first-child h3 {
  color: var(--white);
}

.feature-panel:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.system-grid article {
  min-height: 282px;
}

.big-six {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.big-six.compact {
  padding-top: clamp(54px, 7vw, 84px);
  padding-bottom: clamp(54px, 7vw, 84px);
  background: #f1f6f5;
}

.six-grid article {
  min-height: 190px;
  background: linear-gradient(180deg, #ffffff, #f5f8f7);
}

.six-grid strong {
  color: var(--green-dark);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.model {
  background: #edf3f3;
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.model-copy {
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.steps p {
  margin: 0;
  color: var(--muted);
}

.support-section {
  background: #eef4f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.support-copy {
  color: var(--muted);
  font-size: 18px;
}

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

.credential-grid p {
  min-height: 132px;
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: #eef5f1;
  color: var(--navy);
  font-weight: 700;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 22, 0.94), rgba(18, 49, 59, 0.88)),
    radial-gradient(circle at 78% 22%, rgba(71, 163, 111, 0.38), transparent 34%),
    var(--deep);
}

.contact h2 {
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 46px);
}

.contact p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: #071416;
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .brand {
    min-width: 310px;
  }

  .brand-logo {
    width: 310px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    min-height: 116px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    height: auto;
  }

  .hero-content {
    margin: 130px 0 56px 20px;
  }

  .intro-grid,
  .process-grid,
  .fit-grid,
  .platform-grid,
  .six-grid,
  .system-grid,
  .connection-layout,
  .model-layout,
  .support-layout,
  .credential-grid {
    grid-template-columns: 1fr;
  }

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

  .support-layout {
    gap: 18px;
  }

  .process-grid article,
  .fit-grid article,
  .platform-grid article,
  .six-grid article,
  .system-grid article,
  .feature-panel {
    min-height: auto;
  }

  .contact,
  footer {
    display: block;
  }

  .contact .button {
    margin-top: 22px;
  }

  footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
    display: inline-flex;
  }

  .brand-logo {
    width: min(318px, calc(100vw - 40px));
  }

  .hero {
    min-height: 940px;
    height: auto;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 20, 22, 0.95), rgba(7, 20, 22, 0.7)),
      linear-gradient(0deg, rgba(7, 20, 22, 0.92), transparent 46%);
  }

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

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .fit-grid article,
  .platform-grid article,
  .six-grid article,
  .system-grid article,
  .credential-grid p,
  .feature-panel {
    padding: 20px;
  }
}
