/* Buyer / AEO pages: same Amano tokens as the marketing site. */
:root {
  --slate: #26303A;
  --slate-mid: #3C4A56;
  --slate-light: #5A6A78;
  --cyan: #4DC0E0;
  --cyan-dark: #2FA3C4;
  --cyan-ink: #17708C;
  --cyan-hover: #35ACD0;
  --cyan-pale: #E8F7FC;
  --white: #FFFFFF;
  --off-white: #F7F9FA;
  --border: #DDE3E8;
  --text-muted: #5F7182;
  --font: -apple-system, "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--cyan-ink); text-underline-offset: 3px; }
a:hover { color: #0f5369; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--cyan); color: var(--slate); padding: 12px 20px;
  border-radius: 0 0 8px 0; font-size: 14px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(38,48,58,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 5%; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 18px; font-weight: 700; letter-spacing: -0.03em; color: #fff; text-decoration: none; }
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; margin-right: 22px; }
.nav-links a { color: rgba(255,255,255,0.74); text-decoration: none; font-size: 13px; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--cyan); color: var(--slate); border: none;
  padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--cyan-hover); }

.hero { background: var(--slate); color: #fff; padding: 56px 5% 48px; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(77,192,224,0.12); border: 1px solid rgba(77,192,224,0.25);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 48px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.68); line-height: 1.65; max-width: 640px; }

.page { max-width: 760px; margin: 0 auto; padding: 48px 5% 24px; }
.answer {
  background: var(--cyan-pale); border: 1px solid rgba(77,192,224,0.35);
  border-radius: 12px; padding: 22px 22px 18px; margin-bottom: 36px;
}
.answer-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-ink); margin-bottom: 8px;
}
.answer p { font-size: 16px; color: var(--slate-mid); margin-bottom: 10px; }
.answer p:last-child { margin-bottom: 0; }

.page h2 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.25; margin: 36px 0 12px;
}
.page p, .page li { font-size: 16px; color: var(--slate-light); }
.page p { margin-bottom: 14px; }
.page ul, .page ol { padding-left: 1.2em; margin: 0 0 16px; }
.page li { margin-bottom: 8px; }
.page strong { color: var(--slate); font-weight: 600; }

.note {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px; margin: 20px 0 24px;
  font-size: 15px; color: var(--slate-mid);
}

.related {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 28px;
}
.related a {
  display: block; text-decoration: none; color: var(--slate);
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 16px 14px;
}
.related a:hover { border-color: rgba(77,192,224,0.55); }
.related strong { display: block; font-size: 15px; margin-bottom: 4px; }
.related span { display: block; font-size: 13px; color: var(--text-muted); font-weight: 400; }

.faq-wrap { margin: 28px 0 12px; }
.faq-item { border-top: 1px solid var(--border); padding: 18px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.cta {
  background: var(--slate); color: #fff; border-radius: 14px;
  padding: 28px 26px; margin: 36px 0 8px; text-align: left;
}
.cta h2 { color: #fff; margin-top: 0; }
.cta p { color: rgba(255,255,255,0.68); }
.btn-primary {
  display: inline-block; background: var(--cyan); color: var(--slate);
  padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 600;
  text-decoration: none; margin-top: 8px;
}
.btn-primary:hover { background: var(--cyan-hover); color: var(--slate); }

.table-wrap { overflow-x: auto; margin: 8px 0 20px; }
.page table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  min-width: 560px;
}
.page caption {
  text-align: left; font-size: 13px; font-weight: 600;
  color: var(--slate); margin-bottom: 8px;
}
.page th, .page td {
  border: 1px solid var(--border); padding: 10px 12px;
  text-align: left; vertical-align: top; color: var(--slate-light);
}
.page thead th { background: var(--off-white); color: var(--slate); font-weight: 600; }
.page tbody th { color: var(--slate); font-weight: 600; width: 22%; }
.press-photo { margin: 8px 0 24px; }
.press-photo img {
  width: 100%; max-width: 520px; height: auto;
  border: 1px solid var(--border); border-radius: 12px;
}

footer {
  background: var(--slate); color: rgba(255,255,255,0.55);
  text-align: center; padding: 32px 5%; font-size: 13px; margin-top: 48px;
}
footer a { color: var(--cyan); text-decoration: none; }
footer p { margin-bottom: 8px; }
footer p:last-child { margin-bottom: 0; }
.footer-entity {
  max-width: 720px; margin: 0 auto 14px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .related { grid-template-columns: 1fr; }
  .hero { padding: 40px 6% 36px; }
  .page { padding: 32px 6% 16px; }
}
