:root {
  --ink: #061014;
  --ink-2: #0b1d22;
  --surface: #f5fbfd;
  --surface-2: #eaf5f8;
  --panel: rgba(8, 25, 31, 0.78);
  --panel-strong: rgba(5, 18, 23, 0.94);
  --line: rgba(91, 219, 235, 0.22);
  --line-dark: rgba(15, 48, 58, 0.12);
  --text: #f3fbfd;
  --text-dark: #10262c;
  --muted: #99b1b8;
  --muted-dark: #526970;
  --cyan: #68eff8;
  --blue: #1a9ee4;
  --green: #68f5c8;
  --shadow: 0 28px 90px rgba(0, 143, 188, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--surface);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 50, 59, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(9, 50, 59, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 72%, transparent);
}

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

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

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

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 68px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(14, 45, 54, 0.08);
  background: rgba(246, 252, 253, 0.88);
  color: var(--text-dark);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 36px rgba(8, 43, 52, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(10, 91, 112, 0.18);
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #35535b;
  font-size: 14px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(26, 158, 228, 0.08);
}

.footer a,
.privacy-note a {
  color: var(--blue);
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(104, 239, 248, 0.45);
  border-radius: var(--radius);
  background: rgba(104, 239, 248, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  min-height: 40px;
  padding: 0 18px;
  border-color: transparent;
  background: #08282f;
  color: #f3fbfd;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(8, 40, 47, 0.14);
}

.button {
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #031115;
  box-shadow: 0 18px 44px rgba(26, 158, 228, 0.25);
}

.button.secondary {
  background: rgba(5, 18, 23, 0.72);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 18px 44px rgba(26, 158, 228, 0.16);
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 68px);
  color: var(--text);
  background: #071014;
}

.hero-slider {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 68px);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 18, 0.82) 0%, rgba(3, 14, 18, 0.58) 36%, rgba(3, 14, 18, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 14, 18, 0.24) 0%, rgba(3, 14, 18, 0.34) 100%);
}

.hero-slider-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1200px) / 2));
  padding-top: clamp(110px, 18vh, 190px);
}

.hero-slider-content .eyebrow {
  color: #9af7ff;
}

.hero-slider-content h1 {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.hero-slider-content .hero-lede {
  max-width: 680px;
  color: #d5e7eb;
}

.hero-slide-panel {
  position: absolute;
  right: max(32px, calc((100vw - 1200px) / 2));
  bottom: 94px;
  z-index: 2;
  width: min(390px, calc(100% - 64px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(3, 14, 18, 0.56);
  color: var(--text);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-slide-count {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-slide-title {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.28;
}

.hero-slide-text {
  margin-bottom: 0;
  color: #bfd3d9;
  line-height: 1.7;
}

.hero-slider-controls {
  position: absolute;
  left: max(32px, calc((100vw - 1200px) / 2));
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow,
.hero-dots button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 14, 18, 0.5);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 18px;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(104, 239, 248, 0.7);
  background: rgba(104, 239, 248, 0.12);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 36px;
  height: 4px;
  padding: 0;
  border-radius: 999px;
}

.hero-dots button.is-active {
  border-color: var(--cyan);
  background: var(--cyan);
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.88;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-lede,
.band-copy p,
.split-copy p,
.about-copy p,
.contact-text {
  color: #c3d9de;
  font-size: 18px;
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
}

.hero-proof div,
.system-card,
.system-map,
.metric-grid div,
.service-card,
.scenario,
.proof-card,
.process-list div,
.timeline div,
.contact-panel,
.policy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-proof div {
  padding: 18px;
  background: rgba(7, 24, 30, 0.68);
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 24px;
}

.hero-proof span,
.service-card p,
.scenario p,
.proof-card p,
.metric-grid span,
.process-list strong,
.timeline span,
.privacy-note {
  color: var(--muted);
  line-height: 1.72;
}

.hero-system {
  display: grid;
  gap: 16px;
}

.system-card {
  padding: 24px;
  background: rgba(2, 10, 13, 0.72);
  box-shadow: var(--shadow);
}

.logo-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 22px;
}

.logo-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 0 64px rgba(104, 239, 248, 0.24);
}

.logo-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.logo-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.system-map {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(104, 239, 248, 0.1), rgba(26, 158, 228, 0.02)),
    rgba(2, 10, 13, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.system-map::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 39px;
  width: 1px;
  background: linear-gradient(180deg, rgba(104, 239, 248, 0), rgba(104, 239, 248, 0.5), rgba(104, 239, 248, 0));
}

.system-map div {
  position: relative;
  min-height: 68px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px 16px 0;
  border: 1px solid rgba(104, 239, 248, 0.14);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(104, 239, 248, 0.08), rgba(6, 20, 25, 0.58));
  color: #dff8fb;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.system-map div:hover {
  transform: translateX(4px);
  border-color: rgba(104, 239, 248, 0.32);
  background: linear-gradient(90deg, rgba(104, 239, 248, 0.14), rgba(6, 20, 25, 0.7));
}

.system-map span {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(104, 239, 248, 0.5);
  border-radius: 999px;
  background: #061419;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.system-map strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.about-layout,
.split,
.band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
}

.about {
  color: var(--text-dark);
}

.about .eyebrow,
.services .eyebrow,
.enterprise .eyebrow,
.proof .eyebrow {
  color: var(--blue);
}

.about-copy p {
  color: var(--muted-dark);
}

.delivery-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.delivery-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 48, 58, 0.1);
  border-radius: 18px;
  background: #dfecef;
  box-shadow: 0 28px 80px rgba(11, 44, 54, 0.12);
}

.delivery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.delivery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 19, 24, 0.78)),
    linear-gradient(90deg, rgba(5, 28, 35, 0.08), transparent 52%);
}

.delivery-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(5, 18, 23, 0.72);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.delivery-photo strong {
  font-size: 20px;
}

.delivery-photo span {
  color: #bdd2d8;
  line-height: 1.62;
}

.delivery-brief {
  display: grid;
  gap: 26px;
  align-content: center;
}

.delivery-flow {
  display: grid;
  border-top: 1px solid rgba(15, 48, 58, 0.12);
}

.delivery-flow article {
  display: grid;
  grid-template-columns: 56px 112px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15, 48, 58, 0.12);
}

.delivery-flow span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.delivery-flow strong {
  color: var(--text-dark);
  font-size: 22px;
}

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

.metric-grid,
.service-grid,
.scenario-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

.metric-grid div {
  min-height: 150px;
  padding: 22px;
  background: white;
  border-color: var(--line-dark);
  box-shadow: 0 16px 44px rgba(11, 44, 54, 0.06);
}

.metric-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 28px;
}

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

.service-card,
.scenario,
.proof-card {
  min-height: 250px;
  padding: 24px;
  background: white;
  border-color: var(--line-dark);
  box-shadow: 0 18px 50px rgba(11, 44, 54, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.scenario:hover,
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(11, 44, 54, 0.1);
}

.service-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 48, 58, 0.12);
  border-radius: 18px;
  background: white;
  box-shadow: 0 28px 80px rgba(11, 44, 54, 0.08);
}

.service-row {
  min-height: 190px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 30px;
  border-right: 1px solid rgba(15, 48, 58, 0.1);
  border-bottom: 1px solid rgba(15, 48, 58, 0.1);
  background:
    linear-gradient(135deg, rgba(26, 158, 228, 0.055), transparent 42%),
    #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-row:nth-child(2n) {
  border-right: 0;
}

.service-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-row:hover {
  background:
    linear-gradient(135deg, rgba(26, 158, 228, 0.1), transparent 48%),
    #ffffff;
}

.service-row span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-row h3 {
  margin-top: 0;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted-dark);
  line-height: 1.72;
}

.band {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100vw - 1200px) / 2));
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(104, 239, 248, 0.12), transparent 30rem),
    linear-gradient(135deg, #071014, #0d2228);
}

.process-list,
.timeline {
  display: grid;
  gap: 14px;
}

.process-list div,
.timeline div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 20px;
  background: rgba(6, 20, 25, 0.72);
}

.process-list span,
.timeline strong {
  color: var(--cyan);
  font-weight: 900;
}

.enterprise {
  color: var(--text-dark);
}

.scenario {
  min-height: 210px;
}

.training {
  color: var(--text-dark);
}

.training .eyebrow {
  color: var(--blue);
}

.split-copy p {
  color: var(--muted-dark);
}

.target-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.target-list span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(11, 44, 54, 0.06);
}

.proof {
  color: var(--text-dark);
}

.proof-card {
  min-height: 230px;
}

.contact {
  color: var(--text);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(104, 239, 248, 0.12), transparent 42%),
    rgba(6, 20, 25, 0.94);
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: #d8eef2;
  font-size: 14px;
}

.lead-form label:nth-child(4),
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(104, 239, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(2, 8, 10, 0.62);
  color: var(--text);
  outline: none;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(104, 239, 248, 0.09);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
}

.footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-dark);
  border-top: 1px solid var(--line-dark);
}

.policy {
  min-height: calc(100vh - 130px);
  color: var(--text);
}

.policy-panel {
  max-width: 920px;
  padding: 42px;
  background: rgba(6, 20, 25, 0.94);
  box-shadow: var(--shadow);
}

.policy-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 62px);
}

.policy-updated {
  margin-bottom: 34px;
  color: var(--muted);
}

.policy-block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.policy-block h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.policy-block p {
  margin-bottom: 0;
  color: #bfd3d9;
  font-size: 16px;
  line-height: 1.9;
}

.policy-back {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero,
  .about-layout,
  .delivery-showcase,
  .split,
  .band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .delivery-photo {
    min-height: 420px;
  }

  .service-grid,
  .service-board,
  .scenario-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slider-content {
    padding-top: 120px;
  }

  .hero-slide-panel {
    right: 24px;
    bottom: 84px;
  }
}

@media (max-width: 680px) {
  .navbar {
    width: 100%;
    margin-top: 0;
    padding: 0 16px;
  }

  .nav-cta {
    display: none;
  }

  .section,
  .footer {
    width: min(100% - 24px, 1200px);
  }

  .hero,
  .band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-slider {
    min-height: calc(100vh - 68px);
    padding: 0;
  }

  .hero-slider-content {
    width: min(100% - 32px, 760px);
    margin-left: 16px;
    padding-top: 96px;
  }

  .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(3, 14, 18, 0.82) 0%, rgba(3, 14, 18, 0.5) 46%, rgba(3, 14, 18, 0.82) 100%),
      linear-gradient(90deg, rgba(3, 14, 18, 0.34), rgba(3, 14, 18, 0.12));
  }

  .hero-slide-panel {
    left: 16px;
    right: 16px;
    bottom: 84px;
    width: auto;
    padding: 18px;
  }

  .hero-slider-controls {
    left: 16px;
    bottom: 26px;
  }

  .hero-dots button {
    width: 28px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lede,
  .band-copy p,
  .split-copy p,
  .about-copy p,
  .contact-text {
    font-size: 16px;
  }

  .hero-proof,
  .metric-grid,
  .service-grid,
  .service-board,
  .scenario-grid,
  .proof-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .delivery-photo {
    min-height: 360px;
  }

  .delivery-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .delivery-flow article,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row,
  .service-row:nth-child(2n),
  .service-row:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 48, 58, 0.1);
  }

  .service-row:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-card,
  .process-list div,
  .timeline div {
    grid-template-columns: 1fr;
  }

  .logo-card img {
    width: 112px;
    height: 112px;
  }

  .contact-panel,
  .policy-panel {
    padding: 24px;
  }
}
