@import url('/src/styles/marketing-base.css');

/* The redesigned sections use the available viewport width. */
.marketing-page .shell,
.marketing-page .site-header {
  width: calc(100% - clamp(24px, 5vw, 88px));
  max-width: none;
  margin-inline: auto;
}

/*
 * Hero contract: app.css owns the approved BrillSync hero artwork, gradients,
 * animation, crop, typography and responsive behavior. This file changes only
 * the outer geometry so that exact hero treatment can span the viewport.
 */
.marketing-page .live-site-hero {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.marketing-page .brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 28px rgba(92,79,255,.2);
}

.marketing-section { padding-inline: 0; }

.experience-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
}

.experience-card,
.experience-card.featured { grid-column: span 2; }

.process-grid { gap: clamp(12px, 1.2vw, 20px); }
.delivery-panel { gap: clamp(18px, 2.2vw, 36px); }

.hero-price-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.hero-price-note strong { color: var(--text); }

.public-pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
}

.public-price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(166, 214, 244, .34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(113, 229, 255, .08), transparent 13rem),
    linear-gradient(160deg, rgba(31, 64, 92, .98), rgba(16, 40, 64, .98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.public-price-card.featured {
  border-color: rgba(113, 229, 255, .48);
  background:
    radial-gradient(circle at 90% 10%, rgba(113, 229, 255, .2), transparent 15rem),
    linear-gradient(150deg, rgba(34, 75, 105, .99), rgba(15, 42, 68, .99));
  box-shadow: 0 20px 52px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.public-price-card .experience-icon {
  color: #dff8ff;
  background: rgba(113, 229, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(113, 229, 255, .18);
}

.public-price-card .eyebrow {
  margin: 18px 0 0;
  color: #9eeeff;
}

.public-price-card h3 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
}

.public-price-card > p:not(.eyebrow):not(.public-price) {
  color: #d5e4ee;
  line-height: 1.65;
}

.public-price-card .button { width: 100%; margin-top: auto; justify-content: center; }

.public-price {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: clamp(2.25rem, 3.6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(113, 229, 255, .14);
}

.public-price small {
  color: #d7e5ee;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: 0;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pricing-trust span {
  padding: 9px 12px;
  border: 1px solid rgba(166, 214, 244, .3);
  border-radius: 999px;
  color: #d7e5ee;
  background: rgba(113, 229, 255, .07);
  font-size: .82rem;
  font-weight: 760;
}

.pricing-trust span::before {
  content: '✓';
  margin-right: 7px;
  color: var(--success);
}

.pricing-footnote {
  max-width: 78ch;
  margin: 20px 0 0;
  color: #c8d9e4;
  font-size: .9rem;
  line-height: 1.6;
}

.proof-panel .hero-actions { margin-top: 24px; }

@media (min-width: 1500px) {
  .experience-card { min-height: 260px; }
}

@media (max-width: 1320px) {
  .public-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1180px) {
  .experience-grid,
  .public-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-card,
  .experience-card.featured { grid-column: auto; }
}

@media (max-width: 720px) {
  .marketing-page .shell,
  .marketing-page .site-header { width: calc(100% - 24px); }
  .marketing-page .live-site-hero {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-left: 20px;
    padding-right: 20px;
  }
  .marketing-page .brand-logo { width: 46px; height: 46px; border-radius: 11px; }
  .experience-grid,
  .public-pricing-grid { grid-template-columns: 1fr; }
  .public-price-card { min-height: 0; }
}