.hatman-landing {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --text: #0f172a;
  --muted: #5b6476;
  --line: #dbe3f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.1);
  --dark: #0f172a;
  --dark-soft: #172338;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.hatman-landing,
.hatman-landing * {
  box-sizing: border-box;
}

.hatman-landing {
  scroll-behavior: smooth;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.hatman-landing a {
  color: inherit;
  text-decoration: none;
}

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

.hatman-landing .container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hatman-landing .section {
  padding: 88px 0;
}

.hatman-landing .alt {
  background: var(--bg-soft);
}

.hatman-landing .section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #13203c 100%);
  color: #fff;
}

.hatman-landing .section-dark p,
.hatman-landing .section-dark li {
  color: rgba(255, 255, 255, 0.8);
}

.hatman-landing .promo-bar {
  background: #8ec5ff !important;
  color: #fff;
  padding: 1.25rem 0;
  position: relative;
  top: 0;
  z-index: 60;
}

.hatman-landing .promo-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 8.5rem;
}

.hatman-landing .promo-sale-block {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.hatman-landing .promo-sale-text {
  color: #fff;
  font-size: clamp(2.9rem, 4.4vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 1 auto;
}

.hatman-landing .promo-sale-subtext {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hatman-landing .promo-offer-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
  text-align: right;
  flex-wrap: nowrap;
  justify-self: end;
}

.hatman-landing .promo-offer-text {
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 2rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hatman-landing .promo-offer-text strong {
  display: inline-block;
  font-size: 1.55em;
  font-weight: 800;
  line-height: 1;
  animation: flashPrice 0.9s infinite;
}

.hatman-landing .promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.2s ease;
  flex: 0 0 auto;
}

.hatman-landing .promo-cta:hover {
  background: transparent;
  color: #fff;
}

.hatman-landing .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.hatman-landing .logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.hatman-landing .site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hatman-landing .site-nav a:not(.btn) {
  color: #334155;
  font-weight: 600;
}

.hatman-landing .site-nav a:not(.btn):hover {
  color: var(--primary);
}

.hatman-landing .menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.hatman-landing .hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hatman-landing .hero-bg,
.hatman-landing .hero-bg img,
.hatman-landing .hero-overlay {
  position: absolute;
  inset: 0;
}

.hatman-landing .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hatman-landing .hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.8), rgba(37, 99, 235, 0.45));
}

.hatman-landing .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 0 6rem;
  color: #fff;
}

.hatman-landing .eyebrow {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hatman-landing .hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hatman-landing .hero h1 span {
  color: #8ec5ff;
}

.hatman-landing .hero p {
  width: min(780px, 100%);
  margin: 1.35rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.hatman-landing .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hatman-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--primary);
  transition: 0.2s ease;
}

.hatman-landing .btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.hatman-landing .btn-sm {
  padding: 0.8rem 1rem;
}

.hatman-landing .btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.2);
}

.hatman-landing .btn-ghost:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.hatman-landing .btn-ghost.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.hatman-landing .btn-ghost.light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hatman-landing .btn-block {
  width: 100%;
}

.hatman-landing .two-col {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 3.2rem;
  align-items: center;
}

.hatman-landing .reverse-mobile {
  grid-template-columns: 0.96fr 1.04fr;
}

.hatman-landing .section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hatman-landing .section h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}

.hatman-landing .section p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hatman-landing .lead,
.hatman-landing .accent-text {
  color: #8ec5ff !important;
  font-weight: 700;
  font-size: 1.2rem !important;
}

.hatman-landing .accent-text {
  color: var(--primary) !important;
}

.hatman-landing .section-head {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.hatman-landing .section-head.center {
  text-align: center;
  margin-inline: auto;
}

.hatman-landing .feature-grid,
.hatman-landing .steps-grid,
.hatman-landing .pricing-grid,
.hatman-landing .faq-grid {
  display: grid;
  gap: 1.5rem;
}

.hatman-landing .feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hatman-landing .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hatman-landing .pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hatman-landing .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hatman-landing .feature-card,
.hatman-landing .step-card,
.hatman-landing .pricing-card,
.hatman-landing .faq-item,
.hatman-landing .media-card,
.hatman-landing .video-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hatman-landing .feature-card,
.hatman-landing .step-card,
.hatman-landing .pricing-card {
  padding: 1.6rem;
}

.hatman-landing .feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hatman-landing .step-card {
  position: relative;
  overflow: hidden;
}

.hatman-landing .step-number {
  position: absolute;
  right: 1rem;
  top: -0.2rem;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.08);
}

.hatman-landing .media-card {
  padding: 12px;
  position: relative;
}

.hatman-landing .media-card img {
  width: 100%;
  border-radius: calc(var(--radius) - 10px);
}

.hatman-landing .tilt-left::before,
.hatman-landing .tilt-right::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.08);
  z-index: -1;
}

.hatman-landing .tilt-left::before {
  transform: rotate(-2.5deg) scale(1.02);
}

.hatman-landing .tilt-right::before {
  transform: rotate(2.5deg) scale(1.02);
}

.hatman-landing .dark-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.hatman-landing .top-gap {
  margin-top: 5rem;
}

.hatman-landing .feature-stack > .two-col + .two-col {
  margin-top: 4rem;
}

.hatman-landing .alt-band {
  padding: 2rem;
  border-radius: 32px;
  background: var(--bg-soft);
}

.hatman-landing .check-list,
.hatman-landing .x-list,
.hatman-landing .price-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.hatman-landing .check-list li,
.hatman-landing .x-list li,
.hatman-landing .price-list li {
  position: relative;
  padding-left: 2rem;
  margin-top: 0.85rem;
  color: #334155;
}

.hatman-landing .section-dark .check-list li,
.hatman-landing .section-dark .x-list li {
  color: rgba(255, 255, 255, 0.82);
}

.hatman-landing .check-list li::before,
.hatman-landing .price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.hatman-landing .x-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #f87171;
  font-weight: 800;
}

.hatman-landing .compact li {
  margin-top: 0.55rem;
}

.hatman-landing .user-strip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hatman-landing .user-strip span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  margin-right: -0.45rem;
  border: 2px solid #fff;
}

.hatman-landing .video-shell {
  padding: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.hatman-landing .video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
}

.hatman-landing .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hatman-landing .pricing-card {
  display: flex;
  flex-direction: column;
}

.hatman-landing .pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.hatman-landing .badge {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.hatman-landing .price {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  margin: 0.4rem 0 1rem;
}

.hatman-landing .price span {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hatman-landing .price em {
  font-style: normal;
  color: var(--muted);
}

.hatman-landing .price-list {
  margin-bottom: 1.5rem;
  flex: 1;
}

.hatman-landing .faq-wrap {
  max-width: 1120px;
}

.hatman-landing .faq-search-wrap {
  max-width: 460px;
  margin: 0 auto 2rem;
}

.hatman-landing .faq-search-wrap input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font: inherit;
  box-shadow: var(--shadow);
}

.hatman-landing .faq-item {
  padding: 1.1rem 1.2rem;
}

.hatman-landing .faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.hatman-landing .faq-item summary::-webkit-details-marker {
  display: none;
}

.hatman-landing .faq-item p {
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
}

.hatman-landing .small-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hatman-landing .center-text {
  text-align: center;
}

.hatman-landing .site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.hatman-landing .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding: 3.5rem 0 2rem;
}

.hatman-landing .footer-grid h4 {
  margin: 0 0 0.7rem;
}

.hatman-landing .footer-grid a {
  display: block;
  color: var(--muted);
  margin-top: 0.55rem;
}

.hatman-landing .footer-bottom {
  padding: 1.25rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hatman-landing .hidden {
  display: none !important;
}

.hatman-landing .audience-feature {
  align-items: center;
}

.hatman-landing .audience-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 18px;
}

.hatman-landing .audience-icon-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hatman-landing .audience-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hatman-landing .audience-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--primary-soft);
  margin-bottom: 14px;
}

.hatman-landing .audience-icon-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.hatman-landing .audience-icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.hatman-landing .audience-media-card img {
  width: 100%;
  display: block;
}

.hatman-landing .topbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.hatman-landing .topbar-logo img {
  display: block;
  width: min(180px, 28vw);
  height: auto;
  object-fit: contain;
}

.hatman-landing .section-image--hero-tech .media-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 20% 20%, rgba(125, 211, 252, 0.18), transparent 40%),
              radial-gradient(circle at 80% 30%, rgba(167, 139, 250, 0.16), transparent 38%),
              linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.82));
}

.hatman-landing .section-image--hero-tech .media-card .tech-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.hatman-landing .section-image--hero-tech .media-card .tech-foreground {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

@keyframes flashPrice {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.12);
  }
}

@media (max-width: 1180px) {
  .hatman-landing .promo-bar-inner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    min-height: auto;
    justify-items: center;
    text-align: center;
  }

  .hatman-landing .promo-sale-block,
  .hatman-landing .promo-offer-block {
    justify-content: center;
    text-align: center;
  }

  .hatman-landing .promo-offer-block {
    justify-self: center;
  }
}

@media (max-width: 1040px) {
  .hatman-landing .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hatman-landing .steps-grid,
  .hatman-landing .pricing-grid,
  .hatman-landing .faq-grid,
  .hatman-landing .footer-grid,
  .hatman-landing .two-col,
  .hatman-landing .reverse-mobile {
    grid-template-columns: 1fr;
  }

  .hatman-landing .alt-band {
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 980px) {
  .hatman-landing .audience-icon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hatman-landing .promo-bar {
    padding: 0.9rem 0;
  }

  .hatman-landing .promo-bar-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .hatman-landing .promo-sale-block,
  .hatman-landing .promo-offer-block {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hatman-landing .promo-sale-block {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hatman-landing .promo-sale-text {
    font-size: clamp(2.5rem, 9vw, 4rem);
    white-space: normal;
  }

  .hatman-landing .promo-sale-subtext {
    font-size: 1rem;
    white-space: normal;
  }

  .hatman-landing .promo-offer-block {
    flex-wrap: wrap;
    justify-self: center;
  }

  .hatman-landing .promo-offer-text {
    font-size: clamp(1.1rem, 4.2vw, 1.6rem);
    white-space: normal;
  }

  .hatman-landing .promo-cta {
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 900px) {
  .hatman-landing .promo-bar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hatman-landing .promo-offer-block {
    justify-self: center;
  }

  .hatman-landing .topbar-logo img {
    width: min(160px, 48vw);
  }
}

@media (max-width: 760px) {
  .hatman-landing .section {
    padding: 70px 0;
  }

  .hatman-landing .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .hatman-landing .site-nav.open {
    display: flex;
  }

  .hatman-landing .menu-toggle {
    display: block;
  }

  .hatman-landing .hero-actions {
    flex-direction: column;
  }

  .hatman-landing .btn,
  .hatman-landing .btn-sm {
    width: 100%;
  }

  .hatman-landing .feature-grid,
  .hatman-landing .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hatman-landing .promo-bar {
    padding: 0.95rem 0;
  }

  .hatman-landing .promo-sale-block,
  .hatman-landing .promo-offer-block {
    flex-wrap: wrap;
    gap: 0.55rem 0.8rem;
  }

  .hatman-landing .promo-sale-text {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .hatman-landing .promo-sale-subtext,
  .hatman-landing .promo-offer-text {
    font-size: 1rem;
  }
}

.hatman-landing .site-footer .footer-logo img {
  width: 300px;
  height: auto;
}
