:root {
  --bg-color: #f8f9fa;
  --text-color: #1a1c20;
  --accent-orange: #ff7b00;
  --accent-sage: #7ca982;
  --accent-sage-soft: rgba(124, 169, 130, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --font-family: 'Outfit', 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);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  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: 40px;
  padding: 60px 40px;
  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: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

@keyframes breathe {
  0%, 100% { transform: scale(0.8); opacity: 0.6; box-shadow: 0 0 20px var(--accent-sage); }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 60px var(--accent-sage); }
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

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

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

.btn {
  padding: 16px 32px;
  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 {
  background-color: var(--accent-orange);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
}

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

.btn-secondary {
  border: 2px solid var(--accent-sage);
  color: var(--accent-sage);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--accent-sage);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .pulse-circle { width: 80px; height: 80px; }
  .container { padding: 40px 20px; }
}
