/* =========================================================
   Simara — page styles (hero, loop, readings, etc.)
   ========================================================= */

/* ---------------- HERO ---------------- */
.hero { position: relative; padding-block: clamp(56px, 9vw, 110px) clamp(72px, 10vw, 130px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg .glow-a {
  position: absolute; width: 900px; height: 900px; border-radius: 50%;
  top: -360px; right: -220px;
  background: radial-gradient(circle, rgba(91,46,143,.22), rgba(91,46,143,0) 62%);
}
.hero-bg .glow-b {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  bottom: -300px; left: -200px;
  background: radial-gradient(circle, rgba(196,149,106,.20), rgba(196,149,106,0) 64%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 4.7rem);
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.hero h1 .accent {
  background: linear-gradient(115deg, var(--plum) 12%, var(--bronze) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero .lede { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--ink-45);
  display: flex; align-items: center; gap: 10px;
}
.hero-note .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 0 rgba(123,158,135,.55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(123,158,135,.5); }
  70% { box-shadow: 0 0 0 12px rgba(123,158,135,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,158,135,0); }
}
@media (prefers-reduced-motion: reduce) { .hero-note .pulse { animation: none; } }

/* The aura / face-anchor visual */
.aura {
  position: relative;
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.aura-disc {
  position: relative;
  width: min(86%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,255,255,.9) 0 6%, transparent 30%),
    radial-gradient(circle at 64% 70%, rgba(196,149,106,.85) 0 8%, transparent 46%),
    radial-gradient(circle at 50% 52%, #7b4bb8 0 30%, var(--plum) 52%, var(--plum-deep) 100%);
  box-shadow:
    0 50px 100px -40px rgba(39,17,70,.6),
    inset 0 0 60px rgba(255,255,255,.16),
    inset 0 -30px 60px rgba(27,14,51,.55);
  z-index: 2;
}
.aura-disc::after {
  content: "";
  position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 0 40px rgba(255,255,255,.12);
}
.aura-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(91,46,143,.16);
  z-index: 1;
}
.aura-ring.r1 { inset: 2%; }
.aura-ring.r2 { inset: -10%; border-color: rgba(196,149,106,.18); }
.aura-ring.r3 { inset: -22%; border-style: dashed; border-color: rgba(91,46,143,.12); }
.aura-spin { animation: spin 60s linear infinite; }
.aura-spin.rev { animation-duration: 90s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .aura-spin { animation: none; } }

.aura-tag {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px 9px 11px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap;
}
.aura-tag .ico { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; color: #fff; font-size: 12px; }
.aura-tag.t1 { top: 8%; left: -4%; }
.aura-tag.t2 { bottom: 14%; right: -6%; }
.aura-tag.t3 { bottom: -2%; left: 16%; }
.aura-float { animation: float 6s ease-in-out infinite; }
.aura-float.d1 { animation-delay: -2s; }
.aura-float.d2 { animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .aura-float { animation: none; } }

/* ---------------- THE LOOP ---------------- */
.loop-head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 72px); }
.loop-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin: 18px 0; }
.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.loop-thread {
  position: absolute; top: 40px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--bronze) 0 7px, transparent 7px 16px);
  opacity: .5;
  z-index: 0;
}
.loop-step { position: relative; z-index: 1; padding: 0 clamp(12px, 2vw, 26px); }
.loop-step:not(:last-child) { border-right: 1px solid var(--line); }
.loop-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 26px;
  position: relative;
}
.loop-num .badge {
  position: absolute; inset: -1px; border-radius: 50%;
  background: conic-gradient(from 220deg, var(--plum), var(--bronze), var(--sage), var(--plum));
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
          mask: radial-gradient(closest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  opacity: .7;
}
.loop-step h3 { font-size: 1.4rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.loop-step p { color: var(--ink-60); font-size: 1rem; }
.loop-step .tiny { display:block; margin-top: 14px; font-size: 0.82rem; color: var(--bronze-text); font-weight: 600; letter-spacing: .02em; }

/* ---------------- READINGS (bento) ---------------- */
.readings { background: linear-gradient(180deg, var(--ivory), var(--ivory-2)); }
.readings-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 46px; }
.readings-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.readings-head .lede { margin-top: 16px; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card .glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; top: -120px; right: -90px; opacity: .5; pointer-events: none; filter: blur(6px); }
.card .k-ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  margin-bottom: 20px; position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 8px 20px -10px rgba(39,17,70,.5);
}
.card .k-ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.card p { color: var(--ink-60); font-size: 0.98rem; }
.card .meta { margin-top: auto; padding-top: 20px; font-size: 0.82rem; font-weight: 600; color: var(--ink-60); display: flex; align-items: center; gap: 8px; }
.card .meta .chip { background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; color: var(--plum); }

/* span configuration */
.card.feature { grid-column: span 3; padding: 38px; }
.card.ritual  { grid-column: span 2; }

.card.feature h3 { font-size: clamp(1.7rem, 2.6vw, 2.15rem); }
.card.feature p { font-size: 1.05rem; max-width: 42ch; }
.card.feature .k-ico { width: 58px; height: 58px; border-radius: 18px; }
.card.feature .k-ico svg { width: 28px; height: 28px; }

/* illustrative example block inside feature cards */
.card .example {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.card .ex-q { font-weight: 600; color: var(--ink); font-size: 0.98rem; font-style: italic; }
.card .ex-a { color: var(--ink-60); font-size: 0.9rem; line-height: 1.5; }

/* icon color themes */
.ico-plum   { background: linear-gradient(140deg, #7b4bb8, var(--plum-deep)); }
.ico-bronze { background: linear-gradient(140deg, #d6a878, var(--bronze-700)); }
.ico-sage   { background: linear-gradient(140deg, #8fb09a, var(--sage-700)); }
.ico-ink    { background: linear-gradient(140deg, #3a3a55, var(--ink)); }
.glow-plum   { background: radial-gradient(circle, rgba(91,46,143,.20), transparent 70%); }
.glow-bronze { background: radial-gradient(circle, rgba(196,149,106,.22), transparent 70%); }
.glow-sage   { background: radial-gradient(circle, rgba(123,158,135,.22), transparent 70%); }

/* ---------------- WHY DIFFERENT ---------------- */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.why-copy h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin: 18px 0 22px; }
.why-list { list-style: none; padding: 0; display: grid; gap: 4px; }
.why-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item .mark {
  width: 14px; height: 14px; border-radius: 50%; margin-top: 7px;
  background: var(--plum);
  box-shadow: 0 0 0 5px rgba(91,46,143,.12);
}
.why-item.b .mark { background: var(--bronze); box-shadow: 0 0 0 5px rgba(196,149,106,.14); }
.why-item.s .mark { background: var(--sage); box-shadow: 0 0 0 5px rgba(123,158,135,.16); }
.why-item h3 { font-size: 1.22rem; margin-bottom: 7px; letter-spacing: -0.015em; }
.why-item p { color: var(--ink-60); font-size: 1rem; }

.compare {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}
.compare h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 22px; font-weight: 600; }
.compare-row { display: grid; gap: 14px; }
.qbubble {
  align-self: flex-end;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 18px;
  padding: 14px 18px;
  font-size: 0.98rem;
  max-width: 80%;
  margin-left: auto;
}
.abubble {
  background: linear-gradient(150deg, var(--plum), var(--plum-deep));
  color: #fff;
  border-radius: 18px 18px 18px 6px;
  padding: 18px 20px;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 90%;
  box-shadow: var(--shadow-md);
  position: relative;
}
.abubble .who { font-size: 0.74rem; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; font-weight: 600; }
.compare .foot { margin-top: 20px; font-size: 0.82rem; color: var(--ink-60); display:flex; gap:8px; align-items:center; }
.compare .foot .x { color: var(--bronze-text); font-weight: 700; }

/* ---------------- PRIVACY ---------------- */
.privacy {
  background: var(--plum-ink);
  color: rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
}
.privacy::before {
  content: ""; position: absolute; width: 800px; height: 800px; border-radius: 50%;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(91,46,143,.5), transparent 64%);
  pointer-events: none;
}
.privacy::after {
  content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%;
  bottom: -260px; left: -160px;
  background: radial-gradient(circle, rgba(196,149,106,.18), transparent 66%);
  pointer-events: none;
}
.privacy .container { position: relative; z-index: 1; }
.privacy .eyebrow { color: var(--bronze); }
.privacy .eyebrow::before { background: var(--bronze); }
.privacy-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.privacy-head h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 18px 0; }
.privacy-head p { color: rgba(255,255,255,.7); font-size: clamp(1.05rem,1.5vw,1.22rem); }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.p-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 28px;
  backdrop-filter: blur(2px);
}
.p-card .p-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center; margin-bottom: 18px; color: var(--bronze);
}
.p-card .p-ico svg { width: 22px; height: 22px; }
.p-card h3 { color: #fff; font-size: 1.16rem; margin-bottom: 9px; letter-spacing: -0.015em; }
.p-card p { color: rgba(255,255,255,0.66); font-size: 0.95rem; }
.privacy-foot {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px 26px; align-items: center;
  justify-content: space-between;
}
.privacy-foot a.linkline { color: var(--bronze); font-weight: 600; border-bottom: 1px solid rgba(196,149,106,.4); padding-bottom: 2px; }
.privacy-foot a.linkline:hover { color: #fff; border-color: #fff; }
.privacy-foot .note { color: rgba(255,255,255,.5); font-size: .86rem; max-width: 52ch; }

/* ---------------- CTA BAND ---------------- */
.cta-band { padding-block: clamp(72px, 10vw, 130px); text-align: center; position: relative; overflow: hidden; }
.cta-band .glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(91,46,143,.18), transparent 62%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 20px; }
.cta-inner p { color: var(--ink-60); font-size: clamp(1.05rem,1.6vw,1.22rem); margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   LEGAL / SUPPORT PAGES
   ========================================================= */
.page-hero { padding-block: clamp(56px, 8vw, 96px) clamp(34px, 4vw, 52px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  top: -340px; right: -180px;
  background: radial-gradient(circle, rgba(91,46,143,.16), transparent 64%); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 18px 0 16px; }
.page-hero .lede { font-size: clamp(1.05rem,1.6vw,1.2rem); }
.page-hero .updated { margin-top: 18px; font-size: 0.86rem; color: var(--ink-45); }

.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; padding-bottom: clamp(60px, 9vw, 120px); }
.legal-toc { position: sticky; top: 96px; }
.legal-toc h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); font-weight: 600; margin-bottom: 16px; }
.legal-toc ul { list-style: none; padding: 0; display: grid; gap: 9px; border-left: 1px solid var(--line); }
.legal-toc a { display: block; padding: 4px 0 4px 16px; margin-left: -1px; border-left: 2px solid transparent; font-size: 0.9rem; color: var(--ink-60); transition: color .2s, border-color .2s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--plum); border-left-color: var(--plum); }

.prose { max-width: 720px; }
.prose section { padding-top: 14px; margin-bottom: 44px; scroll-margin-top: 96px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.18rem; margin: 26px 0 10px; letter-spacing: -0.015em; }
.prose p { color: var(--ink-60); margin-bottom: 16px; }
.prose ul, .prose ol { color: var(--ink-60); margin: 0 0 18px; padding-left: 22px; display: grid; gap: 9px; }
.prose li { padding-left: 4px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a:not(.btn) { color: var(--plum); font-weight: 500; border-bottom: 1px solid rgba(91,46,143,.3); }
.prose a:not(.btn):hover { border-color: var(--plum); }
.prose .lead-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 26px; box-shadow: var(--shadow-sm); margin-bottom: 32px;
}
.prose .lead-card p:last-child { margin-bottom: 0; }
.review-flag {
  display: inline-block;
  background: rgba(196,149,106,.14);
  border: 1px dashed var(--bronze);
  color: var(--bronze-700);
  font-size: 0.82rem; font-weight: 600;
  padding: 2px 9px; border-radius: 6px;
  font-family: var(--font-body);
}
.callout {
  border-radius: var(--r-md); padding: 22px 24px; margin: 8px 0 26px;
  border: 1px solid var(--line); background: var(--white);
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
}
.callout .c-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.callout p { margin: 0; color: var(--ink-60); font-size: 0.97rem; }
.callout.plum .c-ico { background: var(--plum); }
.callout.sage .c-ico { background: var(--sage-700); }
.callout.bronze .c-ico { background: var(--bronze-700); }

/* steps for delete-account */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 16px; margin: 0 0 30px; }
.steps li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 24px 22px 70px; position: relative; box-shadow: var(--shadow-sm);
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 20px; top: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--plum); color: #fff; font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; font-size: 1rem;
}
.steps li h3 { margin: 0 0 5px; font-size: 1.1rem; }
.steps li p { margin: 0; color: var(--ink-60); font-size: 0.96rem; }

/* support contact cards */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 8px 0 40px; }
.s-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.s-card .s-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.s-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.s-card p { color: var(--ink-60); font-size: 0.97rem; margin-bottom: 18px; }
.s-card .s-link { margin-top: auto; font-weight: 600; color: var(--plum); display: inline-flex; align-items: center; gap: 8px; }
.s-card .s-link:hover { gap: 12px; }

.faq { display: grid; gap: 0; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 6px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--plum); font-weight: 400; transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 40px 22px 0; color: var(--ink-60); }
.faq .faq-body p { margin-bottom: 12px; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .aura { max-width: 440px; margin-inline: auto; order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .card.feature { grid-column: span 6; }
  .card.ritual { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links, .header-cta { display: none; }
  .site-header.nav-open .nav-toggle span { background: transparent; }
  .site-header.nav-open .nav-toggle span::before { transform: rotate(45deg); }
  .site-header.nav-open .nav-toggle span::after  { transform: rotate(-45deg); }
  .nav-toggle { display: flex; }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px var(--pad) 24px;
    border-top: 1px solid var(--line);
    background: var(--ivory);
  }
  .site-header.nav-open .mobile-nav { display: flex; }
  .mobile-nav a { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); color: var(--ink); }
  .mobile-nav .btn { margin-top: 14px; }

  .loop-steps { grid-template-columns: 1fr; gap: 12px; }
  .loop-step { padding: 24px 0; border-right: none !important; border-top: 1px solid var(--line); }
  .loop-step:first-child { border-top: none; }
  .loop-thread { display: none; }
  .loop-num { width: 64px; height: 64px; font-size: 1.25rem; margin-bottom: 18px; }

  .bento { grid-template-columns: 1fr; }
  .card.feature, .card.ritual { grid-column: span 1; }

  .privacy-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}
