:root {
  /* Falaê landing palette — laranja + preto, sem roxo */
  --l-orange: #ff6a00;
  --l-orange-soft: #ff9d4d;
  --l-bg: #0e0e11;
  --l-bg-alt: #141418;
  --l-card: #1a1a1f;
  --l-border: #26262d;
  --l-text: #eaeaf0;
  --l-text-secondary: #a7a7b3;

  --l-font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --l-font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

  --l-radius-lg: 22px;
  --l-radius-md: 14px;
  --l-radius-sm: 9px;

  --l-header-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--l-bg);
  color: var(--l-text);
  font-family: var(--l-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--l-font-heading);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}

section {
  scroll-margin-top: var(--l-header-h);
}

/* ---------- reveal on scroll ---------- */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- section heading ---------- */

.section-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-orange);
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--l-text-secondary);
  max-width: 560px;
  margin: 0 0 46px;
}

.section-head {
  text-align: center;
}

.section-head .section-sub {
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: var(--l-font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--l-orange), var(--l-orange-soft));
  color: #140a00;
  box-shadow: 0 10px 30px -8px rgba(255, 106, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -8px rgba(255, 106, 0, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--l-text);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: var(--l-orange);
  color: var(--l-orange-soft);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--l-header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(14, 14, 17, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 17, 0.9);
  border-bottom-color: var(--l-border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand-fallback {
  font-family: var(--l-font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--l-text);
}

.brand-fallback span { color: var(--l-orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--l-text-secondary);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--l-text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--l-border);
  background: var(--l-bg-alt);
  color: var(--l-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--l-header-h);
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #060607;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, 0.25) 65%, var(--l-bg) 100%);
}

.hero-mascot {
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: 120px;
  z-index: 2;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.6));
}

/* ---------- wild orbs animation (experimental) ---------- */
.hero .orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  filter: blur(44px) saturate(1.1);
  opacity: 0.18;
  transform: translate3d(0,0,0);
  will-change: transform, opacity, filter;
}

.hero .orb:nth-child(1) { background: radial-gradient(circle at 30% 30%, rgba(255,106,0,0.95), rgba(255,106,0,0.35) 40%, transparent 60%); left: -120px; top: -160px; animation: orbDriftA 18s linear infinite; }
.hero .orb:nth-child(2) { background: radial-gradient(circle at 60% 60%, rgba(255,157,77,0.9), rgba(255,157,77,0.25) 40%, transparent 60%); right: -180px; top: -40px; animation: orbDriftB 22s linear infinite; }
.hero .orb:nth-child(3) { background: radial-gradient(circle at 50% 50%, rgba(110,35,180,0.7), rgba(255,106,0,0.18) 40%, transparent 60%); left: 40%; top: 20%; width: 560px; height: 560px; opacity: 0.12; animation: orbDriftC 26s linear infinite; }

@keyframes orbDriftA {
  0% { transform: translate3d(0,0,0) scale(1); }
  25% { transform: translate3d(24px, -40px, 0) scale(1.04) rotate(6deg); }
  50% { transform: translate3d(-40px, 20px, 0) scale(0.98) rotate(-6deg); }
  75% { transform: translate3d(18px, 36px, 0) scale(1.02) rotate(3deg); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

@keyframes orbDriftB {
  0% { transform: translate3d(0,0,0) scale(1); }
  30% { transform: translate3d(-36px, 40px, 0) scale(1.06) rotate(-8deg); }
  60% { transform: translate3d(56px, -18px, 0) scale(0.96) rotate(12deg); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

@keyframes orbDriftC {
  0% { transform: translate3d(0,0,0) scale(1); filter: blur(44px) hue-rotate(0deg); }
  50% { transform: translate3d(-28px, -48px, 0) scale(1.08); filter: blur(28px) hue-rotate(18deg); }
  100% { transform: translate3d(0,0,0) scale(1); filter: blur(44px) hue-rotate(0deg); }
}

/* wild mode intensifies the orbs and adds glow to the featured plan */
.hero.wild .orb { opacity: 0.34; filter: blur(28px) saturate(1.4); }
.hero.wild .orb:nth-child(1) { animation-duration: 9s; }
.hero.wild .orb:nth-child(2) { animation-duration: 11s; }
.hero.wild .orb:nth-child(3) { animation-duration: 13s; }

/* subtle mascot wobble in wild mode */
.hero.wild .hero-mascot { transform: translateY(-6px) rotate(-4deg); transition: transform 0.45s cubic-bezier(.2,.8,.2,1); }

@media (prefers-reduced-motion: reduce) {
  .hero .orb, .hero.wild .hero-mascot { animation: none !important; transition: none !important; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--l-orange), var(--l-orange-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--l-text-secondary);
  max-width: 520px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--l-text-secondary);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounceHint 2.2s ease-in-out infinite;
}

.hero-scroll-hint .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--l-orange), transparent);
}

@keyframes bounceHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- services ---------- */

.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius-lg);
  padding: 30px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 20px 44px -16px rgba(255, 106, 0, 0.35);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.06));
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--l-orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--l-text-secondary);
  margin: 0;
}

/* ---------- plans ---------- */

.plans {
  padding: 140px 0 140px;
  background: var(--l-bg-alt);
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 480px) 1fr;
  gap: 28px;
  align-items: start;
}

.plan-card {
  position: relative;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card.is-featured {
  border-color: var(--l-orange);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.12), var(--l-card) 28%);
  box-shadow: 0 34px 80px -28px rgba(255, 106, 0, 0.45), inset 0 0 40px rgba(255,106,0,0.03);
  transform: translateY(-6px);
  padding: 42px 32px;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--l-orange), var(--l-orange-soft));
  color: #140a00;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l-orange-soft);
  margin-bottom: 8px;
}

.plan-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--l-text-secondary);
}

.plan-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--l-orange);
  margin-top: 1px;
}

/* ---------- cortes avulsos strip ---------- */

.cortes-strip {
  padding: 60px 0;
}

.cortes-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(255, 106, 0, 0.14), rgba(255, 106, 0, 0.02));
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: var(--l-radius-lg);
  padding: 34px 40px;
}

.cortes-box h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.cortes-box p {
  font-size: 14.5px;
  color: var(--l-text-secondary);
  margin: 0;
  max-width: 480px;
}

/* ---------- bastidores ---------- */

.bastidores {
  padding: 110px 0;
}

.bastidores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.bastidores-media {
  position: relative;
  border-radius: var(--l-radius-lg);
  overflow: hidden;
  border: 1px solid var(--l-border);
  aspect-ratio: 4 / 3;
  background: var(--l-card);
}

/* BASTIDORES: troque por assets/img/bastidores.jpg (ou estudio-1.jpg) */
.bastidores-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bastidores-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(255, 106, 0, 0.18), transparent 55%);
  pointer-events: none;
}

.bastidores-text .section-eyebrow { margin-bottom: 12px; }

.bastidores-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bastidores-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--l-text-secondary);
  align-items: flex-start;
}

.bastidores-list svg {
  width: 20px;
  height: 20px;
  color: var(--l-orange);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- contato ---------- */

.contato {
  padding: 110px 0 120px;
  background: var(--l-bg-alt);
}

.contato-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contato-cta .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.contato-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #06210f;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -8px rgba(37, 211, 102, 0.65);
}

.contato-hours {
  font-size: 13.5px;
  color: var(--l-text-secondary);
  margin: 0;
}

.contato-location {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--l-radius-lg);
  text-align: left;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contato-location:hover {
  border-color: rgba(255, 106, 0, 0.5);
  transform: translateY(-2px);
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.06));
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--l-orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg { width: 22px; height: 22px; }

.location-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-text strong {
  font-family: var(--l-font-heading);
  font-size: 15px;
  color: var(--l-text);
}

.location-text span {
  font-size: 13.5px;
  color: var(--l-text-secondary);
  max-width: 360px;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--l-orange-soft);
  white-space: nowrap;
  margin-left: 6px;
  flex-shrink: 0;
}

/* ---------- redes sociais / follow us ---------- */

.follow-us {
  padding: 90px 0 120px;
}

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

.follow-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--l-radius-lg);
  border: 1px solid var(--l-border);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.follow-card:hover {
  transform: translateY(-4px);
}

.follow-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.follow-icon svg { width: 24px; height: 24px; }

.follow-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.follow-text strong {
  font-family: var(--l-font-heading);
  font-size: 16px;
  color: var(--l-text);
}

.follow-text span {
  font-size: 13px;
  color: var(--l-text-secondary);
}

.follow-card--instagram {
  background: linear-gradient(120deg, rgba(221, 42, 123, 0.14), rgba(221, 42, 123, 0.02));
}
.follow-card--instagram:hover { border-color: rgba(221, 42, 123, 0.5); }
.follow-card--instagram .follow-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.follow-card--youtube {
  background: linear-gradient(120deg, rgba(255, 0, 0, 0.14), rgba(255, 0, 0, 0.02));
}
.follow-card--youtube:hover { border-color: rgba(255, 0, 0, 0.5); }
.follow-card--youtube .follow-icon { background: #ff0000; }

.follow-card--facebook {
  background: linear-gradient(120deg, rgba(24, 119, 242, 0.14), rgba(24, 119, 242, 0.02));
}
.follow-card--facebook:hover { border-color: rgba(24, 119, 242, 0.5); }
.follow-card--facebook .follow-icon { background: #1877f2; }

/* ---------- footer ---------- */

.site-footer {
  padding: 56px 0 30px;
  border-top: 1px solid var(--l-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--l-text-secondary);
  max-width: 280px;
  margin: 14px 0 0;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--l-font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--l-text-secondary);
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--l-text);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--l-orange-soft); }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--l-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--l-text-secondary);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--l-orange);
  color: var(--l-orange-soft);
}

.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--l-border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--l-text-secondary);
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .bastidores-grid { grid-template-columns: 1fr; }
  .bastidores-media { order: -1; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .mobile-nav {
    position: fixed;
    top: var(--l-header-h);
    left: 0;
    right: 0;
    background: rgba(14, 14, 17, 0.98);
    border-bottom: 1px solid var(--l-border);
    padding: 18px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 99;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--l-text);
    text-decoration: none;
    border-bottom: 1px solid var(--l-border);
  }

  .mobile-nav .btn { margin-top: 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: 1fr; }
  .cortes-box { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; }

  .contato-location {
    flex-direction: column;
    text-align: center;
  }

  .location-text { align-items: center; }
  .location-text span { max-width: 280px; }
  .location-link { margin-left: 0; }
}

/* debug-only: ?debug=compact shrinks the hero so every section fits in one
   tall screenshot without needing to scroll. Never triggered by normal use. */
body.debug-compact .hero { min-height: 340px; }
body.debug-compact .hero-scroll-hint { display: none; }
