:root {
  --navy: #0b2344;
  --blue: #2563eb;
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #667085;
  --line: #d9e2ec;
  --green: #16a34a;
}

* { box-sizing: border-box; }

body {
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.site-header {
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  background: var(--navy);
  color:white;
}

.brand {
  font-weight:800;
  letter-spacing:.08em;
}

.subbrand {
  color:#cbd5e1;
  font-size:14px;
}

main {
  padding:48px;
  max-width:1180px;
  margin:0 auto;
}

.hero {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:36px;
  align-items:start;
}

.eyebrow {
  color: var(--blue);
  font-weight:800;
  letter-spacing:.06em;
}

h1 {
  font-size:44px;
  line-height:1.15;
  margin:10px 0 18px;
}

.lead {
  color: var(--muted);
  font-size:18px;
  line-height:1.8;
}

.hero-notes {
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.hero-notes div {
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}

.hero-notes strong {
  display:block;
  color:var(--blue);
  font-size:13px;
  margin-bottom:4px;
}

.hero-notes span {
  font-weight:700;
}

.generator-card,
.panel,
.pattern-card,
.completion-hero {
  background: var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
}

.generator-card {
  padding:28px;
}

label {
  display:block;
  font-weight:700;
  margin-bottom:16px;
}

input,
textarea,
select {
  width:100%;
  margin-top:8px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:13px 14px;
  font: inherit;
  background:#fbfdff;
}

.grid2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

button,
.download {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  border:0;
  border-radius:16px;
  background:var(--blue);
  color:white;
  font-weight:800;
  padding:15px 20px;
  text-decoration:none;
  cursor:pointer;
  width:100%;
  font-size:16px;
}

button:disabled {
  opacity:.7;
  cursor:wait;
}

.form-note {
  color:var(--muted);
  font-size:13px;
  margin:12px 0 0;
}

.feature-strip {
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.feature-strip div {
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

.feature-strip strong {
  display:block;
  font-size:18px;
}

.feature-strip span {
  color:var(--muted);
  font-size:14px;
}

.completion-hero {
  padding:38px;
  margin-bottom:30px;
}

.completion-hero h1 {
  font-size:48px;
  margin-bottom:16px;
}

.completion-lead {
  font-size:20px;
  color:var(--muted);
  line-height:1.7;
  max-width:900px;
}

.source-summary {
  margin:28px 0;
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:14px;
}

.source-summary div {
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

.source-summary span {
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:6px;
}

.source-summary strong {
  display:block;
  font-size:20px;
  word-break:break-all;
}

.download-large {
  width:100%;
  min-height:76px;
  font-size:26px;
  border-radius:22px;
  background:linear-gradient(135deg, #0b2344, #2563eb);
  box-shadow:0 18px 40px rgba(37,99,235,.28);
}

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

.panel {
  padding:22px;
}

.panel h2,
.patterns h2 {
  margin-top:0;
}

.patterns {
  margin-top:32px;
}

.pattern-card {
  padding:22px;
  margin:16px 0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

.tag {
  color:var(--blue);
  font-weight:800;
  margin:0;
}

li {
  margin-bottom:8px;
}

.loading-overlay {
  position:fixed;
  inset:0;
  background:rgba(11,35,68,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:24px;
}

.loading-overlay.show {
  display:flex;
}

.loading-card {
  width:min(560px, 100%);
  background:white;
  border-radius:28px;
  padding:36px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}

.loading-card h2 {
  font-size:32px;
  margin:18px 0 10px;
}

.loading-card p {
  color:var(--muted);
  line-height:1.7;
}

.loading-small {
  font-size:13px;
}

.spinner {
  width:64px;
  height:64px;
  border-radius:50%;
  border:7px solid #dbeafe;
  border-top-color:var(--blue);
  margin:0 auto;
  animation:spin 1s linear infinite;
}

.progress-line {
  height:10px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
  margin:22px 0 10px;
}

.progress-line span {
  display:block;
  width:42%;
  height:100%;
  background:linear-gradient(90deg, #0b2344, #2563eb);
  border-radius:999px;
  animation:progress 1.4s ease-in-out infinite;
}

@keyframes spin {
  to { transform:rotate(360deg); }
}

@keyframes progress {
  0% { transform:translateX(-120%); }
  100% { transform:translateX(260%); }
}

@media (max-width: 900px) {
  .hero,
  .result-grid,
  .pattern-card,
  .feature-strip,
  .grid2,
  .hero-notes,
  .source-summary {
    grid-template-columns:1fr;
  }

  main {
    padding:24px;
  }

  .site-header {
    padding:0 20px;
  }

  h1,
  .completion-hero h1 {
    font-size:32px;
  }

  .download-large {
    font-size:20px;
  }
}

.completion-label {
  font-size: 18px;
  margin-bottom: 8px;
}

.download-cta-area {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.download-large {
  width: min(100%, 560px);
  min-height: 92px;
  padding: 18px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b2344 0%, #173b74 55%, #2563eb 100%);
  box-shadow: 0 16px 36px rgba(11, 35, 68, .22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.download-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(11, 35, 68, .28);
  filter: brightness(1.02);
}

.download-main {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.download-sub {
  font-size: 13px;
  color: rgba(255,255,255,.86);
  line-height: 1.3;
}

.loading-message {
  min-height: 30px;
  font-size: 16px;
  font-weight: 700;
}

.loading-dots::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  text-align: left;
  animation: dots 1.2s steps(4, end) infinite;
}

.loading-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 8px;
}

.loading-step {
  border: 1px solid #d9e2ec;
  background: #f8fbff;
  color: #64748b;
  border-radius: 14px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all .25s ease;
}

.loading-step.active {
  background: linear-gradient(135deg, #0b2344, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(37,99,235,.22);
  transform: translateY(-2px) scale(1.02);
}

.loading-step.done {
  background: #eef6ff;
  color: #0b2344;
  border-color: #bfdbfe;
}

.progress-line {
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin: 22px 0 14px;
  position: relative;
}

.progress-line span {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, #0b2344 0%, #2563eb 50%, #60a5fa 100%);
  border-radius: 999px;
  animation: progressSlide 1.3s ease-in-out infinite;
}

.spinner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 7px solid #dbeafe;
  border-top-color: #2563eb;
  border-right-color: #0b2344;
  margin: 0 auto;
  animation: spin 0.9s linear infinite;
}

@keyframes progressSlide {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes dots {
  0%   { content: ""; }
  25%  { content: "."; }
  50%  { content: ".."; }
  75%  { content: "..."; }
  100% { content: ""; }
}

@media (max-width: 900px) {
  .loading-steps {
    grid-template-columns: 1fr 1fr;
  }

  .download-main {
    font-size: 22px;
    text-align: center;
  }

  .download-large {
    min-height: 84px;
    padding: 16px 18px;
  }
}

/* loading overlay hard fix */
.loading-overlay[hidden] {
  display: none !important;
}

.loading-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: rgba(11, 35, 68, .76) !important;
  backdrop-filter: blur(8px);
}

.loading-overlay.show {
  display: flex !important;
}

.loading-card {
  width: min(580px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.loading-card h2 {
  font-size: 32px;
  margin: 20px 0 10px;
}

.loading-message {
  min-height: 30px;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.spinner {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 7px solid #dbeafe;
  border-top-color: #2563eb;
  border-right-color: #0b2344;
  margin: 0 auto;
  animation: spin .9s linear infinite;
}

.progress-line {
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin: 24px 0 16px;
}

.progress-line span {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, #0b2344 0%, #2563eb 50%, #60a5fa 100%);
  border-radius: 999px;
  animation: progressSlide 1.25s ease-in-out infinite;
}

.loading-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 10px;
}

.loading-step {
  border: 1px solid #d9e2ec;
  background: #f8fbff;
  color: #64748b;
  border-radius: 14px;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 800;
  transition: all .25s ease;
}

.loading-step.active {
  background: linear-gradient(135deg, #0b2344, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(37,99,235,.24);
  transform: translateY(-2px) scale(1.03);
}

.loading-step.done {
  background: #eef6ff;
  color: #0b2344;
  border-color: #bfdbfe;
}

.loading-small {
  color: #64748b;
  font-size: 13px;
}

.loading-dots::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  text-align: left;
  animation: dots 1.2s steps(4, end) infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes progressSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
  100% { content: ""; }
}

/* ===== CTA button hard fix ===== */

.download-cta-area {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.download-pdf-button,
.download-pdf-button:link,
.download-pdf-button:visited {
  width: min(100%, 560px) !important;
  min-height: 86px !important;
  padding: 18px 28px !important;
  border-radius: 22px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #0b2344 0%, #174477 52%, #2563eb 100%) !important;
  color: #fff !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  box-shadow: 0 18px 44px rgba(11, 35, 68, .28) !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}

.download-pdf-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 24px 52px rgba(11, 35, 68, .34) !important;
  filter: brightness(1.04) !important;
}

.download-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.download-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-main {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}

.download-sub {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255,255,255,.84);
  font-weight: 700;
}

/* ===== loading overlay hard fix + continuous motion ===== */

.loading-overlay[hidden] {
  display: none !important;
}

.loading-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: rgba(11, 35, 68, .78) !important;
  backdrop-filter: blur(8px);
}

.loading-overlay.show {
  display: flex !important;
}

.loading-card {
  width: min(600px, 100%);
  background: #fff;
  border-radius: 30px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.motion-ring-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
}

.motion-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px solid #dbeafe;
  border-top-color: #2563eb;
  border-right-color: #0b2344;
  animation: spin .8s linear infinite;
}

.motion-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-left-color: #60a5fa;
  border-bottom-color: #93c5fd;
  animation: spinReverse 1.25s linear infinite;
}

.motion-core {
  position: absolute;
  inset: 29px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b2344, #2563eb);
  animation: pulse 1.2s ease-in-out infinite;
}

.loading-card h2 {
  font-size: 32px;
  margin: 14px 0 10px;
}

.loading-message {
  min-height: 30px;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.progress-line {
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin: 24px 0 16px;
}

.progress-line span {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, #0b2344 0%, #2563eb 50%, #60a5fa 100%);
  border-radius: 999px;
  animation: progressSlide 1.15s ease-in-out infinite;
}

.loading-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 10px;
}

.loading-step {
  border: 1px solid #d9e2ec;
  background: #f8fbff;
  color: #64748b;
  border-radius: 14px;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 800;
  transition: all .25s ease;
}

.loading-step.active {
  background: linear-gradient(135deg, #0b2344, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(37,99,235,.24);
  transform: translateY(-2px) scale(1.03);
}

.loading-step.done {
  background: #eef6ff;
  color: #0b2344;
  border-color: #bfdbfe;
}

.loading-small {
  color: #64748b;
  font-size: 13px;
}

.loading-dots::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  text-align: left;
  animation: dots 1.2s steps(4, end) infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(.82); opacity: .78; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes progressSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
  100% { content: ""; }
}

@media (max-width: 900px) {
  .download-main {
    font-size: 22px;
  }

  .download-pdf-button {
    min-height: 80px !important;
    padding: 16px 18px !important;
  }

  .loading-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== contact footer ===== */

.contact-footer {
  margin-top: 56px;
  padding: 36px 48px;
  background: #0b2344;
  color: #fff;
}

.contact-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-footer-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.contact-footer-copy span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.7;
}

.contact-footer-links {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.contact-footer-links a,
.contact-footer-links a:link,
.contact-footer-links a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0b2344;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.contact-footer-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.24);
}

@media (max-width: 900px) {
  .contact-footer {
    padding: 32px 24px;
  }

  .contact-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-footer-links {
    width: 100%;
    flex-direction: column;
  }

  .contact-footer-links a {
    width: 100%;
  }
}

/* ===== sticky footer: keep footer at real bottom ===== */

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.contact-footer {
  margin-top: auto !important;
  flex-shrink: 0;
}

/* ===== single large contact button ===== */

.contact-footer-links-single {
  min-width: 280px;
}

.contact-main-button,
.contact-main-button:link,
.contact-main-button:visited {
  min-width: 280px !important;
  min-height: 64px !important;
  padding: 18px 34px !important;
  border-radius: 999px !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  background: #ffffff !important;
  color: #0b2344 !important;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
}

.contact-main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0,0,0,.28) !important;
}

@media (max-width: 900px) {
  .contact-footer-links-single,
  .contact-main-button {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* ===== premium top design ===== */

.honeypot-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.hero-premium {
  position: relative;
  padding: 36px 0 12px;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: -40px -80px auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,99,235,.16), rgba(37,99,235,0) 68%);
  pointer-events: none;
}

.hero-premium .hero-copy {
  padding-top: 32px;
}

.hero-premium .eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: #1d4ed8;
  font-size: 13px;
}

.hero-premium h1 {
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-top: 24px;
}

.hero-premium .lead {
  max-width: 640px;
  font-size: 18px;
  line-height: 2;
}

.hero-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-points div {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(217,226,236,.9);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
}

.hero-points span {
  color: #2563eb;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
}

.hero-points strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.hero-points p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.generator-card-premium {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(217,226,236,.9);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)),
    radial-gradient(circle at top right, rgba(37,99,235,.18), transparent 42%);
  box-shadow: 0 28px 80px rgba(15,23,42,.12);
}

.generator-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b2344, #2563eb, #60a5fa);
}

.form-header {
  margin-bottom: 22px;
}

.form-header p {
  margin: 0 0 6px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-header h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.03em;
}

.generator-card-premium input,
.generator-card-premium textarea,
.generator-card-premium select {
  min-height: 52px;
  border-radius: 16px;
  border-color: #d7e3f0;
  background: #fbfdff;
}

.generator-card-premium input:focus,
.generator-card-premium textarea:focus,
.generator-card-premium select:focus {
  outline: 3px solid rgba(37,99,235,.14);
  border-color: #2563eb;
}

.generator-card-premium button {
  min-height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b2344, #2563eb);
  box-shadow: 0 18px 40px rgba(37,99,235,.24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.generator-card-premium button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(37,99,235,.32);
}

.feature-strip-premium {
  margin-top: 42px;
}

.feature-strip-premium div {
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 36px rgba(15,23,42,.05);
}

@media (max-width: 900px) {
  .hero-points {
    grid-template-columns: 1fr;
  }
}
