/* ─── Custom styles for bangpho-film build ─────────────────────── */

/* ─── 1. Typography Refinement ─────────────────────────────────── */
:root {
  --film-gold: #D4A017;
  --film-cream: #F5E6D3;
  --film-dark: #1A1408;
  --film-ink: #14110C;
  --film-muted: rgba(245, 230, 211, 0.5);
}

/* Ensure copy layers sit above stage images */
.sc-copy {
  z-index: 10 !important;
}

/* Hero text needs to be visible over the coffee image */
#hero .sc-copy {
  z-index: 10;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 0, 0, 0.3);
}

/* Make hero cues visible immediately */
#hero [data-sc-cue] {
  opacity: 1 !important;
  transform: none !important;
}
#hero [data-sc-kinetic] .sc-split__i {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── 2. Hero Headline Polish ──────────────────────────────────── */
#hero h1 {
  font-size: clamp(4rem, 10vw, 9rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.04em !important;
  line-height: 0.88 !important;
  color: #F5E6D3;
}
#hero .sc-label {
  font-size: 0.75rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  color: var(--film-gold) !important;
  margin-bottom: 1.5rem;
}
#hero .sc-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
  line-height: 1.6 !important;
  color: rgba(245, 230, 211, 0.75) !important;
}

/* ─── 3. Problem Section Typography ─────────────────────────────── */
#problem h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
  color: var(--film-ink);
}
#problem .sc-body {
  font-size: clamp(1rem, 1.3vw, 1.15rem) !important;
  color: #4A443A !important;
  line-height: 1.65 !important;
  max-width: 48ch !important;
}
#problem .sc-label {
  color: var(--film-gold) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
}

/* ─── 4. Workspace Section ─────────────────────────────────────── */
#workspace h2 {
  font-size: clamp(2.8rem, 7vw, 5rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  color: #F5E6D3;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
#workspace .sc-label {
  color: var(--film-gold) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ─── 5. Pricing Cards Elevation ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  max-width: 680px;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  padding: 2rem !important;
  text-align: left;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pricing-card:hover {
  border-color: rgba(212, 160, 23, 0.4) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 160, 23, 0.1);
  transform: translateY(-4px);
}
.pricing-card h4 {
  font-family: var(--sc-font-display);
  font-size: 0.75rem !important;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.45) !important;
  margin: 0 0 0.75rem;
}
.pricing-card .price {
  font-family: var(--sc-font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #F5E6D3 !important;
  margin-bottom: 0.5rem;
}
.pricing-card .detail {
  font-size: 0.9rem !important;
  color: rgba(245, 230, 211, 0.45) !important;
  line-height: 1.5;
}

/* ─── 6. Beer Section ──────────────────────────────────────────── */
#beer h2 {
  font-size: clamp(3rem, 8vw, 6rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.04em !important;
  line-height: 0.95 !important;
  color: #F5E6D3;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
#beer .sc-label {
  color: var(--film-gold) !important;
}
#beer .sc-lede {
  color: rgba(245, 230, 211, 0.7) !important;
  font-size: clamp(1rem, 1.3vw, 1.15rem) !important;
  line-height: 1.65 !important;
}

/* ─── 7. Perks List ────────────────────────────────────────────── */
.perks {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  max-width: 40ch;
  text-align: left;
}
.perks li {
  font-size: 1rem !important;
  color: rgba(245, 230, 211, 0.75) !important;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 230, 211, 0.06);
  transition: color 0.4s ease;
}
.perks li:hover {
  color: rgba(245, 230, 211, 0.95);
}
.perk-bullet {
  color: var(--film-gold) !important;
  margin-right: 0.75rem;
  font-size: 0.6rem;
  vertical-align: middle;
}

/* ─── 8. CTA Section ───────────────────────────────────────────── */
#signup h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 300 !important;
  color: #F5E6D3;
}
.cta-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
}
.cta-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #F5E6D3;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-form input[type="email"]::placeholder {
  color: rgba(245, 230, 211, 0.3);
}
.cta-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(212, 160, 23, 0.6);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}
.cta-form button {
  padding: 1rem 2rem;
  background: var(--film-gold);
  color: var(--film-dark);
  border: none;
  border-radius: 8px;
  font-family: var(--sc-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}
.cta-form button:hover {
  background: #E0B030;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}
.cta-form button:active {
  transform: translateY(0);
}
.cta-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ─── 9. CTA Status & Fine Print ───────────────────────────────── */
.cta-status {
  position: absolute;
  bottom: -2rem;
  left: 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.cta-status--success {
  color: #66BB6A;
}
.cta-status--error {
  color: #EF5350;
}
.cta-fine {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.3);
  max-width: 36ch;
  line-height: 1.6;
}
.cta-fine a {
  color: rgba(245, 230, 211, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 230, 211, 0.2);
  transition: all 0.3s ease;
}
.cta-fine a:hover {
  color: var(--film-gold);
  text-decoration-color: var(--film-gold);
}
.cta-opening {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.35);
  letter-spacing: 0.1em;
}

/* ─── 10. Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(245, 230, 211, 0.06);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-name {
  font-family: var(--sc-font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: #F5E6D3;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.35);
  margin: 0.25rem 0;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.35);
  text-decoration: none;
  transition: color 0.4s ease;
}
.footer-links a:hover {
  color: var(--film-gold);
}
.footer-copy {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 230, 211, 0.06);
  font-size: 0.7rem;
  color: rgba(245, 230, 211, 0.2);
  text-align: center;
}

/* ─── 11. Hero CTA Button ──────────────────────────────────────── */
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(245, 230, 211, 0.3);
  color: #F5E6D3;
  font-family: var(--sc-font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 10;
}
.hero-cta:hover {
  background: rgba(245, 230, 211, 0.1);
  border-color: rgba(245, 230, 211, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── 12. Grain Overlay Enhancement ────────────────────────────── */
.sc-grain {
  opacity: 0.035 !important;
  mix-blend-mode: overlay;
}

/* ─── 13. Progress Bar ─────────────────────────────────────────── */
[data-sc-progress] {
  height: 2px !important;
  background: linear-gradient(90deg, var(--film-gold), #E0B030) !important;
}

/* ─── 14. Selection Color ──────────────────────────────────────── */
::selection {
  background: rgba(212, 160, 23, 0.3);
  color: #F5E6D3;
}

/* ─── 15. Focus States ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--film-gold) !important;
  outline-offset: 3px;
}

/* ─── 16. Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--film-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 160, 23, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 160, 23, 0.5);
}

/* ─── 17. Mobile Responsive ────────────────────────────────────── */
@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .cta-form {
    flex-direction: column;
  }
  .cta-form button {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-cta {
    margin-top: 2rem;
    padding: 0.9rem 2rem;
  }
  #hero h1 {
    font-size: clamp(3rem, 12vw, 5rem) !important;
  }
  #problem h2 {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
  }
  #beer h2 {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
  }
}

/* ─── 18. Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .hero-cta,
  .cta-form button,
  .footer-links a,
  .perks li {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 2: ANIMATE — Purposeful motion
   ═══════════════════════════════════════════════════════════════════ */

/* Scroll-triggered fade-in for problem section items */
#problem .sc-stack > div[data-sc-reveal] {
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#problem .sc-stack > div[data-sc-reveal].sc-in {
  opacity: 1;
}

/* Staggered perk list animation */
.perks li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}
.perks li.sc-in {
  opacity: 1;
  transform: none;
}

/* CTA form subtle entrance */
.cta-form {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.cta-form.sc-in {
  opacity: 1;
  transform: none;
}

/* Gold accent line animation on scroll */
[data-sc-progress] {
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 3: TYPESET — Typography hierarchy refinement
   ═══════════════════════════════════════════════════════════════════ */

/* Font loading optimization */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/spacegrotesk/v16/V8mDoQDjQSkFtoMM3T6r8E7mPb54C_k3HqUtEw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Body text measure optimization */
.sc-body, .sc-lede, p {
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Display type stress test — prevent overflow */
.sc-display {
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 4: LAYOUT — Spacing rhythm and visual hierarchy
   ═══════════════════════════════════════════════════════════════════ */

/* Consistent section rhythm */
.sc-section {
  padding-block: clamp(4rem, 8vw, 10rem);
}

/* Tighter group spacing, generous section separation */
.sc-stack > * + * {
  margin-top: 1.25rem;
}
.sc-stack > :is(h1,h2,h3) {
  margin-top: 2.5rem;
}

/* Problem section — deliberate pacing between items */
#problem .sc-stack > div[data-sc-reveal] + div[data-sc-reveal] {
  margin-top: 3rem;
}

/* Pricing grid alignment */
.pricing-grid {
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 5: DELIGHT — Memorable touches
   ═══════════════════════════════════════════════════════════════════ */

/* Subtle gold shimmer on hero label */
#hero .sc-label {
  background: linear-gradient(90deg, var(--film-gold), #E8C84A, var(--film-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* Custom cursor on interactive elements */
.hero-cta, .cta-form button, .pricing-card, .footer-links a {
  cursor: pointer;
}

/* Subtle glow on CTA hover */
.cta-form button:hover {
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.25), 0 8px 24px rgba(212, 160, 23, 0.15);
}

/* Perk bullet pulse on hover */
.perks li:hover .perk-bullet {
  animation: pulse 0.6s ease;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 6: OVERDRIVE — Push past conventional limits
   ═══════════════════════════════════════════════════════════════════ */

/* Hero depth blur on scroll */
#hero .sc-stage__poster {
  transition: filter 0.3s ease;
}

/* Pricing card tilt enhancement */
.pricing-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Beer section parallax depth */
#beer .sc-stage__poster {
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 7: CLARIFY — UX copy and error messages
   ═══════════════════════════════════════════════════════════════════ */

/* Form validation styling */
.cta-form input[type="email"]:invalid:not(:placeholder-shown) {
  border-color: #EF5350;
}
.cta-form input[type="email"]:valid:not(:placeholder-shown) {
  border-color: #66BB6A;
}

/* Status message transitions */
.cta-status {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cta-status:empty {
  opacity: 0;
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 8: ADAPT — Mobile and touch optimization
   ═══════════════════════════════════════════════════════════════════ */

/* Touch target sizing */
@media (pointer: coarse) {
  .hero-cta {
    min-height: 48px;
    min-width: 48px;
  }
  .cta-form button {
    min-height: 48px;
  }
  .cta-form input[type="email"] {
    min-height: 48px;
    font-size: 16px; /* Prevent iOS zoom */
  }
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Safe area support */
@supports (padding: env(safe-area-inset-top)) {
  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/* Small screen adjustments */
@media (max-width: 480px) {
  #hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem) !important;
  }
  #problem h2 {
    font-size: clamp(1.8rem, 10vw, 3rem) !important;
  }
  #beer h2 {
    font-size: clamp(2rem, 12vw, 3.5rem) !important;
  }
  .pricing-card {
    padding: 1.5rem !important;
  }
  .cta-form {
    gap: 0.5rem;
  }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
    min-height: 100svh;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 9: OPTIMIZE — Performance
   ═══════════════════════════════════════════════════════════════════ */

/* Content visibility for below-fold sections */
#problem, #workspace, #beer, #signup {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Ensure stage images fill full viewport without borders */
.sc-stage__poster {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Kill the scrim gradient that creates visible borders on image stages */
#workspace .sc-scrim,
#beer .sc-scrim {
  display: none !important;
}

/* Force pinned image stages to fill completely — no gaps */
.sc-act--pinned .sc-stage {
  background: transparent !important;
}
.sc-act--pinned .sc-stage__poster {
  min-height: 100% !important;
}
.sc-act--pinned {
  background: transparent !important;
}

/* Workspace section: match the image's bottom edge */
#workspace {
  background: #2a1f14 !important;
}

/* Beer section: dark to match evening scene */
#beer {
  background: #0a0806 !important;
}

/* Remove any default image styling that could cause borders */
img {
  border: 0;
  outline: none;
  max-width: 100%;
}

/* Font loading strategy */
link[rel="preconnect"] {
  crossorigin: anonymous;
}

/* Reduce layout shift */
.sc-stage {
  aspect-ratio: 16/9;
}

/* ═══════════════════════════════════════════════════════════════════
   PASS 10: POLISH — Final quality
   ═══════════════════════════════════════════════════════════════════ */

/* Consistent border radius */
.pricing-card, .cta-form input, .cta-form button, .hero-cta {
  border-radius: 8px;
}
.hero-cta {
  border-radius: 999px;
}

/* Text selection color consistency */
::-moz-selection {
  background: rgba(212, 160, 23, 0.3);
  color: #F5E6D3;
}

/* Focus ring consistency */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--film-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print styles */
@media print {
  .sc-grain, [data-sc-progress], .hero-cta, .cta-form, .site-footer {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  #hero h1, #problem h2, #beer h2 {
    color: black !important;
    text-shadow: none !important;
  }
}

/* High contrast mode */
@media (forced-colors: active) {
  .pricing-card {
    border: 1px solid CanvasText;
  }
  .cta-form button {
    border: 1px solid ButtonText;
  }
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Overrides for dark acts (Peak + Close) */
[id="beer"], [id="signup"] {
  color: #F5E6D3;
}
[id="beer"] .sc-label,
[id="signup"] .sc-label {
  color: #D4A017;
}
[id="beer"] .sc-body,
[id="signup"] .sc-body {
  color: rgba(245, 230, 211, 0.6);
}

/* ─── Hero CTA ─────────────────────────────────────────────────── */
.hero-cta {
  display: inline-block;
  margin-top: var(--sc-8);
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(245, 230, 211, 0.3);
  color: #F5E6D3;
  font-family: var(--sc-font-display);
  font-size: var(--sc-t-sm);
  letter-spacing: var(--sc-track-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--sc-r-pill);
  transition: all 0.6s var(--sc-ease-out);
  position: relative;
  z-index: 10;
}
.hero-cta:hover {
  background: rgba(245, 230, 211, 0.1);
  border-color: rgba(245, 230, 211, 0.5);
}

/* ─── Pricing Grid ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sc-4);
  margin-top: var(--sc-8);
  max-width: 640px;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--sc-r-md);
  padding: var(--sc-6);
  text-align: left;
  transition: border-color 0.6s var(--sc-ease-out), box-shadow 0.6s var(--sc-ease-out);
}
.pricing-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.pricing-card h4 {
  font-family: var(--sc-font-display);
  font-size: var(--sc-t-sm);
  font-weight: 400;
  letter-spacing: var(--sc-track-wide);
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.5);
  margin: 0 0 var(--sc-3);
}
.pricing-card .price {
  font-family: var(--sc-font-display);
  font-size: var(--sc-t-2xl);
  font-weight: 300;
  letter-spacing: var(--sc-track-tight);
  color: #F5E6D3;
  margin-bottom: var(--sc-2);
}
.pricing-card .detail {
  font-size: var(--sc-t-sm);
  color: rgba(245, 230, 211, 0.5);
}

/* ─── Perks List ───────────────────────────────────────────────── */
.perks {
  list-style: none;
  padding: 0;
  margin: var(--sc-8) auto 0;
  max-width: 40ch;
  text-align: left;
}
.perks li {
  font-size: var(--sc-t-base);
  color: rgba(245, 230, 211, 0.7);
  padding: var(--sc-3) 0;
  border-bottom: 1px solid rgba(245, 230, 211, 0.06);
}
.perk-bullet {
  color: #D4A017;
  margin-right: var(--sc-3);
}

/* ─── CTA Form ─────────────────────────────────────────────────── */
.cta-form {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--sc-8);
  max-width: 420px;
  width: 100%;
  position: relative;
}
.cta-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #F5E6D3;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.4s var(--sc-ease-out);
}
.cta-form input[type="email"]::placeholder {
  color: rgba(245, 230, 211, 0.3);
}
.cta-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(212, 160, 23, 0.5);
}
.cta-form button {
  padding: 1rem 2rem;
  background: #D4A017;
  color: #1A1408;
  border: none;
  border-radius: 6px;
  font-family: var(--sc-font-display);
  font-size: var(--sc-t-sm);
  font-weight: 500;
  letter-spacing: var(--sc-track-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--sc-ease-out);
  white-space: nowrap;
}
.cta-form button:hover {
  background: #E0B030;
  transform: translateY(-1px);
}
.cta-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ─── CTA Status ───────────────────────────────────────────────── */
.cta-status {
  position: absolute;
  bottom: -2rem;
  left: 0;
  font-size: var(--sc-t-xs);
  letter-spacing: var(--sc-track-wide);
}
.cta-status--success {
  color: #4CAF50;
}
.cta-status--error {
  color: #E57373;
}

/* ─── CTA Fine Print ───────────────────────────────────────────── */
.cta-fine {
  margin-top: var(--sc-10);
  font-size: var(--sc-t-xs);
  color: rgba(245, 230, 211, 0.35);
  max-width: 36ch;
}
.cta-fine a {
  color: rgba(245, 230, 211, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-opening {
  margin-top: var(--sc-6);
  font-size: var(--sc-t-xs);
  color: rgba(245, 230, 211, 0.4);
  letter-spacing: var(--sc-track-wide);
}

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(245, 230, 211, 0.06);
  padding: var(--sc-8) 0 var(--sc-6);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sc-6);
  flex-wrap: wrap;
}
.footer-name {
  font-family: var(--sc-font-display);
  font-weight: 500;
  font-size: var(--sc-t-sm);
  color: #F5E6D3;
  margin-bottom: var(--sc-2);
}
.footer-brand p {
  font-size: var(--sc-t-xs);
  color: rgba(245, 230, 211, 0.4);
  margin: var(--sc-1) 0;
}
.footer-links {
  display: flex;
  gap: var(--sc-5);
}
.footer-links a {
  font-size: var(--sc-t-xs);
  color: rgba(245, 230, 211, 0.4);
  text-decoration: none;
  transition: color 0.4s var(--sc-ease-out);
}
.footer-links a:hover {
  color: #D4A017;
}
.footer-copy {
  margin-top: var(--sc-6);
  padding-top: var(--sc-4);
  border-top: 1px solid rgba(245, 230, 211, 0.06);
  font-size: var(--sc-t-xs);
  color: rgba(245, 230, 211, 0.25);
  text-align: center;
}

/* ─── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .cta-form {
    flex-direction: column;
  }
  .cta-form button {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: var(--sc-5);
  }
  .hero-cta {
    margin-top: var(--sc-6);
    padding: 0.9rem 2rem;
  }
}
