/* Sui.io hero — extracted/computed styles from sui.io */

.sui-site {
  font-size: 14.3111px;
  font-family: var(--font-sf);
  color: #6c7584;
}

.sui-seqtrigger {
  position: relative;
  z-index: 9;
}

.sui-gradient-background {
  isolation: isolate;
  position: relative;
}

.sui-blue-overlay {
  z-index: 10;
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: color;
  background-color: #298dff;
  position: absolute;
  inset: 0;
}

/* Minimal white hero (the user removed the blue background, balls, intro counter,
   noise and cutout — only the blurred "The AI Era" headline remains). These
   overrides apply ONLY under .sui-seqtrigger--plain so the original hero CSS above
   stays intact for any other use. The section is plain white; the text layer is
   shown immediately (the old intro timeline used to fade it in from opacity:0); the
   headline is vertically centered. */
.sui-seqtrigger--plain {
  background: #fff;
}
.sui-seqtrigger--plain .sui-hero-section {
  background: #fff;
  min-height: 100svh;
  justify-content: center;
}
.sui-seqtrigger--plain .sui-hero-first-section {
  min-height: 100svh;
}
.sui-seqtrigger--plain .sui-text-layers {
  opacity: 1; /* old intro timeline animated this 0 -> 1; no intro now */
  align-items: center;
  justify-content: center;
}
.sui-seqtrigger--plain .sui-first-section-content {
  margin-top: 0; /* center the headline instead of pinning it to the bottom */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Soft blue glow/blur on the headline (the "blur" the user wants kept). The text
   itself stays readable; a slightly blurred blue copy sits behind it via a
   ::before that mirrors the gradient and is blurred, plus a gentle drop-shadow
   halo. text-shadow can't be used here because the glyph fill is transparent
   (gradient is background-clip:text), so drop-shadow (alpha-based) is used. */
.sui-seqtrigger--plain .sui-hero-heading {
  position: relative;
  filter: drop-shadow(0 0 18px rgba(41, 141, 255, 0.45))
    drop-shadow(0 0 42px rgba(41, 141, 255, 0.28));
}
.sui-seqtrigger--plain .sui-hero-heading::before {
  content: "The AI Era";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: inherit;
  background-size: inherit;
  background-repeat: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: blur(11px);
  opacity: 0.85;
  pointer-events: none;
}

.sui-hero-overlay {
  z-index: 1;
  mix-blend-mode: normal;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sui-stage {
  container-type: inline-size;
  z-index: -1;
  background-color: #fff;
  flex-flow: column;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sui-ball {
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sui-ball--lightblue {
  background-color: #ebf4ff;
  width: 192.48%;
  height: 153.39%;
  top: -45.93%;
  filter: blur(clamp(60px, 12cqw, 172px));
}

.sui-ball--blue {
  background-color: #298dff;
  width: 177.54%;
  height: 159.91%;
  top: -95.42%;
  filter: blur(clamp(60px, 12cqw, 172px));
}

.sui-ball--black {
  background-color: #010102;
  width: 210.35%;
  height: 159.93%;
  top: -120.45%;
  filter: blur(clamp(80px, 16cqw, 230px));
}

.sui-cutout {
  z-index: 2;
  background-color: #fff;
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1433' preserveAspectRatio='none'><defs><filter id='b' x='-20%25' y='-20%25' width='140%25' height='140%25'><feGaussianBlur stdDeviation='40'/></filter></defs><path d='M-200 1144.65L559.764 1235.61C665.892 1252.86 774.108 1252.86 880.236 1235.61L1640 1144.65V1646.65H-200V1144.65Z' fill='black' filter='url(%23b)'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1433' preserveAspectRatio='none'><defs><filter id='b' x='-20%25' y='-20%25' width='140%25' height='140%25'><feGaussianBlur stdDeviation='40'/></filter></defs><path d='M-200 1144.65L559.764 1235.61C665.892 1252.86 774.108 1252.86 880.236 1235.61L1640 1144.65V1646.65H-200V1144.65Z' fill='black' filter='url(%23b)'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.sui-noise-canvas {
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
  mix-blend-mode: soft-light;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  contain: strict;
}

.sui-hero-section {
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 8em;
  display: flex;
  position: relative;
}

.sui-intro-holder {
  z-index: 99;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100svh;
  display: flex;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sui-intro-map {
  width: 100%;
  height: 100%;
  position: relative;
}

.sui-line-progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.sui-line-current {
  width: 0;
  transform-origin: 100% 50%;
  margin-left: auto;
  overflow: hidden;
}

.sui-line-current img {
  display: block;
  width: 100%;
  height: auto;
}

.sui-line-current .sui-black-overlay {
  background-color: #000;
  opacity: 0.2;
  position: absolute;
  inset: 0;
}

.sui-current-percent {
  transform-origin: 0% 50%;
  opacity: 0;
}

.sui-percent-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.sui-percent-block {
  width: 0.75em;
  height: 0.75em;
  background-color: #298dff;
}

.sui-hero-first-section {
  --mouse-x: 50%;
  --mouse-y: 50%;
  z-index: 1;
  opacity: 1;
  background-color: transparent;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding-bottom: 3.188em;
  display: flex;
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.sui-gradient-blur {
  z-index: 5;
  mix-blend-mode: normal;
  width: 100%;
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  contain: layout style paint;
  transform: translateZ(0);
}

.sui-gradient-blur > div {
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.sui-gradient-blur > div:nth-of-type(1) {
  backdrop-filter: blur(2.8px);
  -webkit-backdrop-filter: blur(2.8px);
  mask: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    transparent 0%,
    transparent 14%,
    black 20%
  );
  -webkit-mask: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    transparent 0%,
    transparent 14%,
    black 20%
  );
}

.sui-gradient-blur > div:nth-of-type(2) {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    transparent 0%,
    transparent 16%,
    black 38%
  );
  -webkit-mask: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    transparent 0%,
    transparent 16%,
    black 38%
  );
}

.sui-gradient-blur > div:nth-of-type(3) {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  mask: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    transparent 0%,
    transparent 18%,
    black 50%
  );
  -webkit-mask: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    transparent 0%,
    transparent 18%,
    black 50%
  );
}

@media (prefers-reduced-motion: reduce) {
  .sui-gradient-blur > div {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (hover: none) and (min-width: 769px) {
  .sui-gradient-blur > div {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask: none;
    -webkit-mask: none;
  }
}

@media (max-width: 768px) {
  .sui-gradient-blur > div:nth-of-type(1) {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask:
      linear-gradient(
        to right,
        black 0%,
        black 35%,
        transparent 50%,
        transparent 65%,
        black 80%,
        black 100%
      ),
      radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 14%,
        black 20%
      );
    -webkit-mask:
      linear-gradient(
        to right,
        black 0%,
        black 35%,
        transparent 50%,
        transparent 65%,
        black 80%,
        black 100%
      ),
      radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 14%,
        black 20%
      );
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .sui-gradient-blur > div:nth-of-type(2) {
    backdrop-filter: blur(2.6px);
    -webkit-backdrop-filter: blur(2.6px);
    mask:
      linear-gradient(
        to right,
        black 0%,
        black 30%,
        transparent 47%,
        transparent 68%,
        black 85%,
        black 100%
      ),
      radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 16%,
        black 38%
      );
    -webkit-mask:
      linear-gradient(
        to right,
        black 0%,
        black 30%,
        transparent 47%,
        transparent 68%,
        black 85%,
        black 100%
      ),
      radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 16%,
        black 38%
      );
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }

  .sui-gradient-blur > div:nth-of-type(3) {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    mask:
      linear-gradient(
        to right,
        black 0%,
        black 25%,
        transparent 45%,
        transparent 70%,
        black 90%,
        black 100%
      ),
      radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 18%,
        black 50%
      );
    -webkit-mask:
      linear-gradient(
        to right,
        black 0%,
        black 25%,
        transparent 45%,
        transparent 70%,
        black 90%,
        black 100%
      ),
      radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 18%,
        black 50%
      );
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
  }
}

.sui-text-layers {
  z-index: 0;
  opacity: 0;
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 5.5em 5em;
  display: flex;
  position: relative;
  cursor: default;
}

.sui-first-section-content {
  z-index: 2;
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
  margin-top: auto;
  position: relative;
}

.sui-hero-heading {
  letter-spacing: -0.03em;
  mix-blend-mode: normal;
  font-weight: 600;
  line-height: 1.1;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  position: static;
  margin: 0;
  will-change: mask-position;
  transform: translateZ(0);
  contain: layout style;
}

.sui-hero-heading--desktop {
  font-size: clamp(4.5rem, 12vw, 14em);
}

.sui-hero-heading--mobile {
  display: none;
  font-size: 7.25em;
  line-height: 0.9;
}

.sui-subhead-block {
  z-index: 11;
  gap: 3em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: 3.188em;
  transform: translateY(-100%);
  margin-top: auto;
}

.sui-ts-21 {
  letter-spacing: normal;
  font-size: 1.3125em;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  max-width: 18em;
}

.sui-split-line-mask {
  position: relative;
  display: block;
  text-align: center;
  overflow: clip;
}

.sui-split-line {
  position: relative;
  display: block;
  text-align: center;
}

.sui-cta-wrapper {
  gap: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: stretch;
  min-height: 3em;
  display: grid;
}

.sui-cta-button {
  color: #fff;
  letter-spacing: -0.005em;
  text-transform: none;
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding: 1em 1.875em;
  font-family: var(--font-sf);
  font-size: 0.875em;
  line-height: 1;
  transition: all 0.2s;
  display: flex;
}

.sui-cta-button:hover {
  opacity: 0.85;
}

.sui-cta-button--alt {
  color: #000;
  background-color: #fff;
  line-height: 0.95;
}

.sui-cta-char {
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .sui-text-layers {
    padding: 5.5em 1.25em;
  }

  .sui-hero-heading--desktop {
    display: none;
  }

  .sui-hero-heading--mobile {
    display: block;
  }

  .sui-ts-21.sui-mob-15 {
    letter-spacing: normal;
    font-size: 0.9375em;
    line-height: 1.4;
  }
}
