:root {
  --navy: #0f2a44;
  --red: #d62828;
  --white: #ffffff;
  --light: #f5f7fa;
  --text: #1a1a1a;
  --muted: #5f6772;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(15, 42, 68, 0.1);
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 1001;
}

.skip-link:focus {
  top: 0;
}

h1,
h2,
h3 {
  font-family: "League Spartan", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}

.bg-light {
  background: var(--light);
}

.bg-navy {
  background: var(--navy);
}

.text-light,
.text-light p,
.text-light h2,
.text-light h3 {
  color: var(--white);
}

.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
}

.section-title {
  max-width: 760px;
  margin-bottom: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 42, 68, 0.08);
  box-shadow: 0 8px 28px rgba(15, 42, 68, 0.08);
}

.nav-wrap {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-lockup {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.brand-text {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-subtext {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  border: 1px solid #d0d8e3;
  border-radius: 999px;
  background: var(--white);
  padding: 0.65rem 1rem;
  font-weight: 700;
}

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

.primary-nav a {
  font-weight: 600;
  white-space: nowrap;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.25rem;
}

.report-access-strip {
  padding: 1.25rem 0 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(214, 40, 40, 0.1), transparent 34%),
    radial-gradient(circle at 14% 20%, rgba(15, 42, 68, 0.035), transparent 26%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
}

.report-access-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  background: var(--white);
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.report-access-copy h2 {
  margin-bottom: 0.45rem;
}

.report-access-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.report-access-form {
  display: grid;
  gap: 0.45rem;
  min-width: min(100%, 420px);
}

.report-access-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.report-access-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.report-access-controls input {
  min-width: 0;
  flex: 1 1 220px;
  height: 56px;
  max-height: 56px;
  padding: 0.9rem 1rem;
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
}

.report-access-controls input:focus {
  outline: 2px solid rgba(214, 40, 40, 0.18);
  border-color: var(--red);
}

.primary-nav a[aria-current="page"] {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-sm {
  padding: 0.62rem 0.92rem;
  font-size: 0.84rem;
}

.btn-full {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 40, 40, 0.12), transparent 35%),
    radial-gradient(circle at 12% 72%, rgba(15, 42, 68, 0.08), transparent 35%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-subhead {
  font-size: 1.1rem;
  max-width: 56ch;
}

.hero-primary-message {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.3rem 0;
}

.proof-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.proof-list li {
  background: var(--light);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-link-row a,
.tech-summary-links a {
  color: var(--navy);
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-image-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #10273d;
}

.hero-property-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 51, 0.18) 0%, rgba(11, 31, 51, 0.58) 100%),
    linear-gradient(135deg, rgba(15, 42, 68, 0.08) 0%, rgba(214, 40, 40, 0.2) 100%);
}

.dashboard-card,
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.hero-dashboard-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 360px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.hero-property-card {
  border-top: 4px solid var(--red);
}

.hero-report-card {
  padding: 1.1rem 1.2rem 1.2rem;
}

.hero-report-card .report-access-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.hero-report-card .report-access-copy h3 {
  margin-bottom: 0.45rem;
}

.hero-report-card .report-access-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-report-card .report-access-form {
  min-width: 0;
}

.homepage-proof-section {
  background: var(--white);
}

.home-record-grid,
.home-testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.home-record-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-record-card {
  border-top: 4px solid var(--red);
}

.home-record-card span {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.65rem;
  overflow-wrap: anywhere;
}

.home-record-card h3 {
  margin-bottom: 0.5rem;
}

.home-record-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.testimonial-heading {
  max-width: 760px;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 1.5rem;
}

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

.home-testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

.testimonial-quote {
  font-size: 1.02rem;
  color: var(--text);
}

.testimonial-owner {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.guest-guide-body {
  background: var(--light);
}

.guest-guide-header {
  background: var(--white);
  border-bottom: 1px solid rgba(15, 42, 68, 0.08);
}

.guest-guide-header .nav-wrap {
  min-height: 88px;
}

.guest-guide-main {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.guest-guide-shell {
  max-width: 920px;
  margin: 0 auto;
}

.guest-guide-hero {
  margin-bottom: 1.25rem;
}

.guest-guide-hero h1 {
  max-width: 13ch;
}

.guest-guide-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
  padding: 0.75rem;
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 42, 68, 0.08);
}

.guest-guide-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 42, 68, 0.14);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(15, 42, 68, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.guest-guide-nav a:hover,
.guest-guide-nav a:focus-visible {
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 42, 68, 0.12);
}

.guest-guide-nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--navy), #173b61);
  border-color: var(--navy);
  color: var(--white);
}

.bliss-jump-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 42, 68, 0.08);
}

.bliss-jump-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(15, 42, 68, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(15, 42, 68, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.bliss-jump-links a:hover,
.bliss-jump-links a:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.guest-guide-card {
  margin-bottom: 1rem;
}

.guest-guide-card a:not(.btn),
.guest-guide-hero a:not(.btn),
.bliss-figure figcaption a,
.bliss-source a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.guest-guide-card a:not(.btn):hover,
.guest-guide-hero a:not(.btn):hover,
.bliss-figure figcaption a:hover,
.bliss-source a:hover {
  color: var(--navy);
}

.guest-guide-note {
  border-left: 4px solid var(--red);
}

.guest-guide-footer {
  padding: 1.75rem 0;
  color: var(--muted);
}

.trust-intro-layout,
.underperform-layout,
.solution-layout,
.results-layout {
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.trust-card-grid {
  align-items: stretch;
}

.trust-image-card {
  height: 100%;
}

.trust-image-card .feature-image {
  min-height: 100%;
}

.trust-copy-card {
  display: grid;
  align-content: center;
}

.trust-card {
  min-height: 100%;
}

.trust-card-feature {
  border-top: 4px solid var(--red);
}

.trust-card-accent {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.underperform-image-card,
.results-image-card {
  height: 100%;
}

.underperform-image-card .feature-image,
.results-image-card .feature-image {
  min-height: 100%;
}

.underperform-grid {
  align-items: stretch;
}

.underperform-card {
  position: relative;
  overflow: hidden;
}

.underperform-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), rgba(214, 40, 40, 0.2));
}

.underperform-card > * {
  position: relative;
}

.solution-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.solution-pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 600;
}

.solution-hero-layout {
  margin-bottom: 2.75rem;
  gap: 1.5rem;
  align-items: start;
}

.solution-image-card .feature-image {
  min-height: 360px;
}

.solution-copy-block,
.solution-copy-card,
.solution-intro-card {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  margin-bottom: 0;
  min-height: auto;
}

.solution-copy-block,
.solution-intro-card {
  padding: 0.4rem 0 0.85rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: auto;
}

.solution-copy-card {
  padding: 1.3rem 1.3rem 2rem;
  align-self: start;
}

.solution-copy-block h2,
.solution-copy-card h2,
.solution-intro-card h2 {
  max-width: 12ch;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.solution-copy-block p,
.solution-copy-card p,
.solution-intro-card p {
  max-width: 54ch;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.solution-copy-block .eyebrow,
.solution-copy-card .eyebrow,
.solution-intro-card .eyebrow {
  color: var(--red);
}

.solution-copy-block .solution-pill-row span,
.solution-copy-card .solution-pill-row span,
.solution-intro-card .solution-pill-row span {
  background: var(--white);
  border: 1px solid #dce5ef;
  color: var(--navy);
}

.solution-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.tech-summary-layout,
.tech-hero-layout {
  gap: 1.6rem;
  align-items: start;
}

.tech-summary-title {
  margin-bottom: 1.5rem;
}

.tech-pillar-grid {
  align-items: stretch;
}

.tech-pillar-card {
  min-height: 100%;
}

.tech-authority-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 1.45rem;
}

.tech-positioning-line {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
}

.tech-hero-card {
  display: grid;
  align-content: start;
}

.social-feed-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.social-feed-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.social-feed-track::-webkit-scrollbar {
  display: none;
}

.social-feed-arrow {
  border: 1px solid #d7dfeb;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  padding: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.social-media-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  cursor: pointer;
  scroll-snap-align: start;
}

.social-media-empty-state {
  cursor: default;
}

.social-media-thumb-wrap {
  position: relative;
  background: #e8eef5;
}

.social-media-thumb {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.social-media-play {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 42, 68, 0.84);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.social-media-meta {
  padding: 0.85rem 1rem 0.95rem;
}

.social-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 1;
  backdrop-filter: blur(8px);
}

.social-platform-youtube {
  background: rgba(255, 255, 255, 0.92);
  color: #cc0000;
}

.social-platform-tiktok {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.social-media-meta h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.media-modal-open {
  overflow: hidden;
}

.media-modal[hidden] {
  display: none;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 34, 0.72);
}

.media-modal-dialog {
  position: relative;
  width: min(420px, calc(100% - 1rem));
  margin: 2.25vh auto 1.5vh;
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  overflow: visible;
}

.media-modal-close {
  position: absolute;
  top: -0.8rem;
  right: -0.7rem;
  border: 0;
  background: rgba(15, 42, 68, 0.88);
  color: var(--white);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  padding: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.media-modal-content {
  display: block;
}

.media-modal-stage {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.media-modal-frame {
  width: min(390px, 100%);
  aspect-ratio: 9 / 16;
  max-height: 88vh;
  background: #09192a;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(10, 24, 37, 0.26);
}

.media-modal-frame iframe,
.media-modal-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 88vh;
  border: 0;
  object-fit: cover;
}

.media-modal-frame.is-tiktok {
  width: min(360px, 100%);
  aspect-ratio: auto;
  max-height: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.media-modal-frame.is-tiktok blockquote.tiktok-embed {
  margin: 0 auto !important;
}

.media-modal-placeholder {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.media-modal-placeholder p {
  padding: 1rem;
  color: var(--white);
}

.media-modal-actions {
  width: min(390px, 100%);
  display: flex;
  justify-content: center;
  margin-top: 0.1rem;
}

.media-modal-actions .btn {
  padding: 0.54rem 0.85rem;
  font-size: 0.8rem;
  border-color: rgba(216, 227, 239, 0.42);
  color: var(--white);
  background: rgba(15, 42, 68, 0.34);
  backdrop-filter: blur(10px);
}

.media-modal-actions .btn:hover {
  background: rgba(15, 42, 68, 0.48);
  box-shadow: none;
}

.results-stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-example-grid {
  margin-top: 1rem;
}

.results-title-block {
  max-width: 860px;
}

.why-hero-layout {
  align-items: center;
}

.why-hero-image,
.feature-image-card {
  padding: 0;
  overflow: hidden;
}

.feature-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.content-image-placeholder,
.content-image-card {
  min-height: 260px;
  margin: 0;
  border: 1px solid rgba(15, 42, 68, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.08), rgba(216, 40, 40, 0.06)),
    #f8fafc;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  display: grid;
  align-content: end;
}

.content-image-placeholder::before,
.content-image-card.is-missing::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(15, 42, 68, 0.24);
  border-radius: calc(var(--radius) - 4px);
}

.content-image-card {
  min-height: 0;
  background: var(--white);
  align-content: stretch;
  display: flex;
  flex-direction: column;
}

.content-image-card img {
  display: block;
  position: static;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  flex: 0 0 auto;
}

.content-image-card.is-missing img {
  display: none;
}

.content-image-placeholder figcaption,
.content-image-card figcaption {
  position: relative;
  padding: 1.1rem;
  background: var(--white);
  border-top: 1px solid rgba(15, 42, 68, 0.08);
  flex: 1 1 auto;
}

.content-image-placeholder strong,
.content-image-card strong {
  display: block;
  color: var(--navy);
  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.content-image-placeholder span,
.content-image-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.image-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  background: var(--white);
  border: 1px solid #e7ecf3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bio-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
}

.bio-card-reverse .bio-image {
  order: 2;
}

.bio-card-reverse .bio-content {
  order: 1;
}

.bio-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #dfe7f0;
}

.bio-content {
  padding: 1.4rem;
}

.feature-card h2 {
  margin-bottom: 1rem;
}

.why-choose-home {
  align-items: center;
}

.why-choose-points {
  margin: 1.1rem 0 1.5rem;
}

.why-home-image-card {
  min-height: 100%;
}

.showcase-break {
  padding-top: 0;
}

.mid-page-showcase {
  max-width: 980px;
  margin: 0 auto;
}

.how-it-works-showcase {
  max-width: 980px;
  margin: 0 auto;
}

.dashboard-card h2 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.dashboard-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.dashboard-bars span {
  display: block;
  margin: 0.45rem 0;
  padding: 0.35rem 0.55rem;
  width: var(--bar);
  min-width: 110px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.dashboard-bars span:last-child {
  background: var(--red);
}

.card-grid,
.service-grid,
.stats-row {
  display: grid;
  gap: 1rem;
}

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

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.card,
.service-card,
.stat-card {
  background: var(--white);
  border: 1px solid #e7ecf3;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.service-card {
  border-top: 4px solid var(--red);
}

.stat-card h3 {
  color: var(--red);
}

.card-contrast {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

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

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid #e7ecf3;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.steps span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
}

.trust-note {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 62ch;
}

.calculator {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e7ecf3;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  max-width: 760px;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

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

.form-grid label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(214, 40, 40, 0.2);
  border-color: var(--red);
}

.calc-results {
  margin-top: 1rem;
  background: var(--light);
  border-radius: 10px;
  padding: 0.9rem;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e7ecf3;
  padding: 1.2rem;
}

.form-status {
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: none;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: #e8f7ed;
  color: #145c2a;
  border: 1px solid #a7ddba;
}

.form-status.invalid {
  display: block;
  background: #fff0f0;
  color: #8a1f1f;
  border: 1px solid #f2c1c1;
}

.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -5000px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--white);
  border: 1px solid #e7ecf3;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.8rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.cta-band {
  background:
    linear-gradient(130deg, var(--navy), #153960);
  color: var(--white);
}

.cta-inner {
  text-align: center;
  max-width: 760px;
}

.page-hero {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.table-scroll {
  overflow-x: auto;
}

.table-followup {
  max-width: 72ch;
  margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 42, 68, 0.08);
}

.comparison-table th {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(15, 42, 68, 0.03);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.network-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.network-filter {
  border: 1px solid #cfd7e2;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.network-filter.is-active,
.network-filter:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 0.55rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.clean-list {
  margin: 0;
  padding-left: 1.1rem;
}

.partner-grid {
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-card h3 {
  margin-bottom: 0;
}

.partner-card p {
  margin: 0;
  flex: 1;
}

.partner-link {
  font-weight: 700;
}

.numbered {
  list-style: decimal;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: #0b1f33;
  color: #d8e3ef;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1rem;
  padding: 0.8rem 0;
}

.conditions-list {
  display: grid;
  gap: 0.75rem;
}

.inline-errors {
  margin-top: 0.75rem;
}

.inline-errors li,
.conditions-list li,
.referral-side-panel li {
  margin-bottom: 0.45rem;
}

.referral-form-layout {
  align-items: start;
}

.referral-code-banner,
.referral-success-panel {
  margin-bottom: 1rem;
}

.form-section-heading {
  margin: 1.25rem 0 0.75rem;
}

.form-section-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.referral-side-panel {
  position: sticky;
  top: 96px;
}

.referral-type-card {
  min-height: 100%;
}

.referral-program-layout {
  align-items: start;
}

.referral-calculation-card,
.partner-contact-card {
  margin-top: 1rem;
}

.hospitality-image-card {
  margin-bottom: 1rem;
}

.partner-contact-card a {
  color: var(--red);
  font-weight: 700;
}

.snack-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.snack-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.snack-guest-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.snack-guest-badge-soft {
  background: rgba(214, 40, 40, 0.12);
  color: var(--navy);
}

.snack-media-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e7ecf3;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
}

.snack-yarru-image,
.snack-yarru-embed {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.snack-yarru-image {
  object-fit: cover;
}

.snack-yarru-placeholder {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 40, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}

.snack-cabin-card,
.snack-error-card {
  max-width: 780px;
}

.snack-bundle-grid {
  align-items: stretch;
}

.snack-bundle-card {
  display: grid;
  gap: 0.9rem;
}

.snack-bundle-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #edf3f8;
}

.snack-bundle-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.snack-bundle-image-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.08), rgba(214, 40, 40, 0.12)),
    linear-gradient(180deg, #f8fbff 0%, #edf3f8 100%);
}

.snack-item-list {
  color: var(--muted);
}

.snack-bundle-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.snack-price {
  font-size: 1.25rem;
  color: var(--navy);
}

.snack-quantity-control {
  display: grid;
  gap: 0.35rem;
  min-width: 88px;
}

.snack-quantity-control.is-disabled {
  opacity: 0.55;
}

.snack-quantity-control label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.snack-quantity-input {
  text-align: center;
  font-weight: 700;
}

.snack-stock-pill {
  justify-self: start;
  margin-top: auto;
}

.snack-order-layout {
  align-items: start;
}

.snack-order-summary {
  margin: 1rem 0 1.1rem;
}

.snack-order-summary p:last-child {
  margin-bottom: 0;
}

.snack-success-page {
  background:
    radial-gradient(circle at top, rgba(214, 40, 40, 0.08), transparent 26%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 42%);
}

.snack-success-shell {
  max-width: 620px;
  display: grid;
  gap: 1rem;
}

.snack-success-media .snack-media-card,
.snack-success-media .snack-yarru-image,
.snack-success-media .snack-yarru-embed,
.snack-success-media .snack-yarru-placeholder {
  min-height: 280px;
}

.snack-success-card {
  text-align: center;
  padding: 1.5rem;
}

.snack-success-title {
  font-size: clamp(2rem, 9vw, 3.1rem);
  margin-bottom: 1rem;
}

.snack-success-time {
  margin-top: 1.15rem;
  font-size: 1.06rem;
}

.snack-success-action {
  margin-top: 0.5rem;
}

.admin-body {
  background: var(--light);
}

.admin-shell {
  display: grid;
  gap: 1.5rem;
}

.admin-login {
  max-width: 760px;
}

.admin-form-stack,
.admin-form-grid {
  display: grid;
  gap: 1rem;
}

.admin-toolbar,
.admin-stats,
.admin-record-head,
.admin-meta-grid {
  display: flex;
  gap: 1rem;
}

.admin-toolbar {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.admin-stats {
  flex-wrap: wrap;
}

.admin-stats .stat-card {
  min-width: 180px;
}

.admin-section,
.admin-card-list {
  display: grid;
  gap: 1rem;
}

.admin-record-card {
  display: grid;
  gap: 1rem;
}

.admin-record-head {
  justify-content: space-between;
  align-items: flex-start;
}

.admin-meta-grid {
  flex-wrap: wrap;
  color: var(--muted);
}

.admin-meta-grid p,
.admin-notes-preview {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-active {
  background: #e8f7ed;
  color: #145c2a;
}

.status-muted {
  background: #eef2f7;
  color: #506173;
}

.status-highlight {
  background: #fff0f0;
  color: #8a1f1f;
}

.fade-in {
  opacity: 1;
  transform: none;
}

.js .fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .snack-hero-grid,
  .card-grid.four,
  .image-story-grid,
  .home-record-grid,
  .home-testimonial-grid,
  .service-grid,
  .stats-row,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .bliss-jump-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bio-card,
  .bio-card-reverse {
    grid-template-columns: 1fr;
  }

  .bio-card-reverse .bio-image,
  .bio-card-reverse .bio-content {
    order: initial;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .results-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-feed-shell,
  .media-modal-content {
    grid-template-columns: 1fr;
  }

  .social-feed-shell {
    gap: 0.75rem;
  }

  .snack-success-media .snack-media-card,
  .snack-success-media .snack-yarru-image,
  .snack-success-media .snack-yarru-embed,
  .snack-success-media .snack-yarru-placeholder {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 104px;
    background: var(--white);
    border: 1px solid #d7dfeb;
    border-radius: 12px;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-actions {
    display: grid;
    margin-left: 0;
  }

  .report-access-strip-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .report-access-form {
    min-width: 0;
  }

  .primary-nav.open {
    display: flex;
  }

  .guest-guide-nav,
  .bliss-jump-links {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .snack-hero-grid,
  .service-grid,
  .stats-row,
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .image-story-grid,
  .home-record-grid,
  .home-testimonial-grid,
  .form-grid.two,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-stats,
  .admin-record-head,
  .admin-meta-grid,
  .checkbox-row {
    display: grid;
  }

  .referral-side-panel {
    position: static;
  }

  .hero-image-panel {
    min-height: 380px;
  }

  .hero-dashboard-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .solution-service-grid,
  .results-stats-row {
    grid-template-columns: 1fr;
  }

  .social-feed-track {
    grid-auto-columns: minmax(260px, 85vw);
    scroll-padding-left: 0.25rem;
  }

  .social-media-thumb {
    height: 360px;
  }

  .media-modal-dialog {
    width: calc(100% - 0.75rem);
    margin: 1.25vh auto;
  }

  .media-modal-frame iframe,
  .media-modal-placeholder img {
    min-height: 100%;
    max-height: 84vh;
  }

  .media-modal-frame.is-tiktok {
    width: min(360px, 100%);
  }

  .media-modal-actions {
    width: min(390px, 100%);
    justify-content: center;
  }

  .feature-image,
  .bio-image {
    min-height: 260px;
  }

  .snack-media-card,
  .snack-yarru-image,
  .snack-yarru-embed,
  .snack-yarru-placeholder {
    min-height: 320px;
  }

  .snack-bundle-image,
  .snack-bundle-image-placeholder {
    min-height: 200px;
    height: 200px;
  }

  .nav-wrap {
    min-height: 92px;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .brand-subtext {
    display: none;
  }
}

@media (max-width: 560px) {
  .report-access-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .report-access-controls input {
    flex: none;
    width: 100%;
    height: 56px;
    max-height: 56px;
  }

  .report-access-controls .btn {
    width: 100%;
  }
}
