:root {
  --bg: #ffffff;
  --bg-2: #f6f6f7;
  --ink: #0b0b0c;
  --ink-2: #3a3a3d;
  --muted: #6e6e73;
  --line: #e3e3e5;
  --dark: #0b0b0c;
  --dark-2: #161618;
  --dark-3: #26262a;
  --on-dark: #f2f2f3;
  --on-dark-muted: #9a9aa0;
  --pos: #1f9d55;
  --radius: 12px;
  --maxw: 1400px;
}

.industries-main .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 8px;
  transition: 0.18s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: "Inter", sans-serif;
}
.industries-main .btn-primary {
  background: var(--ink);
  color: #fff;
}
.industries-main .btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}
.industries-main .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.industries-main .btn-ghost:hover {
  border-color: var(--ink);
}
.industries-main .btn-light {
  background: #fff;
  color: var(--ink);
}
.industries-main .btn-light:hover {
  transform: translateY(-2px);
}
.industries-main .btn-ghost-d {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--dark-3);
}
.industries-main .btn-ghost-d:hover {
  border-color: var(--on-dark);
}

.industries-main .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.industries-main .narrow {
  max-width: 880px;
}
.industries-main .skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.industries-main .skip:focus {
  left: 8px;
  top: 8px;
}

.industries-main .page-hero {
  padding: 52px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.industries-main .page-hero h1 {
  /* font-size: clamp(2.2rem, 4.4vw, 3.5rem); */
  max-width: 800px;
  margin-bottom: 16px;
}
.industries-main .hero-meta span {
  font-size: 16px;
  font-weight: 500;
}
.industries-main .page-hero p.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 26px;
}
.industries-main .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.industries-main .hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.industries-main .hero-meta span::before {
  content: "\2713  ";
  color: var(--ink);
  font-weight: 700;
}

.industries-main section {
  padding: 66px 0;
}
.industries-main .sec-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
}
.industries-main .sec-head {
  max-width: 75ch;
  margin-bottom: 34px;
}
.industries-main .sec-head h2 {
  /* font-size: clamp(1.6rem, 2.7vw, 2.1rem); */
  margin-bottom: 12px;
}
.industries-main .sec-head p {
  color: var(--ink-2);
  /* font-size: 1.02rem; */
}

.industries-main .ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.industries-main .ind-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.18s ease;
  display: flex;
  flex-direction: column;
}
.industries-main .ind-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.industries-main .ind-card .inum {
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}
.industries-main .ind-card h2 {
  font-size: 1.3rem;
  margin-bottom: 9px;
}
.industries-main .ind-card p {
  /* font-size: 0.92rem; */
  color: var(--ink-2);
  margin-bottom: 16px;
  flex: 1;
}
.industries-main .ind-card .tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.industries-main .ind-card .tags span {
  font-size: 11.5px;
  font-weight: 600;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 11px;
  color: var(--ink-2);
}
.industries-main .ind-card .link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.industries-main .strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industries-main .strip .it {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--bg);
}
.industries-main .strip .it b {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.industries-main .strip .it p {
  /* font-size: 0.88rem; */
  color: var(--ink-2);
}

.industries-main .dark-sec {
  background: var(--dark);
  color: var(--on-dark);
}
.industries-main .dark-sec h2 {
  color: var(--on-dark);
}
.industries-main .dark-sec .sec-head p {
  color: var(--on-dark-muted);
}
.industries-main .dark-sec .sec-tag {
  color: var(--on-dark-muted);
}
.industries-main .flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.industries-main .flow-step {
  border: 1px solid var(--dark-3);
  border-radius: 10px;
  padding: 22px;
  background: var(--dark-2);
}
.industries-main .flow-step .num {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 11px;
}
.industries-main .flow-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--on-dark);
}
.industries-main .flow-step p {
  color: var(--on-dark-muted);
  /* font-size: 0.85rem; */
}

.industries-main .cta-band {
  background: var(--dark);
  color: var(--on-dark);
  text-align: center;
}
.industries-main .cta-band h2 {
  color: var(--on-dark);
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  margin-bottom: 13px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.industries-main .cta-band p {
  color: var(--on-dark-muted);
  max-width: 56ch;
  margin: 0 auto 24px;
}

.industries-main .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.industries-main .reveal.in {
  opacity: 1;
  transform: none;
}

.industries-main .faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.industries-main .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 21px 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: var(--ink);
}
.industries-main .faq-q .ic {
  font-size: 21px;
  transition: 0.2s;
  flex-shrink: 0;
}
.industries-main .faq-q[aria-expanded="true"] .ic {
  transform: rotate(45deg);
}
.industries-main .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.industries-main .faq-a p {
  padding-bottom: 21px;
  color: var(--ink-2);
  max-width: 72ch;
}

@media (max-width: 900px) {
  .industries-main .ind-grid {
    grid-template-columns: 1fr;
  }
  .industries-main .strip {
    grid-template-columns: 1fr 1fr;
  }
  .industries-main .flow {
    grid-template-columns: 1fr 1fr;
  }
  .industries-main .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-main section {
    padding: 48px 0;
  }
}
@media (max-width: 560px) {
  .industries-main .strip,
  .industries-main .flow {
    grid-template-columns: 1fr;
  }
}

.industries-main .problem {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.industries-main .problem h2 {
  /* font-size: clamp(1.7rem, 2.9vw, 2.3rem); */
  margin-bottom: 16px;
  max-width: 30ch;
}
.industries-main .problem p {
  /* font-size: 1.06rem; */
  color: var(--ink-2);
  max-width: 66ch;
}
.industries-main .risk-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.industries-main .risk {
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 15px;
  color: var(--ink-2);
}

.industries-main .out-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 6px;
}
.industries-main .out {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--bg);
}
.industries-main .out b {
  font-family: "Sora", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.industries-main .out p {
  /* font-size: 0.92rem; */
  color: var(--ink-2);
}

.industries-main .track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industries-main .track-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  transition: 0.18s ease;
}
.industries-main .track-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.industries-main .track-card .n {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}
.industries-main .track-card h3 {
  /* font-size: 1.02rem; */
  margin-bottom: 6px;
}
.industries-main .track-card p {
  /* font-size: 0.85rem; */
  color: var(--muted);
}

.industries-main .sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.industries-main .sol-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  transition: 0.18s ease;
  display: flex;
  flex-direction: column;
}
.industries-main .sol-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.industries-main .sol-card .n {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}
.industries-main .sol-card h3 {
  /* font-size: 1.1rem; */
  margin-bottom: 8px;
}
.industries-main .sol-card p {
  /* font-size: 0.88rem; */
  color: var(--ink-2);
  margin-bottom: 14px;
  flex: 1;
}
.industries-main .sol-card .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.industries-main .use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.industries-main .use {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}
.industries-main .use h3 {
  /* font-size: 1.04rem; */
  margin-bottom: 6px;
}
.industries-main .use p {
  /* font-size: 0.87rem; */
  color: var(--muted);
}

.industries-main .flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.industries-main .flow-step {
  border: 1px solid var(--dark-3);
  border-radius: 10px;
  padding: 20px;
  background: var(--dark-2);
}
.industries-main .flow-step .num {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 11px;
}
.industries-main .flow-step h3 {
  /* font-size: 0.98rem; */
  margin-bottom: 6px;
  color: var(--on-dark);
}
.industries-main .flow-step p {
  color: var(--on-dark-muted);
  /* font-size: 0.83rem; */
}

.industries-main .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.industries-main .why {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: var(--bg);
}
.industries-main .why .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  /* background: var(--ink); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}
.industries-main .why .ic img {
  width: 100%;
}
.industries-main .why h3 {
  /* font-size: 1.04rem; */
  margin-bottom: 4px;
}
.industries-main .why p {
  /* font-size: 0.89rem; */
  color: var(--ink-2);
}

.industries-main .rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.industries-main .rel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  transition: 0.18s ease;
}
.industries-main .rel:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.industries-main .rel h3 {
  /* font-size: 1.02rem; */
  margin-bottom: 5px;
}
.industries-main .rel p {
  /* font-size: 0.84rem; */
  color: var(--muted);
}
.industries-main .rel .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 9px;
  display: inline-block;
}

@media (max-width: 900px) {
  .industries-main .track-grid,
  .use-grid,
  .sol-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-main .out-grid {
    grid-template-columns: 1fr;
  }
  .industries-main .why-grid {
    grid-template-columns: 1fr;
  }
  .industries-main .flow {
    grid-template-columns: 1fr;
  }
  .industries-main .rel-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .industries-main .track-grid,
  .use-grid,
  .sol-grid {
    grid-template-columns: 1fr;
  }
}
