/* ─────────────────────────────────────────
   BuildNYC — pricing.css  (Apple-style white)
   v20260407
   ───────────────────────────────────────── */

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

:root {
  --text:   #1d1d1f;
  --text2:  #6e6e73;
  --text3:  #86868b;
  --bg:     #ffffff;
  --bg2:    #f5f5f7;
  --bg3:    #e8e8ed;
  --border: #d2d2d7;
  --blue:   #0071e3;
  --green:  #1a9e45;
  --red:    #c9252d;
  --amber:  #b45309;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --pill: 980px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

/* ── ANNOUNCE BAR ── */
div[style*="background:#6366f1"] {
  background: var(--blue) !important;
  font-family: var(--sans) !important;
  letter-spacing: 0 !important;
}

/* ── DATA BAR — hide entirely ── */
.data-bar { display: none !important; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px; height: 56px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; color: #1e3a6e;
}
.nav-logo-text { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.nav-logo-tld { color: var(--text3); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 0; margin-left: 20px; }
.nav-link {
  font-size: 14px; font-weight: 400; color: var(--text2);
  text-decoration: none; padding: 6px 14px; transition: color .15s;
}
.nav-link:hover { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-size: 14px; font-weight: 400; color: var(--text2);
  text-decoration: none; transition: color .15s;
}
.nav-login:hover { color: var(--text); }
.nav-btn {
  padding: 7px 18px; font-size: 14px; font-weight: 500;
  background: var(--blue); border: none; color: #fff;
  border-radius: var(--pill); cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.nav-btn:hover { background: #0077ed; }
.nav-cta {
  font-size: 14px; font-weight: 500; background: var(--blue);
  color: #fff; border: none; padding: 8px 20px;
  border-radius: var(--pill); cursor: pointer; transition: background .15s;
}
.nav-cta:hover { background: #0077ed; }

/* ── HERO ── */
.hero {
  max-width: 640px; margin: 0 auto;
  padding: 96px 40px 80px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-bottom: 16px; letter-spacing: .01em;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px); font-weight: 700;
  letter-spacing: -0.022em; line-height: 1.05;
  color: var(--text); margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px; color: var(--text2);
  line-height: 1.65; max-width: 460px;
  margin: 0 auto 36px;
}
.hero > div { margin-top: 0; }
.hero > div button,
.hero > div .nav-cta {
  display: inline-block; padding: 14px 32px;
  background: var(--blue); color: #fff;
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  border-radius: var(--pill); border: none; cursor: pointer;
  text-decoration: none; transition: background .15s;
}
.hero > div button:hover { background: #0077ed; }

/* ── SECTIONS ── */
.entry-section,
.modules-section,
.bundle-section,
.enterprise-section,
.faq-section {
  padding: 72px 44px;
  border-top: 1px solid var(--border);
  max-width: 960px; margin: 0 auto;
  box-sizing: border-box;
}
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text3);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── ENTRY TIER ── */
.entry-card {
  background: var(--bg2); border-radius: 20px;
  padding: 44px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 52px; align-items: start;
}
.entry-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.entry-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.1;
  color: var(--text); margin-bottom: 14px;
}
.entry-desc {
  font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 24px;
}
.entry-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }
.entry-includes li {
  font-size: 14px; color: var(--text2);
  display: flex; gap: 10px; align-items: flex-start;
}
.entry-includes li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; font-family: var(--sans); font-size: 14px; }
.entry-right {
  background: var(--bg); border-radius: 16px;
  padding: 32px; border: 1px solid var(--border);
}
.entry-excl-label {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.entry-excl { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.entry-excl li {
  font-size: 14px; color: var(--text3);
  display: flex; gap: 10px; align-items: flex-start;
}
.entry-excl li::before { content: '–'; color: var(--text3); flex-shrink: 0; }
.entry-note { font-size: 12px; color: var(--text3); text-align: center; margin-top: 12px; }
.btn-bundle {
  display: block; width: 100%;
  padding: 13px; background: var(--blue); color: #fff;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  border-radius: var(--pill); border: none; cursor: pointer;
  text-align: center; text-decoration: none; transition: background .15s;
  margin-top: 24px;
}
.btn-bundle:hover { background: #0077ed; }
.btn-bundle:disabled { opacity: .5; cursor: not-allowed; }

/* ── MODULES GRID ── */
.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.module-card {
  background: var(--bg2); border-radius: 18px;
  padding: 28px 24px 24px;
  border: none; box-shadow: none;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.mod-header { display: none; }
.mod-code { display: none; }
.mod-accent { display: none; }
.mod-title {
  font-size: 17px; font-weight: 600; color: var(--text);
  letter-spacing: -.01em; line-height: 1.2;
}
.mod-desc {
  font-size: 14px; color: var(--text2); line-height: 1.65;
  flex: 1; min-height: auto;
}
.mod-includes { display: none; }
.mod-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
}
.mod-price { display: none; }
.btn-module {
  font-size: 13px; font-weight: 500; background: transparent;
  color: var(--blue); border: 1.5px solid rgba(0,113,227,.3);
  padding: 7px 16px; border-radius: var(--pill);
  cursor: pointer; transition: border-color .15s;
}
.btn-module:hover { border-color: var(--blue); }

/* ── BUNDLE ── */
.bundle-section { padding-bottom: 72px; }
.bundle-inner {
  background: #1d1d1f; border-radius: 20px;
  padding: 52px; display: flex;
  align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.bundle-left .bundle-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px;
}
.bundle-left h2 {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.1;
  color: #fff; margin-bottom: 10px;
}
.bundle-left p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 380px; }
.bundle-right { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.btn-bundle-white {
  padding: 14px 32px; background: #fff; color: #1d1d1f;
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  border-radius: var(--pill); border: none; cursor: pointer;
  text-decoration: none; display: inline-block; transition: opacity .15s;
}
.btn-bundle-white:hover { opacity: .9; }

/* Re-use btn-bundle in bundle context */
.bundle-right .btn-bundle {
  background: #fff; color: #1d1d1f; border-radius: var(--pill);
  font-size: 16px; font-weight: 500; width: auto;
  padding: 14px 32px; margin-top: 0;
}
.bundle-right .btn-bundle:hover { opacity: .9; background: #fff; }
div[style*="font-family:var(--mono);font-size:11px"] {
  font-size: 12px !important; color: rgba(255,255,255,.3) !important;
  font-family: var(--mono) !important;
}

/* ── ENTERPRISE ── */
.ent-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.ent-left h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 12px; color: var(--text);
}
.ent-left p { font-size: 16px; color: var(--text2); line-height: 1.7; max-width: 440px; }
.btn-contact {
  display: inline-block; margin-top: 24px;
  padding: 13px 28px; background: transparent; color: var(--text);
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--border); border-radius: var(--pill);
  cursor: pointer; transition: border-color .15s;
}
.btn-contact:hover { border-color: var(--text); }
.ent-details {
  background: var(--bg2); border-radius: 16px;
  overflow: hidden; border: none;
}
.ent-row {
  padding: 14px 20px; font-size: 14px; color: var(--text2);
  border-bottom: 1px solid var(--border); background: transparent;
}
.ent-row:last-child { border-bottom: none; }
.ent-row em { font-style: normal; color: var(--text3); }

/* ── FAQ ── */
.faq-inner { max-width: 640px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  color: var(--text);
}
.faq-chevron { color: var(--text3); transition: transform .2s; flex-shrink: 0; }
.faq-a {
  display: none; padding-bottom: 20px;
  font-size: 15px; color: var(--text2); line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 44px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-size: 14px; font-weight: 700; color: var(--text); }
.footer-logo span { color: var(--text3); font-weight: 400; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--text2); }
.footer-copy { font-size: 12px; color: var(--text3); }

/* ── MODAL ── */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); backdrop-filter: blur(8px);
  z-index: 200; align-items: center; justify-content: center;
}
.overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 20px;
  padding: 40px; width: 420px; max-width: 92vw;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
}
.modal-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.modal h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.modal p { font-size: 14px; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }
.modal label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text3); margin-bottom: 5px; }
.modal input,
.modal select {
  width: 100%; padding: 11px 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-size: 15px; margin-bottom: 14px; outline: none;
  font-family: var(--sans); transition: border-color .15s;
  appearance: auto;
}
.modal input:focus { border-color: var(--blue); background: #fff; }
.modal-btns { display: flex; gap: 10px; margin-top: 4px; }
.btn-cancel {
  flex: 1; background: var(--bg2); border: none; border-radius: 10px;
  color: var(--text2); padding: 12px; font-size: 14px;
  cursor: pointer; font-family: var(--sans); transition: background .15s;
}
.btn-cancel:hover { background: var(--bg3); }
.btn-submit {
  flex: 2; background: var(--blue); color: #fff;
  border: none; border-radius: var(--pill);
  padding: 12px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--sans); transition: background .15s;
}
.btn-submit:hover { background: #0077ed; }

#toast {
  display: none; position: fixed; bottom: 24px; right: 24px;
  background: #1d1d1f; color: #fff; padding: 12px 20px;
  border-radius: 12px; font-size: 13px; z-index: 999;
}
#toast.show { display: block; }

@media(max-width: 900px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-inner { flex-direction: column; }
  .ent-inner { grid-template-columns: 1fr; }
}
@media(max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links a:not(.nav-login):not(.nav-cta) { display: none; }
  .hero { padding: 60px 24px 56px; }
  .entry-section, .modules-section, .bundle-section, .enterprise-section, .faq-section { padding: 52px 24px; }
  .entry-card { grid-template-columns: 1fr; gap: 32px; }
  .modules-grid { grid-template-columns: 1fr; }
  .bundle-inner { padding: 36px 28px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
