﻿/* ============================================
   Seagate Enterprise Storage — centercom.co.th
   ============================================ */
@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-Thin.ttf")
    format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Thai";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sohne Breit";
  src: url("https://www.centercom.co.th/seagate/assets/fonts/SohneBreit_OTF/SohneBreit-Buch.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  --sg-green: #6fbe4a;
  --sg-green-dim: #5a9e3c;
  --sg-green-glow: rgba(111, 190, 74, 0.22);

  --dark-deep: #060c1a;
  --dark-primary: #0b1226;
  --dark-secondary: #0f1a35;
  --dark-surface: #141e38;
  --dark-card: #111827;

  --light-bg: #f3f5f7;
  --light-surface: #ffffff;
  --light-bg-teal: #edf3f9; /* workflow — cool blue-tinted, technical */
  --light-bg-green: #f0f9ec; /* lead form — subtle green action zone */

  --text-on-dark: #eaf0f6;
  --text-on-dark-muted: rgba(234, 240, 246, 0.6);
  --text-on-light: #1a1e2c;
  --text-on-light-muted: #5a6170;

  --exos-color: #6fbe4a;
  --ironwolf-color: #d93b48;
  --skyhawk-color: #2fa8db;

  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --accent-thin: 1px;
  --accent-thick: 2px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "IBM Plex Sans Thai", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-on-dark);
  background: var(--dark-deep);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* --- Section Shared --- */
.section-header {
  margin-bottom: clamp(40px, 6vh, 64px);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: clamp(1rem, 0.6757rem + 0.6757vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-green);
  margin-bottom: 14px;
}

.section-eyebrow--green {
  color: var(--sg-green);
}
.section-eyebrow--dark {
  color: var(--sg-green-dim);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-title--light {
  color: var(--text-on-light);
}

.section-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-on-dark-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section-subtitle--light {
  color: var(--text-on-light-muted);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: clamp(580px, 80vh, 780px);
  overflow: hidden;
  background: var(--dark-deep);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s var(--ease-out);
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* Left-to-right gradient so left text stays readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 12, 26, 0.88) 0%,
    rgba(6, 12, 26, 0.72) 35%,
    rgba(6, 12, 26, 0.3) 65%,
    rgba(6, 12, 26, 0.1) 100%
  );
  z-index: 1;
}

/* Center overlay for the Mozaic drive slide (dark bg image) */
.hero__overlay--light {
  background: linear-gradient(
    90deg,
    rgba(6, 12, 26, 0.92) 0%,
    rgba(6, 12, 26, 0.85) 35%,
    rgba(6, 12, 26, 0.45) 60%,
    rgba(6, 12, 26, 0.05) 100%
  );
}

.hero__overlay--center {
  background: linear-gradient(
    105deg,
    rgba(6, 12, 26, 0.82) 0%,
    rgba(6, 12, 26, 0.6) 50%,
    rgba(6, 12, 26, 0.45) 100%
  );
}

/* Bottom fade to blend into next section */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--dark-primary), transparent);
  pointer-events: none;
  z-index: 3;
}

/* --- Hero Content --- */
.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: var(--gutter);
  max-width: clamp(340px, 65%, 820px);
  padding-right: 20px;
}

.hero__eyebrow {
  font-size: clamp(1rem, 0.6757rem + 0.6757vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-green);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s 0.1s var(--ease-out),
    transform 0.5s 0.1s var(--ease-out);
}

.hero__heading {
  font-size: clamp(26px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s 0.2s var(--ease-out),
    transform 0.6s 0.2s var(--ease-out);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 24px);
  max-width: 33.5ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s 0.3s var(--ease-out),
    transform 0.6s 0.3s var(--ease-out);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s 0.42s var(--ease-out),
    transform 0.6s 0.42s var(--ease-out);
}

/* Animate content in when slide is active */
.hero__slide.is-active .hero__eyebrow,
.hero__slide.is-active .hero__heading,
.hero__slide.is-active .hero__sub,
.hero__slide.is-active .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 180px;
  padding: 14px 20px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.hero__btn::after {
  content: "";
  width: 22px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 14' fill='none'><path d='M1 7h19M14 1l6 6-6 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 14' fill='none'><path d='M1 7h19M14 1l6 6-6 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  transition: transform 0.3s var(--ease-out);
}

.hero__btn:hover::after {
  transform: translateX(3px);
}

.hero__btn--primary {
  background: var(--sg-green);
  color: #0a0a0a;
  border: 0;
}

.hero__btn--primary:hover {
  background: var(--sg-green-dim);
}

.hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero__btn--ghost:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

/* --- Carousel Dots --- */
.hero__nav {
  position: absolute;
  bottom: clamp(24px, 4vh, 44px);
  left: var(--gutter);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition:
    background 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hero__dot.is-active {
  background: var(--sg-green);
  transform: scale(1.4);
}

/* --- Hero Logo --- */
.hero__logo-wrap {
  position: absolute;
  top: clamp(18px, 3vh, 32px);
  left: var(--gutter);
  z-index: 10;
  pointer-events: none;
}

.hero__logo {
  height: clamp(26px, 2.8vw, 40px);
  width: auto;
  display: block;
}

/* --- Darker overlay for slide 1 (product image on right) --- */
.hero__overlay--dark {
  background: linear-gradient(
    105deg,
    rgba(6, 12, 26, 0.96) 0%,
    rgba(6, 12, 26, 0.9) 30%,
    rgba(6, 12, 26, 0.78) 55%,
    rgba(6, 12, 26, 0.62) 100%
  );
}

/* --- Split layout: text left, product image right --- */
.hero__content--split {
  max-width: none;
  left: var(--gutter);
  right: var(--gutter);
  padding-right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.hero__text {
  min-width: 0;
}

.hero__content--split .hero__heading {
  font-size: clamp(30px, 4.6vw, 56px);
}

.hero__media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.8s 0.35s var(--ease-out),
    transform 0.8s 0.35s var(--ease-out);
}

.hero__slide.is-active .hero__media {
  opacity: 1;
  transform: translateX(0);
}

/* Remove white bg via radial mask — hardware stays visible, white edges fade out */
.hero__product-shot {
  max-width: 100%;
  max-height: clamp(200px, 45vh, 380px);
  object-fit: contain;
  display: block;
  filter: brightness(0.92) contrast(1.08);
}

@media (max-width: 768px) {
  .hero__content--split {
    grid-template-columns: 1fr;
    right: var(--gutter);
  }
  .hero__media {
    display: none;
  }
}

/* ============================================
   DIFFERENTIATORS — Light theme
   ============================================ */
.differentiators {
  background: var(--light-surface);
  padding: clamp(60px, 10vh, 96px) 0;
  position: relative;
  border-top: var(--accent-thick) solid var(--sg-green);
}

.differentiators .section-eyebrow {
  color: var(--sg-green-dim);
}

.differentiators .section-title {
  color: var(--text-on-light);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.35;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.diff-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 24px 0;
  border-top: 2px solid #e8ecf0;
  transition: border-color 0.3s;
}

.diff-item:hover {
  border-color: var(--sg-green);
}

.diff-item__icon {
  width: clamp(72px, 6.8vw, 100px);
  height: clamp(72px, 6.8vw, 100px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.diff-item:hover .diff-item__icon {
  transform: translateY(-2px) scale(1.04);
}

.diff-item__icon svg,
.diff-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: var(--sg-green);
  stroke-width: 2;
}

.diff-item__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-on-light);
  min-height: calc(1.35em * 2);
  display: flex;
  align-items: flex-start;
  margin-bottom: -8px;
}

.diff-item__desc {
  font-size: 16px;
  color: var(--text-on-light-muted);
  line-height: 1.65;
}

/* ============================================
   WORKFLOW / VALUE PROPOSITION — Light theme
   ============================================ */
.workflow {
  background: var(--light-surface);
  padding: clamp(60px, 10vh, 96px) 0;
  border-top: var(--accent-thin) solid #e8ecf0;
}

.workflow__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.workflow__left {
  padding-top: 8px;
}

.workflow .section-title {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.35;
}

.workflow__desc {
  font-size: 17px;
  color: var(--text-on-light-muted);
  line-height: 1.75;
  margin-top: 16px;
}

.workflow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.wf-item {
  min-width: 0;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid #cce0ef;
  border-right: 1px solid #cce0ef;
  transition: background 0.25s;
}

/* remove right border on right column, bottom border on last row */
.wf-item:nth-child(2n) {
  border-right: none;
  padding-right: 0;
  padding-left: 28px;
}
.wf-item:nth-child(n + 3) {
  border-bottom: none;
}
.wf-item:nth-child(1),
.wf-item:nth-child(2) {
  padding-top: 0;
}

.wf-item__label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-green-dim);
  margin-bottom: 10px;
}

.wf-item__title {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-on-light);
  margin-bottom: 10px;
}

.wf-item__desc {
  font-size: 16.5px;
  color: var(--text-on-light-muted);
  line-height: 1.65;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  position: relative;
  background: var(--light-bg);
  color: var(--text-on-light);
  padding: clamp(60px, 10vh, 96px) 0;
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(111, 190, 74, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.products .section-eyebrow {
  color: var(--sg-green-dim);
}
.products .section-title {
  color: var(--text-on-light);
}
.products .section-subtitle {
  color: var(--text-on-light-muted);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}

/* --- Video block --- */
.products__header {
  max-width: 1100px;
  margin: 0 auto clamp(44px, 6vh, 64px);
}

.products__header--center {
  text-align: center;
}

.products__title {
  font-family: "Sohne Breit", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 0 0 14px;
  text-wrap: balance;
}

.products__subtitle {
   font-family: "Sohne Breit", Helvetica, Arial, sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--sg-green);
  margin: 0;
  text-wrap: balance;
}

.products__video {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 18px 40px -24px rgba(15, 32, 10, 0.22);
  transition:
    box-shadow 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.products__video:hover {
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 22px 50px -22px rgba(15, 32, 10, 0.28);
}

.products__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.products__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .products__video {
    transition: none;
  }
}

/* --- Product Card --- */
.product-card {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.product-card--exos::before {
  background: var(--exos-color);
}
.product-card--ironwolf::before {
  background: var(--ironwolf-color);
}
.product-card--skyhawk::before {
  background: var(--skyhawk-color);
}

.product-card__image {
  position: relative;
  padding: 32px 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}

.product-card__image img {
  height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

.product-card:hover .product-card__image img {
  transform: scale(1.05) rotate(-1deg);
}

.product-card--exos .product-card__image::after,
.product-card--ironwolf .product-card__image::after,
.product-card--skyhawk .product-card__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}

.product-card--exos .product-card__image::after {
  background: var(--exos-color);
}
.product-card--ironwolf .product-card__image::after {
  background: var(--ironwolf-color);
}
.product-card--skyhawk .product-card__image::after {
  background: var(--skyhawk-color);
}

.product-card:hover .product-card__image::after {
  opacity: 0.14;
}

.product-card__body {
  padding: 4px 28px 32px;
}

.product-card__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
}

.product-card__capacity {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-card--exos .product-card__capacity {
  color: var(--exos-color);
}
.product-card--ironwolf .product-card__capacity {
  color: var(--ironwolf-color);
}
.product-card--skyhawk .product-card__capacity {
  color: var(--skyhawk-color);
}

.product-card__tagline {
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
  line-height: 1.55;
}

.product-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__features li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
  padding-left: 18px;
  position: relative;
}

.product-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.product-card--exos .product-card__features li::before {
  background: var(--exos-color);
}
.product-card--ironwolf .product-card__features li::before {
  background: var(--ironwolf-color);
}
.product-card--skyhawk .product-card__features li::before {
  background: var(--skyhawk-color);
}

/* ============================================
   EXOS PILLARS — SCALE / PROTECT / FUSE
   ============================================ */
.exos-pillars {
  background: #fff;
  color: #0a0a0a;
  padding: 0;
}

.exos-pillars__top {
  background: #000;
  color: #fff;
  padding: clamp(60px, 10vh, 96px) 0;
}

.exos-pillars__bottom {
  padding: clamp(48px, 8vh, 80px) 0 clamp(60px, 10vh, 96px);
}

.exos-pillars__top .section-header {
  margin-bottom: clamp(36px, 5vh, 56px);
}

.exos-pillars__top .section-eyebrow {
  color: var(--sg-green);
}

.exos-pillars__top .section-title {
  color: #fff;
  font-size: clamp(30px, 3.8vw, 46px);
  letter-spacing: -0.015em;
}

/* --- Top tile grid (3-up) --- */
.exos-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-bottom: 0;
}

.pillar-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0e0e0e;
  color: #fff;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  transition:
    background 0.3s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.pillar-tile:hover {
  background: #6ebe49;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}

.pillar-tile__head {
  position: relative;
  padding: 24px 26px 18px;
  z-index: 2;
}

.pillar-tile__title {
  font-size: 20px;
  margin: 0 0 8px;
  color: #fff;
  font-family: "Sohne Breit", Helvetica, Arial, sans-serif;
  letter-spacing: normal !important;
  font-weight: 500;
}

.pillar-tile__tag {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 32ch;
}

.pillar-tile__icon {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin: 16px 26px 26px;
  border-radius: 0;
  background: #0c0f1a;
  min-height: 200px;
}

.pillar-tile__icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.pillar-tile:hover .pillar-tile__icon img {
  transform: scale(1.04);
}

/* --- Alternating image/copy rows --- */
.pillar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(48px, 8vh, 80px) 0;
}

.pillar-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.pillar-row + .pillar-row {
  border-top: 0;
}

.pillar-row--reverse .pillar-row__copy {
  order: 2;
}

.pillar-row--reverse .pillar-row__media {
  order: 1;
}

.pillar-row__copy {
  min-width: 0;
  max-width: 560px;
}

.pillar-row--reverse .pillar-row__copy {
  margin-left: auto;
}

.pillar-row__name {
  font-size: clamp(26px, 2.5vw, 32px);
  font-family: "Sohne Breit", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin: 0 0 20px;
}

.pillar-row__headline {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #0a0a0a;
  margin: 0 0 18px;
}

.pillar-row__intro {
  font-size: 15px;
  line-height: 1.65;
  color: #0a0a0a;
  margin: 0 0 22px;
}

.pillar-row__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  max-width: 47ch;
}

.pillar-row__list li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #0a0a0a;
}

.pillar-row__list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0a0a0a;
}

.pillar-row__cta {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

.pillar-row__cta-label {
  padding: 14px 32px 14px 36px;
}

.pillar-row__cta-arrow {
  width: 64px;
}

.pillar-row__cta-arrow svg {
  width: 20px;
  height: 20px;
}

.pillar-row__cta-label {
  padding: 11px 18px 11px 22px;
  display: inline-flex;
  align-items: center;
}

.pillar-row__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

.pillar-row__cta-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.pillar-row__cta:hover {
  background: #0a0a0a;
  color: #fff;
}

.pillar-row__cta:hover .pillar-row__cta-arrow svg {
  transform: translateX(3px);
}

.pillar-row__media {
  position: relative;
  width: min(460px, 100%);
  justify-self: end;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  box-shadow: none;
}

.pillar-row--reverse .pillar-row__media {
  justify-self: start;
}

.pillar-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .exos-pillars__grid {
    grid-template-columns: 1fr;
  }
  .pillar-row,
  .pillar-row--reverse {
    grid-template-columns: 1fr;
  }
  .pillar-row .pillar-row__copy,
  .pillar-row--reverse .pillar-row__copy {
    order: 2;
  }
  .pillar-row .pillar-row__media,
  .pillar-row--reverse .pillar-row__media {
    order: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-tile,
  .pillar-tile__media img,
  .pillar-row__cta,
  .pillar-row__cta span {
    transition: none;
  }
}
/* ============================================
   PARTNERSHIP BENEFITS
   ============================================ */
.partnership {
  background: #000;
  padding: clamp(64px, 10vh, 100px) 0;
  position: relative;
  overflow: hidden;
}

.partnership::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(111, 190, 74, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.partnership__header {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.partnership__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.partnership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: #0e0e0e;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s;
}

.benefit-item:hover {
  border-color: rgba(111, 190, 74, 0.4);
  background: #161616;
}

.benefit-item__icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 8px;
  /* background: rgba(111, 190, 74, 0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item__icon svg,
.benefit-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: var(--sg-green);
}

.benefit-item__title {
  font-size: clamp(18px, 1.3vw, 21px);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.benefit-item__desc {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

/* ============================================
   GARTNER PEER INSIGHTS — Light compact layout
   ============================================ */
.gartner {
  background: var(--light-surface);
  padding: clamp(40px, 6vh, 64px) 0;
  border-top: var(--accent-thin) solid #e8ecf0;
}

.gartner__header {
  margin-bottom: clamp(24px, 3vh, 36px);
}

.gartner__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--text-on-light);
  line-height: 1.25;
  margin-bottom: 6px;
}

.gartner__subtitle {
  font-size: 14px;
  color: var(--text-on-light-muted);
}

.gartner__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(24px, 3vh, 36px);
}

.gartner__group-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e4e8ed;
}

.gartner__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-card {
  padding: 16px 0;
  border-bottom: 1px solid #eaecef;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.review-card img {
  max-width: 80px;
  margin-top: -4px;
}

.review-card:last-child {
  border-bottom: none;
}

.review-card__quote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--sg-green-dim);
}

.review-card__quote a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.review-card__quote a:hover {
  color: var(--sg-green);
  text-decoration: underline;
}

.review-card__body {
  font-size: 12px;
  color: var(--text-on-light-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-card__badge {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.review-card__badge-g {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-on-light);
  font-style: italic;
}

.review-card__badge-p {
  font-size: 10px;
  color: #e8441d;
  font-style: italic;
}

.gartner__cta {
  text-align: left;
}

.btn-gartner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-light);
  border: 1px solid #c8cdd4;
  border-radius: 0;
  background: var(--light-surface);
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
}

.btn-gartner:hover {
  border-color: var(--sg-green-dim);
  color: var(--sg-green-dim);
  transform: translateY(-1px);
}

.btn-gartner svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease-out);
}

.btn-gartner:hover svg {
  transform: translateX(3px);
}

/* ============================================
   LEAD FORM SECTION — dark theme
   ============================================ */
.lead-form {
  position: relative;
  padding: clamp(64px, 10vh, 100px) 0;
  background-color: var(--dark-deep);
  background-image: url("../images/hero-command-center.webp");
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

/* dark gradient overlay — left heavier for text readability */
.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6, 12, 26, 0.94) 0%,
    rgba(6, 12, 26, 0.88) 45%,
    rgba(6, 12, 26, 0.78) 100%
  );
  z-index: 0;
}

.lead-form__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.lead-form__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: clamp(20px, 3vw, 32px) 0;
}

.lead-form .section-eyebrow {
  margin-bottom: 18px;
}

.lead-form__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 22px;
}

.lead-form__desc {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.lead-form__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-on-dark-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  margin-bottom: 18px;
}

.lead-form__contact-item:last-child {
  margin-bottom: 0;
}

.lead-form__contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.lead-form__contact-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.lead-form__contact-item a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  position: relative;
  transition: color 0.25s var(--ease-out);
}

.lead-form__contact-item a span {
  background-image: linear-gradient(var(--sg-green), var(--sg-green));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1.5px;
  transition: background-size 0.3s var(--ease-out);
  padding-bottom: 2px;
}

.lead-form__contact-item a:hover {
  color: var(--sg-green);
}

.lead-form__contact-item a:hover span {
  background-size: 100% 1.5px;
}

.lead-form__contact-item:hover .lead-form__contact-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(111, 190, 74, 0.18);
}

/* form card — dark glass */
.form {
  position: relative;
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: var(--accent-thick) solid var(--sg-green);
  border-radius: 0;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
  backdrop-filter: blur(12px);
}

.form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.form-group {
  margin-bottom: 22px;
  min-width: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group label .required {
  color: var(--sg-green);
  margin-left: 4px;
  font-weight: 700;
}

/* underline-only inputs on dark */
.form-group input,
.form-group select {
  width: 100%;
  padding: 8px 0;
  font: inherit;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  transition: border-color 0.3s var(--ease-out);
  outline: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select:invalid {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select option {
  color: var(--text-on-light);
  background: var(--light-surface);
}

.form-group--other[hidden] {
  display: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--sg-green);
  box-shadow: none;
}

/* --- Validation states --- */
.form-group.has-error input,
.form-group.has-error select {
  border-bottom-color: #ff5a5a;
}

.form-group.has-error label {
  color: #ff8a8a;
}

.form-error {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #ff8a8a;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.form-error::before {
  content: "!";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff5a5a;
  color: #0a0a0a;
  font-weight: 800;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  margin-top: 1px;
}

.form-alert {
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid #ff5a5a;
  background: rgba(255, 90, 90, 0.08);
  color: #ffb4b4;
}

.form-alert[data-kind="success"] {
  border-left-color: var(--sg-green);
  background: rgba(111, 190, 74, 0.1);
  color: #c9eab4;
}

.form__submit {
  margin-top: 24px;
}
.form__submit .btn-primary {
  padding: 18px 32px;
  font-size: 17px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--sg-green);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease-out);
}

.btn-primary:hover {
  background: var(--sg-green-dim);
  color: #0a0a0a;
}

.btn-primary:active {
  background: var(--sg-green-dim);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles {
  background: var(--light-bg);
  padding: clamp(60px, 10vh, 96px) 0;
  border-top: var(--accent-thin) solid #e8ecf0;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.article-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  background: var(--light-surface);
  border: 1px solid #e8ecf0;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.article-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.article-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease-out);
}

.article-card:hover .article-card__image > img {
  transform: scale(1.06);
}

.article-card__source {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  min-height: 30px;
  padding: 2px 0 4px;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
}

.article-card__source-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(120px, 50%);
  max-height: 22px;
  object-fit: contain;
  object-position: left center;
}

.article-card__body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-on-light);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.5em * 3);
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--sg-green-dim);
}

.article-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.article-card:hover .article-card__link svg {
  transform: translateX(3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  /* systems stays 3-col on tablet */

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .diff-item__title {
    min-height: 0;
    margin-bottom: -10px;
  }

  .diff-item {
    gap: 14px;
  }

  .workflow__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partnership__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gartner__groups {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .product-card__image {
    min-height: 220px;
  }
  .product-card__image img {
    height: 180px;
  }

  .lead-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead-form__info {
    justify-content: flex-start;
    padding: 0;
  }

  .articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small tablet */
@media (max-width: 768px) {
  .hero {
    height: clamp(560px, 88vh, 720px);
  }

  /* Anchor content to lower half so logo gets breathing room */
  .hero__content {
    top: auto;
    bottom: clamp(80px, 14vh, 120px);
    transform: none;
    max-width: 100%;
    left: var(--gutter);
    right: var(--gutter);
    padding-right: 0;
  }

  .hero__content--split {
    bottom: clamp(80px, 14vh, 120px);
    grid-template-columns: 1fr;
    right: var(--gutter);
  }
  .hero__media {
    display: none;
  }

  /* Tighten vertical rhythm */
  .hero__eyebrow {
    margin-bottom: 12px;
  }
  .hero__heading {
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .hero__sub {
    margin-bottom: 22px;
    line-height: 1.6;
  }

  /* Stronger left-side overlay; richer bottom darkening so dots stay legible */
  .hero__overlay,
  .hero__overlay--dark,
  .hero__overlay--center,
  .hero__overlay--light {
    background: linear-gradient(
      180deg,
      rgba(6, 12, 26, 0.55) 0%,
      rgba(6, 12, 26, 0.35) 35%,
      rgba(6, 12, 26, 0.78) 78%,
      rgba(6, 12, 26, 0.92) 100%
    );
  }

  /* Slide 1 has no overlay element — pull a darkening layer onto the slide itself */
  .hero__slide:not(:has(.hero__overlay))::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(6, 12, 26, 0.55) 0%,
      rgba(6, 12, 26, 0.35) 35%,
      rgba(6, 12, 26, 0.78) 78%,
      rgba(6, 12, 26, 0.92) 100%
    );
    z-index: 1;
  }

  /* Better focal point on portrait phones — keep subject in upper third */
  .hero__slide > img {
    object-position: center 35%;
  }

  /* Full-width stacked actions — strong tap targets, consistent rhythm */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 360px;
  }
  .hero__btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    justify-content: space-between;
    padding: 14px 22px;
    font-size: 16px;
  }

  /* Dots — keep close to bottom edge but above the section fade */
  .hero__nav {
    bottom: 22px;
  }
  .hero__dot {
    position: relative;
  }
  /* Expand tap area to 44x44 without changing visual size */
  .hero__dot::before {
    content: "";
    position: absolute;
    inset: -18px;
  }

  /* Larger logo for mobile hero presence */
  .hero__logo-wrap {
    top: 26px;
  }
  .hero__logo {
    height: 44px;
  }

  /* Trim bottom fade so it doesn't swallow dots on short heroes */
  .hero::after {
    height: 90px;
  }

  .workflow__grid {
    grid-template-columns: 1fr;
  }

  .wf-item:nth-child(2n) {
    border-right: none;
    padding-left: 0;
  }
  .wf-item,
  .wf-item:nth-child(n + 3) {
    border-right: none;
    border-bottom: 1px solid #cce0ef;
    padding: 24px 0;
  }
  .wf-item:nth-child(1) {
    padding-top: 0;
  }
  .wf-item:nth-child(2) {
    padding-top: 24px;
  }
  .wf-item:last-child {
    border-bottom: none;
  }

  .diff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .product-card__image img {
    height: 200px;
  }

  .partnership__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .articles__grid {
    grid-template-columns: 1fr 1fr;
  }

  .systems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .systems__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 92svh;
    min-height: 560px;
    max-height: 760px;
  }

  .hero__heading {
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: -0.02em;
  }
  .hero__sub {
    font-size: 15px;
  }

  .hero__content,
  .hero__content--split {
    bottom: 96px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .articles__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .gartner__groups {
    gap: 24px;
  }
}

/* Very narrow phones — force one-line dot row away from button stack */
@media (max-width: 380px) {
  .hero__content,
  .hero__content--split {
    bottom: 88px;
  }
  .hero__heading br {
    display: none;
  }
}
