:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5d6b74;
  --line: #d8e0e5;
  --surface: #ffffff;
  --soft: #f4f7f5;
  --deep: #0e1718;
  --teal: #0f8b8d;
  --mint: #7fd1b9;
  --amber: #f2a541;
  --coral: #d95d39;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
div[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Noto Sans TC",
    "Microsoft JhengHei",
    "PingFang TC",
    system-ui,
    sans-serif;
  background: var(--surface);
  line-height: 1.7;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(23, 32, 38, 0.1);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  background: rgba(23, 32, 38, 0.05);
  border-color: rgba(23, 32, 38, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  border-radius: var(--radius);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  color: #ffffff;
  background: var(--deep);
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 23, 24, 0.94) 0%, rgba(14, 23, 24, 0.72) 48%, rgba(14, 23, 24, 0.36) 100%),
    linear-gradient(180deg, rgba(14, 23, 24, 0.18) 0%, rgba(14, 23, 24, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
  align-self: end;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  position: relative;
  margin: 0;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: auto;
  pointer-events: none;
  content: "";
  border-radius: 999px;
}

.hero-visual::before {
  right: 10%;
  bottom: -10%;
  width: 58%;
  height: 24%;
  background: rgba(127, 209, 185, 0.28);
  filter: blur(30px);
}

.hero-visual::after {
  top: -8%;
  left: 2%;
  width: 72px;
  height: 72px;
  background: rgba(242, 165, 65, 0.3);
  filter: blur(18px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
  animation: floatPanel 6s ease-in-out infinite;
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(10, 18, 18, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  color: #111819;
  background: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc35b;
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  display: grid;
  max-width: 1080px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 62px 0 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-metrics div {
  padding: 20px;
  background: rgba(10, 18, 18, 0.55);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.partners {
  padding: 30px 0;
  color: #ffffff;
  background: #101717;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.partner-copy .section-kicker {
  margin-bottom: 8px;
}

.partner-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.partner-logo {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.partner-aws:hover,
.partner-aws:focus-visible {
  color: #ff9900;
}

.partner-gcp:hover,
.partner-gcp:focus-visible {
  color: #4285f4;
}

.partner-azure:hover,
.partner-azure:focus-visible {
  color: #0078d4;
}

.partner-cloudflare:hover,
.partner-cloudflare:focus-visible {
  color: #f38020;
}

.partner-kubernetes:hover,
.partner-kubernetes:focus-visible {
  color: #326ce5;
}

.partner-terraform:hover,
.partner-terraform:focus-visible {
  color: #7b42bc;
}

.visual-feature {
  padding: clamp(76px, 10vw, 118px) 0;
}

.visual-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.visual-feature h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
}

.visual-feature p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.visual-points span {
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 900;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.image-panel {
  position: relative;
  margin: 0;
}

.image-panel::before {
  position: absolute;
  inset: 10% -2% -7% 18%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 139, 141, 0.22), rgba(242, 165, 65, 0.18));
  border-radius: 28px;
  content: "";
  filter: blur(18px);
}

.image-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 58%);
  border-radius: 22px;
  content: "";
  opacity: 0;
  transform: translateX(-24%);
  transition:
    opacity 180ms ease,
    transform 520ms ease;
}

.image-panel:hover::after,
.image-panel:focus-within::after {
  opacity: 1;
  transform: translateX(24%);
}

.image-panel img {
  width: 100%;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(23, 32, 38, 0.18);
}

.service-card,
.solution-layout article,
.feature-list article,
.service-detail,
.solution-detail,
.faq-item,
.support-list div {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover,
.solution-layout article:hover,
.feature-list article:hover,
.service-detail:hover,
.solution-detail:hover,
.faq-item:hover,
.support-list div:hover,
.insight-card:hover,
.case-card:hover {
  border-color: rgba(15, 139, 141, 0.35);
  box-shadow: 0 18px 46px rgba(23, 32, 38, 0.11);
  transform: translateY(-4px);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background: var(--soft);
}

.intro {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.process-copy h2,
.support h2,
.contact h2,
.contact h1,
.page-hero h1,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading p,
.process-copy p,
.support p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services,
.process,
.contact {
  padding: clamp(76px, 10vw, 122px) 0;
}

.solutions,
.support {
  padding: clamp(76px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.service-card,
.solution-layout article {
  min-height: 230px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 32, 38, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  background: var(--teal);
  border-radius: var(--radius);
}

.service-card:nth-child(2) .card-icon,
.service-card:nth-child(5) .card-icon {
  background: var(--coral);
}

.service-card:nth-child(3) .card-icon,
.service-card:nth-child(6) .card-icon {
  color: #172026;
  background: var(--amber);
}

.service-card h3,
.solution-layout h3,
.timeline h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.service-card p,
.solution-layout p,
.timeline p,
.support-list span {
  margin: 0;
  color: var(--muted);
}

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

.solution-layout article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.solution-layout article::before {
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 32px;
  background: var(--teal);
  content: "";
}

.solution-layout article:nth-child(2)::before {
  background: var(--amber);
}

.solution-layout article:nth-child(3)::before {
  background: var(--coral);
}

.solution-layout article:nth-child(4)::before {
  background: var(--mint);
}

.process-grid,
.support-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.process-copy,
.contact-copy {
  position: sticky;
  top: 112px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: var(--deep);
  border-radius: 50%;
}

.timeline h3 {
  margin-top: 0;
}

.support-layout {
  align-items: center;
}

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

.support-list div {
  min-height: 150px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.contact {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(15, 139, 141, 0.94), rgba(14, 23, 24, 0.96)),
    var(--deep);
}

.contact .section-kicker,
.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  padding: 8px 12px;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  padding: 11px 12px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 139, 141, 0.14);
}

.contact-form button {
  width: 100%;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  background: transparent;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(8px);
  transition: all 300ms ease;
}

.form-status.is-visible {
  padding: 12px 16px;
  background: rgba(15, 139, 141, 0.08);
  border-color: rgba(15, 139, 141, 0.2);
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 42px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #101717;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-layout strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
}

.footer-layout p {
  max-width: 520px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.copyright {
  width: min(var(--max), calc(100% - 36px));
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 86px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(14, 23, 24, 0.98), rgba(15, 139, 141, 0.74)),
    var(--deep);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.page-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: skewY(-6deg) scale(1.1);
  transform-origin: top left;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(14, 23, 24, 0.38), rgba(14, 23, 24, 0.04));
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.architecture-map,
.stat-panel {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.page-image-panel {
  z-index: 1;
}

.page-image-panel::before {
  inset: 12% -4% -8% 12%;
  background: linear-gradient(135deg, rgba(127, 209, 185, 0.22), rgba(217, 93, 57, 0.16));
}

.page-image-panel img {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

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

.architecture-map span {
  display: grid;
  min-height: 108px;
  place-items: center;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 23, 23, 0.58);
}

.stat-panel {
  display: grid;
  place-items: center;
  text-align: center;
}

.stat-panel strong {
  display: block;
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 1;
}

.stat-panel span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 900;
  transition: color 180ms ease;
}

.text-link::after {
  margin-left: 6px;
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #0b686a;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

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

.insight-card,
.case-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 32, 38, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.insight-tag,
.case-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 6px 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  background: rgba(15, 139, 141, 0.08);
  border: 1px solid rgba(15, 139, 141, 0.16);
  border-radius: var(--radius);
}

.insight-date {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.insight-card h3,
.case-card h3 {
  margin: 18px 0 12px;
  font-size: 1.24rem;
  line-height: 1.34;
}

.insight-card p,
.case-desc {
  margin: 0;
  color: var(--muted);
}

.insight-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.case-card {
  min-height: 360px;
}

.case-header {
  display: grid;
  gap: 12px;
}

.case-card h3 {
  margin: 0;
}

.case-desc {
  margin-top: 16px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.case-metric {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-num,
.metric-label {
  display: block;
}

.metric-num {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.content-section {
  padding: clamp(76px, 10vw, 118px) 0;
}

.feature-list,
.detail-grid,
.service-detail-grid,
.solution-detail-list,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.feature-list article,
.detail-grid div,
.service-detail,
.solution-detail,
.faq-item {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 32, 38, 0.06);
}

.feature-list h3,
.service-detail h3,
.solution-detail h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.32;
}

.feature-list p,
.service-detail p,
.solution-detail p,
.faq-item p,
.detail-grid span {
  margin: 0;
  color: var(--muted);
}

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

.service-detail ul,
.solution-detail ul,
.handoff-list {
  margin: 18px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.service-detail li,
.solution-detail li,
.handoff-list li {
  margin-top: 8px;
}

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

.detail-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

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

.solution-detail {
  display: grid;
  gap: 12px;
}

.solution-detail .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 6px 9px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ops-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.ops-row {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  gap: 1px;
  background: var(--line);
}

.ops-row > * {
  padding: 18px;
  background: #ffffff;
}

.ops-row.header > * {
  color: #ffffff;
  font-weight: 900;
  background: var(--deep);
}

.ops-row strong {
  color: var(--ink);
}

.ops-row span {
  color: var(--muted);
}

.cta-band {
  padding: clamp(58px, 8vw, 88px) 0;
  color: #ffffff;
  background: linear-gradient(120deg, var(--deep), var(--teal));
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-layout p:not(.section-kicker) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-page {
  min-height: 100vh;
  padding-top: 150px;
}

.contact-page .contact-copy {
  position: static;
}

.contact-page .contact-layout {
  align-items: center;
}

.contact-visual {
  width: min(100%, 440px);
  margin: 28px 0 0;
}

.contact-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.commitment-card {
  margin-top: 24px;
  padding: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.commitment-card h3 {
  margin: 0 0 16px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.commitment-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commitment-card li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 3px solid var(--amber);
}

.commitment-card strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.commitment-card span {
  color: rgba(255, 255, 255, 0.78);
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding-top: 112px;
  }

  .intro-grid,
  .hero-main,
  .visual-feature-grid,
  .process-grid,
  .support-layout,
  .contact-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
    transform: none;
  }

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

  .partner-layout {
    grid-template-columns: 1fr;
  }

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

  .process-copy,
  .contact-copy {
    position: static;
  }

  .service-grid,
  .solution-layout,
  .feature-list,
  .detail-grid,
  .service-detail-grid,
  .solution-detail-list,
  .faq-grid,
  .insight-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-row.header {
    display: none;
  }

  .ops-table {
    background: transparent;
    border: none;
    gap: 16px;
  }

  .ops-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 32px));
    padding: 106px 0 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual figcaption {
    right: 14px;
    bottom: 14px;
  }

  .hero-metrics,
  .service-grid,
  .solution-layout,
  .support-list,
  .contact-form,
  .feature-list,
  .detail-grid,
  .service-detail-grid,
  .solution-detail-list,
  .faq-grid,
  .insight-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 118px 0 58px;
  }

  .architecture-map {
    grid-template-columns: 1fr;
  }

  .architecture-map,
  .stat-panel {
    min-height: 220px;
  }

  .cta-layout {
    display: grid;
  }

  .hero-metrics {
    margin-top: 38px;
  }

  .hero-metrics div {
    padding: 16px;
  }

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

  .partner-logo {
    min-height: 58px;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .service-card,
  .solution-layout article {
    min-height: 210px;
  }

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

  .contact-form .full {
    grid-column: auto;
  }

  .footer-layout {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}
