/* =====================================================================
   GS Virtual — public theme
   ---------------------------------------------------------------------
   Design language: a soft blue gradient field, white elevated cards,
   one orange accent, navy ink. Everything is driven by the custom
   properties in :root, so the admin console can borrow the same tokens
   (see admin.css) and the two stay visually related without duplicating
   values.

   Class names are unchanged from the previous stylesheet on purpose --
   the PHP markup did not need rewriting, only reskinning.
   ===================================================================== */

:root {
  --ink:        #0b0e17;
  --ink-2:      #52545a;
  --ink-3:      #8b909b;

  --accent:     #ff6600;
  --accent-ink: #cc5200;
  --accent-soft:#fff2e8;

  --line:       rgba(11,14,23,.10);
  --line-2:     rgba(11,14,23,.06);
  --card:       #ffffff;

  --field-1:    #d5e4ef;
  --field-2:    #b7cde5;
  --field-3:    #c9dae9;

  --ok:         #0f7a45;
  --ok-soft:    #e6f5ec;
  --warn:       #a86200;
  --warn-soft:  #fff4e0;
  --bad:        #c02626;
  --bad-soft:   #fdecec;

  --r-xs: 6px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(11,14,23,.05), 0 2px 8px rgba(11,14,23,.05);
  --sh-2: 0 10px 34px rgba(11,14,23,.10);
  --sh-3: 0 24px 64px rgba(11,14,23,.16);

  --container: 1180px;
  --nav-h: 66px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

/* ------------------------------- reset ------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(160deg, var(--field-1) 0%, var(--field-3) 45%, var(--field-2) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -.022em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.12rem; letter-spacing: -.01em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

code, pre, .mono { font-family: var(--mono); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Decorative wash behind the hero. Purely presentational. */
.hero-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 640px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(760px 380px at 18% 8%,  rgba(255,255,255,.85), transparent 62%),
    radial-gradient(620px 340px at 84% 0%,  rgba(255,102,0,.16),  transparent 60%),
    radial-gradient(900px 420px at 50% 30%, rgba(255,255,255,.55), transparent 70%);
}

/* -------------------------------- nav ------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-right: auto;
}
.brand:hover { color: var(--ink); }

.logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent) 0%, #ff9a4d 100%);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(255,102,0,.32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-size: .93rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(11,14,23,.05); color: var(--ink); }

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-sm);
  font-size: 1.1rem;
  padding: 7px 11px;
  cursor: pointer;
  color: var(--ink);
}

/* ------------------------------ buttons ----------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease,
              border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8534 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,102,0,.30);
}
.btn-primary:hover { color: #fff; box-shadow: 0 10px 26px rgba(255,102,0,.38); }

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--sh-1);
}
.btn-ghost:hover { border-color: rgba(255,102,0,.45); color: var(--accent-ink); }

.btn-gold {
  background: linear-gradient(135deg, #f5a623 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,166,35,.32);
}

.btn[disabled], .btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ------------------------------- hero ------------------------------- */

.page-hero {
  padding: 84px 24px 68px;
  text-align: center;
}
.push-hero { max-width: 860px; }

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 15px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line-2);
  color: var(--accent-ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lede {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.page-hero .cta-row { justify-content: center; }

.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
  font-size: .89rem;
}
.trust li { display: flex; align-items: center; gap: 7px; }
.trust li::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  border-radius: 50%;
  background: var(--ok-soft);
  box-shadow: inset 0 0 0 1px rgba(15,122,69,.28);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7a45' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* The gradient word inside a heading. */
.grad {
  background: linear-gradient(100deg, var(--accent) 0%, #ff9d4d 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------------- sections ----------------------------- */

.section { padding: 68px 24px; }

.sec-head {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}
.sec-head p { color: var(--ink-2); font-size: 1.03rem; }

/* ------------------------------- cards ------------------------------ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 20px;
}

.card {
  padding: 26px 24px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: rgba(255,102,0,.28);
}
.card h3 { margin-bottom: .4em; }
.card p  { color: var(--ink-2); font-size: .95rem; }

.ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: var(--r);
  background: var(--accent-soft);
  font-size: 1.35rem;
  line-height: 1;
}

/* ------------------------------- steps ------------------------------ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.step p { color: var(--ink-2); font-size: .95rem; }

.step-n {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9d4d 100%);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 5px 16px rgba(255,102,0,.32);
}

/* ------------------------------ badges ------------------------------ */

.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.badge {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  font-size: .89rem;
  font-weight: 500;
}

.fineprint {
  max-width: 68ch;
  margin: 22px auto 0;
  color: var(--ink-3);
  font-size: .85rem;
  text-align: center;
}

/* ------------------------------- plans ------------------------------ */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.plan ul { list-style: none; margin: 20px 0 24px; padding: 0; flex: 1; }
.plan li {
  position: relative;
  padding: 7px 0 7px 28px;
  color: var(--ink-2);
  font-size: .94rem;
  border-bottom: 1px solid var(--line-2);
}
.plan li:last-child { border-bottom: 0; }
.plan li::before {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.plan .btn { width: 100%; }

.plan-for { color: var(--ink-3); font-size: .89rem; }

.price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.price span { font-size: .95rem; font-weight: 500; color: var(--ink-3); }

.plan-pop {
  border-color: rgba(255,102,0,.42);
  box-shadow: var(--sh-2);
  transform: scale(1.02);
}
.plan-pop:hover { transform: scale(1.02) translateY(-3px); }

.pop-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--accent) 0%, #ff9d4d 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 5px 16px rgba(255,102,0,.34);
}

/* -------------------------------- faq ------------------------------- */

.faq {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  transition: border-color .15s;
}
.faq details[open] { border-color: rgba(255,102,0,.32); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg);
  transition: transform .18s;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { margin: 12px 0 0; color: var(--ink-2); font-size: .95rem; }

/* ------------------------------ snippet ----------------------------- */

.snippet {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d1220;
  box-shadow: var(--sh-3);
}
.snippet .bar {
  display: flex;
  gap: 7px;
  padding: 13px 16px;
  background: #161d2f;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.snippet .bar i { width: 11px; height: 11px; border-radius: 50%; background: #3b455c; }
.snippet .bar i:nth-child(1) { background: #ff5f57; }
.snippet .bar i:nth-child(2) { background: #febc2e; }
.snippet .bar i:nth-child(3) { background: #28c840; }

.snippet pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #d7deeb;
  font-size: .855rem;
  line-height: 1.72;
}
.tok-c { color: #6b7a94; font-style: italic; }
.tok-s { color: #ffc46b; }

/* ------------------------------- forms ------------------------------ */

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,102,0,.16);
}
textarea { min-height: 120px; resize: vertical; }
label { display: block; margin-bottom: 6px; font-size: .89rem; font-weight: 600; }

.contact-form, .crypto-card, .login-card, .acct-card, .contact-card, .devotion-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: 30px 28px;
}
.contact-form { max-width: 620px; margin-inline: auto; }
.form-row { margin-bottom: 16px; }

.alert {
  padding: 13px 16px;
  margin-bottom: 18px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  border: 1px solid transparent;
}
.alert.error, .err { background: var(--bad-soft);  color: var(--bad);  border-color: rgba(192,38,38,.22); }
.alert.ok, .ok    { background: var(--ok-soft);   color: var(--ok);   border-color: rgba(15,122,69,.22); }
.hint             { color: var(--ink-3); font-size: .85rem; margin-top: 6px; }
.hint-ok          { color: var(--ok); font-size: .87rem; font-weight: 600; }

/* ------------------------------ login ------------------------------- */

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}
.login-card { width: 100%; max-width: 400px; }
.login-card .brand { margin-bottom: 22px; }

/* ------------------------------ footer ------------------------------ */

.footer {
  margin-top: 40px;
  padding: 34px 0;
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: .9rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.links { display: flex; flex-wrap: wrap; gap: 20px; }
.links a { color: var(--ink-2); }
.links a:hover { color: var(--accent-ink); }

/* --------------------------- misc utilities ------------------------- */

.badge.tag-pop, .tag-pop {
  display: inline-block;
  padding: 3px 11px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: .76rem;
  font-weight: 700;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: .93rem;
}
.kv:last-child { border-bottom: 0; }
.kv .label { color: var(--ink-2); margin: 0; }

.amt { font-weight: 700; font-variant-numeric: tabular-nums; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: .5;
  pointer-events: none;
  z-index: -1;
}

.main { padding-bottom: 20px; }

/* ----------------------------- responsive --------------------------- */

@media (max-width: 860px) {
  .menu-btn { display: block; order: 2; }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; }

  .page-hero { padding: 56px 24px 44px; }
  .section   { padding: 50px 24px; }
  .plan-pop  { transform: none; }
  .plan-pop:hover { transform: translateY(-3px); }
}

@media (max-width: 520px) {
  .cta-row .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* =====================================================================
   Page-specific components
   ---------------------------------------------------------------------
   These appear only on the pricing, sms, contact and account pages. They
   were left unstyled when this stylesheet was first rewritten, which is
   why contact/sms/pricing looked broken next to the landing page.
   ===================================================================== */

/* --- pricing tiers (pricing.php uses .price-grid, not .plans) -------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.price {
  padding: 30px 26px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.price:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }

.price.popular {
  border-color: rgba(255,102,0,.42);
  box-shadow: var(--sh-2);
  position: relative;
}
.price.popular::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--accent) 0%, #ff9d4d 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 5px 16px rgba(255,102,0,.34);
}
.price ul { list-style: none; margin: 20px 0 24px; padding: 0; }
.price li {
  position: relative;
  padding: 7px 0 7px 28px;
  color: var(--ink-2);
  font-size: .94rem;
  border-bottom: 1px solid var(--line-2);
}
.price li:last-child { border-bottom: 0; }
.price li::before {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- crypto payment block (pricing / sms / contact) ----------------- */

.crypto-pay { text-align: center; }
.crypto-pay .sec-head { margin-bottom: 30px; }

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  text-align: left;
}
.crypto-card { display: flex; flex-direction: column; }
.crypto-card .mono {
  flex: 1;
  margin: 4px 0 18px;
  padding: 11px 13px;
  background: #f4f7fb;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: .78rem;
  line-height: 1.5;
  word-break: break-all;
  color: var(--ink-2);
}

.crypto-cta {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,.6);
  border: 1px dashed rgba(11,14,23,.16);
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: .94rem;
}

/* --- contact cards --------------------------------------------------- */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* --- devotional guide ------------------------------------------------- */

.devotion { background: rgba(255,255,255,.42); }

.devotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.devotion-card p { color: var(--ink-2); font-size: .94rem; }

.ref {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  color: var(--accent-ink);
  font-size: .84rem;
  font-weight: 600;
  font-style: italic;
}

.devotion-quote {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 26px 30px;
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  color: var(--ink-2);
  font-size: 1.02rem;
}

/* --- account dashboard bits ------------------------------------------ */

.acct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.meter {
  height: 8px;
  margin: 10px 0 6px;
  background: rgba(11,14,23,.09);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.meter > span {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent) 0%, #ff9d4d 100%);
  transition: width .4s ease;
}

.code {
  padding: 14px 16px;
  background: #0d1220;
  border-radius: var(--r-sm);
  color: #d7deeb;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.65;
}

/* --- decorative blob field (pricing.php) ----------------------------- */

.blobs { position: relative; min-height: 220px; }
.blobs .blob:nth-child(1) { width: 220px; height: 220px; left: 4%;  top: 8px;  background: var(--accent); }
.blobs .blob:nth-child(2) { width: 180px; height: 180px; right: 6%; top: 40px; background: #5b8def; }
.blobs .blob:nth-child(3) { width: 150px; height: 150px; left: 42%; bottom: 0; background: #37c2a5; }

@media (max-width: 860px) {
  .devotion-quote { padding: 20px 22px; }
  .blobs { min-height: 150px; }
}
