/* AMOPS marketing page. Palette from the logo: navy text, blue accent. */
:root {
  --navy: #1e2733;
  --blue: #2b7bf5;
  --blue-dark: #1f63cc;
  --text: #1e2733;
  --muted: #646d78;
  --line: #e1e6ec;
  --tint: #f3f7fc;
  --tint-2: #e8f0fb;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  line-height: 1.75;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--blue);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4 {
  line-height: 1.35;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 40px;
  font-weight: 800;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 19px;
}
p {
  margin: 0 0 12px;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow {
  max-width: 820px;
}
.pc {
  display: inline;
}
.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.btn:hover {
  background: var(--tint-2);
}
.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(43, 123, 245, 0.25);
}
.btn.primary:hover {
  background: var(--blue-dark);
}
.btn.ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn.ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}
.btn.large {
  padding: 14px 26px;
  font-size: 16px;
}
.btn.light {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  box-shadow: none;
}
.btn.light:hover {
  background: var(--tint);
}
.btn.outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn.outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 66px;
}
.logo img {
  width: 150px;
  height: auto;
}
.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  gap: 10px;
}
/* Hero */
.hero {
  background:
    radial-gradient(
      1200px 600px at 80% -10%,
      var(--tint-2) 0%,
      rgba(232, 240, 251, 0) 70%
    ),
    linear-gradient(180deg, var(--tint) 0%, #fff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 24px 56px;
}
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  background: #fff;
  border: 1px solid var(--tint-2);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.lead {
  font-size: 16.5px;
  color: #3a4650;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 22px;
}
.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hero-points li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero-shot {
  margin: 0;
}
.hero-shot figcaption,
.feature-shot figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
/* Browser frame around screenshots */
.frame {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow:
    0 24px 60px rgba(30, 39, 51, 0.16),
    0 2px 6px rgba(30, 39, 51, 0.06);
}
.frame-bar {
  height: 28px;
  background: #f1f4f8;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.frame-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d3d9e0;
}
/* Scope strip */
.scope {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.scope-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  flex-wrap: wrap;
}
.scope-inner > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.scope-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scope-inner li {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--navy);
}
/* Sections */
section {
  padding: 72px 0;
}
.section-lead {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.reason {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  background: #fff;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.reason:hover {
  box-shadow: 0 14px 34px rgba(30, 39, 51, 0.08);
  transform: translateY(-2px);
}
.reason .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.reason p {
  margin: 0;
  font-size: 14.5px;
  color: #3a4650;
}
.reasons {
  background: #fff;
}
.features {
  background: var(--tint);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 28px 0;
}
.feature-row.reverse .feature-text {
  order: 2;
}
.feature-row + .feature-row {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 44px;
}
.feature-shot {
  margin: 0;
}
.tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--tint-2);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.feature-text h3 {
  font-size: 22px;
}
.feature-text p {
  color: #3a4650;
}
.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.check-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14.5px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--tint-2);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 4px;
  height: 8px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.diagram {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.mobile {
  background: linear-gradient(180deg, #fff 0%, var(--tint) 100%);
}
.mobile-inner {
  grid-template-columns: 0.7fr 1.3fr;
}
.phone {
  margin: 0 auto;
  width: 280px;
  border-radius: 34px;
  border: 8px solid var(--navy);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30, 39, 51, 0.2);
  background: #fff;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps li {
  display: flex;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
}
.steps .num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps p {
  margin: 0;
  font-size: 14.5px;
  color: #3a4650;
}
.faq dl {
  margin: 0;
}
.faq dt {
  font-weight: 700;
  padding: 18px 0 6px;
  font-size: 16.5px;
}
.faq dd {
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  color: #3a4650;
}
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1f4fb8 100%);
  color: #fff;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
}
.site-footer {
  background: var(--navy);
  color: #c9d1db;
  padding: 40px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 32px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.6;
}
.footer-brand img {
  width: 40px;
  height: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.footer-brand strong {
  color: #fff;
  font-size: 16px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer-cols h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-cols a,
.footer-cols span {
  display: block;
  color: #c9d1db;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.footer-cols a:hover {
  color: #fff;
}
.copyright {
  margin-top: 28px;
  font-size: 12.5px;
  color: #8b96a3;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}
@media (max-width: 960px) {
  .hero-grid,
  .feature-row,
  .two-col,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-text {
    order: 0;
  }
  .site-nav {
    display: none;
  }
  .mobile-inner {
    grid-template-columns: 1fr;
  }
  .phone {
    width: 240px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 23px;
  }
  .pc {
    display: none;
  }
  .grid.three,
  .steps,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 40px 24px 36px;
    gap: 28px;
  }
  section {
    padding: 52px 0;
  }
  .header-actions .btn {
    padding: 9px 12px;
    font-size: 13.5px;
  }
  .logo img {
    width: 120px;
  }
}
/* The first line of the headline stays together on desktop. */
@media (min-width: 961px) {
  h1 {
    font-size: 38px;
  }
  .nowrap {
    white-space: nowrap;
  }
}
