/* ═══════════════════════════════════════════════════════════════════════
   Insider Pass — page-scoped stylesheet (.ins- prefix).
   Standalone by design: NOT part of the Tailwind build, no site.css edits.
   Uses the Coastal Curator tokens (--cc-*) defined in site.css, with a
   local gold accent for the membership identity.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --ins-gold: #c9a24b;
  --ins-gold-soft: #f5ecd7;
  --ins-ink: #0f2e2a;
  --ins-teal-deep: #01332d;
}

/* ── Type helpers ─────────────────────────────────────────────────────── */

.ins-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cc-primary, #005248);
  margin: 0 0 .8rem;
}
.ins-eyebrow-light { color: #8fd6c9; }

.ins-h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 2rem;
}

.ins-smallprint {
  color: #6b7280;
  font-size: .82rem;
  margin: .6rem 0 0;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

.ins-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cc-primary, #005248);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: 999px;
  padding: .85rem 2.1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 82, 72, .28);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.ins-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 82, 72, .34); opacity: .96; color: #fff; }
.ins-btn-lg { font-size: 1.08rem; padding: 1.05rem 2.8rem; }
.ins-btn-gold {
  background: linear-gradient(135deg, var(--ins-gold) 0%, #b58a2f 100%);
  color: var(--ins-teal-deep);
  box-shadow: 0 6px 20px rgba(181, 138, 47, .4);
}
.ins-btn-gold:hover { color: var(--ins-teal-deep); box-shadow: 0 10px 26px rgba(181, 138, 47, .48); }

/* ── Intro ────────────────────────────────────────────────────────────── */

.ins-intro { max-width: 46rem; margin: 0 auto; text-align: center; }

.ins-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--ins-gold-soft);
  color: #8a6d23;
  border: 1px solid #e5d5a8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: .45rem 1.1rem;
  margin-bottom: 1.4rem;
}

.ins-intro h2 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  color: #111827;
  margin: 0 0 1.2rem;
}
.ins-intro h2 span { color: var(--cc-primary, #005248); }

.ins-intro-lede {
  color: #4b5563;
  font-size: 1.13rem;
  line-height: 1.75;
  margin: 0 0 1.8rem;
}

.ins-cta-inline { margin: 0; }

/* ── Dark teal band (live teaser / who) ───────────────────────────────── */

.ins-band {
  background: linear-gradient(150deg, var(--ins-teal-deep) 0%, var(--cc-primary, #005248) 55%, #0a6b5f 100%);
  padding: 3.4rem 0 3.8rem;
  color: #e6f4f1;
}
.ins-band-soft {
  background: #f4f8f7;
  color: #1f2937;
  padding: 3.2rem 0;
}
.ins-band-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.8rem;
}
.ins-band-note {
  max-width: 44rem;
  color: #bfe3db;
  font-size: .95rem;
  line-height: 1.7;
  margin: 1.6rem 0 0;
}
.ins-band-note strong { color: #fff; }

/* ── Day cards (teaser + hub outlook) ─────────────────────────────────── */

.ins-teaser-grid,
.ins-outlook-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}
@media (max-width: 720px) {
  .ins-teaser-grid, .ins-outlook-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ins-teaser-grid .ins-day-locked:nth-child(n+4) { display: none; }
}

.ins-day {
  background: #fff;
  border-radius: 14px;
  padding: 1rem .9rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.ins-day-name { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #6b7280; margin: 0 0 .3rem; }
.ins-day-score { font-size: 1.9rem; font-weight: 800; color: var(--cc-primary, #005248); margin: 0; line-height: 1.1; }
.ins-day-label { font-size: .78rem; color: #374151; margin: .25rem 0 0; }
.ins-day-meta { font-size: .72rem; color: #9ca3af; margin: .3rem 0 0; }

.ins-day-open { box-shadow: 0 8px 22px rgba(0, 0, 0, .25); }

.ins-day-locked {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  backdrop-filter: blur(2px);
}
.ins-day-locked .ins-day-name { color: #9fcdc3; }
.ins-day-locked .ins-day-score { color: rgba(255, 255, 255, .45); letter-spacing: .1em; }
.ins-day-locked .ins-day-label {
  color: var(--ins-gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  justify-content: center;
}

/* hub tiers */
.ins-day-great { border-top: 3px solid #16a34a; }
.ins-day-good  { border-top: 3px solid #d97706; }
.ins-day-fair  { border-top: 3px solid #9ca3af; }

/* ── Feature grid ─────────────────────────────────────────────────────── */

.ins-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 900px) { .ins-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .ins-feature-grid { grid-template-columns: 1fr; } }

.ins-feature {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ins-feature:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(15, 46, 42, .1); }
.ins-feature h4 { font-size: 1.05rem; font-weight: 700; color: #111827; margin: .65rem 0 .5rem; }
.ins-feature p { color: #4b5563; font-size: .92rem; line-height: 1.65; margin: 0; }

.ins-feature-exclusive {
  background: linear-gradient(160deg, #fdfaf2 0%, #fff 60%);
  border-color: #e8d9ae;
}

.ins-feature-price {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 999px;
  padding: .28rem .8rem;
}
.ins-feature-price-gold { color: #8a6d23; background: var(--ins-gold-soft); }

/* ── Maths table ──────────────────────────────────────────────────────── */

.ins-maths {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.8rem 1.8rem 1.5rem;
}
.ins-maths table { width: 100%; border-collapse: collapse; }
.ins-maths td { padding: .65rem 0; font-size: .95rem; color: #374151; border-bottom: 1px solid #f3f4f6; }
.ins-maths td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.ins-maths-sub td { color: #6b7280; font-style: italic; }
.ins-maths-total td {
  border-bottom: none;
  padding-top: 1rem;
  color: #111827;
  font-weight: 700;
  font-size: 1.02rem;
}
.ins-maths-total td em { font-weight: 400; font-style: italic; color: #4b5563; font-size: .88rem; }
.ins-maths-total td:last-child { color: var(--cc-primary, #005248); font-size: 1.5rem; }
.ins-maths-total td span { font-size: .85rem; color: #6b7280; font-weight: 500; }

/* ── Pricing card ─────────────────────────────────────────────────────── */

.ins-price-card {
  max-width: 30rem;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--ins-teal-deep) 0%, var(--cc-primary, #005248) 70%);
  border-radius: 26px;
  padding: 2.6rem 2.4rem 2.4rem;
  text-align: center;
  color: #d9efe9;
  box-shadow: 0 24px 60px rgba(1, 51, 45, .35);
  border: 1px solid rgba(201, 162, 75, .35);
}
.ins-price { margin: .2rem 0 .4rem; color: #fff; font-weight: 800; font-size: 4.2rem; line-height: 1; }
.ins-price-currency { font-size: 2rem; vertical-align: super; }
.ins-price-dec { font-size: 2rem; }
.ins-price-per { font-size: 1.05rem; font-weight: 500; color: #9fd3c8; margin-left: .3rem; }
.ins-price-sub { color: #9fd3c8; font-size: .85rem; margin: 0 0 1.6rem; }

.ins-ticks {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  text-align: left;
}
.ins-ticks li {
  position: relative;
  padding: .5rem 0 .5rem 1.9rem;
  font-size: .93rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ins-ticks li:last-child { border-bottom: none; }
.ins-ticks li::before {
  content: "\2713";
  position: absolute;
  left: .2rem;
  color: var(--ins-gold);
  font-weight: 700;
}

.ins-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: #9fd3c8;
  font-size: .78rem;
  margin: 1.1rem 0 0;
}

/* ── Steps ────────────────────────────────────────────────────────────── */

.ins-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 720px) { .ins-steps { grid-template-columns: 1fr; } }

.ins-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
}
.ins-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--cc-primary-container, #e0f2f0);
  color: var(--cc-primary, #005248);
  font-weight: 800;
  margin-bottom: .8rem;
}
.ins-step h4 { font-size: 1rem; font-weight: 700; color: #111827; margin: 0 0 .4rem; }
.ins-step p { color: #4b5563; font-size: .9rem; line-height: 1.6; margin: 0; }

/* ── Who it's for ─────────────────────────────────────────────────────── */

.ins-who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 760px) { .ins-who-grid { grid-template-columns: 1fr; } }

.ins-who { background: #fff; border-radius: 18px; padding: 1.6rem 1.5rem; border: 1px solid #e5e7eb; }
.ins-who h4 { font-size: 1rem; font-weight: 800; margin: 0 0 .8rem; }
.ins-who-yes h4 { color: var(--cc-primary, #005248); }
.ins-who-no h4 { color: #6b7280; }
.ins-who ul { list-style: none; margin: 0; padding: 0; }
.ins-who li {
  position: relative;
  padding: .42rem 0 .42rem 1.5rem;
  color: #374151;
  font-size: .92rem;
  line-height: 1.55;
}
.ins-who-yes li::before { content: "\2713"; position: absolute; left: 0; color: var(--cc-primary, #005248); font-weight: 700; }
.ins-who-no li::before { content: "\2192"; position: absolute; left: 0; color: #9ca3af; }
.ins-who-no p { color: #6b7280; font-size: .85rem; font-style: italic; margin: .9rem 0 0; }
.ins-who a { color: var(--cc-primary, #005248); font-weight: 600; text-decoration: underline; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.ins-faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: .7rem;
  overflow: hidden;
}
.ins-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #111827;
  font-size: .97rem;
  padding: 1.05rem 1.3rem;
  list-style: none;
  position: relative;
}
.ins-faq summary::-webkit-details-marker { display: none; }
.ins-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cc-primary, #005248);
  font-size: 1.25rem;
  font-weight: 400;
}
.ins-faq details[open] summary::after { content: "\2212"; }
.ins-faq details p { color: #4b5563; font-size: .92rem; line-height: 1.7; margin: 0; padding: 0 1.3rem 1.15rem; }
.ins-faq details a { color: var(--cc-primary, #005248); font-weight: 600; text-decoration: underline; }

/* ── Hub-specific ─────────────────────────────────────────────────────── */

.ins-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.7rem 1.6rem;
}
.ins-linklist { list-style: none; margin: 0; padding: 0; }
.ins-linklist li { padding: .55rem 0; border-bottom: 1px solid #f3f4f6; color: #4b5563; font-size: .92rem; line-height: 1.6; }
.ins-linklist li:last-child { border-bottom: none; }
.ins-linklist a { color: var(--cc-primary, #005248); font-weight: 700; text-decoration: underline; }

.ins-statusband {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  background: #f0fdf9;
  border: 1px solid #c8e6e2;
  border-radius: 999px;
  padding: .65rem 1.3rem;
  font-size: .88rem;
  color: #114a43;
  margin-bottom: 2.4rem;
}
.ins-statusdot {
  width: .6rem;
  height: .6rem;
  border-radius: 999px;
  background: #16a34a;
  animation: ins-pulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .ins-statusdot { animation: none; } }
@keyframes ins-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .4); }
  50%      { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}
.ins-statusmanage { margin-left: auto; }
.ins-statusmanage button {
  background: none;
  border: none;
  color: var(--cc-primary, #005248);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.ins-outlook {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 2rem 1.8rem;
}

.ins-intraday { display: flex; flex-wrap: wrap; gap: .6rem; }
.ins-slot {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  background: #f9fafb;
  border: 1px solid #eef0f2;
  border-radius: 10px;
  padding: .5rem .8rem;
  font-size: .82rem;
}
.ins-slot-time { font-weight: 700; color: #374151; }
.ins-slot-score { font-weight: 800; color: var(--cc-primary, #005248); }
.ins-slot-detail { color: #6b7280; }

.ins-tides { display: flex; flex-wrap: wrap; gap: .5rem; }
.ins-tide {
  font-size: .82rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .35rem .95rem;
}
.ins-tide-high { background: #eff6ff; color: #1d4ed8; border: 1px solid #dbeafe; }
.ins-tide-low  { background: #ecfdf5; color: #047857; border: 1px solid #d1fae5; }

.ins-access-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; }

.ins-access {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.ins-access:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(15, 46, 42, .1); border-color: #b7dcd5; }
.ins-access-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  background: var(--cc-primary-container, #e0f2f0);
  color: var(--cc-primary, #005248);
}
.ins-access strong { display: block; color: #111827; font-size: .98rem; margin-bottom: .2rem; }
.ins-access em { display: block; color: #6b7280; font-size: .85rem; font-style: normal; line-height: 1.55; }
