:root {
  --pink:        #EC1E7C;
  --pink-dark:   #C71566;
  --cyan:        #36B6E0;
  --cyan-dark:   #2898BD;
  --yellow:      #F5CC36;
  --ink:         #0F0F12;
  --ink-soft:    #2A2A30;
  --ink-muted:   #5A5A65;
  --ink-faint:   #8E8E96;
  --bg:          #FAFAF7;
  --bg-white:    #FFFFFF;
  --line:        rgba(15,15,18,0.08);
  --line-strong: rgba(15,15,18,0.14);
  --line-dark:   rgba(255,255,255,0.10);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Eyebrow label ── */
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Stripe divider ── */
.stripes {
  display: flex;
  height: 14px;
  width: 100%;
}
.stripes span { flex: 1; }
.stripes .s1 { background: var(--pink); }
.stripes .s2 { background: var(--cyan); }
.stripes .s3 { background: var(--yellow); }

/* ── Announce bar ── */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.announce .a-sep { color: var(--pink); padding: 0 12px; }
.announce .a-accent { color: var(--yellow); }

/* ── Nav ── */
.nav {
  background: var(--ink);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--pink);
}
.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}
.nav-logo img { height: 42px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active { color: var(--pink); }

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-actions a {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.nav-login {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-login:hover { border-color: #fff; }
.nav-signup {
  background: var(--pink);
  color: #fff;
}
.nav-signup:hover { background: var(--pink-dark); }

/* ── Hero ── */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0 100px;
}
.hero .wrap { display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center; }
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Neon-sign flicker on load — masks the image fetch time */
@keyframes neonFlicker {
  0%   { opacity: 0; }
  6%   { opacity: 0; }
  10%  { opacity: 0.4; }
  14%  { opacity: 0; }
  18%  { opacity: 0.7; }
  22%  { opacity: 0.2; }
  28%  { opacity: 0.9; }
  32%  { opacity: 0.4; }
  40%  { opacity: 1;   }
  44%  { opacity: 0.7; }
  50%  { opacity: 1;   }
  56%  { opacity: 0.85;}
  100% { opacity: 1;   }
}
/* Pink "misregistration" sits behind, offset down-right, for a screen-print look */
.hero-art-pink {
  transform: translate(2.5%, 2%);
  opacity: 0.78;
  filter: drop-shadow(0 0 14px rgba(236,30,124,0.5));
  mix-blend-mode: screen;
  animation: neonFlicker 2.2s ease-out 0.1s 1 both;
}
/* Cyan layer sits on top */
.hero-art-cyan {
  z-index: 1;
  filter: drop-shadow(0 0 14px rgba(54,182,224,0.45));
  animation: neonFlicker 2.4s ease-out 0s 1 both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-art-pink, .hero-art-cyan { animation: none; opacity: 1; }
  .hero-art-pink { opacity: 0.78; }
}

/* Cactus — absolutely positioned at lower-right of the hero, partially bleeds off-edge */
.hero-cactus-bg {
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 42%;
  max-width: 580px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 28px rgba(245,204,54,0.35));
  opacity: 0.92;
}
.hero-cactus-bg img { width: 100%; height: auto; display: block; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-stars {
  position: absolute;
  inset: 0;
  background-image: url('../img/stars.svg');
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  /* very slow drift — feels like the galaxy is moving */
  animation: starDrift 180s linear infinite;
}
.hero-stars::after {
  /* subtle vignette so stars fade behind the headline area */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(15,15,18,0.55) 0%, transparent 55%);
}
@keyframes starDrift {
  from { background-position: 0 0; }
  to   { background-position: -600px -300px; }
}

/* ── Twinkling accent stars (layered over the static field) ── */
.hero-twinkle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.twinkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  /* 4-point sparkle shape */
  clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
  opacity: 0.4;
  animation: twinkle 3.6s ease-in-out infinite;
}
.twinkle.t-small { width: 6px; height: 6px; animation-duration: 2.8s; }
.twinkle.t-big   { width: 16px; height: 16px; animation-duration: 4.4s; filter: drop-shadow(0 0 4px rgba(255,255,255,0.6)); }
.twinkle.t-pink  { background: var(--pink); filter: drop-shadow(0 0 6px rgba(236,30,124,0.6)); }
.twinkle.t-cyan  { background: var(--cyan); filter: drop-shadow(0 0 6px rgba(54,182,224,0.6)); }
@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.7) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.1) rotate(45deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stars, .twinkle { animation: none; }
}
.hero-glow-1 {
  position: absolute;
  top: -100px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236,30,124,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(54,182,224,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-content { max-width: 920px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 36px;
}
.hero h1 .pink   { color: var(--pink); }
.hero h1 .cyan   { color: var(--cyan); }
.hero h1 .yellow { color: var(--yellow); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  transition: all 0.2s;
}
.btn i { font-size: 16px; }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-cyan { background: var(--cyan); color: var(--ink); }
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #E0B826; transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-outline-dark:hover { border-color: var(--ink); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 12px;
  max-width: 760px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.hero-stat-num .pink { color: var(--pink); }
.hero-stat-num .cyan { color: var(--cyan); }
.hero-stat-num .yellow { color: var(--yellow); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── 48-Hour callout banner ── */
.callout {
  background: var(--bg-white);
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.callout-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.88;
  letter-spacing: -10px;
  color: var(--pink);
  margin-bottom: 16px;
  position: relative;
}
.callout-num sup {
  font-size: 0.32em;
  vertical-align: top;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 500;
  margin-left: 4px;
}
.callout-num-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.callout-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 22px;
}
.callout-copy h2 .pink { color: var(--pink); }
.callout-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 22px;
  max-width: 520px;
}
.callout-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.callout-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}
.callout-tag i { color: var(--pink); font-size: 14px; }

/* ── Standouts (We stand out because) ── */
.standouts {
  background: var(--bg);
  padding: 110px 0;
}
.standouts-header { margin-bottom: 64px; max-width: 720px; }
.standouts-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 0.96;
  letter-spacing: -2px;
  color: var(--ink);
}
.standouts-header h2 .pink { color: var(--pink); }
.standouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.standout {
  background: var(--bg-white);
  padding: 44px 36px 52px;
  position: relative;
}
.standout-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-faint);
  margin-bottom: 24px;
  font-weight: 500;
}
.standout-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 28px;
}
.standout:nth-child(1) .standout-icon { background: var(--pink); }
.standout:nth-child(2) .standout-icon { background: var(--cyan); }
.standout:nth-child(3) .standout-icon { background: var(--yellow); color: var(--ink); }
.standout h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}
.standout p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.standout-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ── Our Secrets (light panel) ── */
.secrets {
  background: var(--bg);
  color: var(--ink);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.secrets-grid-bg { display: none; }
.secrets .wrap { position: relative; z-index: 2; }
.secrets-header {
  margin-bottom: 80px;
  max-width: 720px;
}
.secrets-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -3.5px;
  color: var(--ink);
}
.secrets-header h2 .pink { color: var(--pink); }
.secrets-tagline {
  font-size: 16px;
  color: var(--ink-muted);
  max-width: 280px;
  line-height: 1.6;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--bg-white);
  border: 1px solid var(--line);
  padding: 40px 32px 36px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,15,18,0.08);
}
.pillar:nth-child(1) { border-top: 4px solid var(--pink); }
.pillar:nth-child(2) { border-top: 4px solid var(--cyan); }
.pillar:nth-child(3) { border-top: 4px solid var(--yellow); }
.pillar:nth-child(1):hover { border-color: var(--pink); }
.pillar:nth-child(2):hover { border-color: var(--cyan); }
.pillar:nth-child(3):hover { border-color: var(--yellow); }
.pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}
.pillar:nth-child(1) .pillar-badge { color: var(--pink); }
.pillar:nth-child(2) .pillar-badge { color: var(--cyan); }
.pillar:nth-child(3) .pillar-badge { color: var(--yellow); }
.pillar-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 0.95;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 28px;
}
/* Beer-can-with-label outline in the corner of each pillar */
.pillar-can {
  position: absolute;
  top: 28px;
  right: 26px;
  width: 22px;
  height: 28px;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.pillar:hover .pillar-can { opacity: 1; }
.pillar:nth-child(1) .pillar-can { color: var(--pink); }
.pillar:nth-child(2) .pillar-can { color: var(--cyan); }
.pillar:nth-child(3) .pillar-can { color: var(--yellow); }
.pillar-points { list-style: none; }
.pillar-points li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.pillar-points li:first-child { border-top: none; padding-top: 0; }
.pillar-points li:last-child { padding-bottom: 0; }
.pillar-points i {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar:nth-child(1) .pillar-points i { color: var(--pink); }
.pillar:nth-child(2) .pillar-points i { color: var(--cyan); }
.pillar:nth-child(3) .pillar-points i { color: var(--yellow); }

.secrets-foot {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.secrets-foot p {
  font-size: 14px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Breweries (trusted by) ── */
.breweries {
  background: var(--bg-white);
  padding: 96px 0 104px;
  border-bottom: 1px solid var(--line);
}
.breweries-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.breweries-header .label {
  margin-bottom: 18px;
  justify-content: center;
}
.breweries-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--ink);
}
.breweries-header h2 .pink { color: var(--pink); }
.breweries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  align-items: center;
  justify-items: center;
}
@media (max-width: 720px) {
  .breweries-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px 20px !important; }
}
.brewery {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: transparent;
  transition: transform 0.2s;
}
.brewery:hover { transform: translateY(-2px); }
.brewery img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.25s, opacity 0.25s;
}
.brewery:hover img { filter: grayscale(0%); opacity: 1; }
/* Placeholder slot (until real logos arrive) */
.brewery.placeholder {
  flex-direction: column;
  gap: 6px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.brewery.placeholder i { font-size: 22px; color: var(--ink-faint); }

/* ── Contact ── */
.contact {
  background: var(--bg-white);
  padding: 120px 0 130px;
  position: relative;
  overflow: hidden;
}
.contact-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.contact-decor img { width: 100%; height: auto; display: block; }
.contact-decor.bottle {
  top: 40px; left: -120px;
  width: 320px;
  transform: rotate(-12deg);
}
.contact-decor.mug {
  bottom: 40px; right: -140px;
  width: 360px;
  transform: rotate(8deg);
}
.contact .wrap { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 28px;
}
.contact h2 .pink { color: var(--pink); }
.contact-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 36px;
  max-width: 460px;
}
.contact-meta {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.contact-meta-item i {
  font-size: 20px;
  color: var(--pink);
  flex-shrink: 0;
}
.contact-meta-item span { color: var(--ink-muted); font-weight: 400; }

.form-card {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 44px 40px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--pink) 0%, var(--pink) 33.33%, var(--cyan) 33.33%, var(--cyan) 66.66%, var(--yellow) 66.66%, var(--yellow) 100%);
}
.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-row label .req { color: var(--pink); }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
  font-weight: 400;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--ink-faint); }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}
.btn-submit {
  width: 100%;
  background: var(--ink);
  color: #fff;
  padding: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--pink); }
.btn-submit i { font-size: 16px; }
.form-foot {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
}

/* ── HubSpot embed slot ── */
.hs-form-slot { min-height: 320px; }
.hs-form-placeholder {
  border: 1.5px dashed var(--line-strong);
  background:
    repeating-linear-gradient(45deg, rgba(236,30,124,0.04) 0 14px, transparent 14px 28px);
  padding: 48px 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.8;
}
.hs-form-placeholder i { font-size: 44px; color: var(--pink); display: block; margin-bottom: 14px; }
.hs-form-placeholder strong { display: block; color: var(--ink); font-weight: 600; margin-top: 4px; }
.hs-form-placeholder code {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 10px;
  background: var(--bg-white);
  color: var(--pink);
  font-size: 10px;
  letter-spacing: 1px;
  border: 1px solid var(--line);
}
/* Style hooks for the real HubSpot form once embedded */
.hbspt-form .hs-form-field { margin-bottom: 18px; }
.hbspt-form label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 8px; }
.hbspt-form input[type="text"],
.hbspt-form input[type="email"],
.hbspt-form textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  background: #fff !important;
  border: 1.5px solid var(--line-strong) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
}
.hbspt-form input:focus,
.hbspt-form textarea:focus { outline: none !important; border-color: var(--pink) !important; }
.hbspt-form .hs-button {
  width: 100% !important;
  background: var(--ink) !important;
  color: #fff !important;
  padding: 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.2s;
}
.hbspt-form .hs-button:hover { background: var(--pink) !important; }

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
/* Tiled starfield (same SVG as hero) at low opacity */
.footer-stars {
  position: absolute;
  inset: 0;
  background-image: url('../img/stars.svg');
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
}
/* Can-skull silhouette tucked in lower-right, partially off-edge */
.footer-skull {
  position: absolute;
  bottom: -60px;
  right: -50px;
  width: 280px;
  opacity: 0.10;
  transform: rotate(-8deg);
  pointer-events: none;
}
.footer-skull img { width: 100%; height: auto; display: block; }
.footer .wrap { position: relative; z-index: 1; }
.footer-grid,
body.cbp-canvas-page .footer-grid,
body.cbp-canvas-page footer.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 2.2fr 1fr 1fr 1fr !important;
  gap: 56px !important;
  margin-bottom: 56px !important;
  width: 100% !important;
}
.footer-brand .nav-logo { margin-bottom: 22px; display: inline-block; }
.footer-logo img { height: 56px; width: auto; display: block; }
.footer-tagline {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.6) !important;
  width: auto !important;
  max-width: 460px !important;
  float: none !important;
  display: block !important;
  margin-bottom: 22px !important;
}
/* Neutralise Genesis Block parent-theme footer defaults */
body.cbp-canvas-page footer.footer,
body.cbp-canvas-page .footer {
  font-size: 16px !important;
  background: var(--ink) !important;
  color: #fff !important;
  display: block !important;
  width: 100% !important;
  padding: 80px 0 32px !important;
  box-shadow: none !important;
}
body.cbp-canvas-page .footer-tagline {
  display: block !important;
  width: auto !important;
  max-width: 460px !important;
  float: none !important;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--pink); color: #fff; }
.footer-social i { font-size: 17px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: 22px;
}
body.cbp-canvas-page .footer-col ul,
.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.cbp-canvas-page .footer-col li,
.footer-col li {
  margin-bottom: 12px;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }

.footer-bot {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .hero { padding: 80px 0 70px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { aspect-ratio: 1/1; max-width: 420px; width: 100%; justify-self: center; margin-top: 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stat-num { font-size: 32px; }
  .secrets-header { grid-template-columns: 1fr; gap: 40px; }
  .secrets-art { aspect-ratio: 5/3; max-width: 540px; }
  .pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  /* footer-grid stays 4-col down to 720px; collapse handled below */
}
@media (max-width: 720px) {
  body.cbp-canvas-page .footer-grid,
  body.cbp-canvas-page footer.footer .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
  body.cbp-canvas-page .footer-tagline { max-width: 100% !important; }
}
@media (max-width: 560px) {
  .nav-actions .nav-login { display: none; }
  .hero h1 { letter-spacing: -2px; }
  .form-card { padding: 32px 24px; }
  body.cbp-canvas-page .footer-grid,
  body.cbp-canvas-page footer.footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 24px !important;
  }
  body.cbp-canvas-page .footer-brand { grid-column: 1 / -1 !important; text-align: center !important; }
  body.cbp-canvas-page .footer-brand .nav-logo { margin-bottom: 14px !important; }
  body.cbp-canvas-page .footer-tagline { margin: 0 auto 14px !important; }
  body.cbp-canvas-page .footer-social { justify-content: center !important; }
  body.cbp-canvas-page .footer-col { text-align: center !important; }
  body.cbp-canvas-page .footer-col h4 { margin-bottom: 14px !important; }
  body.cbp-canvas-page .footer-col li { margin-bottom: 8px !important; }
}
