/* =============================================
   letsthinkpositive.com — Landing Page Styles
   Brand: Deep Teal + Warm Amber | Ivory base
   ============================================= */

:root {
  --deep-teal:    #1A6B6B;
  --growth-teal:  #2D9B8A;
  --tranquil:     #A8D8D0;
  --warm-amber:   #E8A020;
  --soft-gold:    #F5C96A;
  --grounded-dark:#1C2B2B;
  --ivory:        #F8F5F0;
  --ivory-2:      #F0EDE6;
  --white:        #FFFFFF;
  --text-muted:   #999999;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--ivory);
  color: var(--grounded-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Ripple Background ── */
.bg-ripple {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ripple-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180vmax;
  height: 180vmax;
  opacity: 0.07;
}

.ripple-svg circle {
  fill: none;
  stroke: var(--deep-teal);
  stroke-width: 1;
  animation: ripple-expand 8s ease-in-out infinite;
  transform-origin: center;
}

.ripple-svg circle:nth-child(1) { r: 15%; animation-delay: 0s;   }
.ripple-svg circle:nth-child(2) { r: 25%; animation-delay: 0.8s; }
.ripple-svg circle:nth-child(3) { r: 35%; animation-delay: 1.6s; }
.ripple-svg circle:nth-child(4) { r: 45%; animation-delay: 2.4s; }
.ripple-svg circle:nth-child(5) { r: 50%; animation-delay: 3.2s; }

/* ── Main Layout ── */
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 48px;
  text-align: center;
}

/* ── Logo ── */
.logo-wrap {
  margin-bottom: 12px;
  animation: fadeDown 1s ease both;
}

.logo-symbol {
  width: 130px;
  height: 130px;
  margin: 0 auto 4px;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(26,107,107,0.18));
  animation: float 6s ease-in-out infinite;
}

.wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
}

.wm-lets     { color: var(--growth-teal); font-weight: 300; }
.wm-think    { color: var(--deep-teal);   font-weight: 600; }
.wm-positive { color: var(--warm-amber);  font-weight: 300; }
.wm-dot      { color: var(--deep-teal);   font-weight: 300; font-size: 0.7em; }

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--growth-teal);
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.tagline::before,
.tagline::after {
  content: ' — ';
  color: var(--tranquil);
}

/* ── Divider ── */
.divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warm-amber), transparent);
  margin: 40px auto;
  animation: fadeIn 1.2s ease 0.4s both;
}

/* ── Headline & Sub ── */
.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--grounded-dark);
  max-width: 640px;
  margin: 0 auto 20px;
  animation: fadeUp 1s ease 0.3s both;
}

.headline em {
  font-style: italic;
  color: var(--deep-teal);
}

.sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--grounded-dark);
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 1s ease 0.5s both;
}

/* ── Quote Block ── */
.quote-block {
  background: var(--white);
  border-left: 3px solid var(--warm-amber);
  border-radius: 0 12px 12px 0;
  padding: 20px 28px;
  max-width: 480px;
  margin: 0 auto 44px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(26,107,107,0.08);
  animation: fadeUp 1s ease 0.6s both;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--grounded-dark);
  line-height: 1.6;
  margin-bottom: 10px;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--growth-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Notify Form ── */
.notify-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-bottom: 14px;
  animation: fadeUp 1s ease 0.7s both;
}

.form-row {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 12px;
  animation: fadeUp 1s ease 0.8s both;
}

.form-row input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--tranquil);
  border-radius: 50px;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--grounded-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-row input:focus {
  border-color: var(--growth-teal);
}

.form-row input::placeholder {
  color: #aaa;
}

.btn {
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--warm-amber), var(--soft-gold));
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  animation: fadeUp 1s ease 0.85s both;
}

/* ── Success message ── */
.form-success {
  display: none;
  font-size: 0.9rem;
  color: var(--growth-teal);
  font-weight: 500;
  margin-top: 8px;
  animation: fadeIn 0.4s ease both;
}

/* ── 4 Pillars ── */
.pillars {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 680px;
  margin: 52px auto 0;
  animation: fadeUp 1s ease 1s both;
}

.pillar {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 18px;
  width: 140px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(26,107,107,0.06);
  border: 1px solid rgba(168,216,208,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,107,107,0.12);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pillar-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--deep-teal);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ── Footer ── */
.footer-bar {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid rgba(168,216,208,0.35);
  animation: fadeIn 1s ease 1.2s both;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 0.82rem;
  color: var(--growth-teal);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.social-links a:hover {
  opacity: 1;
  color: var(--warm-amber);
}

.footer-note {
  font-size: 0.75rem;
  color: #aaa;
  font-style: italic;
}

/* ── Keyframe Animations ── */
@keyframes ripple-expand {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .form-row        { flex-direction: column; }
  .btn             { width: 100%; }
  .pillar          { width: calc(50% - 8px); }
  .pillars         { gap: 12px; }
  .social-links    { gap: 12px; }
}
