/* ========== Solutions (SEO crawlable) ========== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-item {
  padding: 26px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.solution-item:hover {
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.solution-sector {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.solution-item h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cn);
  line-height: 1.4;
}

.solution-item h3 a {
  color: inherit;
}

.solution-item h3 a:hover {
  color: var(--accent-strong);
}

.solution-slogan {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
}

.solution-item p:not(.solution-sector):not(.solution-slogan) {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: var(--tracking-tight);
  color: var(--text-secondary);
}

.hero-desc strong {
  font-weight: 700;
  color: var(--ink-800);
}

.about-note strong {
  font-weight: 700;
  color: var(--ink-800);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 0px);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 32px) 0 56px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 78% 42%, rgba(13, 148, 136, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 40% at 12% 70%, rgba(2, 132, 199, 0.08), transparent 65%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  animation: rise-in 0.9s var(--ease) both;
}

.hero-brand {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--ink-950);
}

.hero-tagline {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  font-weight: 500;
  letter-spacing: var(--tracking-cn);
  line-height: 1.5;
  background: linear-gradient(115deg, var(--teal-700) 0%, var(--sky-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin-top: 18px;
  max-width: 480px;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: var(--tracking-tight);
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* Hero visual stage — orderly product grid */
.hero-stage {
  justify-self: end;
  width: min(100%, 460px);
  animation: rise-in 1.05s var(--ease) 0.12s both;
}

.hero-stage-frame {
  position: relative;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-stage-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-muted);
}

.hero-stage-top .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-200);
}

.hero-stage-top .dot:nth-child(1) {
  background: #f5a5a5;
}
.hero-stage-top .dot:nth-child(2) {
  background: #f0d48a;
}
.hero-stage-top .dot:nth-child(3) {
  background: #9ad4b3;
}

.hero-stage-top em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-stage-body {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #f3f7fb 100%);
}

.hero-orbit {
  display: none;
}

.hero-chip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 88px;
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: none;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chip-accent, var(--accent));
}

.hero-chip strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.hero-chip em {
  display: block;
  margin-top: auto;
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-chip:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.hero-value {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: var(--tracking-cn);
  color: var(--ink-800);
}

.trust-line {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.28);
}

.industry-card strong {
  font-size: 1rem;
  color: var(--ink-900);
}

.industry-card span {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.solution-item h3 a {
  display: inline;
}

.sol-more {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-strong);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin-slow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== Trust strip ========== */
.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 28px 0;
}

.trust-item {
  padding: 8px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-latin);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-900);
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.focus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ink-800);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.focus-list li:hover {
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: var(--shadow-sm);
}

.focus-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
  flex-shrink: 0;
}

.about-note {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.9), rgba(239, 246, 255, 0.7));
  border: 1px solid rgba(13, 148, 136, 0.12);
}

.about-note p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(13, 148, 136, 0.1), transparent 55%),
    linear-gradient(155deg, #f8fbfd 0%, #eef5f8 55%, #e8f4f1 100%);
  color: var(--ink-900);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 100%;
}

.about-card-label {
  position: relative;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.about-card h3 {
  position: relative;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cn);
  line-height: 1.4;
  color: var(--ink-950);
}

.about-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

.about-stats div {
  padding: 14px 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
}

.about-stats strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-900);
}

.about-stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* ========== Products ========== */
.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.filter-chip:hover {
  color: var(--ink-900);
  border-color: rgba(11, 31, 51, 0.22);
}

.filter-chip.is-active {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--card-accent, var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 31, 51, 0.1);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card.is-disabled {
  cursor: default;
  background: rgba(255, 255, 255, 0.72);
}

.product-card.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.product-card.is-disabled:hover::after {
  opacity: 0;
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.product-sector {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.product-badge.soon {
  background: var(--ink-100);
  color: var(--ink-500);
}

.product-card h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cn);
  line-height: 1.4;
}

.product-card .slogan {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--card-accent, var(--accent-strong));
}

.product-card .summary {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: var(--tracking-tight);
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--ink-600);
  font-weight: 600;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-900);
}

.product-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.product-card:not(.is-disabled):hover .product-link svg {
  transform: translateX(4px);
}

/* ========== Capabilities ========== */
.cap-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.cap-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.cap-num {
  font-family: var(--font-latin);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.cap-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cn);
  line-height: 1.4;
}

.cap-body p {
  margin-top: 10px;
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: var(--tracking-tight);
}

/* ========== Contact section spacing ========== */
.section-contact {
  padding-bottom: 40px;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.contact-eyebrow {
  color: var(--accent-strong) !important;
}

.contact-eyebrow::before {
  background: var(--accent-strong);
}

.contact-band-copy h2 {
  margin-top: 12px;
}

.contact-band .contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 0;
}

.contact-band .contact-actions .btn {
  width: 100%;
  justify-content: center;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 31, 51, 0.06);
}

.contact-meta-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-meta-row span {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-meta-row strong,
.contact-meta-row a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}

.contact-meta-row a:hover {
  color: var(--accent-strong);
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stage {
    justify-self: stretch;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 48px;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-item {
    padding: 16px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-grid,
  .product-grid,
  .solution-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band .contact-actions {
    justify-content: flex-start;
  }

  .cap-row {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 24px 0;
  }
}

@media (max-width: 980px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-brand {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }

  .focus-list {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    display: block;
    margin-top: 8px;
  }

  .hero-stage-frame {
    min-height: auto;
  }

  .hero-stage-body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .hero-chip {
    min-height: 72px;
    padding: 10px;
  }

  .hero-chip strong {
    font-size: 0.72rem;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    padding-inline: 4px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .filter-chip {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip,
  .hero-orbit,
  .hero-copy,
  .hero-stage {
    animation: none;
  }
}
