:root {
  --black: #000;
  --ink: #111;
  --text: #1f2328;
  --muted: #6f7782;
  --line: #e5e7eb;
  --soft: #f5f6f7;
  --soft-2: #eef1f4;
  --white: #fff;
  --blue: #1677ff;
  --blue-dark: #0f5fd1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

main {
  display: block;
  touch-action: pan-y;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.global-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 48px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  width: 28px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.brand-mark::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 3px;
  right: -6px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.brand-mark::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 5px;
  left: 10px;
  background: var(--blue);
  border-radius: 50%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #3b4046;
  font-size: 14px;
  font-weight: 560;
}

.primary-nav a:hover,
.product-links a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.product-bar {
  position: fixed;
  z-index: 90;
  top: 56px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 48px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  backdrop-filter: blur(18px);
}

.product-name {
  font-size: 18px;
  font-weight: 680;
}

.product-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4d535b;
  font-size: 13px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 999px;
}

.product-cta:hover {
  background: var(--blue-dark);
}

.hero {
  min-height: 92svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  padding: 120px 48px 20px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 0%, rgba(244, 246, 248, 0.78) 58%, #eef1f4 100%),
    linear-gradient(180deg, #fff 0%, #f4f6f8 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 14px;
  color: #5d6672;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: 62px;
  line-height: 1.02;
  font-weight: 720;
}

.hero-copy p:not(.kicker) {
  max-width: 720px;
  margin: 16px auto 0;
  color: #4d535b;
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 640;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 17, 17, 0.14);
}

.button-ghost:hover {
  border-color: rgba(17, 17, 17, 0.42);
}

.hero-media {
  width: min(1120px, 108vw);
  height: clamp(260px, 38svh, 440px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 8px auto 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.14));
}

.intro {
  padding: 128px 48px;
  text-align: center;
  background: var(--white);
}

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

.intro h2,
.showcase-copy h2,
.image-feature-copy h2,
.section-heading h2,
.gallery-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
}

.intro p:not(.kicker),
.showcase-copy p,
.image-feature-copy p,
.section-heading p:not(.kicker),
.gallery-note p,
.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfbfc;
}

.metric {
  min-height: 150px;
  padding: 34px 38px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--black);
  font-size: 26px;
  font-weight: 700;
}

.metric span {
  display: block;
  max-width: 240px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
  padding: 120px 48px;
  background: var(--soft);
}

.showcase-copy {
  width: min(480px, 100%);
  justify-self: end;
}

.showcase-media {
  overflow: hidden;
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: center;
  padding: 120px 48px;
}

.image-feature-light {
  background: var(--white);
}

.image-feature-dark {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  color: var(--white);
  background: #0b0c0f;
}

.image-feature-dark .kicker,
.image-feature-dark .image-feature-copy p {
  color: rgba(255, 255, 255, 0.64);
}

.image-feature-dark .image-feature-copy h2 {
  color: var(--white);
}

.image-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
}

.image-feature-copy {
  width: min(540px, 100%);
}

.cards-section,
.workflow,
.gallery-section,
.specs,
.contact {
  padding: 124px 48px;
}

.cards-section {
  background: var(--soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 54px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.use-grid article {
  overflow: hidden;
  background: var(--white);
}

.use-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.use-grid div {
  padding: 28px;
}

.use-grid h3,
.flow-list h3,
.gallery-note h3 {
  margin: 0;
  color: var(--black);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 680;
}

.use-grid p,
.flow-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.flow-list li {
  min-height: 280px;
  padding: 34px 28px;
  background: var(--white);
}

.flow-list span {
  display: block;
  margin-bottom: 58px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 60px;
  align-items: center;
  background: #0b0c0f;
  color: var(--white);
}

.gallery-copy {
  width: min(500px, 100%);
  justify-self: end;
}

.gallery-copy .kicker,
.gallery-note p {
  color: rgba(255, 255, 255, 0.62);
}

.gallery-copy h2,
.gallery-note h3 {
  color: var(--white);
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.segment {
  min-height: 38px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.segment.is-active {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.gallery-note {
  min-height: 112px;
  margin-top: 34px;
}

.gallery-frame {
  margin: 0;
}

.gallery-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
}

.specs {
  background: var(--soft);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1100px, 100%);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-item {
  min-height: 150px;
  padding: 28px;
  background: var(--white);
}

.spec-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-item strong {
  display: block;
  margin-top: 14px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 80px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.35) 100%),
    url("assets/dock-open-green.png") center / cover no-repeat;
}

.contact-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.mail-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 620;
}

.lead-form {
  display: grid;
  gap: 16px;
  width: min(440px, 100%);
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(18px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #3b4046;
  font-size: 13px;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.form-button {
  width: 100%;
  border: 0;
  border-radius: 2px;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 48px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.footer p:first-child {
  color: var(--white);
  font-weight: 680;
}

svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1060px) {
  .global-header,
  .product-bar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero,
  .intro,
  .feature-showcase,
  .image-feature,
  .cards-section,
  .workflow,
  .gallery-section,
  .specs,
  .contact,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .intro h2,
  .showcase-copy h2,
  .image-feature-copy h2,
  .section-heading h2,
  .gallery-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .feature-showcase,
  .image-feature,
  .image-feature-dark,
  .gallery-section,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .showcase-copy,
  .gallery-copy,
  .contact-copy {
    justify-self: start;
  }

  .metric-band,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .global-header {
    height: 56px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .product-bar {
    top: 56px;
    height: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-links a:not(.product-cta) {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 136px 16px 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy p:not(.kicker) {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(330px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    width: 128vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .intro,
  .feature-showcase,
  .image-feature,
  .cards-section,
  .workflow,
  .gallery-section,
  .specs,
  .contact {
    padding: 78px 16px;
  }

  .intro h2,
  .showcase-copy h2,
  .image-feature-copy h2,
  .section-heading h2,
  .gallery-copy h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .intro p:not(.kicker),
  .showcase-copy p,
  .image-feature-copy p,
  .section-heading p:not(.kicker),
  .gallery-note p,
  .contact-copy p {
    font-size: 16px;
  }

  .metric-band,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: auto;
    padding: 26px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .flow-list li {
    min-height: auto;
  }

  .flow-list span {
    margin-bottom: 28px;
  }

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

  .contact {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 100%),
      url("assets/dock-open-green.png") center / cover no-repeat;
  }

  .lead-form {
    padding: 22px;
  }

  .footer {
    display: grid;
    padding: 28px 16px;
  }
}
