:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --soft: #f5f5f7;
  --accent: #ff4f00;
  --accent-soft: #fff0e9;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
* { box-sizing: border-box; }
body { margin: 0; background: #fff; color: var(--ink); }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  margin: 12px auto 0;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, white 92%, transparent);
  backdrop-filter: blur(18px);
}
.brand span {
  width: 42px;
  height: 42px;
  padding: 5px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 14px rgb(255 79 0 / 16%);
}
.brand img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); font-size: 14px; }
.site-header nav a { text-decoration: none; }
.site-header nav a:hover { color: var(--accent); }
main { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; align-items: center; padding: 30px 4px 16px; color: var(--muted); font-size: 13px; }
.breadcrumb a { text-decoration: none; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: 38px;
  align-items: center;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: radial-gradient(circle at 90% 10%, #ffe2d4 0, transparent 38%), linear-gradient(135deg, #fff, #fffaf7);
  box-shadow: 0 20px 55px rgb(0 0 0 / 6%);
}
.eyebrow { margin: 0 0 14px; color: var(--accent); font-size: 14px; font-weight: 650; letter-spacing: .01em; }
h1 { max-width: 780px; margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: 1.04; letter-spacing: -.05em; font-weight: 600; }
.lead { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.actions a { padding: 13px 20px; border: 1px solid var(--line); border-radius: 999px; background: #fff; text-decoration: none; font-size: 14px; }
.actions a.primary { border-color: var(--accent); background: var(--accent); color: #fff; }
.trust-card { display: grid; gap: 14px; padding: 26px; border: 1px solid rgb(255 79 0 / 18%); border-radius: 22px; background: rgb(255 255 255 / 82%); }
.trust-card strong { font-size: 18px; line-height: 1.35; }
.trust-card span { padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); }
.trust-card small { color: var(--muted); line-height: 1.5; }
.content-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; padding: 64px 0 32px; }
.copy-card, .highlight-grid article, .process, .faq, .related { border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.copy-card { padding: 30px; }
.copy-card h2, .highlight-grid h2, .process h2, .faq h2, .related h2 { margin: 0; font-weight: 550; letter-spacing: -.025em; }
.copy-card p, .highlight-grid p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.highlight-grid article { padding: 24px; }
.highlight-grid h2 { font-size: 18px; }
.process { padding: 34px; margin: 0 0 32px; background: var(--soft); }
.process > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.process article { padding: 22px; border-radius: 18px; background: #fff; }
.process b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent); }
.process h3 { margin: 16px 0 8px; font-size: 17px; }
.process article p { margin: 0; color: var(--muted); line-height: 1.55; }
.faq { padding: 34px; }
.faq h2 { margin-bottom: 22px; }
.faq details { border-top: 1px solid var(--line); }
.faq summary { padding: 18px 0; cursor: pointer; font-weight: 550; }
.faq details p { margin: -3px 0 18px; color: var(--muted); line-height: 1.6; }
.related { margin: 32px 0 64px; padding: 28px 34px; }
.related h2 { font-size: 20px; }
.related div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.related a { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-size: 13px; }
.related a:hover { border-color: var(--accent); color: var(--accent); }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 26px max(24px, calc((100vw - 1080px) / 2)); border-top: 1px solid var(--line); background: var(--soft); color: var(--muted); font-size: 13px; }
footer div { display: flex; gap: 12px; }
footer strong { color: var(--ink); }
footer p { margin: 0; }
@media (max-width: 800px) {
  .site-header { align-items: flex-start; }
  .site-header nav { max-width: 78%; overflow-x: auto; padding: 10px 0; white-space: nowrap; }
  .hero { grid-template-columns: 1fr; padding: 36px 26px; }
  .content-grid { grid-template-columns: 1fr; }
  .highlight-grid, .process > div { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .site-header { width: calc(100% - 20px); margin-top: 8px; padding-inline: 10px; }
  .brand span { width: 36px; height: 36px; }
  .site-header nav { gap: 18px; font-size: 13px; }
  main { width: calc(100% - 24px); }
  .breadcrumb { padding-top: 22px; }
  h1 { font-size: 38px; }
  .hero { gap: 24px; border-radius: 22px; }
  .content-grid { padding-top: 36px; }
  .copy-card, .process, .faq, .related { padding: 24px; }
  footer { flex-direction: column; }
}
