/* Intenora — shared styles */
:root {
  --bg: #0b0f14;
  --bg-elevated: #121820;
  --bg-card: #161d27;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f5f8;
  --text-muted: #9aa8b5;
  --accent: #6ee7b7;
  --accent-soft: rgba(110, 231, 183, 0.12);
  --accent-strong: #34d399;
  --gold: #f0c674;
  --danger: #f87171;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --nav-h: 72px;
  --max: 1100px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(110, 231, 183, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(240, 198, 116, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.82);
  backdrop-filter: blur(14px);
}

.site-header .inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #2dd4bf 55%, var(--gold));
  display: grid;
  place-items: center;
  color: #0b0f14;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(110, 231, 183, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav a.signin {
  margin-left: 0.35rem;
  color: #0b0f14;
  background: var(--accent);
  font-weight: 600;
}

.nav a.signin:hover {
  background: var(--accent-strong);
  color: #0b0f14;
}

.nav a.signin.active {
  background: var(--accent-strong);
  color: #0b0f14;
}

/* —— Layout —— */
main {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.75rem 0 4rem;
}

.page-hero {
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 750;
}

h1 .accent {
  background: linear-gradient(120deg, var(--accent), #a7f3d0 40%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* —— Cards & grids —— */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav a {
    padding: 0.45rem 0.65rem;
    font-size: 0.82rem;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.section {
  margin-top: 2.75rem;
}

.section-header {
  margin-bottom: 1.25rem;
}

/* —— Landing hero —— */
.hero-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #0b0f14;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.preview-card {
  background: linear-gradient(160deg, #1a2430 0%, #121820 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.preview-card .day {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.preview-card .day strong {
  font-size: 1.05rem;
}

.preview-card .day span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.track-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.track-row .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex-shrink: 0;
}

.track-row .dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 198, 116, 0.15);
}

.track-row .label {
  flex: 1;
  color: var(--text-muted);
}

.track-row .value {
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}

.purpose-box {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(110, 231, 183, 0.2);
  font-size: 0.9rem;
}

.purpose-box strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Blog —— */
.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.blog-date {
  min-width: 4.5rem;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(110, 231, 183, 0.15);
}

.blog-date .month {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-date .day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.blog-item h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-item h2 a:hover {
  color: var(--accent);
}

.blog-read-more {
  color: var(--accent);
  font-weight: 650;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* —— Blog post article —— */
.blog-post {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.blog-post-hero {
  margin-bottom: 0.5rem;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-post-meta a {
  color: var(--accent);
  font-weight: 600;
}

.blog-post-meta a:hover {
  text-decoration: underline;
}

.blog-post-meta .tag {
  margin-bottom: 0;
}

.blog-post-body {
  max-width: 42rem;
}

.blog-post-body h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.blog-post-body p,
.blog-post-body li {
  color: var(--text-muted);
}

.blog-post-body p {
  margin: 0 0 1rem;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}

.blog-post-body li {
  margin-bottom: 0.4rem;
}

.blog-post-body strong {
  color: var(--text);
}

.blog-pullquote {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--accent-soft);
  color: var(--text) !important;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.blog-figure {
  margin: 1.35rem 0 1.75rem;
  padding: 0;
}

.blog-figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0b0f14;
}

.blog-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.blog-phone-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 1.75rem;
}

@media (min-width: 700px) {
  .blog-phone-row {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-phone-figure {
  margin: 0;
}

.phone-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.55rem 0.55rem 0.65rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #1a2330, #0d1218);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0.25rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(110, 231, 183, 0.2);
  flex-shrink: 0;
}

.phone-url {
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-frame img {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: none;
}

.blog-post-cta {
  margin-top: 2.5rem;
}

.blog-post-cta h2 {
  margin-top: 0;
}

/* —— Home: name meaning + feature CTA —— */
.name-meaning {
  margin: 0 0 1.15rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(110, 231, 183, 0.22);
  background: var(--accent-soft);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34rem;
}

.name-meaning strong {
  color: var(--text);
}

.name-meaning .name-part {
  color: var(--accent);
  white-space: nowrap;
}

.name-meaning em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-strong);
}

.feature-shots-cta {
  margin: 1.35rem 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-shots-cta a {
  color: var(--accent);
  font-weight: 650;
  margin-left: 0.35rem;
}

.feature-shots-cta a:hover {
  text-decoration: underline;
}

/* —— Home: six life categories —— */
.life-cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .life-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .life-cats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.life-cat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.life-cat-icon {
  grid-row: 1 / span 2;
  align-self: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.life-cat strong {
  font-size: 1rem;
  color: var(--text);
}

.life-cat span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.life-cats-cta {
  margin: 1.25rem 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.life-cats-cta a {
  color: var(--accent);
  font-weight: 650;
  margin-left: 0.35rem;
}

.life-cats-cta a:hover {
  text-decoration: underline;
}

.how-day-card .eyebrow {
  margin-bottom: 0.5rem;
}

.how-day-card h2 {
  margin: 0 0 0.65rem;
}

.feature-shot-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-shot-frame picture img,
.feature-shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

/* —— How to use steps —— */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding-left: 3.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(110, 231, 183, 0.25);
  color: var(--accent);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

/* —— Sign in —— */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.auth-card .sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.provider-list {
  display: grid;
  gap: 0.65rem;
}

.provider-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.provider-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.provider-btn .provider-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.35rem 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus {
  border-color: rgba(110, 231, 183, 0.45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder {
  color: #5f6d7a;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-row a {
  color: var(--accent);
  font-weight: 500;
}

.form-row a:hover {
  text-decoration: underline;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.checkbox input {
  accent-color: var(--accent);
}

.btn-block {
  width: 100%;
}

.auth-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.auth-side h2 {
  margin-bottom: 0.75rem;
}

.auth-side ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.auth-side li {
  margin-bottom: 0.55rem;
}

.auth-side li strong {
  color: var(--text);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer .inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: var(--accent);
}

/* —— Toast (signin feedback) —— */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid rgba(110, 231, 183, 0.3);
  color: var(--text);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Disabled state while Firebase auth is in progress */
.provider-btn:disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.auth-note code {
  font-size: 0.8em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

#recaptcha-container {
  min-height: 0;
}

/* —— Pricing —— */
.pricing-section {
  margin-top: 2.75rem;
}

.price-card {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.12s ease, background 0.15s ease;
  width: 100%;
}

.price-card:hover {
  border-color: rgba(110, 231, 183, 0.35);
  transform: translateY(-2px);
}

.price-card.selected,
.price-card.featured {
  border-color: rgba(110, 231, 183, 0.55);
  background: linear-gradient(160deg, rgba(110, 231, 183, 0.1), var(--bg-card) 50%);
  box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.2), var(--shadow);
}

.price-card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.2rem;
}

.price-amount {
  margin: 0 0 0.75rem !important;
  font-size: 1.85rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--text) !important;
}

.price-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(110, 231, 183, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}

.price-badge.muted {
  color: var(--gold);
  background: rgba(240, 198, 116, 0.12);
  border-color: rgba(240, 198, 116, 0.25);
}

.price-badge.hot {
  color: #0b0f14;
  background: linear-gradient(120deg, var(--accent), var(--gold));
  border: none;
}

.price-card p {
  font-size: 0.92rem;
}

.price-card .btn {
  margin-top: 1rem;
}

/* Stripe Buy Button host (payment page) */
.stripe-buy-wrap {
  margin-top: 1.1rem;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.stripe-buy-wrap stripe-buy-button {
  display: block;
  width: 100%;
}

/* Plan cards on payment page are not click-to-select buttons */
#plan-cards .price-card {
  cursor: default;
}

#plan-cards .price-card:hover {
  transform: none;
}

/* Intentions form extras */
textarea.intention-text,
textarea.milestone-text,
select.intention-category {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea.intention-text:focus,
textarea.milestone-text:focus,
select.intention-category:focus {
  border-color: rgba(110, 231, 183, 0.45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

select.intention-category {
  cursor: pointer;
}

.link-btn {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.link-btn:hover {
  text-decoration: underline;
}

.plan-select.selected {
  outline: none;
}

/* —— Landing feature screenshots —— */
.feature-shots {
  margin-top: 2.75rem;
}

.feature-shot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-shot-frame {
  background: #0b0f14;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.feature-shot-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.feature-shot-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature-shot-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-shots .grid-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 901px) {
  .feature-shots .grid-feature {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-shots .grid-feature .feature-shot:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    justify-self: center;
    width: 100%;
  }
}

/* —— Coming soon + feedback —— */
.coming-soon-section,
.feedback-section {
  margin-top: 2.75rem;
}

.feedback-card a {
  color: var(--accent);
  font-weight: 650;
  word-break: break-word;
}

.feedback-card a:hover {
  text-decoration: underline;
}

.coming-soon-card {
  background: linear-gradient(160deg, rgba(110, 231, 183, 0.08), var(--bg-card) 45%);
  border: 1px solid rgba(110, 231, 183, 0.22);
  border-radius: 20px;
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow);
}

.coming-soon-card .eyebrow {
  margin-bottom: 0.65rem;
}

.coming-soon-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.55rem;
}

.coming-soon-card > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.coming-soon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.coming-soon-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
}

.coming-soon-list .cs-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.coming-soon-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.coming-soon-list span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Auth mode switch (Sign In ↔ Sign Up) */
.auth-switch {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.auth-switch a {
  color: var(--accent);
  font-weight: 650;
  text-decoration: none;
}

.auth-switch a:hover {
  text-decoration: underline;
}

.auth-panel[hidden] {
  display: none !important;
}
