:root {
  --bg-color: #f8f9fa;
  --text-color: #1a1c20;
  --accent-orange: #ff7b00;
  --accent-sage: #7ca982;
  --accent-sage-soft: rgba(124, 169, 130, 0.2);
  --accent-sage-glow: rgba(124, 169, 130, 0.34);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  padding: 28px 0;
  position: relative;
}

/* Background Animated Shapes */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.6;
}

.blob {
  position: absolute;
  border-radius: 50%;
  animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-sage-soft);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 123, 0, 0.1);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(100px, 50px) scale(1.1); }
}

/* Glass Card */
.container {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 56px 40px 30px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* The Breathing Circle */
.breathing-container {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.breath-orbit {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 169, 130, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(124, 169, 130, 0.16) 0 34%, transparent 36%),
    radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.58), 0 0 70px rgba(124, 169, 130, 0.16);
  animation: orbitBreathe 7s infinite ease-in-out;
}

.pulse-circle {
  width: 118px;
  height: 118px;
  background: var(--accent-sage);
  border-radius: 50%;
  box-shadow: 0 0 38px var(--accent-sage-glow);
  animation: breathe 7s infinite ease-in-out;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.74); opacity: 0.62; box-shadow: 0 0 22px var(--accent-sage-glow); }
  48%, 56% { transform: scale(1.08); opacity: 0.96; box-shadow: 0 0 70px var(--accent-sage-glow); }
}

@keyframes orbitBreathe {
  0%, 100% { transform: scale(0.98); opacity: 0.74; }
  48%, 56% { transform: scale(1.03); opacity: 1; }
}

.breath-label {
  font-size: 0.82rem;
  line-height: 1.4;
  color: #66716a;
  margin: 18px 0 0;
  max-width: none;
}

.eyebrow {
  margin: 0 0 12px;
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.2;
  color: var(--accent-sage);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0;
  line-height: 1.08;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4d53;
  margin-bottom: 34px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  border: 2px solid rgba(255, 123, 0, 0.35);
  color: #a84f00;
  background: rgba(255, 123, 0, 0.08);
}

.btn-primary:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 123, 0, 0.4);
}

.btn-secondary {
  border: 2px solid transparent;
  color: white;
  background: var(--accent-sage);
  box-shadow: 0 10px 24px rgba(124, 169, 130, 0.32);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  filter: brightness(0.96);
}

.expert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  padding: 11px 16px 11px 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(26, 28, 32, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  color: #2f4d36;
  text-align: left;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.expert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.badge-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--accent-sage);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(124, 169, 130, 0.28);
}

.badge-kicker,
.badge-name {
  display: block;
}

.badge-kicker {
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f8f76;
}

.badge-name {
  margin-top: 3px;
  font-size: 0.98rem;
  line-height: 1.15;
  font-weight: 700;
  color: #2e3f34;
}

.legal {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 28, 32, 0.08);
  color: #5f646d;
  font-size: 0.88rem;
}

.legal details {
  position: relative;
  text-align: left;
}

.legal summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.legal summary::marker {
  content: "";
  font-size: 0;
}

.legal summary::-webkit-details-marker {
  display: none;
}

.legal summary:hover {
  color: var(--text-color);
}

.legal p {
  width: min(440px, 78vw);
  max-width: none;
  margin: 10px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  color: #4a4d53;
  line-height: 1.5;
}

@media (max-width: 480px) {
  body { align-items: flex-start; }
  .container { padding: 34px 20px 24px; }
  .breath-orbit { width: 150px; height: 150px; }
  .pulse-circle { width: 94px; height: 94px; }
  .intro { max-width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .expert-badge { margin-top: 22px; }
}
