:root {
  --bg: #0a0a0d;
  --bg-soft: #12131a;
  --panel: rgba(17, 20, 28, 0.78);
  --panel-solid: #131720;
  --panel-light: #f5f1ea;
  --surface: #ffffff;
  --surface-strong: #f2ede4;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(9, 10, 15, 0.12);
  --text: #f7f6f2;
  --text-muted: rgba(247, 246, 242, 0.72);
  --text-dark: #171717;
  --text-soft: #5c5e67;
  --accent: #d53a16;
  --accent-soft: #ffb07d;
  --accent-gold: #b68b4c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top, rgba(213, 58, 22, 0.26), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(182, 139, 76, 0.18), transparent 20%),
    linear-gradient(180deg, #07080b 0%, #11141c 24%, #f3eee6 24%, #f3eee6 100%);
  color: var(--text-dark);
}

button {
  font: inherit;
  cursor: pointer;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 88%);
}

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

.page-frame {
  min-height: 100vh;
}

.topbar,
.content-section,
.footer-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  position: relative;
  z-index: 5;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark strong,
.brand-mark span,
.brand-copy,
.site-nav a,
.ghost-button {
  color: var(--text);
}

.brand-mark strong {
  display: block;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.brand-mark span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.64);
}

.brand-copy {
  max-width: 320px;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.brand-mark__accent {
  width: 18px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb07d 0%, #d53a16 70%, #641906 100%);
  box-shadow: 0 0 24px rgba(213, 58, 22, 0.3);
}

.site-nav {
  display: inline-flex;
  gap: 16px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.site-nav a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.94rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ghost-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
}

.ghost-button.compact {
  padding: 12px 18px;
}

.primary-button {
  background: linear-gradient(135deg, #ffb07d 0%, #d53a16 48%, #921f06 100%);
  color: #fff3eb;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(213, 58, 22, 0.28);
}

.hero {
  width: var(--content-width);
  margin: 0 auto;
  padding: 24px 0 72px;
  position: relative;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.75;
}

.hero::before {
  width: 320px;
  height: 320px;
  top: 72px;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 176, 125, 0.5) 0%, rgba(255, 176, 125, 0) 72%);
}

.hero::after {
  width: 460px;
  height: 460px;
  top: 60px;
  right: 0;
  background: radial-gradient(circle, rgba(213, 58, 22, 0.42) 0%, rgba(213, 58, 22, 0) 70%);
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 54px 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, rgba(6, 7, 11, 0.96) 58%);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

.section-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy p,
.page-hero p {
  max-width: 56ch;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-showcase {
  display: grid;
  gap: 18px;
}

.showcase-panel {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(160deg, rgba(22, 24, 34, 0.96) 0%, rgba(6, 7, 10, 0.98) 100%);
  box-shadow: var(--shadow);
  color: var(--text);
  overflow: hidden;
  min-height: 380px;
  position: relative;
}

.showcase-panel::before,
.showcase-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.showcase-panel::before {
  width: 82%;
  height: 22px;
  bottom: 70px;
  left: 9%;
  transform: rotate(-13deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.showcase-panel::after {
  width: 220px;
  height: 220px;
  top: 58px;
  right: 54px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 24%),
    radial-gradient(circle at 56% 46%, rgba(255, 176, 125, 0.5), transparent 40%),
    linear-gradient(135deg, #414754 0%, #1e2128 48%, #121319 100%);
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.showcase-copy {
  position: absolute;
  inset: 34px auto auto 34px;
  max-width: 280px;
}

.showcase-copy span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-copy h2 {
  margin: 18px 0 12px;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.category-card,
.product-card,
.process-card,
.quality-card,
.bom-card,
.contact-card,
.timeline-item,
.info-panel,
.form-panel {
  border-radius: var(--radius-lg);
}

.stat-card {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.stat-card strong {
  display: block;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #fff6ef;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.content-section {
  padding: 70px 0;
}

.content-section--dark {
  color: var(--text);
  padding: 54px 36px;
  margin: 18px auto;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(160deg, rgba(10, 11, 16, 0.98), rgba(21, 24, 33, 0.96));
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 64ch;
  margin: 0;
  line-height: 1.8;
  color: var(--text-soft);
}

.content-section--dark .section-heading p,
.content-section--dark .section-heading h2 {
  color: var(--text);
}

.category-grid,
.quality-grid,
.contact-grid,
.product-grid,
.process-grid,
.bom-grid,
.timeline-list,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.category-card {
  padding: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(248, 243, 235, 0.96));
  box-shadow: 0 16px 40px rgba(12, 12, 12, 0.09);
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.category-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  color: var(--accent);
}

.category-card__head span {
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2rem;
}

.category-card__head p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 20px 0 10px;
  font-size: 1.32rem;
}

.category-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.split-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.about-visual {
  min-height: 430px;
  padding: 34px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.3), rgba(11, 13, 18, 0.9)),
    linear-gradient(140deg, #495c73 0%, #17202b 44%, #0c0f15 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-visual::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 125, 0.5), rgba(255, 176, 125, 0));
}

.about-visual__content {
  position: relative;
  z-index: 1;
  max-width: 320px;
}

.about-visual__content h3 {
  margin: 18px 0 12px;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2.8rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-visual__content p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.info-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 16px 38px rgba(13, 13, 13, 0.08);
}

.info-panel p {
  margin: 0 0 18px;
  line-height: 1.86;
  color: var(--text-soft);
}

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

.stats-grid .stat-card {
  background: var(--panel-solid);
}

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

.product-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(160deg, rgba(16, 18, 25, 0.98), rgba(25, 28, 37, 0.94));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.product-card--compact {
  padding: 24px;
}

.product-card__eyebrow,
.product-card__footer,
.tag-row,
.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.product-card__eyebrow {
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2.1rem;
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.76;
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ef;
  font-size: 0.84rem;
}

.meta-grid {
  margin: 0;
}

.meta-grid div {
  min-width: 135px;
}

.meta-grid dt {
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.54);
}

.meta-grid dd {
  margin: 0;
  font-size: 1rem;
  color: #fff7ef;
}

.product-card__footer {
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.product-card__footer a {
  color: var(--accent-soft);
}

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

.process-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.process-step {
  display: inline-block;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2rem;
  color: var(--accent-soft);
}

.process-card h3 {
  margin: 10px 0 10px;
  font-size: 1.2rem;
}

.process-card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
}

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

.quality-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 240, 229, 0.96));
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.quality-card h3 {
  margin: 0 0 12px;
}

.quality-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-soft);
}

.page-hero {
  width: var(--content-width);
  margin: 0 auto;
  padding: 32px 0 54px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
}

.page-hero__panel,
.page-hero__aside {
  padding: 36px;
  border-radius: var(--radius-xl);
  color: var(--text);
  box-shadow: var(--shadow);
}

.page-hero__panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(160deg, rgba(14, 16, 24, 0.98), rgba(22, 26, 36, 0.95));
}

.page-hero__aside {
  background: linear-gradient(140deg, rgba(182, 139, 76, 0.18), rgba(19, 22, 30, 0.96));
}

.page-hero__aside h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.page-hero__aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.bom-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.bom-card span {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bom-card h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
}

.bom-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.72;
}

.bom-card strong {
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 1.35rem;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(16, 18, 25, 0.98), rgba(25, 28, 37, 0.94));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item span {
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2.6rem;
  color: var(--accent-soft);
}

.timeline-item h3 {
  margin: 0 0 8px;
}

.timeline-item p {
  margin: 0;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(160deg, rgba(16, 18, 25, 0.98), rgba(25, 28, 37, 0.94));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card span {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
}

.contact-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.18rem;
}

.contact-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.78;
}

.contact-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-profile {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.contact-profile__image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 18px 34px rgba(16, 18, 24, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.contact-profile__image img {
  width: 100%;
  height: auto;
}

.contact-profile__meta h3 {
  margin: 8px 0 10px;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.contact-profile__meta p {
  margin: 0 0 16px;
}

.contact-profile__list {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  line-height: 1.7;
}

.form-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.08);
}

.form-panel h2 {
  margin: 0 0 10px;
}

.form-panel p {
  margin: 0 0 22px;
  line-height: 1.8;
  color: var(--text-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  color: #353846;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(213, 58, 22, 0.18);
  border-color: rgba(213, 58, 22, 0.42);
}

.status-note {
  margin-top: 14px;
  min-height: 24px;
  color: #8b2c13;
  line-height: 1.7;
}

.footer-shell {
  padding: 28px 0 44px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.85fr 0.8fr 1.25fr;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(160deg, rgba(9, 10, 14, 0.96), rgba(18, 22, 30, 0.96));
  color: var(--text);
}

.footer-grid h3 {
  margin: 8px 0 12px;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.footer-grid p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.footer-title {
  margin-bottom: 16px !important;
  color: var(--accent-soft) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.footer-link + .footer-link {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  padding: 18px 10px 0;
}

.reveal {
  animation: revealUp 0.7s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.05s;
}

.reveal:nth-child(3) {
  animation-delay: 0.1s;
}

.reveal:nth-child(4) {
  animation-delay: 0.15s;
}

.reveal:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .hero,
  .split-layout,
  .page-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .quality-grid,
  .contact-grid,
  .category-grid,
  .product-grid,
  .timeline-list,
  .bom-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }

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

  .brand-copy {
    max-width: none;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 780px) {
  body {
    background:
      radial-gradient(circle at top, rgba(213, 58, 22, 0.24), transparent 28%),
      linear-gradient(180deg, #07080b 0%, #11141c 18%, #f3eee6 18%, #f3eee6 100%);
  }

  :root {
    --content-width: min(100vw - 28px, 1000px);
    --radius-xl: 28px;
    --radius-lg: 22px;
  }

  .topbar {
    padding-top: 18px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-copy,
  .showcase-panel,
  .page-hero__panel,
  .page-hero__aside,
  .content-section--dark,
  .footer-grid,
  .form-panel,
  .info-panel,
  .about-visual {
    padding: 26px;
  }

  .hero-metrics,
  .stats-grid,
  .category-grid,
  .quality-grid,
  .contact-grid,
  .product-grid,
  .process-grid,
  .timeline-list,
  .bom-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .ghost-button.compact {
    width: 100%;
  }

  .showcase-panel::after {
    width: 160px;
    height: 160px;
    right: 22px;
  }

  .showcase-panel::before {
    width: 78%;
    left: 11%;
  }
}
