:root {
  --teal: #005C7A;
  --cyan: #00DFFF;
  --ink: #10232c;
  --muted: #5b6d75;
  --line: #d7e9ee;
  --soft: #f5fbfc;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(0, 92, 122, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--teal);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.1;
}

.brand-logo {
  width: 48px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  color: var(--teal);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-weight: 800;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(0, 92, 122, 0.32);
  background: var(--soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 96px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-bg-orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(0, 223, 255, 0.25), transparent 70%);
  animation-delay: 0s;
}

.hero-bg-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  left: 10%;
  background: radial-gradient(circle, rgba(0, 92, 122, 0.2), transparent 70%);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-glass {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: clamp(32px, 5vw, 56px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow:
    0 8px 32px rgba(0, 92, 122, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: 4.2rem;
  line-height: 1;
}

h2 {
  max-width: 13ch;
  font-size: 3rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 92, 122, 0.28);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #008eb0 60%, var(--cyan));
  box-shadow: 0 14px 30px rgba(0, 92, 122, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, #006d8f, #00a0c8 60%, #33e5ff);
}

.button.secondary {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.82), 0 12px 30px rgba(0, 92, 122, 0.08);
  backdrop-filter: blur(16px) saturate(1.45);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 92, 122, 0.32);
}

.glass-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.glass-path-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72), 0 16px 38px rgba(0, 92, 122, 0.08);
  backdrop-filter: blur(20px) saturate(1.35);
}

.glass-path-item strong {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
}

.glass-path-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.process-section,
.proof-section,
.contact-section {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
  margin-bottom: 38px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-intro.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.section-intro.compact .eyebrow {
  margin-bottom: 0;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(2, minmax(220px, 0.95fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72), 0 18px 48px rgba(0, 92, 122, 0.1);
  backdrop-filter: blur(18px) saturate(1.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
  position: absolute;
  inset: -60% -45%;
  content: "";
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.58), transparent 68%);
  transform: translateX(-38%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.feature-card:hover::before {
  transform: translateX(38%);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72), 0 24px 56px rgba(0, 92, 122, 0.16);
}

.feature-card.primary-card {
  grid-row: span 2;
  min-height: 518px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(0, 223, 255, 0.28), rgba(0, 92, 122, 0.7)),
    var(--teal);
  border-color: rgba(255, 255, 255, 0.34);
}

.feature-card.primary-card h3,
.feature-card.primary-card p {
  color: var(--white);
}

.feature-card.primary-card .card-index {
  color: var(--cyan);
}

.card-index {
  display: block;
  margin-bottom: 48px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.process-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(245, 251, 252, 0.9), rgba(255, 255, 255, 0.96)),
    url("hero-liquid-glass.png") center bottom / cover no-repeat;
  border-block: 1px solid var(--line);
  overflow: hidden;
}

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

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72), 0 18px 48px rgba(0, 92, 122, 0.1);
  backdrop-filter: blur(18px) saturate(1.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step::before {
  position: absolute;
  inset: -60% -45%;
  content: "";
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.58), transparent 68%);
  transform: translateX(-38%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.process-step:hover::before {
  transform: translateX(38%);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72), 0 20px 48px rgba(0, 92, 122, 0.14);
}

.process-step strong {
  display: block;
  color: var(--teal);
  font-size: 1.18rem;
}

.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list p {
  margin: 0;
  padding: 20px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.proof-list strong {
  color: var(--ink);
}

.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
    url("hero-liquid-glass.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: -60% -45%;
  content: "";
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.58), transparent 68%);
  transform: translateX(-38%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.contact-section:hover::before {
  transform: translateX(38%);
}

.contact-copy {
  position: relative;
  max-width: 760px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-section .button {
  position: relative;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 1060px) {
  .proof-section,
  .section-intro {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 17ch;
    font-size: 2.9rem;
  }

  h2 {
    max-width: 15ch;
    font-size: 2.55rem;
  }

  .glass-path,
  .solution-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card.primary-card {
    grid-row: auto;
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-glass {
    padding: 24px 18px;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.18rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-text,
  .section-intro p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .glass-path,
  .solution-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .glass-path-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
  }

  .feature-card,
  .process-step {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 28px;
  }

  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
