:root {
  --ink: #10242b;
  --ink-2: #173640;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.08);
  --blue: #005a6a;
  --blue-2: #123e6d;
  --violet: #5b41d5;
  --green: #38d67d;
  --green-soft: #adfcb9;
  --paper: #ffffff;
  --paper-2: #f5f8fb;
  --text: #13242b;
  --muted: #d8e4e6;
  --dark-muted: #596b72;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(16, 36, 43, 0.13);
  --shadow: 0 24px 70px rgba(0, 53, 67, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(0, 90, 106, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 90, 106, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--dark-line);
  box-shadow: 0 12px 34px rgba(0, 53, 67, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 132px;
  max-height: 56px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 14px;
  font-weight: 800;
  color: #23333a;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(56, 214, 125, 0.55);
  border-radius: 8px;
  color: var(--blue);
  background: var(--green-soft);
  box-shadow: 0 14px 34px rgba(56, 214, 125, 0.22);
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
  isolation: isolate;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--green-soft), rgba(255, 255, 255, 0.12), transparent);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 45, 55, 0.94) 0%, rgba(0, 45, 55, 0.78) 42%, rgba(0, 45, 55, 0.38) 70%, rgba(0, 45, 55, 0.12) 100%),
    radial-gradient(circle at 24% 70%, rgba(56, 214, 125, 0.18), transparent 32%);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green-soft);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-soft);
  box-shadow: 0 0 20px var(--green-soft);
}

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

h1,
h2,
h3 {
  font-family: Ubuntu, "Open Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}

h1 {
  margin-bottom: 22px;
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 750;
}

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

.intro-grid.section {
  position: relative;
}

.intro-grid.section::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  top: 80px;
  bottom: 80px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.light {
  color: #07110f;
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.intro-grid,
.expectations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.intro-grid p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.expectations p,
.final-cta p {
  color: var(--dark-muted);
  font-size: 18px;
}

.why-section .section-heading p:not(.eyebrow),
.final-cta p {
  color: var(--muted);
}

.light .section-heading p:not(.eyebrow),
.light .expectations-grid p,
.light .buyer-grid p,
.light .use-case-grid span {
  color: var(--dark-muted);
}

.system-card {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.system-node {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
  text-align: center;
}

.system-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.system-map span {
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #f6fafb;
  color: var(--text);
  font-weight: 750;
}

.hardware-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(173, 252, 185, 0.16), transparent 28%),
    linear-gradient(135deg, #0c303a, #071b22);
  color: white;
}

.hardware-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(173, 252, 185, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(173, 252, 185, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.hardware-image,
.hardware-copy {
  position: relative;
  z-index: 1;
}

.hardware-image {
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: perspective(1100px) rotateY(5deg) rotateZ(-1.2deg);
}

.hardware-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.hardware-copy h2,
.hardware-copy p {
  max-width: 620px;
}

.hardware-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.capability-rail span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-rail span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-rail span::after {
  content: "";
  position: absolute;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-soft);
  box-shadow: 0 0 18px rgba(173, 252, 185, 0.6);
}

.capability-rail span:last-child::after {
  display: none;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 800px;
}

.buyer-grid,
.use-case-grid,
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.buyer-grid article,
.phase-grid article {
  padding: 26px;
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(20, 30, 24, 0.08);
}

.buyer-grid article:nth-child(even),
.phase-grid article:nth-child(even) {
  transform: translateY(22px);
}

.icon,
.phase-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #07110f;
  background: var(--green-soft);
  font-weight: 950;
}

.visual-proof {
  background:
    radial-gradient(circle at 12% 10%, rgba(173, 252, 185, 0.42), transparent 24%),
    linear-gradient(180deg, #f5f8fb, #ffffff);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.showcase-card {
  display: grid;
  grid-template-rows: 280px auto;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.showcase-card.large {
  grid-row: span 2;
  grid-template-rows: minmax(420px, 1fr) auto;
}

.distinctive-grid .showcase-card {
  border-radius: 0 28px 8px 8px;
}

.distinctive-grid .showcase-card:nth-child(2) {
  transform: translateY(34px);
}

.distinctive-grid .showcase-card:nth-child(3) {
  transform: translateX(-44px);
  width: calc(100% + 44px);
}

.showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card div {
  padding: 26px;
}

.visual-proof .eyebrow,
.light .eyebrow,
.phases .eyebrow {
  color: var(--blue);
}

.visual-proof .eyebrow::before,
.light .eyebrow::before,
.phases .eyebrow::before {
  background: var(--green);
  box-shadow: 0 0 18px rgba(56, 214, 125, 0.55);
}

.showcase-card p:not(.eyebrow) {
  color: var(--dark-muted);
}

.why-section {
  background:
    radial-gradient(circle at 20% 25%, rgba(173, 252, 185, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(173, 252, 185, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(173, 252, 185, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #0b3340, #0f2730);
  background-size: auto, 46px 46px, 46px 46px, auto;
  color: white;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-list article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.why-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--green-soft);
  font-weight: 950;
}

.why-list p,
.footer-brand + p {
  color: var(--muted);
}

.phase-grid p {
  color: var(--dark-muted);
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-grid article {
  min-height: 138px;
  padding: 24px;
  border: 1px solid rgba(7, 17, 15, 0.1);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 34px rgba(20, 30, 24, 0.08);
}

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

.use-case-grid strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.phases {
  background:
    radial-gradient(circle at 92% 18%, rgba(91, 65, 213, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5f8fb 80%);
  color: var(--text);
}

.phase-grid article {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: white;
  border-color: var(--dark-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.phase-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(56, 214, 125, 0.12);
}

.phase-grid strong {
  display: block;
  color: var(--blue);
}

.checks {
  display: grid;
  gap: 14px;
}

.checks p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 34px rgba(20, 30, 24, 0.08);
}

.checks span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: inset 0 0 0 5px var(--blue);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  max-width: 780px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(0, 90, 106, 0.14);
  background: #fff3ec;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--dark-muted);
}

.copyright {
  margin: 0;
  color: var(--dark-muted);
  font-size: 13px;
}

.footer-brand img {
  width: 126px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .buyer-grid,
  .why-list,
  .phase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .hardware-band,
  .expectations-grid,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    justify-self: start;
  }

  .hardware-image {
    transform: none;
  }

  .capability-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .buyer-grid article:nth-child(even),
  .phase-grid article:nth-child(even),
  .distinctive-grid .showcase-card:nth-child(2),
  .distinctive-grid .showcase-card:nth-child(3) {
    transform: none;
  }

  .distinctive-grid .showcase-card:nth-child(3) {
    width: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 660px;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 45, 55, 0.26), rgba(0, 45, 55, 0.92) 47%, rgba(0, 45, 55, 1)),
      radial-gradient(circle at 30% 70%, rgba(56, 214, 125, 0.14), transparent 40%);
  }

  .hero-content {
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .button {
    width: 100%;
  }

  .system-map,
  .buyer-grid,
  .feature-showcase,
  .why-list,
  .use-case-grid,
  .phase-grid {
    grid-template-columns: 1fr;
  }

  .capability-rail {
    grid-template-columns: 1fr 1fr;
  }

  .hardware-image,
  .hardware-image img {
    min-height: 310px;
  }

  .showcase-card,
  .showcase-card.large {
    grid-template-rows: 240px auto;
  }
}

/* WordPress standalone-template compatibility */
body.tg-cpl-standalone {
  margin: 0;
  padding: 0;
  max-width: none;
}

body.tg-cpl-standalone .tg-cpl-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.tg-cpl-standalone #wpadminbar {
  z-index: 99999;
}
