:root {
  --ink: #11151a;
  --muted: #66717f;
  --line: rgba(17, 21, 26, 0.12);
  --white: #ffffff;
  --teal: #17c7b5;
  --cyan: #6fe7ff;
  --gold: #d8a94f;
  --carbon: #0b1118;
  --paper: #f7f8f9;
  --green: #2e6d5d;
  --red: #9a3f3f;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

.page {
  min-height: 100vh;
}

.nav {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 8, 12, 0.68), rgba(4, 8, 12, 0));
}

.nav.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: inherit;
  font-size: 14px;
}

.nav-action {
  border: 1px solid currentColor;
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.92), rgba(4, 7, 10, 0.5), rgba(4, 7, 10, 0.2)),
    linear-gradient(180deg, rgba(4, 7, 10, 0.05), rgba(4, 7, 10, 0.94));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 138px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
}

.button.primary {
  background: var(--teal);
  color: #061012;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 64px);
}

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

.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
}

.tile.dark-tile {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.tile-index {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.tile h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 199, 181, 0.12), rgba(216, 169, 79, 0.08)),
    #0b1118;
}

.dark-band .section-kicker {
  color: var(--cyan);
}

.dark-band .section-lede,
.dark-band .tile p {
  color: rgba(255, 255, 255, 0.68);
}

.capability-map {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

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

.node {
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  display: flex;
  align-items: end;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.045);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.step {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.step span {
  color: var(--red);
  font-weight: 800;
}

.step h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px 16px;
  font: inherit;
  background: var(--white);
  border-radius: 0;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 30px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.68);
  background: #080b0f;
  font-size: 13px;
}

.spacex-body {
  background: #050608;
  color: var(--white);
}

.sx-nav {
  height: 78px;
  padding-inline: clamp(22px, 4vw, 58px);
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.sx-nav .brand {
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.brand-logo {
  display: block;
  width: 118px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  transition: opacity 180ms ease, transform 180ms ease;
}

.logo-hidden .brand-logo {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.sx-nav .brand-mark {
  width: 42px;
  height: 28px;
  border-width: 2px;
  font-size: 12px;
}

.sx-nav .nav-links,
.sx-nav .nav-action {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sx-nav .nav-action {
  border: 0;
  padding-inline: 0;
}

.sx-stack {
  background: #050608;
}

.sx-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #050608;
  background-position: center;
  background-size: cover;
}

.sx-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.06)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.sx-panel.alt::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
}

.sx-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sx-panel.video-panel {
  background-image: url("./assets/hero-semiconductor-poster.jpg");
}

.sx-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 44px));
  margin-left: clamp(22px, 6vw, 86px);
  margin-bottom: clamp(58px, 11vh, 118px);
}

.sx-kicker {
  margin: 0 0 12px;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.sx-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6.3vw, 86px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sx-title.zh {
  text-transform: none;
  line-height: 1.04;
}

.sx-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
}

.sx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.sx-button:hover {
  background: #fff;
  color: #050608;
}

.sx-metrics {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 78px);
  bottom: clamp(34px, 8vh, 82px);
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 26px;
  max-width: 520px;
}

.sx-metric strong {
  display: block;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.sx-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.sx-contact {
  min-height: 100vh;
  padding: 128px clamp(22px, 6vw, 86px) 72px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #050608;
}

.sx-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
  width: min(1180px, 100%);
}

.sx-form input,
.sx-form textarea {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
}

.sx-form input::placeholder,
.sx-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.sx-footer {
  color: rgba(255, 255, 255, 0.58);
  background: #050608;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-body {
  background: #f4f6f7;
}

.compare-hero {
  padding: 96px clamp(20px, 5vw, 80px) 48px;
}

.compare-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 68px);
}

.compare-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.concepts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 80px) 80px;
}

.three-concepts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
}

.concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.86));
}

.concept-copy {
  position: relative;
  padding: 34px;
}

.concept-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.concept-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.platform-hero {
  background-position: center;
}

.platform-hero::before {
  background:
    linear-gradient(90deg, rgba(9, 14, 15, 0.9), rgba(9, 14, 15, 0.46), rgba(9, 14, 15, 0.12)),
    linear-gradient(180deg, rgba(9, 14, 15, 0.04), rgba(9, 14, 15, 0.88));
}

.platform-band {
  background: #f8faf9;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}

.audience {
  min-height: 128px;
  padding: 20px;
  display: flex;
  align-items: end;
  background: var(--white);
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav {
    position: absolute;
    height: auto;
    padding-top: 18px;
  }

  .nav-links {
    display: none;
  }

  .grid-3,
  .grid-4,
  .process,
  .capability-map,
  .contact-panel,
  .concepts,
  .three-concepts,
  .audience-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .tile {
    min-height: auto;
  }

  .sx-nav .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 92px;
  }

  .sx-copy {
    margin-left: 22px;
    margin-bottom: 72px;
  }

  .sx-panel {
    min-height: 780px;
  }

  .sx-metrics {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 44px, 520px);
    margin: -56px 22px 56px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sx-contact-grid {
    grid-template-columns: 1fr;
  }
}

.ww-body {
  color: #101418;
  background: #f3f1ec;
}

.ww-nav {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) auto minmax(120px, 0.9fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 58px);
  background: rgba(243, 241, 236, 0.88);
  border-bottom: 1px solid rgba(16, 20, 24, 0.1);
  backdrop-filter: blur(18px);
}

.ww-brand img {
  display: block;
  width: min(210px, 44vw);
  max-height: 42px;
  object-fit: contain;
}

.ww-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ww-contact-link {
  justify-self: end;
  padding: 11px 16px;
  color: #101418;
  border: 1px solid rgba(16, 20, 24, 0.35);
  font-size: 13px;
  font-weight: 800;
}

.ww-page {
  overflow: hidden;
}

.ww-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #090d10;
}

.ww-hero-video,
.ww-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ww-hero-video {
  object-fit: cover;
}

.ww-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82));
}

.ww-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 54px;
}

.ww-hero-copy {
  max-width: 850px;
}

.ww-kicker {
  margin: 0 0 16px;
  color: #0d8e7d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ww-hero .ww-kicker {
  color: #68e7d4;
}

.ww-hero h1,
.ww-section h2,
.ww-feature-copy h2,
.ww-ecosystem h2,
.ww-contact h2 {
  margin: 0;
  letter-spacing: 0;
}

.ww-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.98;
}

.ww-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
}

.ww-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ww-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
}

.ww-button-primary {
  color: #fff;
  background: #0d8e7d;
}

.ww-button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.ww-news-teaser {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.ww-news-teaser span,
.ww-news-teaser small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
}

.ww-news-teaser strong {
  font-size: 22px;
  line-height: 1.2;
}

.ww-section,
.ww-ecosystem,
.ww-contact {
  padding: clamp(74px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.ww-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.ww-section h2,
.ww-feature-copy h2,
.ww-ecosystem h2,
.ww-contact h2 {
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.05;
}

.ww-intro-copy {
  width: min(1220px, 100%);
  margin: 34px auto 0;
  padding-left: min(46vw, 520px);
}

.ww-intro-copy p,
.ww-feature-copy p,
.ww-contact p {
  margin: 0;
  color: #5d646a;
  font-size: 17px;
  line-height: 1.85;
}

.ww-text-link {
  display: inline-flex;
  margin-top: 20px;
  color: #0d6f64;
  font-weight: 900;
}

.ww-feature-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  color: #fff;
  background: #101418;
}

.ww-feature-image {
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(16, 20, 24, 0.04), rgba(16, 20, 24, 0.24)),
    url("https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?auto=format&fit=crop&w=1800&q=88");
  background-position: center;
  background-size: cover;
}

.ww-feature-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 92px);
}

.ww-feature-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

.ww-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1220px, 100%);
  margin: 46px auto 0;
  background: rgba(16, 20, 24, 0.14);
  border: 1px solid rgba(16, 20, 24, 0.14);
}

.ww-card {
  min-height: 270px;
  padding: 28px;
  background: #fff;
}

.ww-card span {
  color: #b25e36;
  font-size: 13px;
  font-weight: 900;
}

.ww-card h3 {
  margin: 48px 0 14px;
  font-size: 22px;
  line-height: 1.25;
}

.ww-card p {
  margin: 0;
  color: #687178;
  line-height: 1.75;
}

.ww-ecosystem {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(13, 142, 125, 0.28), rgba(178, 94, 54, 0.16)),
    #101418;
}

.ww-ecosystem .ww-kicker {
  color: #68e7d4;
}

.ww-ecosystem-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1220px, 100%);
  margin: 42px auto 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ww-ecosystem-row div {
  min-height: 138px;
  display: flex;
  align-items: end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.ww-news-section {
  background: #fff;
}

.ww-news-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.ww-news-head p:last-child {
  margin: 0;
  color: #687178;
  font-size: 14px;
}

.ww-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 42px auto 0;
}

.ww-news-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: #101418;
  background: #f3f1ec;
  border: 1px solid rgba(16, 20, 24, 0.1);
}

.ww-news-card span {
  color: #0d6f64;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.ww-news-card h3 {
  margin: 32px 0 18px;
  font-size: 23px;
  line-height: 1.18;
}

.ww-news-card p {
  margin: auto 0 0;
  color: #687178;
  line-height: 1.7;
}

.ww-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: start;
  color: #fff;
  background: #101418;
}

.ww-contact .ww-kicker {
  color: #68e7d4;
}

.ww-contact p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.ww-form {
  display: grid;
  gap: 14px;
}

.ww-form input,
.ww-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: #fff;
  font: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ww-form input::placeholder,
.ww-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.ww-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ww-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.58);
  background: #101418;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .ww-links {
    display: none;
  }

  .ww-nav,
  .ww-hero-inner,
  .ww-section-head,
  .ww-feature-band,
  .ww-contact {
    grid-template-columns: 1fr;
  }

  .ww-contact-link {
    display: none;
  }

  .ww-hero {
    min-height: 860px;
  }

  .ww-hero-inner {
    padding-top: 126px;
  }

  .ww-intro-copy {
    padding-left: 0;
  }

  .ww-card-grid,
  .ww-news-grid,
  .ww-ecosystem-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ww-card-grid,
  .ww-news-grid,
  .ww-ecosystem-row {
    grid-template-columns: 1fr;
  }

  .ww-news-head {
    display: block;
  }

  .ww-news-head p:last-child {
    margin-top: 18px;
  }

  .ww-news-card {
    min-height: auto;
  }
}

/* Wolverine-inspired corporate concept */
.ww-clone {
  --ww-black: #010101;
  --ww-cream: #f4f1ea;
  --ww-muted: #6b6d6f;
  --ww-line: rgba(1, 1, 1, 0.12);
  --ww-radius: 20px;
  background: var(--ww-cream);
  color: var(--ww-black);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Inter", Arial, sans-serif;
}

.ww-clone .ww-header {
  position: fixed;
  z-index: 60;
  top: 0;
  right: auto;
  left: 50%;
  width: calc(100% - 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 88px;
  padding: 0 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
  transform: translate3d(-50%, 0, 0);
  transition:
    top 620ms cubic-bezier(0.19, 1, 0.22, 1),
    width 620ms cubic-bezier(0.19, 1, 0.22, 1),
    height 620ms cubic-bezier(0.19, 1, 0.22, 1),
    gap 620ms cubic-bezier(0.19, 1, 0.22, 1),
    padding 620ms cubic-bezier(0.19, 1, 0.22, 1),
    color 360ms ease,
    background 420ms ease,
    backdrop-filter 420ms ease,
    border-radius 620ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 420ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: top, width, height, padding, border-radius, transform;
}

.ww-clone .ww-header::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto;
  height: 104px;
  pointer-events: none;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
  transition: opacity 220ms ease;
}

.ww-clone .ww-header.is-scrolled {
  top: 20px;
  right: auto;
  left: 50%;
  width: 682px;
  max-width: calc(100vw - 44px);
  height: 64px;
  gap: 28px;
  padding: 0 30px;
  background: rgba(1, 1, 1, 0.9);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(1, 1, 1, 0.18);
  transform: translate3d(-50%, 0, 0);
}

.ww-clone .ww-header.is-scrolled::before {
  opacity: 0;
}

.ww-clone .ww-wordmark,
.ww-clone .ww-desktop-nav,
.ww-clone .ww-menu-button {
  position: relative;
  z-index: 2;
}

.ww-clone .ww-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 248px;
  transition:
    min-width 620ms cubic-bezier(0.19, 1, 0.22, 1),
    gap 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.ww-clone .ww-wordmark img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 92px;
  object-fit: contain;
}

.ww-clone .ww-brand-copy {
  display: grid;
  gap: 2px;
  width: 96px;
  color: #fff;
  max-width: 96px;
  white-space: nowrap;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 220ms ease,
    max-width 520ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.ww-clone .ww-brand-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.ww-clone .ww-brand-copy em {
  display: block;
  overflow: hidden;
  font-size: 4.2px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-overflow: clip;
}

.ww-clone .ww-header.is-scrolled .ww-wordmark {
  min-width: 72px;
  gap: 0;
}

.ww-clone .ww-header.is-scrolled .ww-brand-copy {
  max-width: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-8px);
}

.ww-clone .ww-desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  white-space: nowrap;
  transition:
    gap 620ms cubic-bezier(0.19, 1, 0.22, 1),
    font-size 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.ww-clone .ww-header.is-scrolled .ww-desktop-nav {
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
}

.ww-clone .ww-desktop-nav a,
.ww-clone .ww-nav-toggle,
.ww-clone .ww-menu-button {
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
}

.ww-clone .ww-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ww-clone .ww-nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.ww-clone .ww-nav-toggle span:last-child {
  transition: transform 180ms ease;
}

.ww-clone .ww-nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.ww-clone .ww-menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.ww-clone .ww-menu-button b {
  font-size: 20px;
  line-height: 1;
  transition: transform 220ms ease;
}

.ww-clone .ww-menu-button[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.ww-clone .ww-dropdown {
  position: absolute;
  z-index: 1;
  top: 74px;
  right: 36px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 1fr));
  gap: 8px;
  width: min(920px, calc(100vw - 72px));
  padding: 8px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ww-clone .ww-header.is-scrolled .ww-dropdown {
  top: calc(100% + 10px);
  right: 0;
  width: min(760px, calc(100vw - 32px));
  background: rgba(1, 1, 1, 0.72);
}

.ww-clone .ww-dropdown[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ww-clone .ww-dropdown-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.11);
}

.ww-clone .ww-dropdown-card span,
.ww-clone .ww-dropdown-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.ww-clone .ww-dropdown-card strong {
  font-size: 20px;
  line-height: 1.15;
}

.ww-clone .ww-dropdown-copy {
  background: rgba(255, 255, 255, 0.17);
}

.ww-clone .ww-mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  padding: 110px 24px 32px;
  color: #fff;
  background: rgba(1, 1, 1, 0.92);
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.ww-clone .ww-mobile-menu[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ww-clone .ww-mobile-menu a {
  font-size: clamp(42px, 13vw, 72px);
  font-weight: 800;
  line-height: 0.98;
}

.ww-clone .ww-page {
  overflow: clip;
}

.ww-clone .ww-hero-shell {
  position: relative;
  min-height: calc(100svh - 16px);
  margin: 8px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--ww-radius);
  background: #050608;
}

.ww-clone .ww-hero-video,
.ww-clone .ww-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ww-clone .ww-hero-video {
  object-fit: cover;
  filter: saturate(0.86) contrast(0.88) brightness(0.86);
}

.ww-clone .ww-hero-overlay {
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 0.28), rgba(1, 1, 1, 0) 32%, rgba(1, 1, 1, 0.24)),
    linear-gradient(90deg, rgba(1, 1, 1, 0.24), rgba(1, 1, 1, 0.02));
}

.ww-clone .ww-hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 16px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 48px;
  padding: 0 40px 40px;
}

.ww-clone .ww-hero-title {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(72px, 10.8vw, 152px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.ww-clone .ww-hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(48px);
  animation: wwRise 780ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.ww-clone .ww-hero-title span:nth-child(2) {
  animation-delay: 120ms;
}

.ww-clone .ww-hero-title span:nth-child(3) {
  animation-delay: 240ms;
}

.ww-clone .ww-hero-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  color: #fff;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(28px);
  animation: wwRise 720ms 360ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.ww-clone .ww-hero-card::before {
  content: "";
  flex: 1;
  min-height: 150px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(118, 238, 218, 0.9), rgba(246, 232, 190, 0.28)),
    url("./assets/hero-semiconductor-poster.jpg") center / cover;
}

.ww-clone .ww-hero-card span,
.ww-clone .ww-hero-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  text-transform: uppercase;
}

.ww-clone .ww-hero-card strong {
  font-size: 26px;
  line-height: 1.05;
}

.ww-clone .ww-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 8vw, 118px);
  padding: clamp(92px, 14vw, 150px) 48px;
}

.ww-clone .ww-two-col h2,
.ww-clone .ww-statement h2,
.ww-clone .ww-report-copy h2,
.ww-clone .ww-market h2,
.ww-clone .ww-carousel-head h2,
.ww-clone .ww-careers h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ww-clone .ww-two-col h2 {
  max-width: 600px;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1.03;
}

.ww-clone .ww-two-col p,
.ww-clone .ww-careers p {
  margin: 0;
  color: var(--ww-muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
}

.ww-clone .ww-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  margin-top: 32px;
  padding: 0 22px;
  color: var(--ww-black);
  border: 1px solid var(--ww-black);
  border-radius: 999px;
  font-weight: 800;
  overflow: hidden;
}

.ww-clone .ww-pill-link b {
  font: inherit;
}

.ww-clone .ww-pill-link.dark {
  color: var(--ww-black);
  background: #fff;
  border-color: #fff;
}

.ww-clone .ww-statement {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #d9e8f6;
}

.ww-clone .ww-statement h2 {
  position: relative;
  z-index: 2;
  max-width: 1030px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.ww-clone .ww-statement .ww-pill-link {
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 46px rgba(73, 112, 150, 0.22);
}

.ww-clone .ww-particle-field {
  position: absolute;
  inset: -8% -4%;
  pointer-events: none;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.ww-clone .ww-particle-field i {
  position: absolute;
  width: clamp(118px, 15vw, 240px);
  aspect-ratio: 1.42;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(1, 1, 1, 0.1)),
    var(--image) center / cover;
  box-shadow:
    0 24px 80px rgba(36, 70, 103, 0.22),
    0 0 0 18px rgba(255, 255, 255, 0.12);
  filter: saturate(0.96) contrast(0.95);
  animation: wwFloatDrift 13s cubic-bezier(0.36, 0, 0.24, 1) infinite;
  will-change: transform;
}

.ww-clone .ww-particle-field i:nth-child(1) { left: 4%; top: 12%; transform: rotate(-7deg); }
.ww-clone .ww-particle-field i:nth-child(2) { left: 18%; bottom: 10%; animation-delay: -2s; transform: rotate(5deg); }
.ww-clone .ww-particle-field i:nth-child(3) { left: 37%; top: 8%; animation-delay: -5s; transform: rotate(9deg); }
.ww-clone .ww-particle-field i:nth-child(4) { right: 32%; bottom: 2%; animation-delay: -1s; transform: rotate(-4deg); }
.ww-clone .ww-particle-field i:nth-child(5) { right: 9%; top: 17%; animation-delay: -4s; transform: rotate(6deg); }
.ww-clone .ww-particle-field i:nth-child(6) { right: 6%; bottom: 18%; animation-delay: -6s; transform: rotate(-8deg); }
.ww-clone .ww-particle-field i:nth-child(7) { left: 48%; bottom: -7%; animation-delay: -8s; transform: rotate(3deg); }
.ww-clone .ww-particle-field i:nth-child(8) { left: -3%; top: 58%; animation-delay: -10s; transform: rotate(10deg); }

.ww-clone .ww-report {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 48px;
  padding: 8px;
  color: #fff;
  border-radius: var(--ww-radius);
  background: var(--ww-black);
}

.ww-clone .ww-report-media {
  min-height: 580px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 0.04), rgba(1, 1, 1, 0.22)),
    url("./assets/server-room.webp") center / cover;
}

.ww-clone .ww-report-copy {
  padding: clamp(24px, 4vw, 56px);
}

.ww-clone .ww-report-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.62);
}

.ww-clone .ww-report-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
}

.ww-clone .ww-capability-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.16);
}

.ww-clone .ww-capability-list article {
  display: grid;
  grid-template-columns: 56px minmax(170px, 0.55fr) minmax(260px, 1fr);
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  background: var(--ww-black);
}

.ww-clone .ww-capability-list span {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.48);
}

.ww-clone .ww-capability-list strong {
  grid-column: 2;
  display: block;
  font-size: 20px;
}

.ww-clone .ww-capability-list small {
  grid-column: 3;
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  text-align: left;
}

.ww-clone .ww-resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ww-clone .ww-resource-tags span {
  padding: 9px 13px;
  border: 1px solid var(--ww-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.ww-clone .ww-market,
.ww-clone .ww-news-section {
  padding: clamp(80px, 10vw, 128px) 48px;
}

.ww-clone .ww-market {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(56px, 7vw, 86px);
  border-top: 1px solid var(--ww-line);
  border-bottom: 1px solid var(--ww-line);
}

.ww-clone .ww-market h2,
.ww-clone .ww-carousel-head h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.ww-clone .ww-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ww-line);
  width: min(100%, 560px);
  max-width: 560px;
  justify-self: end;
}

.ww-clone .ww-market-grid article {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: var(--ww-cream);
}

.ww-clone .ww-market-grid span,
.ww-clone .ww-news-card span {
  color: var(--ww-muted);
  font-size: 12px;
  font-weight: 800;
}

.ww-clone .ww-market-grid strong {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
}

.ww-clone .ww-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ww-clone .ww-carousel-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.ww-clone .ww-carousel-actions button,
.ww-clone .ww-carousel-actions a {
  color: var(--ww-black);
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.ww-clone .ww-news-track {
  display: grid;
  grid-auto-columns: minmax(310px, 31vw);
  grid-auto-flow: column;
  gap: 20px;
  margin-top: 38px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ww-clone .ww-news-track::-webkit-scrollbar {
  display: none;
}

.ww-clone .ww-news-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 0;
  color: var(--ww-black);
  scroll-snap-align: start;
  background: transparent;
  border: 0;
}

.ww-clone .ww-news-img {
  height: 300px;
  margin-bottom: 22px;
  border-radius: 10px;
  background-image:
    linear-gradient(135deg, rgba(1, 1, 1, 0.02), rgba(116, 224, 207, 0.14)),
    var(--news-image, url("./assets/pics-web/01-adi-goldstein-eusvweosble-unsplash.webp"));
  background-position: center;
  background-size: cover;
}

.ww-clone .ww-news-img.news-2 {
  background-image:
    linear-gradient(135deg, rgba(1, 1, 1, 0.02), rgba(218, 164, 91, 0.12)),
    var(--news-image, url("./assets/pics-web/02-igor-shalyminov-wr4q9r7kwbu-unsplash.webp"));
}

.ww-clone .ww-news-img.news-3 {
  background-image:
    linear-gradient(135deg, rgba(1, 1, 1, 0.02), rgba(91, 149, 218, 0.12)),
    var(--news-image, url("./assets/pics-web/03-laura-ockel-qox9ksvpqcm-unsplash.webp"));
}

.ww-clone .ww-news-img.news-4 {
  background-image:
    linear-gradient(135deg, rgba(1, 1, 1, 0.02), rgba(118, 238, 218, 0.12)),
    var(--news-image, url("./assets/pics-web/04-louis-reed-wstcaqpiltc-unsplash.webp"));
}

.ww-clone .ww-news-card h3 {
  margin: 14px 0 0;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.22;
}

.ww-clone .ww-news-card p {
  margin: auto 0 0;
  color: var(--ww-muted);
  line-height: 1.65;
}

.ww-clone .ww-careers {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  margin: 0 8px 8px;
  padding: clamp(42px, 8vw, 96px);
  color: #fff;
  border-radius: var(--ww-radius);
  background:
    linear-gradient(90deg, rgba(1, 1, 1, 0.56), rgba(1, 1, 1, 0.18)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=88") center / cover;
}

.ww-clone .ww-careers h2 {
  max-width: 680px;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 1;
}

.ww-clone .ww-careers p {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
}

.ww-clone .ww-form {
  display: grid;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.ww-clone .ww-form input,
.ww-clone .ww-form textarea {
  width: 100%;
  padding: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(1, 1, 1, 0.12);
  font: inherit;
}

.ww-clone .ww-form input::placeholder,
.ww-clone .ww-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.ww-clone .ww-form textarea {
  min-height: 128px;
  resize: vertical;
}

.ww-clone .ww-submit {
  min-height: 52px;
  color: var(--ww-black);
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.ww-clone .ww-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.ww-clone .ww-form-status {
  min-height: 22px;
  margin: 0;
  padding: 0 8px 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.ww-clone .ww-form-status.is-success {
  color: #c8f7d1;
}

.ww-clone .ww-form-status.is-error {
  color: #ffd2c8;
}

.ww-clone .ww-footer {
  padding: 28px 48px 42px;
  color: rgba(1, 1, 1, 0.58);
  background: var(--ww-cream);
  border: 0;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

.ww-clone .reveal {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 780ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ww-clone .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wwRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wwFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -28px, 0) rotate(4deg);
  }
}

@keyframes wwFloatDrift {
  0%, 100% {
    translate: 0 0;
  }
  33% {
    translate: 18px -32px;
  }
  66% {
    translate: -16px 22px;
  }
}

@media (max-width: 960px) {
  .ww-clone .ww-header {
    top: 0;
    right: auto;
    left: 50%;
    width: calc(100% - 48px);
    height: 74px;
    padding: 0;
    border-radius: 0;
    transform: translate3d(-50%, 0, 0);
  }

  .ww-clone .ww-header.is-scrolled {
    top: 14px;
    right: auto;
    left: 50%;
    width: min(356px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    height: 58px;
    gap: 14px;
    padding: 0 20px;
    border-radius: 22px;
    transform: translate3d(-50%, 0, 0);
  }

  .ww-clone .ww-wordmark img {
    height: 22px;
    max-width: 88px;
  }

  .ww-clone .ww-wordmark {
    min-width: 0;
    max-width: calc(100% - 86px);
  }

  .ww-clone .ww-header.is-scrolled .ww-wordmark {
    min-width: 0;
    max-width: 94px;
    gap: 0;
  }

  .ww-clone .ww-brand-copy {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ww-clone .ww-brand-copy strong {
    font-size: 12px;
  }

  .ww-clone .ww-brand-copy em {
    font-size: 3.8px;
  }

  .ww-clone .ww-header.is-scrolled .ww-brand-copy {
    max-width: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-8px);
  }

  .ww-clone .ww-desktop-nav {
    display: none;
  }

  .ww-clone .ww-menu-button {
    display: inline-flex;
  }

  .ww-clone .ww-dropdown {
    display: none;
  }

  .ww-clone .ww-hero-content,
  .ww-clone .ww-two-col,
  .ww-clone .ww-report,
  .ww-clone .ww-market,
  .ww-clone .ww-careers {
    grid-template-columns: 1fr;
  }

  .ww-clone .ww-hero-content {
    align-content: end;
    padding: 112px 18px 18px;
  }

  .ww-clone .ww-hero-title {
    font-size: clamp(52px, 17vw, 84px);
    line-height: 0.96;
  }

  .ww-clone .ww-hero-card {
    min-height: 230px;
  }

  .ww-clone .ww-two-col,
  .ww-clone .ww-market,
  .ww-clone .ww-news-section {
    padding-inline: 24px;
  }

  .ww-clone .ww-market {
    gap: 22px;
    padding-block: 54px;
  }

  .ww-clone .ww-market h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .ww-clone .ww-statement {
    min-height: 680px;
    padding: 0 24px;
  }

  .ww-clone .ww-report {
    margin-inline: 8px;
  }

  .ww-clone .ww-report-media {
    min-height: 360px;
  }

  .ww-clone .ww-capability-list article {
    grid-template-columns: 48px minmax(150px, 0.6fr) minmax(0, 1fr);
    gap: 18px;
  }

  .ww-clone .ww-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .ww-clone .ww-market-grid article {
    min-height: 116px;
    padding: 18px 16px;
  }

  .ww-clone .ww-market-grid span {
    font-size: 11px;
  }

  .ww-clone .ww-market-grid strong {
    font-size: clamp(19px, 5.3vw, 25px);
  }

  .ww-clone .ww-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ww-clone .ww-news-track {
    grid-auto-columns: minmax(288px, 82vw);
  }
}

@media (max-width: 520px) {
  .ww-clone .ww-wordmark img {
    height: 20px;
    max-width: 80px;
  }

  .ww-clone .ww-wordmark {
    gap: 10px;
  }

  .ww-clone .ww-brand-copy {
    width: 92px;
    max-width: 92px;
  }

  .ww-clone .ww-header.is-scrolled .ww-wordmark {
    max-width: 76px;
  }

  .ww-clone .ww-header.is-scrolled .ww-menu-button {
    gap: 8px;
  }

  .ww-clone .ww-header.is-scrolled .ww-menu-button span {
    font-size: 14px;
  }

  .ww-clone .ww-hero-title {
    letter-spacing: -0.045em;
  }

  .ww-clone .ww-hero-card strong {
    font-size: 22px;
  }

  .ww-clone .ww-carousel-actions {
    width: 100%;
    justify-content: space-between;
  }

  .ww-clone .ww-capability-list article {
    grid-template-columns: 42px 1fr;
    gap: 10px 16px;
  }

  .ww-clone .ww-capability-list strong {
    grid-column: 2;
  }

  .ww-clone .ww-capability-list small {
    grid-column: 2;
  }

  .ww-clone .ww-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ww-footer span,
.ww-footer a {
  display: inline-block;
  margin: 4px 8px;
}

.ww-icp-link {
  color: inherit;
  text-decoration: none;
}

.ww-icp-link:hover {
  color: #fff;
}
