:root {
  color-scheme: light;
  --ink: #0f1f1b;
  --muted: #66756f;
  --line: #dce7e2;
  --paper: #f5f8f6;
  --mist: #eaf2ee;
  --white: #ffffff;
  --green: #00a878;
  --green-deep: #047857;
  --cyan: #0ea5e9;
  --amber: #f59e0b;
  --charcoal: #0e1916;
  --charcoal-2: #15231f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nanum Gothic", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  letter-spacing: 0;
}

.topline {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 34px;
  padding: 0 18px;
  background: #07110e;
  color: #d8fff0;
  font-size: 12px;
  font-weight: 800;
}

.topline a:last-child {
  color: #7af0c0;
}

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

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

.site-header {
  position: sticky;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 44px;
  background: rgba(245, 248, 246, 0.88);
  border-bottom: 1px solid rgba(220, 231, 226, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #33443e;
  font-size: 14px;
  font-weight: 800;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  border-color: var(--green);
}

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  padding: 166px 44px 92px;
  overflow: hidden;
  background: var(--charcoal);
}

.cloud-hero {
  min-height: min(860px, 94vh);
}

.hero-bg {
  position: absolute;
  inset: -8% 0 0 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 25, 22, 0.93) 0%, rgba(14, 25, 22, 0.72) 43%, rgba(14, 25, 22, 0.44) 100%),
    linear-gradient(180deg, rgba(14, 25, 22, 0.28) 0%, rgba(14, 25, 22, 0.86) 100%);
}

.signal-lines {
  position: absolute;
  inset: auto 0 72px 0;
  display: grid;
  gap: 15px;
  opacity: 0.45;
}

.signal-lines span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.75), rgba(14, 165, 233, 0.55), transparent);
  animation: signalSweep 7s linear infinite;
}

.signal-lines span:nth-child(2) {
  animation-delay: -2.2s;
}

.signal-lines span:nth-child(3) {
  animation-delay: -4.4s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 0.55fr);
  gap: 54px;
  align-items: end;
  width: min(1180px, 100%);
  min-height: 560px;
  margin: 0 auto;
}

.hero-copy-block {
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7af0c0;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: 66px;
  line-height: 1.03;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: 39px;
  line-height: 1.22;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: #dcece7;
  font-size: 22px;
  line-height: 1.58;
  font-weight: 800;
}

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

.hero-actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

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

.button.dark-line {
  border-color: #485d55;
  color: var(--white);
  background: transparent;
}

.hero-console {
  padding: 26px;
  border: 1px solid rgba(167, 255, 218, 0.24);
  background: rgba(12, 29, 24, 0.74);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.console-topline,
.console-status,
.console-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-topline {
  margin-bottom: 28px;
  color: #b9d7ce;
  font-size: 12px;
  font-weight: 900;
}

.console-topline strong {
  color: #7af0c0;
  letter-spacing: 0;
}

.console-metric {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-metric span,
.console-grid span {
  display: block;
  margin-bottom: 8px;
  color: #a7bdb5;
  font-size: 12px;
  font-weight: 800;
}

.console-metric strong {
  display: block;
  color: #ffffff;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.console-grid {
  padding: 22px 0;
}

.console-grid div {
  flex: 1;
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.console-grid strong {
  color: #7af0c0;
  font-size: 28px;
  font-weight: 900;
}

.console-status {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.console-status span {
  padding: 7px 10px;
  background: rgba(0, 168, 120, 0.16);
  color: #d8fff0;
  font-size: 11px;
  font-weight: 900;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-strip {
  padding: 78px 44px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(360px, 1.05fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 800;
}

.logo-ribbon {
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--paper);
}

.ribbon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ribbon-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: #34453f;
  font-size: 13px;
  font-weight: 900;
}

.platform-showcase {
  background: #eef5f2;
}

.platform-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 68px;
  align-items: center;
}

.platform-orbit {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(0, 168, 120, 0.12) 0 20%, transparent 21% 100%),
    linear-gradient(135deg, #ffffff, #f8fbfa);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(15, 31, 27, 0.08);
}

.platform-orbit::before,
.platform-orbit::after {
  content: "";
  position: absolute;
  inset: 72px;
  border: 1px solid rgba(0, 168, 120, 0.22);
  border-radius: 999px;
}

.platform-orbit::after {
  inset: 118px;
  border-color: rgba(14, 165, 233, 0.18);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  padding: 22px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-core strong {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}

.orbit-core span {
  color: #7af0c0;
  font-size: 11px;
  font-weight: 900;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 40px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid rgba(0, 168, 120, 0.36);
  box-shadow: 0 12px 34px rgba(15, 31, 27, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  animation: orbitFloat 5.6s ease-in-out infinite;
}

.node-1 {
  left: 12%;
  top: 16%;
}

.node-2 {
  right: 10%;
  top: 18%;
  animation-delay: -1s;
}

.node-3 {
  left: 8%;
  bottom: 18%;
  animation-delay: -2s;
}

.node-4 {
  right: 13%;
  bottom: 20%;
  animation-delay: -3s;
}

.node-5 {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  animation-delay: -4s;
}

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

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

.service-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fbfdfc;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 120, 0.5);
  box-shadow: 0 28px 80px rgba(15, 31, 27, 0.1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  background: var(--mist);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.blog-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.34;
  font-weight: 900;
}

.service-card p,
.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
}

.proof-section {
  background: var(--paper);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(420px, 1.18fr);
  gap: 58px;
  align-items: start;
}

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

.proof-card {
  min-height: 176px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.proof-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 800;
}

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

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

.blog-card a {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fbfdfc;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card a:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 120, 0.55);
  box-shadow: 0 28px 80px rgba(15, 31, 27, 0.1);
}

.blog-card span {
  margin-bottom: 46px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq {
  background: #eef5f2;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1.42fr);
  gap: 50px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
  font-weight: 800;
}

.article-page {
  background: #f8fbfa;
}

.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 0 44px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.article-main {
  padding: 76px 24px 110px;
}

.article {
  width: min(820px, 100%);
  margin: 0 auto;
}

.article h1 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1.16;
}

.article h2 {
  margin-top: 48px;
  font-size: 26px;
}

.article p,
.article-list {
  color: #40514b;
  font-size: 17px;
  line-height: 1.82;
  font-weight: 700;
}

.article-lead {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  font-size: 20px !important;
  font-weight: 800 !important;
}

.article-list {
  padding-left: 22px;
}

.article-list li + li {
  margin-top: 9px;
}

.article-cta {
  display: grid;
  gap: 20px;
  margin-top: 56px;
  padding: 28px;
  background: var(--charcoal);
  color: var(--white);
}

.article-cta strong {
  font-size: 19px;
  line-height: 1.5;
}

.proof-strip {
  padding: 42px 44px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(130px, 0.75fr));
  gap: 24px;
  align-items: stretch;
}

.proof-lead h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.proof-item {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbfdfc;
}

.proof-item strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.fine-print {
  width: min(1180px, 100%);
  margin: 16px auto 0;
  color: #82918b;
  font-size: 11px;
  line-height: 1.45;
}

.fine-print.left {
  width: auto;
  margin: 16px 0 0;
}

.section {
  padding: 96px 44px;
  background: var(--paper);
}

.platform-layout,
.pricing-layout,
.outcome-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.88fr) minmax(420px, 1.12fr);
  gap: 62px;
  align-items: start;
}

.copy-block p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
  font-weight: 800;
}

.layer-stack {
  display: grid;
  gap: 12px;
}

.layer-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.layer-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 168, 120, 0.5);
  box-shadow: 0 18px 50px rgba(15, 31, 27, 0.08);
}

.layer-code {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--mist);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.layer-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 900;
}

.layer-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.54;
  font-weight: 800;
}

.motion-band {
  padding: 46px 44px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 18px;
  margin-bottom: 20px;
}

.flow-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
  background: #2f453d;
}

.flow-line span {
  position: relative;
}

.flow-line span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 168, 120, 0.12);
  animation: pulseNode 2.8s ease-in-out infinite;
}

.flow-line span:nth-child(2)::after {
  animation-delay: 0.4s;
}

.flow-line span:nth-child(3)::after {
  animation-delay: 0.8s;
}

.flow-line span:nth-child(4)::after {
  animation-delay: 1.2s;
}

.flow-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #d7e8e2;
  font-size: 14px;
  font-weight: 900;
}

.screens {
  background: #edf4f1;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.screen-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.screen-column {
  display: grid;
  gap: 20px;
}

.screen-panel {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(15, 31, 27, 0.08);
  transform: translate3d(0, var(--parallax-card-y, 0), 0);
  will-change: transform;
}

.screen-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
}

.screen-panel.large img {
  aspect-ratio: 16 / 12;
}

.screen-panel figcaption {
  padding: 20px 22px 24px;
}

.screen-panel strong,
.screen-panel span {
  display: block;
}

.screen-panel strong {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 900;
}

.screen-panel span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.outcomes-dark {
  background: var(--charcoal-2);
  color: var(--white);
}

.outcomes-dark .section-kicker {
  color: #7af0c0;
}

.outcomes-dark .copy-block p {
  color: #c2d3cd;
}

.outcome-list {
  display: grid;
  gap: 12px;
}

.outcome-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.outcome-row span {
  color: #7af0c0;
  font-size: 13px;
  font-weight: 900;
}

.outcome-row p {
  margin-bottom: 0;
  color: #e2eee9;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 800;
}

.pricing {
  background: var(--paper);
}

.pricing-table {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 31, 27, 0.07);
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-of-type {
  border-bottom: 0;
}

.pricing-row span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.pricing-row strong {
  text-align: right;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.pricing-table .fine-print {
  padding: 0 30px 26px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #0c1714;
  color: var(--white);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
}

.cta-inner {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cta-inner .section-kicker {
  color: #7af0c0;
}

.cta-inner h2 {
  font-size: 42px;
}

.cta-inner p {
  color: #c4d5cf;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(520px, 1.3fr);
  align-items: flex-start;
  gap: 48px;
  padding: 44px max(24px, calc((100vw - 1220px) / 2)) 50px;
  background: #08120f;
  color: #afc3bc;
  font-size: 12px;
  font-weight: 800;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.footer-lead-form strong {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.footer-brand span,
.footer-lead-form span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-lead-form {
  display: grid;
  gap: 16px;
  width: 100%;
  justify-self: stretch;
  scroll-margin-top: 120px;
}

.footer-form-copy {
  display: grid;
  gap: 7px;
}

.footer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-lead-form label {
  display: grid;
  gap: 7px;
}

.footer-lead-form label span {
  font-size: 12px;
  font-weight: 900;
}

.footer-lead-form input,
.footer-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.footer-lead-form input {
  min-height: 44px;
  padding: 0 13px;
}

.footer-lead-form textarea {
  min-height: 88px;
  padding: 12px 13px;
  resize: vertical;
}

.footer-lead-form input::placeholder,
.footer-lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.footer-lead-form input:focus,
.footer-lead-form textarea:focus {
  border-color: rgba(167, 255, 218, 0.66);
  box-shadow: 0 0 0 3px rgba(167, 255, 218, 0.12);
}

.company-website {
  position: absolute;
  left: -9999px;
}

.footer-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-form-actions .button {
  width: auto;
  min-height: 46px;
  padding: 0 18px;
}

.footer-form-status {
  min-height: 20px;
  color: var(--mint-soft) !important;
}

.js .reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 700ms ease;
}

.js .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes signalSweep {
  0% {
    transform: translateX(-35%);
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(35%);
    opacity: 0.2;
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    padding: 16px 22px;
  }

  .topline {
    position: static;
    flex-direction: column;
    gap: 4px;
    min-height: auto;
    padding: 10px 16px;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

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

  .hero-inner,
  .intro-grid,
  .platform-hero-grid,
  .platform-layout,
  .pricing-layout,
  .outcome-layout,
  .screen-story,
  .proof-grid,
  .proof-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .blog-grid,
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    gap: 34px;
  }

  h1 {
    font-size: 48px;
  }

  h2,
  .cta-inner h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .proof-strip,
  .section,
  .intro-strip,
  .motion-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .platform-orbit {
    min-height: 420px;
  }

  .article-header {
    padding: 16px 22px;
  }

  .article h1 {
    font-size: 36px;
  }

  .flow-labels {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-console {
    padding: 20px;
  }

  .console-grid,
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .console-grid div {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .layer-card,
  .outcome-row {
    grid-template-columns: 1fr;
  }

  .pricing-row strong {
    text-align: left;
  }

  .platform-orbit::before {
    inset: 54px;
  }

  .platform-orbit::after {
    inset: 96px;
  }

  .orbit-node {
    min-width: 104px;
    font-size: 12px;
  }
}

/* 2026 polish pass: original design inspired by premium eMobility SaaS sites. */
:root {
  --lavender: #b99cff;
  --lavender-deep: #7556d6;
  --lavender-soft: #f1eaff;
  --mint-soft: #d7fff4;
  --ink: #17121f;
  --ink-2: #261d33;
  --paper: #fffdfa;
  --paper-2: #f7f2ff;
  --line-soft: rgba(36, 24, 52, 0.1);
  --shadow-soft: 0 24px 80px rgba(25, 15, 42, 0.1);
}

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

html {
  scroll-behavior: auto;
}

.topline {
  min-height: 36px;
  padding: 8px max(24px, calc((100vw - 1220px) / 2));
  background: #08050d;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0;
}

.topline a {
  color: inherit;
}

.topline span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-right: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lavender);
  color: #140d20;
  font-size: 10px;
  font-weight: 950;
}

.site-header {
  top: 36px;
  padding: 16px max(24px, calc((100vw - 1220px) / 2));
  border: 0;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  color: var(--ink);
}

.brand-mark {
  border-radius: 999px;
  background: #08050d;
  color: #fff;
  box-shadow: inset 0 -5px 0 var(--lavender);
}

.nav-links a {
  color: rgba(23, 18, 31, 0.72);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-button {
  border: 0;
  border-radius: 999px;
  background: var(--lavender);
  color: #120d1b !important;
  box-shadow: none;
}

.hero.cloud-hero {
  width: min(1220px, calc(100% - 56px));
  min-height: min(780px, 84vh);
  margin: 24px auto 0;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #08050d;
  box-shadow: 0 28px 90px rgba(18, 10, 30, 0.22);
}

.hero-bg {
  inset: -7% 0 0 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.08) contrast(1.08) brightness(0.78);
  transform: translateY(var(--parallax-y, 0));
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 22%, rgba(185, 156, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(8, 5, 13, 0.2), rgba(8, 5, 13, 0.64) 52%, rgba(8, 5, 13, 0.88));
}

.signal-lines {
  opacity: 0.34;
}

.signal-lines span {
  background: linear-gradient(90deg, transparent, rgba(185, 156, 255, 0.74), transparent);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: min(780px, 84vh);
  padding: 96px 56px 188px;
  text-align: center;
}

.hero-copy-block {
  display: grid;
  justify-items: center;
  width: min(100%, 990px);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

h1 {
  max-width: 980px;
  color: inherit;
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  text-wrap: balance;
}

.hero-copy {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  justify-content: center;
}

.button {
  min-height: 52px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
}

.button.primary {
  border-color: transparent;
  background: var(--lavender);
  color: #130e1d;
  box-shadow: none;
}

.button.primary:hover {
  background: #a98af2;
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.arrow-button {
  gap: 12px;
  padding: 7px 24px 7px 8px;
}

.arrow-button span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #130e1d;
  font-size: 21px;
  line-height: 1;
}

.hero-proofbar {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

.hero-proofbar > span {
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.hero-proofbar strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mint-soft);
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.intro-strip,
.section {
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 132px;
}

.intro-strip {
  padding: 116px 44px 74px;
}

.intro-grid {
  grid-template-columns: minmax(180px, 0.4fr) minmax(420px, 1fr) minmax(280px, 0.62fr);
  gap: 48px;
  align-items: start;
}

.intro-grid h2,
.section-head h2,
.copy-block h2,
.pricing-copy h2,
.outcome-copy h2,
.proof-copy h2,
.faq-copy h2,
.cta-inner h2 {
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-grid h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.intro-grid p:last-child,
.copy-block p,
.section-head p:not(.section-kicker),
.pricing-copy p,
.outcome-copy p,
.proof-copy p,
.faq-copy p {
  color: rgba(23, 18, 31, 0.68);
}

.section-kicker,
.eyebrow {
  color: var(--lavender-deep);
  letter-spacing: 0;
}

.logo-ribbon {
  padding-top: 28px;
  padding-bottom: 86px;
}

.ribbon-row span {
  border-color: rgba(117, 86, 214, 0.16);
  border-radius: 999px;
  background: #fff;
  color: rgba(23, 18, 31, 0.74);
}

.fine-print {
  color: rgba(23, 18, 31, 0.46);
}

.platform-showcase {
  padding-top: 92px;
  background: linear-gradient(180deg, var(--paper), #fff 48%, var(--paper-2));
}

.platform-orbit {
  min-height: 580px;
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 255, 244, 0.72), transparent 34%),
    radial-gradient(circle at 26% 22%, rgba(185, 156, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #fbf8ff, #efe6ff);
  box-shadow: var(--shadow-soft);
}

.platform-orbit::before,
.platform-orbit::after {
  border-color: rgba(117, 86, 214, 0.16);
}

.orbit-core {
  border: 0;
  border-radius: 24px;
  background: #08050d;
  color: #fff;
  box-shadow: 0 22px 60px rgba(28, 15, 44, 0.25);
}

.orbit-core span {
  color: var(--lavender);
}

.orbit-node {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(36, 24, 52, 0.12);
}

.services {
  padding-top: 104px;
  background: #fff;
}

.service-grid {
  gap: 18px;
}

.service-card {
  min-height: 306px;
  border: 0;
  border-radius: 26px;
  background: #08050d;
  color: #fff;
  box-shadow: none;
}

.service-card:nth-child(even) {
  background: #1c1427;
}

.service-card::before {
  background: linear-gradient(90deg, var(--lavender), var(--mint-soft));
}

.service-icon {
  border: 0;
  border-radius: 999px;
  background: var(--lavender);
  color: #120d1b;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.motion-band {
  background: #08050d;
}

.motion-band .section-kicker,
.motion-band h2 {
  color: #fff;
}

.motion-band .section-head p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.64);
}

.flow-line span::after {
  border-radius: 999px;
  background: var(--lavender);
  box-shadow: 0 0 0 6px rgba(185, 156, 255, 0.15);
}

.flow-labels span {
  color: rgba(255, 255, 255, 0.74);
}

.proof-section,
.proof-strip,
.insights {
  background: #fff;
}

.proof-card,
.blog-card a,
.pricing-table,
.screen-panel,
.faq-list details,
.outcome-row {
  border: 0;
  border-radius: 26px;
  box-shadow: none;
}

.proof-card,
.blog-card a {
  background: var(--lavender-soft);
}

.proof-card:nth-child(2),
.blog-card:nth-child(2) a {
  background: #eefcf7;
}

.proof-card:nth-child(3),
.blog-card:nth-child(3) a {
  background: #fff5de;
}

.proof-card strong,
.blog-card span {
  color: var(--lavender-deep);
}

.proof-card p,
.blog-card p {
  color: rgba(23, 18, 31, 0.68);
}

.screens,
.faq {
  background: #f8f5fb;
}

.screen-panel {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.screen-panel::before {
  background: linear-gradient(90deg, var(--lavender), var(--mint-soft));
}

.screen-panel p {
  color: rgba(23, 18, 31, 0.7);
}

.screen-panel img {
  border-radius: 18px;
}

.screen-tabs button {
  border-radius: 999px;
}

.screen-tabs button.is-active {
  border-color: transparent;
  background: #08050d;
  color: #fff;
}

.pricing-table {
  background: #08050d;
  color: #fff;
}

.pricing-row {
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-row span {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-row strong {
  color: #fff;
}

.outcome-stack {
  background: transparent;
}

.outcome-row {
  background: var(--paper-2);
}

.outcome-row strong {
  color: var(--ink);
}

.outcome-row p {
  color: rgba(23, 18, 31, 0.66);
}

.faq-list details {
  background: #fff;
}

.faq-list summary,
.faq-list p {
  color: var(--ink);
}

.final-cta {
  background: #08050d;
}

.final-cta::before {
  background: linear-gradient(90deg, transparent, var(--lavender), var(--mint-soft), transparent);
}

.cta-inner .section-kicker {
  color: var(--lavender);
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  background: #08050d;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 980px) {
  .topline {
    position: static;
    padding: 10px 16px;
  }

  .site-header {
    position: static;
    padding: 16px 22px;
  }

  .hero.cloud-hero {
    width: calc(100% - 28px);
    min-height: auto;
    margin-top: 14px;
    border-radius: 24px;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 22px 28px;
  }

  .hero h1,
  h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-proofbar {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-proofbar > span {
    min-height: 68px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .platform-orbit {
    min-height: 450px;
  }
}

@media (max-width: 560px) {
  .hero.cloud-hero {
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .hero-bg {
    object-position: center center;
    filter: saturate(1.1) contrast(1.08) brightness(0.72);
  }

  .hero-inner {
    padding: 58px 18px 22px;
  }

  .hero h1,
  h1 {
    font-size: 35px;
    line-height: 1.04;
  }

  h2,
  .intro-grid h2,
  .section-head h2,
  .copy-block h2,
  .pricing-copy h2,
  .outcome-copy h2,
  .proof-copy h2,
  .faq-copy h2,
  .cta-inner h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    min-height: 260px;
  }

  .site-footer,
  .footer-lead-form {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: stretch;
  }

  .footer-form-grid {
    grid-template-columns: 1fr;
  }
}

/* AI Cloud hero and operations layer. */
.hero-video {
  opacity: 0.98;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 560px) {
  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

.hero-shade {
  background:
    radial-gradient(circle at 54% 38%, rgba(108, 236, 255, 0.2), transparent 28%),
    radial-gradient(circle at 50% 26%, rgba(185, 156, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(8, 5, 13, 0.34), rgba(8, 5, 13, 0.7) 52%, rgba(8, 5, 13, 0.92));
}

.hero-ai-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 4px;
}

.hero-ai-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

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

.credential-strip {
  position: relative;
  z-index: 4;
  margin-top: -24px;
  padding: 0 44px 52px;
  background: linear-gradient(180deg, transparent 0, var(--paper) 48px, var(--paper) 100%);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, 100%);
}

.credential-badge {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 16px 18px;
  border: 1px solid rgba(117, 86, 214, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 20%, rgba(185, 156, 255, 0.2), transparent 36%),
    #fff;
  box-shadow: 0 18px 60px rgba(25, 15, 42, 0.1);
}

.credential-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(185, 156, 255, 0.32), transparent 45%, rgba(215, 255, 244, 0.22));
  opacity: 0.42;
  pointer-events: none;
}

.credential-seal {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--lavender), var(--mint-soft));
  color: #100b17;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(117, 86, 214, 0.22);
}

.credential-badge div {
  position: relative;
  display: grid;
  gap: 5px;
}

.credential-badge strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.credential-badge p {
  margin: 0;
  color: rgba(23, 18, 31, 0.58);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 850;
}

.ai-ops-section {
  position: relative;
  overflow: hidden;
  padding-top: 108px;
  padding-bottom: 108px;
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 255, 244, 0.34), transparent 26%),
    radial-gradient(circle at 80% 74%, rgba(185, 156, 255, 0.28), transparent 28%),
    #fff;
}

.ai-ops-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1fr);
  gap: 56px;
  align-items: center;
}

.research-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.research-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(117, 86, 214, 0.16);
  border-radius: 999px;
  background: #fff;
  color: rgba(23, 18, 31, 0.68);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
}

.research-links a:hover {
  color: var(--lavender-deep);
  border-color: rgba(117, 86, 214, 0.34);
}

.ai-ops-board {
  position: relative;
  min-height: 590px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 255, 244, 0.55), transparent 28%),
    radial-gradient(circle at 30% 20%, rgba(185, 156, 255, 0.6), transparent 30%),
    linear-gradient(135deg, #08050d, #211833 55%, #0b1720);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ai-ops-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 76%);
  opacity: 0.58;
}

.ai-orbit span {
  position: absolute;
  inset: 110px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  animation: aiOrbit 16s linear infinite;
}

.ai-orbit span:nth-child(2) {
  inset: 150px 96px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.ai-orbit span:nth-child(3) {
  inset: 70px 150px;
  animation-duration: 24s;
}

.ai-ops-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: rgba(8, 5, 13, 0.84);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.ai-ops-core span {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 950;
}

.ai-ops-core strong {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 950;
}

.ai-ops-card {
  position: absolute;
  display: grid;
  width: min(230px, 42%);
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
}

.ai-ops-card span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--lavender);
  color: #110c18;
  font-size: 11px;
  font-weight: 950;
}

.ai-ops-card strong {
  font-size: 18px;
  font-weight: 950;
}

.ai-ops-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.card-a {
  top: 32px;
  left: 34px;
}

.card-b {
  top: 46px;
  right: 34px;
}

.card-c {
  right: 38px;
  bottom: 42px;
}

.card-d {
  bottom: 36px;
  left: 34px;
}

@keyframes aiOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero-proofbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: stretch;
  }

  .footer-lead-form {
    text-align: left;
  }

  .footer-form-grid {
    grid-template-columns: 1fr;
  }

  .credential-strip {
    margin-top: 18px;
    padding: 0 24px 48px;
  }

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

  .ai-ops-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-ops-board {
    min-height: 680px;
  }
}

@media (max-width: 560px) {
  .hero-ai-tags span {
    min-height: 28px;
    font-size: 10px;
  }

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

  .credential-strip {
    margin-top: 16px;
    padding: 0 18px 44px;
  }

  .credential-badge {
    min-height: 88px;
    border-radius: 20px;
  }

  .ai-ops-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .ai-ops-board {
    min-height: 790px;
  }

  .ai-ops-card {
    width: calc(100% - 44px);
  }

  .card-a,
  .card-b,
  .card-c,
  .card-d {
    right: 22px;
    left: 22px;
  }

  .card-a {
    top: 26px;
  }

  .card-b {
    top: 178px;
  }

  .card-c {
    top: 330px;
    bottom: auto;
  }

  .card-d {
    top: 482px;
    bottom: auto;
  }

  .ai-ops-core {
    top: auto;
    bottom: 34px;
    width: 148px;
    height: 148px;
  }
}

/* CPO scale-up intro panel refresh. */
.intro-strip {
  padding-top: 52px;
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 12% 20%, rgba(185, 156, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 62%, rgba(215, 255, 244, 0.2), transparent 26%),
    var(--paper);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(460px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  padding: 42px;
  border: 1px solid rgba(117, 86, 214, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(25, 15, 42, 0.08);
}

.intro-copy h2 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy p:last-child {
  max-width: 620px;
  color: rgba(23, 18, 31, 0.68);
  font-size: 17px;
  line-height: 1.76;
  font-weight: 820;
}

.intro-focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.intro-focus-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 18px;
  min-height: 156px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 20%, rgba(185, 156, 255, 0.46), transparent 34%),
    linear-gradient(180deg, #211833, #08050d);
  color: #fff;
}

.intro-focus-card:nth-child(2) {
  background:
    radial-gradient(circle at 70% 16%, rgba(215, 255, 244, 0.34), transparent 32%),
    linear-gradient(180deg, #182433, #09060f);
}

.intro-focus-card:nth-child(3) {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 245, 222, 0.28), transparent 34%),
    linear-gradient(180deg, #241a32, #08050d);
}

.intro-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.42;
}

.intro-focus-card span,
.intro-focus-card strong,
.intro-focus-card p {
  position: relative;
}

.intro-focus-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--lavender);
  color: #120d1b;
  font-size: 12px;
  font-weight: 950;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 2px;
}

.intro-focus-card strong {
  grid-column: 2;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
}

.intro-focus-card p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 820;
}

@media (max-width: 980px) {
  .intro-strip {
    padding-top: 42px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .intro-panel {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    min-height: auto;
    padding: 32px;
  }

  .intro-focus-grid {
    grid-template-columns: 1fr;
  }

  .intro-focus-card {
    min-height: 146px;
  }

  .intro-focus-card span {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .intro-strip {
    padding-top: 38px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .intro-copy {
    padding: 24px;
    border-radius: 22px;
  }

  .intro-copy h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .intro-copy p:last-child {
    font-size: 15px;
  }

  .intro-focus-card {
    min-height: 152px;
    border-radius: 22px;
  }
}

/* Meaning-based Korean line breaks. */
h1,
h2,
h3,
p,
summary,
.button,
.nav-links a,
.topline a,
.credential-badge,
.proof-card,
.pricing-row,
.screen-panel figcaption,
.blog-card,
.faq-list {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.line {
  display: block;
}

.mobile-line {
  display: none;
}

p .line + .line {
  margin-top: 2px;
}

.hero-copy .line + .line {
  margin-top: 4px;
}

@media (max-width: 760px) {
  .desktop-line {
    display: none;
  }

  .mobile-line {
    display: block;
  }
}

@media (max-width: 560px) {
  .line {
    max-width: 100%;
  }

  .hero-copy .line + .line {
    margin-top: 6px;
  }
}
