:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--gray-100);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.35);
}

.brand-text {
  font-size: 1.2rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--amber-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  content: "";
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-700);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.search-toggle,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--gray-700);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.search-toggle:hover,
.menu-toggle:hover {
  color: var(--amber-700);
  background: var(--amber-100);
}

.menu-toggle {
  display: none;
}

.search-panel,
.mobile-panel {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.search-panel.is-open,
.mobile-panel.is-open {
  display: block;
}

.header-search {
  display: flex;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.header-search input,
.home-search input,
.advanced-search input,
.advanced-search select,
.filter-bar input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 13px 16px;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.header-search input:focus,
.home-search input:focus,
.advanced-search input:focus,
.advanced-search select:focus,
.filter-bar input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.28);
}

.header-search button,
.home-search button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 800;
}

.mobile-panel {
  padding: 12px 20px 20px;
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  color: var(--gray-700);
  font-weight: 700;
}

.hero-shell {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-50), var(--amber-100));
}

.hero-stage {
  position: relative;
  min-height: 72vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.22;
  filter: blur(18px) saturate(1.2);
  transform: scale(1.08);
}

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

.hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.98), rgba(254, 243, 199, 0.72));
  content: "";
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.hero-content h2 {
  margin: 18px 0 0;
  color: var(--amber-800);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 900;
}

.hero-desc {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--gray-700);
  font-size: 1.16rem;
}

.hero-tags,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tags span,
.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 14px 26px rgba(217, 119, 6, 0.28);
}

.primary-btn:hover {
  background: var(--amber-700);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.35);
}

.ghost-btn {
  color: var(--amber-800);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ghost-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-category-links a {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-poster {
  display: block;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.3);
}

.hero-dot.is-active {
  background: var(--amber-700);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-block {
  padding: 78px 0;
  background: var(--gray-100);
}

.white-block {
  background: var(--white);
}

.quick-search-section {
  padding: 36px 0;
  background: var(--white);
}

.quick-search-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--gray-50);
  box-shadow: var(--shadow-sm);
}

.quick-search-box h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.home-search {
  display: flex;
  gap: 12px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading a {
  color: var(--amber-700);
  font-weight: 900;
}

.category-grid,
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.category-tile,
.category-overview-card a {
  display: block;
  height: 100%;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
  border-color: rgba(217, 119, 6, 0.34);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-tile strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 1.1rem;
  font-weight: 950;
}

.category-tile span,
.category-count {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 0.82rem;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.category-overview-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber-700);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.compact-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-200);
}

.card-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .card-cover img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.94);
  font-size: 0.8rem;
  font-weight: 900;
}

.card-body {
  padding: 18px;
}

.card-meta {
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 0.86rem;
  font-weight: 800;
}

.movie-card h2 {
  display: -webkit-box;
  min-height: 2.8em;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card h2 a:hover,
.rank-info h2 a:hover {
  color: var(--amber-700);
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--amber-800);
  background: var(--amber-50);
  font-size: 0.78rem;
  font-weight: 800;
}

.compact-card .card-body {
  padding: 14px;
}

.compact-card h2 {
  font-size: 0.98rem;
}

.compact-card p {
  display: none;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rank-list {
  display: grid;
  gap: 18px;
}

.rank-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 18px;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rank-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.rank-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.rank-number {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 950;
}

.rank-info h2 {
  margin: 2px 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 950;
}

.rank-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.rank-meta {
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 0.86rem;
}

.rank-meta strong {
  color: var(--amber-700);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(135deg, var(--amber-50), var(--amber-100));
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: 1.1rem;
}

.compact-hero {
  padding: 76px 0;
}

.category-hero {
  background: linear-gradient(135deg, var(--gray-900), var(--amber-800));
}

.category-hero h1,
.category-hero p,
.category-hero .eyebrow {
  color: var(--white);
}

.category-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.small-actions {
  margin-top: 24px;
}

.filter-bar,
.advanced-search {
  display: grid;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-bar {
  grid-template-columns: minmax(0, 1fr) auto;
}

.advanced-search {
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, 0.7fr)) auto;
}

.filter-bar span,
.advanced-search span {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-weight: 900;
  white-space: nowrap;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 80px 0;
  background: var(--gray-900);
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(14px) saturate(1.25);
  transform: scale(1.07);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.55));
  content: "";
}

.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.detail-poster {
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.crumbs a:hover {
  color: var(--amber-500);
}

.detail-intro h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.detail-tags span {
  color: var(--amber-100);
  background: rgba(245, 158, 11, 0.22);
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 26px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.movie-video {
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: #000000;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.58;
}

.player-cover[hidden] {
  display: none;
}

.play-circle {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.96);
  font-size: 2rem;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
}

.watch-panel,
.article-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.watch-panel h2,
.article-panel h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  font-weight: 950;
}

.watch-panel p,
.article-panel p {
  margin: 0 0 20px;
  color: var(--gray-600);
}

.watch-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.watch-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 10px;
}

.watch-panel dt {
  color: var(--gray-500);
  font-weight: 800;
}

.watch-panel dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 900;
  text-align: right;
}

.watch-panel dd a {
  color: var(--amber-700);
}

.detail-content {
  max-width: 980px;
}

.article-panel h2 + p {
  margin-bottom: 26px;
}

.site-footer {
  color: var(--gray-300);
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 36px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  color: var(--gray-300);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 16px;
  color: var(--gray-500);
  text-align: center;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .category-grid,
  .category-overview-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .movie-grid,
  .rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advanced-search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-inner {
    height: 62px;
  }

  .hero-shell,
  .hero-stage {
    min-height: 820px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding: 46px 0 78px;
  }

  .hero-poster {
    max-width: 320px;
    margin: 0 auto;
  }

  .quick-search-box,
  .home-search,
  .player-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-search,
  .header-search {
    flex-direction: column;
  }

  .header-search button,
  .home-search button {
    min-height: 46px;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .rank-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-hero {
    padding: 58px 0;
  }

  .detail-poster {
    max-width: 280px;
  }

  .advanced-search,
  .filter-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 1rem;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .rank-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .hero-content h1,
  .page-hero h1,
  .detail-intro h1 {
    letter-spacing: -0.035em;
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }
}
