/* Mint Hub — shared stylesheet */

:root {
  --navy:        #0A1628;
  --navy-mid:    #0F2040;
  --teal:        #0D9488;
  --teal-light:  #14B8A6;
  --teal-glow:   rgba(13,148,136,.18);
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --r:    10px;
  --wrap: 680px;   /* narrow content column */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LANGUAGE SWITCHER ─────────────────────────────────────── */
body.en .lang-zh { display: none !important; }
body.zh .lang-en { display: none !important; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 2px;
  gap: 2px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: transparent;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: .15s;
  font-family: inherit;
}
.lang-btn.active {
  background: var(--teal);
  color: white;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
}
/* 从左侧飞入 */
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1),
              transform .75s cubic-bezier(.22,1,.36,1);
}
/* 从右侧飞入 */
.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1),
              transform .75s cubic-bezier(.22,1,.36,1);
}
/* 缩放淡入 */
.reveal-scale {
  opacity: 0;
  transform: scale(.93);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.in-view       { opacity: 1; transform: translateY(0); }
.reveal-left.in-view  { opacity: 1; transform: translateX(0); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

.reveal.delay-1,
.reveal-left.delay-1,
.reveal-right.delay-1,
.reveal-scale.delay-1 { transition-delay: .08s; }

.reveal.delay-2,
.reveal-left.delay-2,
.reveal-right.delay-2,
.reveal-scale.delay-2 { transition-delay: .18s; }

.reveal.delay-3,
.reveal-left.delay-3,
.reveal-right.delay-3,
.reveal-scale.delay-3 { transition-delay: .28s; }

.reveal.delay-4,
.reveal-left.delay-4,
.reveal-right.delay-4,
.reveal-scale.delay-4 { transition-delay: .38s; }

/* ── COMMON LAYOUT ─────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
/* 宽版容器：配图 section 用，允许图片和文字并排 */
.wrap-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SHARED TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.label-light { color: rgba(255,255,255,.55); }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--white);
  font-size: 12px; letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo-mark--sm { width: 26px; height: 26px; font-size: 10px; border-radius: 6px; }
.logo-text { font-weight: 700; font-size: 16px; color: var(--white); letter-spacing: -.2px; }
.logo-text--sm { font-size: 14px; }

.btn-dashboard-nav {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  padding: 7px 16px;
  border-radius: 7px;
  transition: background .15s;
  text-decoration: none;
}
.btn-dashboard-nav:hover { background: var(--teal-light); text-decoration: none; }

/* ── ① HERO ─────────────────────────────────────────────────── */
.s-hero {
  position: relative;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px 120px;
  overflow: hidden;
  text-align: center;
}
.s-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(13,148,136,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(13,148,136,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(40px, 9vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.5px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--teal-light); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-hint span {
  display: block;
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ── SHOWCASE SECTION ───────────────────────────────────────── */
.s-showcase {
  background: linear-gradient(180deg,
    var(--navy) 0%,
    var(--navy-mid) 55%,
    var(--gray-50) 100%);
  padding: 32px 24px 96px;
  margin-top: -2px;
}
.showcase-img {
  max-width: 940px;
  margin: 0 auto;
}

/* ── CSS DASHBOARD MOCKUP ───────────────────────────────────── */
.dash-mockup {
  width: 100%;
  background: #08152A;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.09),
    0 8px 32px rgba(0,0,0,.35),
    0 0 80px rgba(13,148,136,.12);
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.82);
  user-select: none;
}

/* browser chrome */
.dm-chrome {
  height: 38px;
  background: #050D1A;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.dm-dots { display: flex; gap: 6px; align-items: center; }
.dm-dot  { width: 11px; height: 11px; border-radius: 50%; }
.dm-dot-r { background: #FF5F57; }
.dm-dot-y { background: #FEBC2E; }
.dm-dot-g { background: #28C840; }
.dm-urlbar {
  flex: 1;
  max-width: 260px;
  margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 5px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .1px;
}
.dm-avatar {
  width: 24px; height: 24px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

/* app layout */
.dm-app {
  display: flex;
  height: 400px;
}

/* sidebar */
.dm-sidebar {
  width: 152px;
  flex-shrink: 0;
  background: #06101E;
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 18px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dm-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 0 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 10px;
}
.dm-brand-icon {
  width: 24px; height: 24px;
  background: var(--teal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.dm-brand-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.88); }
.dm-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dm-ni {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.38);
  cursor: default;
}
.dm-ni-on {
  background: rgba(13,148,136,.16);
  color: var(--teal-light);
  font-weight: 600;
}
.dm-user {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 8px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 8px;
}
.dm-user-ava {
  width: 24px; height: 24px;
  background: rgba(13,148,136,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: var(--teal-light);
  flex-shrink: 0;
}
.dm-user-name { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.7); }
.dm-user-plan { font-size: 9px; color: rgba(255,255,255,.28); }

/* main area */
.dm-main {
  flex: 1;
  overflow: hidden;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.dm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.dm-page-title { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.92); }
.dm-page-sub   { font-size: 9.5px; color: rgba(255,255,255,.3); margin-top: 2px; }
.dm-date {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  padding: 4px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

/* KPI cards */
.dm-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex-shrink: 0;
}
.dm-kpi {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.dm-kpi-label {
  font-size: 9px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.dm-kpi-value {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  letter-spacing: -.5px;
  line-height: 1.1;
}
.dm-kpi-delta { font-size: 9px; margin-bottom: 6px; }
.dm-up { color: #34D399; }

/* bar chart inside kpi */
.dm-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 32px;
}
.dm-bar {
  flex: 1;
  height: var(--h);
  background: rgba(13,148,136,.28);
  border-radius: 2px 2px 0 0;
  transition: background .2s;
}
.dm-bar-hi { background: var(--teal); }

/* sparkline svg */
.dm-spark {
  width: 100%;
  height: 38px;
}

/* products panel */
.dm-panel {
  flex: 1;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.dm-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  flex-shrink: 0;
}
.dm-panel-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.78); }
.dm-view-all    { font-size: 9px; color: var(--teal-light); }
.dm-table { flex: 1; overflow: hidden; }
.dm-row {
  display: grid;
  grid-template-columns: 2fr 1fr .65fr .8fr;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: center;
  font-size: 10px;
  color: rgba(255,255,255,.68);
}
.dm-row:last-child { border-bottom: none; }
.dm-row-head {
  font-size: 8.5px;
  font-weight: 600;
  color: rgba(255,255,255,.26);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.dm-muted { color: rgba(255,255,255,.3); }
.dm-badge {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
}
.dm-green { background: rgba(52,211,153,.12); color: #34D399; }
.dm-amber { background: rgba(251,191,36,.12);  color: #FBBF24; }

/* responsive: scale down on narrow screens */
@media (max-width: 680px) {
  .dm-app { height: auto; flex-direction: column; }
  .dm-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap;
    padding: 10px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .dm-brand { padding: 0; border: none; margin: 0; }
  .dm-nav { flex-direction: row; flex: none; gap: 2px; }
  .dm-ni { padding: 5px 9px; }
  .dm-user { display: none; }
  .dm-main { padding: 12px 14px; }
  .dm-kpis { grid-template-columns: 1fr 1fr; }
  .dm-kpis .dm-kpi:last-child { display: none; }
}

/* ── ② STATEMENT ────────────────────────────────────────────── */
.s-statement {
  padding: 96px 0;
  background: var(--white);
}
.big-statement {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
  letter-spacing: -.2px;
}
.big-statement em {
  font-style: normal;
  color: var(--teal);
}

/* ── ③ SERVICES ─────────────────────────────────────────────── */
.s-services {
  padding: 80px 0 96px;
  background: var(--gray-50);
}

/* Services full-width illustration */
.services-illustration {
  width: min(100%, 920px);
  margin: 4px auto 44px;
}
.services-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Services 2×2 grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
}
.service-card .service-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── ④ PLATFORMS ────────────────────────────────────────────── */
.s-platforms {
  padding: 80px 0;
  background: var(--navy-mid);
}
.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.platform-pill {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 10px 22px;
  border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.platform-pill:hover { border-color: var(--teal-light); background: var(--teal-glow); }
.disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  max-width: 440px;
}

/* ── ⑤ SP-API ───────────────────────────────────────────────── */
.s-spapi {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.s-spapi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(13,148,136,.14) 0%, transparent 70%);
  pointer-events: none;
}
.s-spapi h2 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 20px;
}
.spapi-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.spapi-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-light);
  border-bottom: 1.5px solid rgba(20,184,166,.4);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.spapi-link:hover { border-color: var(--teal-light); color: var(--white); text-decoration: none; }

/* SP-API: text left + image right, inside wider container */
.spapi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spapi-grid .spapi-text { /* existing text children inherit */ }
.spapi-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(13,148,136,.3));
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 52% 38%, black 42%, transparent 82%);
  mask-image: radial-gradient(ellipse 90% 80% at 52% 38%, black 42%, transparent 82%);
}

/* ── ⑥ ABOUT ────────────────────────────────────────────────── */
.s-about {
  padding: 96px 0;
  background: var(--white);
}
.s-about h2 {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 36px;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.65;
}
.check {
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* About: image left + checklist right */
.about-grid-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ── INNER PAGES (shared nav + page hero + prose) ───────────── */
/* Nav links for inner pages */
.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links-inner a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-links-inner a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-links-inner .btn-dashboard {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}
.nav-links-inner .btn-dashboard:hover { background: var(--teal-light); }

/* hamburger for inner pages */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
}
.page-hero .label { color: var(--teal-light); margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.7;
}

/* prose sections */
.s-prose { padding: 72px 0; }
.s-prose-alt { background: var(--gray-50); }
.prose h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 44px 0 12px;
  letter-spacing: -.1px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 24px 0 8px;
}
.prose p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}
.prose ul { margin: 8px 0 16px 18px; }
.prose li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 6px;
}
.prose a { color: var(--teal); }
.prose strong { color: var(--gray-900); }

.todo {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
  font-size: 13px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* ── SP-API PAGE SPECIFICS ──────────────────────────────────── */
.spapi-flow { display: flex; flex-direction: column; }
.spapi-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
}
.spapi-step:last-child { border-bottom: none; }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.spapi-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.spapi-step p  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.security-item {
  background: #F0FDFA;
  border: 1px solid rgba(13,148,136,.18);
  border-radius: var(--r);
  padding: 18px;
}
.security-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.security-item p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* btn */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: .18s;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-light); text-decoration: none; }
.btn-soon {
  background: var(--gray-100);
  color: var(--gray-400);
  border: 1.5px solid var(--gray-300);
  cursor: default;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-700);
}
.contact-detail strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-400);
  margin-bottom: 2px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .nav-links-inner {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    padding: 10px 16px 14px;
    gap: 2px;
  }
  .nav-links-inner.open { display: flex; }
  .nav-links-inner a { padding: 10px 12px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .showcase-img img { border-radius: 10px; transform: translateY(-24px); }
}

/* Mobile: collapse all grids to single column */
@media (max-width: 720px) {
  .spapi-grid,
  .about-grid-img { grid-template-columns: 1fr; gap: 32px; }

  .spapi-img     { order: 2; }
  .about-img     { order: 2; }
  .about-img img,
  .spapi-img img { max-width: 100%; margin: 0 auto; }
}
