/* Main Street Media — production design system
   Media-agency feel: bold type, dark canvas, vivid accent, product UI mockups.
   Inspired by patterns from Sprout/Later/Hootsuite/agency sites (not a copy).
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #0c0f14;
  --ink-2: #141a22;
  --ink-3: #1c2430;
  --panel: #121820;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #eef2f7;
  --muted: #9aa6b2;
  --muted-2: #6b7682;
  --cream: #f6f1e8;
  --white: #ffffff;
  --accent: #ff6a3d;
  --accent-2: #ff8f66;
  --accent-soft: rgba(255,106,61,0.14);
  --mint: #3dffe0;
  --mint-soft: rgba(61,255,224,0.12);
  --violet: #8b7cff;
  --good: #3dd68c;
  --warn: #ffc857;
  --shadow: 0 24px 60px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--white); }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 600; color: var(--white); }
h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; color: var(--muted); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 36rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1rem;
}
.eyebrow:before { content: ""; width: 18px; height: 2px; background: var(--accent); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(12,15,20,0.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white) !important; font-weight: 700; font-size: 1.05rem;
}
.brand .logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #ff3d81);
  display: grid; place-items: center; color: white; font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 20px rgba(255,106,61,0.35);
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important; color: var(--ink) !important;
  padding: 10px 16px; border-radius: 999px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-2) !important; color: var(--ink) !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.5rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 0; cursor: pointer; transition: .15s ease; font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--ink) !important; }
.btn-primary:hover { background: var(--accent-2); color: var(--ink) !important; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white) !important;
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }
.btn-green { background: var(--mint); color: var(--ink) !important; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(255,106,61,0.22), transparent 60%),
    radial-gradient(800px 400px at 10% 20%, rgba(139,124,255,0.16), transparent 55%),
    var(--ink);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--accent-2); }
.hero .lead { font-size: 1.2rem; }
.hero-note { margin-top: 1.2rem; color: var(--muted-2); font-size: 0.92rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-pill {
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
  padding: 8px 12px; border-radius: 999px; font-size: 0.82rem; color: var(--muted);
}

/* PHONE MOCKUP / PRODUCT */
.product-stage { position: relative; min-height: 520px; }
.phone {
  width: 290px; margin: 0 auto; background: #000;
  border-radius: 36px; padding: 12px;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative; z-index: 2;
}
.phone-notch {
  width: 96px; height: 22px; background: #000; border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0f141c; border-radius: 26px; overflow: hidden; min-height: 480px;
}
.ig-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 600; color: var(--white);
}
.ig-user { display: flex; align-items: center; gap: 8px; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
}
.ig-media {
  aspect-ratio: 1; display: grid; place-items: center; text-align: center; padding: 20px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,106,61,0.35), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(139,124,255,0.3), transparent 50%),
    linear-gradient(160deg, #1a2230, #0d121a);
  color: var(--white); font-family: var(--display); font-size: 1.7rem; line-height: 1.2;
}
.ig-media small { display: block; margin-top: 8px; font-family: var(--font); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }
.ig-actions { padding: 10px 14px; color: var(--muted); font-size: 0.85rem; }
.ig-caption { padding: 0 14px 16px; font-size: 0.82rem; color: var(--muted); }
.ig-caption strong { color: var(--white); }

.float-card {
  position: absolute; z-index: 3;
  background: var(--ink-3); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-soft);
  width: 210px;
}
.float-card h4 { font-size: 0.85rem; margin-bottom: 4px; }
.float-card p { font-size: 0.78rem; margin: 0; color: var(--muted); }
.float-card.cal { top: 24px; left: 0; }
.float-card.rep { bottom: 40px; right: 0; }
.mini-bars { display: flex; align-items: flex-end; gap: 5px; height: 42px; margin-top: 10px; }
.mini-bars span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--accent), rgba(255,106,61,0.2)); }

/* SECTIONS */
.section { padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .lead { margin: 0 auto; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: .2s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.card h3 { color: var(--white); }
.card p { margin-bottom: 0; }
.icon-bubble {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2); font-size: 1.2rem; margin-bottom: 14px;
}

/* SAMPLE FEED */
.feed-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.post-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.post-visual {
  aspect-ratio: 1; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; position: relative; color: white;
}
.post-visual .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px;
}
.post-visual h3 { font-family: var(--display); font-size: 1.6rem; font-weight: 400; color: white; margin: 0; }
.post-visual p { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin: 6px 0 0; }
.post-body { padding: 14px 16px 16px; }
.post-body .handle { font-size: 0.78rem; color: var(--muted-2); font-weight: 600; margin-bottom: 6px; }
.post-body .caption { font-size: 0.88rem; color: var(--muted); margin: 0; }
.post-body .meta { margin-top: 10px; font-size: 0.75rem; color: var(--muted-2); }

/* niches backgrounds */
.bg-cafe { background:
  radial-gradient(circle at 20% 20%, rgba(255,200,120,0.45), transparent 40%),
  radial-gradient(circle at 80% 70%, rgba(120,70,30,0.5), transparent 45%),
  linear-gradient(160deg,#2a1a12,#120c0a); }
.bg-gym { background:
  radial-gradient(circle at 70% 20%, rgba(255,106,61,0.4), transparent 40%),
  radial-gradient(circle at 20% 80%, rgba(61,255,224,0.2), transparent 40%),
  linear-gradient(160deg,#141820,#0a0d12); }
.bg-dental { background:
  radial-gradient(circle at 30% 30%, rgba(120,200,255,0.35), transparent 40%),
  radial-gradient(circle at 80% 60%, rgba(255,255,255,0.12), transparent 40%),
  linear-gradient(160deg,#102030,#0a121a); }
.bg-florist { background:
  radial-gradient(circle at 30% 30%, rgba(255,120,180,0.35), transparent 40%),
  radial-gradient(circle at 70% 70%, rgba(180,255,160,0.2), transparent 45%),
  linear-gradient(160deg,#1a1420,#100c14); }
.bg-barber { background:
  radial-gradient(circle at 40% 30%, rgba(255,215,120,0.28), transparent 40%),
  linear-gradient(160deg,#1a1814,#0e0c0a); }
.bg-yoga { background:
  radial-gradient(circle at 50% 30%, rgba(180,140,255,0.35), transparent 45%),
  linear-gradient(160deg,#16122a,#0c0a16); }

/* PRICING */
.pricing-card { position: relative; }
.pricing-card.featured {
  border-color: rgba(255,106,61,0.45);
  box-shadow: 0 0 0 1px rgba(255,106,61,0.2), var(--shadow-soft);
  background: linear-gradient(180deg, rgba(255,106,61,0.08), rgba(255,255,255,0.02));
}
.pricing-card .tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--ink); font-size: 0.72rem; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
}
.price { font-family: var(--display); font-size: 3rem; color: var(--white); margin: 8px 0 12px; }
.price span { font-family: var(--font); font-size: 1rem; color: var(--muted); }
.pricing-card ul { list-style: none; margin: 16px 0 22px; }
.pricing-card li {
  padding: 8px 0 8px 22px; position: relative; color: var(--muted); font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.pricing-card li:before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 700; }

/* STEPS */
.step { text-align: left; }
.step .num {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2); font-weight: 800; margin-bottom: 14px;
}

/* TABLES / BADGES (portal + hero mini) */
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th, .table td { text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--line); color: var(--muted); }
.table th { color: var(--muted-2); font-size: 0.75rem; text-transform: uppercase; letter-spacing: .06em; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.badge-ok { background: rgba(61,214,140,0.15); color: var(--good); }
.badge-wait { background: rgba(255,200,87,0.15); color: var(--warn); }
.badge-draft { background: rgba(255,255,255,0.08); color: var(--muted); }
.pill { display: inline-block; background: var(--accent-soft); color: var(--accent-2); padding: 4px 10px; border-radius: 999px; font-size: .78rem; font-weight: 700; margin-bottom: .8rem; }
.muted { color: var(--muted); }

/* FORMS */
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line-2); color: var(--white);
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-success { display: none; background: rgba(61,214,140,0.12); border: 1px solid rgba(61,214,140,0.35); color: var(--good); padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; }
.form-note { color: var(--muted-2); font-size: 0.9rem; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; background: #090b10; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer h4 { color: var(--white); margin-bottom: 12px; font-size: 0.95rem; }
.footer a { display: block; color: var(--muted); margin: 6px 0; font-size: 0.92rem; }
.footer a:hover { color: var(--white); }
.footer p { color: var(--muted-2); font-size: 0.92rem; }
.footer .bottom { border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted-2); font-size: 0.85rem; }

/* PORTFOLIO / WORK */
.work-hero-sub { color: var(--muted); max-width: 40rem; }
.sample-disclaimer {
  margin: 18px auto 0; max-width: 640px; text-align: center;
  font-size: 0.88rem; color: var(--muted-2);
  border: 1px dashed var(--line-2); border-radius: 12px; padding: 10px 14px;
}
.caption-box {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px;
  font-size: 0.9rem; color: var(--muted); white-space: pre-wrap;
}
.metric-row { display: flex; gap: 12px; margin-top: 12px; }
.metric { flex: 1; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 10px; text-align: center; }
.metric .val { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.metric .lbl { color: var(--muted-2); font-size: 0.72rem; text-transform: uppercase; letter-spacing: .05em; }

/* PORTAL overrides keep readable on dark */
.portal-body { background: var(--ink); }
.sample-preview-banner a { color: var(--accent-2) !important; }

/* LEGAL */
.section .container h3 { margin-top: 1.4rem; }

@media (max-width: 960px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .feed-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .product-stage { min-height: auto; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 16px; gap: 12px;
  }
  .nav-links.open { display: flex; }
}


/* Truth-first demo plans */
.truth-banner {
  background: rgba(61,214,140,0.08);
  border-bottom: 1px solid rgba(61,214,140,0.25);
  color: var(--good);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
.demo-nav {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px;
}
.demo-nav a {
  border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 14px;
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
}
.demo-nav a:hover, .demo-nav a.active { border-color: var(--accent); color: var(--white); background: var(--accent-soft); }
.plan-meta { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 20px 0 28px; }
.plan-meta .card { padding: 14px 16px; }
.plan-meta h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 6px; }
.plan-meta p { margin: 0; color: var(--white); font-size: 0.95rem; }
.calendar-list { display: grid; gap: 14px; }
.cal-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.cal-day {
  background: var(--ink-3); display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 8px; border-right: 1px solid var(--line);
}
.cal-day .d { font-family: var(--display); font-size: 1.8rem; color: var(--white); line-height: 1; }
.cal-day .t { font-size: 0.68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; text-align: center; }
.cal-body { padding: 14px 16px 16px; }
.cal-body .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.cal-body .tagx {
  font-size: 0.68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-2);
}
.cal-body h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font); font-weight: 700; }
.caption-box { white-space: pre-wrap; }
.cal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; font-size: 0.82rem; color: var(--muted-2); }
@media (max-width: 800px) {
  .plan-meta { grid-template-columns: 1fr 1fr; }
  .cal-item { grid-template-columns: 1fr; }
  .cal-day { flex-direction: row; gap: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
}
.report-template .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.report-template .blank {
  border: 1px dashed var(--line-2); border-radius: 12px; padding: 18px; color: var(--muted-2); font-size: 0.9rem;
  min-height: 88px;
}

.portal-layout { display:grid; grid-template-columns: 220px 1fr; min-height:100vh; }
.portal-side { background:#0a0d12; border-right:1px solid var(--line); padding:18px 14px; }
.portal-side nav { display:flex; flex-direction:column; gap:8px; margin-top:18px; }
.portal-side a { color:var(--muted); padding:8px 10px; border-radius:8px; }
.portal-side a:hover { background:rgba(255,255,255,0.04); color:var(--white); }
.portal-main { padding:28px 24px 48px; }
@media (max-width:800px){ .portal-layout{grid-template-columns:1fr;} .portal-side{border-right:0;border-bottom:1px solid var(--line);} }

/* Clickable sample feeds */
.ig-feed { display:grid; grid-template-columns: repeat(3, 1fr); gap:4px; max-width: 920px; margin:0 auto; }
.ig-feed a.ig-thumb {
  position:relative; aspect-ratio:1; overflow:hidden; display:block; background:var(--ink-3);
}
.ig-feed a.ig-thumb img { width:100%; height:100%; object-fit:cover; transition:.25s ease; }
.ig-feed a.ig-thumb:hover img { transform:scale(1.04); }
.ig-feed a.ig-thumb .hover {
  position:absolute; inset:0; background:rgba(0,0,0,.45); opacity:0; display:grid; place-items:center;
  color:#fff; font-weight:700; font-size:.9rem; transition:.2s;
}
.ig-feed a.ig-thumb:hover .hover { opacity:1; }
.sample-hero-card {
  display:grid; grid-template-columns: 1.1fr 1fr; gap:28px; align-items:center;
  border:1px solid var(--line); border-radius:24px; overflow:hidden; background:rgba(255,255,255,.02);
  margin-bottom:22px;
}
.sample-hero-card img { width:100%; height:100%; min-height:280px; object-fit:cover; }
.sample-hero-card .body { padding:28px; }
@media (max-width:860px){
  .ig-feed { grid-template-columns: repeat(2,1fr); }
  .sample-hero-card { grid-template-columns:1fr; }
}
.post-detail { max-width: 920px; margin:0 auto; }
.post-detail-grid { display:grid; grid-template-columns: 1.05fr 0.95fr; gap:0; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:var(--ink-2); }
.post-detail-grid img { width:100%; height:100%; min-height:420px; object-fit:cover; background:#000; }
.post-detail-side { padding:22px; display:flex; flex-direction:column; gap:12px; }
.post-detail-side .handle { font-weight:700; color:var(--white); }
.post-detail-side .caption { white-space:pre-wrap; color:var(--muted); font-size:.95rem; line-height:1.55; }
.post-nav { display:flex; justify-content:space-between; gap:12px; margin-top:18px; }
.credit-line { font-size:.75rem; color:var(--muted-2); margin-top:8px; }
.brand-pills { display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 8px; }
.brand-pills a { border:1px solid var(--line-2); border-radius:999px; padding:10px 14px; color:var(--muted); font-weight:600; font-size:.88rem; }
.brand-pills a:hover, .brand-pills a.active { border-color:var(--accent); color:#fff; background:var(--accent-soft); }
@media (max-width:860px){ .post-detail-grid { grid-template-columns:1fr; } .post-detail-grid img{ min-height:300px;} }

.truth-banner{display:none!important}
