:root {
  --bg: #f6f9fc;
  --bg-2: #eef4fb;
  --surface: rgba(255,255,255,0.86);
  --surface-strong: #ffffff;
  --line: rgba(10, 36, 70, 0.09);
  --text: #0d1828;
  --muted: #5d6c83;
  --accent: #14cfc8;
  --accent-2: #1588dc;
  --accent-3: #76d67c;
  --shadow: 0 18px 50px rgba(16, 40, 74, 0.10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 10%, rgba(20, 207, 200, 0.08), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(21, 136, 220, 0.08), transparent 24%),
    linear-gradient(180deg, #f7fafc 0%, #f0f5fb 55%, #f8fbff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(14, 57, 99, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 57, 99, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent);
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.40;
}

.glow-a {
  width: 240px;
  height: 240px;
  left: -70px;
  top: 140px;
  background: rgba(20, 207, 200, 0.22);
}

.glow-b {
  width: 300px;
  height: 300px;
  right: -110px;
  top: 210px;
  background: rgba(21, 136, 220, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(11, 39, 77, 0.07);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  text-decoration: none;
}

.brand-logo {
  width: 290px;
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  color: white;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(21, 136, 220, 0.18);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(20, 207, 200, 0.18);
  background: rgba(20, 207, 200, 0.08);
  color: #117f94;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(44px, 6vw, 74px);
  max-width: 700px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 22px;
}

.hero-text,
.section-heading p,
.product-text,
.quote-card p,
.callout p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
}

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

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  color: white;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 36px rgba(21, 136, 220, 0.16);
}

.button.secondary {
  color: var(--text);
  border: 1px solid rgba(10, 36, 70, 0.10);
  background: rgba(255,255,255,0.70);
}

.hero-points {
  margin-top: 34px;
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.point-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(10, 36, 70, 0.08);
  box-shadow: var(--shadow);
}

.point-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.point-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(20, 207, 200, 0.10);
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
  border: 1px solid rgba(10, 36, 70, 0.08);
  box-shadow: 0 28px 80px rgba(19, 47, 86, 0.12);
  overflow: hidden;
}

.main-visual {
  padding: 20px;
}

.main-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(20, 207, 200, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(21, 136, 220, 0.10), transparent 26%);
}

.mini-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mini-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(16, 40, 74, 0.18);
}

.workflow-flow {
  position: relative;
  z-index: 1;
}

.workflow-node {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(246, 250, 255, 0.94);
  border: 1px solid rgba(11, 39, 77, 0.08);
  box-shadow: 0 12px 26px rgba(15, 49, 85, 0.08);
}

.workflow-node p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.node-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.flow-line {
  width: 3px;
  height: 26px;
  margin: 8px 0 8px 28px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  opacity: 0.5;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #0f4061;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10, 36, 70, 0.08);
  box-shadow: 0 14px 28px rgba(15, 49, 85, 0.08);
}

.chip-1 {
  top: 85px;
  right: 16px;
}

.chip-2 {
  bottom: 18px;
  left: 22px;
}

.section {
  padding: 84px 0;
}

.section-kicker {
  color: #118db3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.feature-card,
.product-card,
.about-card,
.contact-info-card,
.contact-card {
  border: 1px solid rgba(10, 36, 70, 0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.80);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 207, 200, 0.15), transparent 65%);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 56px;
  background: linear-gradient(135deg, rgba(20, 207, 200, 0.90), rgba(21, 136, 220, 0.90));
  box-shadow: 0 0 0 8px rgba(20, 207, 200, 0.08);
}

.feature-card p {
  color: var(--muted);
}

.product-section {
  background:
    linear-gradient(180deg, rgba(20, 207, 200, 0.04), rgba(21, 136, 220, 0.03));
}

.product-grid,
.about-grid,
.callout,
.contact-grid {
  display: grid;
  gap: 42px;
}

.product-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 14px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.product-card {
  padding: 20px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 8px 4px 20px;
}

.panel-title {
  font-size: 18px;
  font-weight: 800;
}

.panel-pill {
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.panel-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(247, 251, 255, 0.92);
  border: 1px solid rgba(10, 36, 70, 0.07);
  margin-bottom: 12px;
}

.panel-item:last-child {
  margin-bottom: 0;
}

.panel-item span {
  color: var(--muted);
}

.panel-item strong {
  color: #1588dc;
}

.about-section {
  background: rgba(255,255,255,0.30);
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-card {
  padding: 28px;
}

.value-card {
  display: grid;
  gap: 14px;
}

.value-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(247, 251, 255, 0.92);
  border: 1px solid rgba(10, 36, 70, 0.07);
}

.value-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.callout-section {
  background:
    linear-gradient(90deg, rgba(20, 207, 200, 0.08), rgba(21, 136, 220, 0.06));
}

.callout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-info-card {
  margin-top: 26px;
  padding: 20px 24px;
}

.contact-card {
  padding: 26px;
}

label {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(10, 36, 70, 0.11);
  background: rgba(255,255,255,0.90);
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(21, 136, 220, 0.40);
}

button {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  color: white;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(21, 136, 220, 0.16);
  margin-top: 6px;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
  margin: 14px 0 0;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(10, 36, 70, 0.07);
  background: rgba(255,255,255,0.70);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 18px 0;
  }

  .nav-links {
    justify-content: start;
    gap: 16px;
  }

  .brand-logo {
    width: 250px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .feature-grid,
  .product-grid,
  .about-grid,
  .callout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
