/* ============================================================
   SOCIAL SOMEONE — design tokens
   ============================================================ */

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --red: #E50914;
  --red-dark: #B4070F;
  --cream: #FBF9F4;

  --neon-yellow: #EFFF00;
  --neon-pink: #FF2BD6;
  --neon-orange: #FF5C00;
  --neon-purple: #6C4DFF;

  --ink: #141414;
  --ink-soft: rgba(20,20,20,0.62);
  --ink-faint: rgba(20,20,20,0.38);
  --hairline: rgba(20,20,20,0.12);

  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-card: 22px;
  --radius-pill: 999px;

  --container: 1180px;
  --edge: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p { margin: 0; font-weight: 400; }

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

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow.on-dark { color: var(--neon-orange); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--red); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-sm { padding: 12px 22px; font-size: 12.5px; }

/* ---------- scoped CTA hover colors ---------- */

.hero .btn-primary:hover {
  background: var(--neon-pink);
  color: var(--black);
}

.why-shape .btn-primary:hover {
  background: var(--neon-yellow);
  color: var(--black);
}

.corp-teaser .btn-primary:hover {
  background: var(--neon-purple);
  color: var(--white);
}

.expansion-section .btn-dark:hover {
  background: var(--neon-purple);
  color: var(--white);
}

.final-section .btn-primary:hover {
  background: var(--neon-yellow);
  color: var(--black);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-badge {
  background: var(--black);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}

.logo-badge img {
  height: 26px;
  width: auto;
  display: block;
}

.footer-brand .logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

@media (max-width: 560px) {
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 12px 16px; font-size: 11.5px; }
}

@media (max-width: 420px) {
  .site-header .container { height: auto; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; gap: 12px; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { flex: 1; }
}

/* ============================================================
   FLOATING BUBBLES
   ============================================================ */

.bubble {
  position: absolute;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--black);
  border: 2px solid var(--black);
  animation: floaty var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
  z-index: 3;
}
.bubble.yellow { background: var(--neon-yellow); }
.bubble.pink { background: var(--neon-pink); color: var(--white); border-color: var(--neon-pink); }
.bubble.orange { background: var(--neon-orange); color: var(--white); border-color: var(--neon-orange); }
.bubble.purple { background: var(--neon-purple); color: var(--white); border-color: var(--neon-purple); }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, -3deg)); }
  50% { transform: translateY(-26px) rotate(var(--r, -3deg)); }
}

.dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 76px 0 90px;
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin: 16px 0 22px;
}

.hero-copy .sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 8px;
}

.hero-copy .find-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin: 26px 0 34px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 480px;
}

.hero-photo {
  position: absolute;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}

.hero-photo.main {
  width: 78%;
  height: 400px;
  top: 20px;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
  border: 8px solid var(--white);
}

.hero-photo-border {
  position: absolute;
  width: 78%;
  height: 400px;
  top: 44px;
  right: -22px;
  background: var(--neon-yellow);
  border-radius: var(--radius-card);
  transform: rotate(2deg);
  z-index: 1;
}

.hero-photo.small {
  width: 42%;
  height: 200px;
  bottom: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 3;
  border: 8px solid var(--white);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .bubble { display: none; }
}

.hero-envelope-wrap {
  position: relative;
}

.squiggle-arrow {
  position: absolute;
  top: 0;
  z-index: 6;
  pointer-events: none;
  display: block;
}

.squiggle-line-layer {
  right: 1.5vw;
}

.squiggle-head-layer {
  right: calc(1.5vw + 66px);
}

.squiggle-path {
  animation: squiggle-draw 1.8s ease-out 0.3s both;
}

@keyframes squiggle-draw {
  from { stroke-dashoffset: 220; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1300px) {
  .squiggle-arrow { display: none; }
}

/* ============================================================
   ENVELOPE SECTION
   ============================================================ */

.envelope-section {
  position: relative;
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.envelope-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.envelope-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-border {
  position: absolute;
  width: 400px;
  height: 280px;
  background: var(--neon-purple);
  border-radius: 20px;
  transform: rotate(-14deg);
}

.envelope {
  position: relative;
  width: 300px;
  height: 200px;
  background: var(--white);
  border-radius: 10px;
  transform: rotate(3deg);
  box-shadow: 0 26px 50px -18px rgba(0,0,0,0.3);
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.envelope-photo {
  position: relative;
  width: 340px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  transform: rotate(7deg);
  box-shadow: 0 26px 50px -18px rgba(0,0,0,0.4);
  z-index: 2;
}

.envelope-copy h2 { font-size: clamp(32px, 4vw, 46px); }

.envelope-copy .lead {
  font-size: 19px;
  margin: 22px 0;
  color: var(--ink-soft);
}

.envelope-copy .lead strong { color: var(--black); font-weight: 700; }

.envelope-copy h3.ask {
  font-size: 24px;
  margin-bottom: 6px;
}

.envelope-copy .answer {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .envelope-grid { grid-template-columns: 1fr; }
  .envelope-visual { height: 300px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section {
  padding: 100px 0 60px;
  background: var(--white);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 14px; }

.how-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.how-card {
  border-radius: var(--radius-card);
  padding: 34px 30px 38px;
  border: 9px solid var(--black);
  background: var(--white);
  position: relative;
  width: 300px;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.how-card.in { opacity: 1; }
.how-card:nth-child(1) {
  transform: rotate(-7deg);
  border-color: var(--neon-orange);
  margin-right: -46px;
  z-index: 1;
  box-shadow: -8px 10px 0 -4px rgba(0,0,0,0.06);
}
.how-card:nth-child(2) {
  border-color: var(--neon-purple);
  z-index: 3;
  box-shadow: 0 24px 46px -20px rgba(0,0,0,0.28);
}
.how-card:nth-child(3) {
  transform: rotate(-7deg) translateY(22px);
  border-color: var(--red);
  margin-left: -26px;
  z-index: 1;
  box-shadow: 8px 10px 0 -4px rgba(0,0,0,0.06);
}

.how-card .num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.how-card h3 { font-size: 26px; margin-bottom: 12px; }

.how-card p { color: var(--ink-soft); font-size: 15.5px; }

.how-statement {
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  margin: 66px 0 0;
}

@media (max-width: 880px) {
  .how-cards { flex-direction: column; gap: 20px; }
  .how-card { transform: none !important; margin: 0 !important; width: 100%; max-width: 380px; box-shadow: none !important; }
}

/* ============================================================
   EVENTS
   ============================================================ */

.events-section {
  padding: 110px 0;
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px 26px;
  border: 9px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-card:nth-child(1) { transform: rotate(-1.3deg); border-color: var(--neon-yellow); }
.event-card:nth-child(2) { transform: rotate(1deg); border-color: var(--neon-pink); }
.event-card:nth-child(3) { transform: rotate(-0.8deg); border-color: var(--neon-purple); }
.event-card:nth-child(4) { transform: rotate(1.3deg); border-color: var(--neon-orange); }

.event-card h3 { font-size: 22px; }
.event-card .loc { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

.spots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.spots::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.event-card .btn { margin-top: auto; }

@media (max-width: 980px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-card { transform: none !important; }
}

/* ============================================================
   CITY WAITLIST BUBBLE SECTION
   ============================================================ */

.city-section {
  padding: 90px 0;
  background: var(--white);
}

.city-shape {
  border-radius: 46px;
  background: var(--neon-yellow);
  padding: 70px var(--edge);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.city-shape::before,
.city-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.city-shape::before {
  width: 220px; height: 220px;
  background: var(--neon-pink);
  top: -100px; left: -60px;
  opacity: 0.9;
}
.city-shape::after {
  width: 160px; height: 160px;
  background: var(--neon-purple);
  bottom: -80px; right: -40px;
  opacity: 0.9;
}

.city-shape h2 {
  font-size: clamp(28px, 4vw, 42px);
  position: relative;
  z-index: 2;
}
.city-shape .sub {
  font-size: 17px;
  margin: 16px auto 30px;
  max-width: 420px;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

/* ============================================================
   WHY SOCIAL SOMEONE
   ============================================================ */

.why-section {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

.why-shape-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-shape {
  background: var(--neon-purple);
  color: var(--white);
  border-radius: 63% 37% 41% 59% / 68% 44% 56% 32%;
  width: min(760px, 94vw);
  padding: 118px 64px 86px;
  text-align: center;
  position: relative;
}

.why-shape h2 { font-size: clamp(28px, 4vw, 42px); color: var(--white); }
.why-shape .lines { margin: 22px 0 8px; font-size: 17px; line-height: 1.6; }
.why-shape .lines strong { font-weight: 700; }
.why-shape .kicker { font-family: var(--font-display); font-size: 26px; margin: 26px 0 6px; }
.why-shape .kicker-sub { font-size: 15px; opacity: 0.9; margin-bottom: 30px; }

@media (max-width: 700px) {
  .why-shape-wrap .bubble { display: none; }
  .why-shape { border-radius: 32px; padding: 54px 26px; }
}

/* ============================================================
   CORPORATE TEASER (homepage)
   ============================================================ */

.corp-teaser {
  background: var(--black);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.corp-teaser::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--neon-orange);
  filter: blur(0px);
  opacity: 0.14;
  top: -140px;
  right: -100px;
}

.corp-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.corp-teaser-inner {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.corp-teaser-photo-wrap {
  position: relative;
  z-index: 2;
}

.corp-teaser-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 10px solid var(--neon-pink);
  transform: rotate(16deg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

@media (max-width: 980px) {
  .corp-teaser-grid { grid-template-columns: 1fr; }
  .corp-teaser-photo { height: 300px; }
}

.corp-teaser h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0 22px;
}

.corp-teaser p { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 16px; }
.corp-teaser p strong { color: var(--white); }

.corp-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 20px 0 12px;
}

.corp-tags {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

/* ============================================================
   EXPANSION
   ============================================================ */

.expansion-section {
  padding: 100px 0;
  background: var(--neon-orange);
  color: var(--white);
  text-align: center;
}

.expansion-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.expansion-section .sub2 { font-family: var(--font-display); font-style: italic; font-size: 20px; margin: 10px 0 20px; }
.expansion-section .lead { font-size: 16.5px; margin-bottom: 30px; font-weight: 600; }
.expansion-section .leader-link {
  display: block;
  margin: 22px auto 0;
  font-size: 14px;
  text-decoration: underline;
  opacity: 0.9;
  background: none;
  border: none;
  color: inherit;
  font-family: var(--font-sans);
  cursor: pointer;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-section {
  position: relative;
  padding: 110px 0 120px;
  background: var(--cream);
  overflow: hidden;
}

.final-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.final-photo-wrap { position: relative; }

.final-photo-border {
  position: absolute;
  inset: -14px -14px auto auto;
  width: 100%;
  height: 100%;
  background: var(--neon-pink);
  border-radius: var(--radius-card);
  transform: rotate(-3deg);
}

.final-photo {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-card);
  object-fit: cover;
  transform: rotate(2deg);
  border: 8px solid var(--white);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}

.final-tag {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 14px;
}

.final-copy h2 { font-size: clamp(32px, 4.5vw, 50px); }
.final-copy .sub3 { font-size: 18px; color: var(--ink-soft); margin: 18px 0 30px; max-width: 420px; }
.final-copy .findline { font-family: var(--font-display); font-style: italic; font-size: 22px; margin-top: 30px; }

@media (max-width: 900px) {
  .final-inner { grid-template-columns: 1fr; }
  .final-photo { height: 300px; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section { padding: 100px 0; background: var(--white); }

.faq-list { max-width: 760px; margin: 44px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
}

.faq-q .plus {
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item.open .faq-a { max-height: 240px; }

.faq-a p {
  padding: 0 4px 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 640px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-top: 14px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer-col a, .footer-col button {
  display: block;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  margin-bottom: 13px;
  text-align: left;
  font-family: var(--font-sans);
}
.footer-col a:hover, .footer-col button:hover { color: var(--white); }

.footer-bottom {
  padding-top: 40px;
  text-align: center;
}

.footer-big {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.footer-values {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 26px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   MODALS
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 24px;
  max-width: 460px;
  width: 100%;
  padding: 40px 34px 34px;
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--cream);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box h3 { font-size: 24px; margin-bottom: 10px; }
.modal-box .modal-sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1.5px solid var(--hairline);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--black);
  background: var(--cream);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 90px; }

.modal-box .btn { width: 100%; margin-top: 6px; }

.form-note {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neon-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 14.5px; }

.form-success-intro {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px !important;
}

.form-intro.hide { display: none; }

/* ============================================================
   GENERIC SECTION UTILITIES
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 700px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .how-section, .events-section, .why-section, .corp-teaser,
  .expansion-section, .final-section, .faq-section, .envelope-section,
  .city-section { padding-top: 70px; padding-bottom: 70px; }
  .how-card, .event-card { border-width: 6px; }
}
