/* ============================= */
/* ClaraWell Micro Anchor Styles */
/* ============================= */

:root {
  --navy: #0C1A2F;
  --text-muted: #6B7C93;
  --border-soft: rgba(12, 26, 47, 0.08);
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================= */
/* Layout */
/* ============================= */

.container {
  max-width: 720px;
  width: 100%;
  padding: 115px 24px 95px;
  text-align: center;
}

.section {
  margin-top: 56px;
}

/* ============================= */
/* Typography */
/* ============================= */

.domain-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 32px; /* half-spacing above pulse */
}

.brand-pulse {
  position: relative;
  width: 36px;
  height: 36px;
  margin: 0 auto 32px; /* half-spacing below pulse */
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16, 16, 37, 0.18);
  opacity: 0;
  transform: scale(1);
  animation: cwRing 1.5s ease-out forwards;
}

.pulse-ring-secondary {
  animation-delay: 0.15s;
}

@keyframes cwRing {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.8); opacity: 0.15; }
  100% { transform: scale(2); opacity: 0; }
}

h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 44px;
}


.small-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================= */
/* Image Card */
/* ============================= */

.image-card {
  margin: 60px 0 44px;
  display: flex;
  justify-content: center;
}

.image-card img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(12, 26, 47, 0.08);
}

/* ============================= */
/* Button */
/* ============================= */

.button {
  display: inline-block;
  margin-top: 36px;
  padding: 12px 26px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.25s ease;
}

.button:hover {
  background: var(--navy);
  color: #ffffff;
}

/* ============================= */
/* Institutional Footer */
/* ============================= */

/* ============================= */
/* Institutional Footer */
/* ============================= */

.footer {
  margin-top: 64px;
  padding: 48px 20px;
  width: 100%;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 12px;
  color: #4F5D75; /* darker, improved contrast */
}

.footer-copy {
  margin-bottom: 12px; /* spacing between line 1 and line 2 */
}

/* Neutralize default browser blue */
.footer a {
  color: #4F5D75;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer a:visited {
  color: #4F5D75;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* tight spacing */
}

.dot {
  opacity: 0.7; /* slightly stronger for balance */
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 768px) {
  .container {
    padding: 85px 20px 70px;
  }

  h1 {
    font-size: 28px;
  }

  .image-card img {
    max-width: 100%;
  }
}