:root {
  --page-bg: #0f2744;
  --panel-bg: rgba(14, 35, 62, 0.78);
  --panel-border: rgba(251, 191, 36, 0.22);
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-75: rgba(255, 255, 255, 0.75);
  --white-55: rgba(255, 255, 255, 0.55);
  --shadow: rgba(2, 6, 23, 0.32);
}

/* Independent template: wa777go.com - fast access focused */
.template-go .site-shell {
  background:
    radial-gradient(circle at 70% 12%, rgba(251, 191, 36, 0.28), transparent 24%),
    linear-gradient(135deg, #101827 0%, #19466d 50%, #0a2540 100%);
}

.template-go .hero-content {
  gap: 72px;
}

.template-go .phone-card {
  transform: rotate(2deg);
}

.template-go .hero-copy .hero-note {
  color: #facc15;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 23, 42, 0.78), rgba(24, 61, 96, 0.82)),
    radial-gradient(circle at 24% 18%, rgba(251, 191, 36, 0.24), transparent 30%),
    linear-gradient(145deg, #19385f 0%, #1d5c84 48%, #102949 100%);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  position: relative;
  padding: 78px 24px 60px;
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
  cursor: pointer;
}

.hero-copy {
  text-align: left;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.hero-nav a {
  font-size: 14px;
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-nav a:hover {
  color: var(--white);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0 0 30px;
  color: var(--white-75);
  font-size: 17px;
}

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

.primary-action,
.secondary-action {
  min-width: 132px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-action,
.secondary-action:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.secondary-action {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217, 119, 6, 0.4);
}

.hero-visual {
  position: relative;
  height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-badge {
  position: absolute;
  top: 18px;
  right: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--white-75);
}

.hero-ball {
  position: absolute;
  left: 28px;
  bottom: 62px;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 43%, #0f172a 44% 56%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, #0f172a 44% 56%, transparent 57%),
    #f8fafc;
  box-shadow: 0 24px 40px var(--shadow);
}

.hero-player {
  width: 190px;
  height: 270px;
  border-radius: 92px 92px 24px 24px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.2) 46% 54%, transparent 55%),
    linear-gradient(160deg, #f97316 0%, #dc2626 52%, #7f1d1d 100%);
  box-shadow: 0 32px 56px rgba(251, 191, 36, 0.26);
  position: relative;
}

.hero-player::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 82px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #f8caa0, #b45309);
}

.hero-player::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -54px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(90deg, #111827 0 44%, transparent 45% 55%, #111827 56%);
}

.hero-player span {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.32);
}

.hero-player span::before {
  content: "8";
}

.platforms-section,
.download-section {
  position: relative;
  padding: 0 24px 18px;
}

.platforms-grid,
.download-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  min-height: 146px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  cursor: pointer;
  position: relative;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.56);
  background: rgba(245, 158, 11, 0.16);
}

.platform-card-featured {
  grid-row: span 2;
  flex-direction: column;
  align-items: stretch;
}

.platform-logo {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--provider-color), rgba(255, 255, 255, 0.12));
  font-size: 32px;
  font-weight: 800;
}

.platform-logo-image {
  background: transparent;
  overflow: hidden;
}

.platform-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  padding: 0;
  border-radius: 8px;
}

.logo-fire {
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 3;
  display: inline-block;
  font-size: 32px;
  line-height: 1;
  transform-origin: 50% 85%;
  animation: fire-bounce 0.82s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(2, 6, 23, 0.45));
  pointer-events: none;
}

.platform-card-featured .platform-logo {
  width: 100%;
  flex-basis: 142px;
}

.platform-content {
  min-width: 0;
  flex: 1;
  padding-right: 78px;
}

.platform-content h2 {
  margin: 0 0 7px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.platform-subtitle,
.platform-description {
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-subtitle {
  color: var(--white-75);
  font-size: 15px;
}

.platform-description {
  color: var(--white-55);
  font-size: 13px;
}

.platform-arrow {
  color: var(--white-55);
  font-size: 34px;
  line-height: 1;
}

.platform-rank {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.96), rgba(245, 158, 11, 0.92));
  color: #fff7ed;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(2, 6, 23, 0.25);
}

.rank-stars {
  color: #fde047;
  letter-spacing: 0;
}

.platform-stars {
  margin: 7px 0 0;
  color: #fde047;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 6px 18px rgba(245, 167, 13, 0.35);
  white-space: nowrap;
}

@keyframes fire-bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-3px) scale(1.12) rotate(-6deg);
  }

  65% {
    transform: translateY(1px) scale(0.98) rotate(4deg);
  }
}

.download-section {
  padding-bottom: 70px;
  padding-top: 4px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.download-card {
  min-height: 170px;
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    flex 0.24s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.34);
}

.download-card > div {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 88px);
}

.download-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.download-card p {
  margin: 0 0 8px;
  color: var(--white-90);
  font-size: 14px;
}

.download-card span {
  color: var(--white-75);
  font-size: 13px;
}

.download-card strong {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 38px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 56px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: absolute;
    right: 26px;
    top: 62px;
    width: 250px;
    opacity: 0.7;
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .platforms-grid {
    display: flex;
    flex-direction: column;
  }

  .platform-card-featured {
    flex-direction: row;
  }

  .platform-card-featured .platform-logo {
    width: auto;
    flex-basis: 116px;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 30px 16px 14px;
  }

  .hero-content {
    display: block;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-nav {
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-nav a {
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hero-copy p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-actions {
    justify-content: center;
  }

  .primary-action,
  .secondary-action {
    min-width: 118px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 120px;
    margin-top: 4px;
    opacity: 1;
  }

  .hero-badge {
    display: none;
  }

  .hero-ball {
    width: 52px;
    left: 24%;
    bottom: 18px;
  }

  .hero-player {
    width: 86px;
    height: 126px;
    border-radius: 44px 44px 12px 12px;
  }

  .hero-player::before {
    width: 42px;
    top: -18px;
  }

  .hero-player::after {
    left: 12px;
    right: 12px;
    bottom: -24px;
    height: 34px;
  }

  .hero-player span {
    top: 27px;
    font-size: 36px;
  }

  .platforms-section,
  .download-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .platform-card,
  .platform-card-featured {
    min-height: 92px;
    flex-direction: row;
    gap: 12px;
    padding: 12px;
  }

  .platform-logo,
  .platform-card-featured .platform-logo {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    font-size: 22px;
  }

  .platform-logo img {
    width: 100%;
    height: 100%;
  }

  .logo-fire {
    left: 4px;
    top: 4px;
    font-size: 30px;
  }

  .platform-content h2 {
    font-size: 16px;
    gap: 6px;
  }

  .platform-content {
    padding-right: 132px;
  }

  .platform-subtitle {
    font-size: 13px;
  }

  .platform-description {
    font-size: 12px;
  }

  .platform-arrow {
    display: none;
  }

  .platform-rank {
    min-width: 58px;
    height: 24px;
    right: 10px;
    top: 10px;
    padding: 0 8px;
    font-size: 11px;
    transform: none;
  }

  .platform-stars {
    margin: 6px 0 0;
    font-size: 13px;
  }


  .download-card {
    min-height: 116px;
  }

  .download-card h2 {
    font-size: 20px;
  }

  .download-card strong {
    font-size: 28px;
  }
}

/* Final Margo layout priority */
.hero-section {
  padding: 72px 24px 58px;
}

.hero-content {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  max-width: 660px;
  text-align: left;
}

.hero-nav {
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.hero-nav a {
  font-size: 14px;
  font-weight: 600;
}

.hero-brand {
  width: 168px;
  height: 168px;
  margin: 0 0 18px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(245, 167, 13, 0.34));
}

.hero-brand img {
  object-fit: cover;
  border-radius: 8px;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  text-align: left;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-copy .hero-note {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  margin: 18px 0 0;
  padding: 8px 22px;
  border: 1px solid rgba(255, 200, 66, 0.42);
  border-radius: 8px;
  background: rgba(10, 28, 48, 0.58);
  font-size: clamp(18px, 3vw, 28px);
  text-align: left;
}

.hero-art {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-content {
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-art {
    position: absolute;
    right: 0;
    bottom: -44px;
    opacity: 0.35;
    pointer-events: none;
  }
}

@media (max-width: 620px) {
  .hero-section {
    padding: 32px 18px 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-nav {
    justify-content: center;
    gap: 10px;
  }

  .hero-brand {
    width: 126px;
    height: 126px;
    margin: 0 auto 18px;
  }

  .hero-copy h1,
  .hero-copy p {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy .hero-note {
    width: 100%;
    justify-content: center;
    font-size: 20px;
    text-align: center;
  }

  .hero-art {
    display: none;
  }
}

/* Margo layout override */
.site-shell {
  background:
    linear-gradient(180deg, rgba(14, 42, 70, 0.92), rgba(35, 100, 142, 0.76) 48%, rgba(10, 28, 48, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #163352, #23648e 52%, #0d2138);
}

.hero-section {
  padding: 72px 24px 58px;
}

.hero-content {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  max-width: 660px;
  text-align: left;
}

.hero-nav {
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.hero-nav a {
  font-size: 14px;
  font-weight: 600;
}

.hero-brand {
  width: 168px;
  height: 168px;
  margin: 0 0 18px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(245, 167, 13, 0.34));
}

.hero-brand img {
  object-fit: cover;
  border-radius: 8px;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  text-align: left;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-copy .hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  margin: 18px 0 0;
  padding: 8px 22px;
  border: 1px solid rgba(255, 200, 66, 0.42);
  border-radius: 8px;
  background: rgba(10, 28, 48, 0.58);
  color: var(--gold-light);
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.2;
  box-shadow: 0 12px 34px rgba(245, 167, 13, 0.16);
}

.hero-art {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 290px;
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--panel-border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 37, 62, 0.86), rgba(6, 18, 33, 0.92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.phone-card img {
  width: 190px;
  height: 190px;
  border-radius: 12px;
  object-fit: cover;
}

.phone-card strong {
  font-size: 30px;
}

.phone-card span {
  color: var(--white-55);
}

.platforms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.platform-card {
  min-height: 150px;
  border-radius: 16px;
  padding: 18px;
}

.platform-card:first-child {
  border-color: rgba(255, 200, 66, 0.72);
  background:
    linear-gradient(180deg, rgba(245, 167, 13, 0.18), rgba(10, 28, 48, 0.74)),
    var(--panel-bg);
  box-shadow: 0 18px 50px rgba(245, 167, 13, 0.22);
}

.platform-logo {
  border-radius: 12px;
}

.platform-logo img {
  border-radius: 12px;
}

.download-section {
  padding-top: 18px;
}

.download-card {
  min-height: 168px;
  border-radius: 16px;
}

@media (max-width: 980px) {
  .hero-content {
    align-items: flex-start;
  }

  .hero-art {
    position: absolute;
    right: 0;
    bottom: -44px;
    opacity: 0.35;
    pointer-events: none;
  }

  .platforms-grid {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero-section {
    padding: 32px 18px 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-nav {
    justify-content: center;
    gap: 10px;
    font-size: 13px;
  }

  .hero-brand {
    width: 126px;
    height: 126px;
    margin: 0 auto 18px;
  }

  .hero-copy h1 {
    font-size: 30px;
    text-align: center;
  }

  .hero-copy p {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy .hero-note {
    width: 100%;
    justify-content: center;
    font-size: 20px;
  }

  .hero-art {
    display: none;
  }

  .platform-card {
    min-height: 116px;
  }
}

/* Brand hero layout */
.hero-section {
  padding: 40px 24px 58px;
}

.hero-content {
  width: min(900px, 100%);
  display: block;
}

.hero-copy {
  text-align: center;
}

.hero-nav {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 7vw, 46px);
  margin-bottom: 38px;
}

.hero-nav a {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-90);
}

.hero-brand {
  width: 190px;
  height: 190px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  box-shadow:
    0 24px 80px rgba(96, 165, 250, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-copy h1 {
  max-width: 100%;
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--white-75);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.hero-copy .hero-note {
  display: block;
  width: 100%;
  margin: 34px auto 0;
  color: var(--gold-light);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 720px) {
  .hero-section {
    padding: 28px 16px 22px;
  }

  .hero-nav {
    gap: 18px;
    margin-bottom: 24px;
  }

  .hero-nav a {
    font-size: 15px;
  }

  .hero-brand {
    width: 128px;
    height: 128px;
    margin-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .hero-copy p {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-copy .hero-note {
    margin-top: 28px;
    font-size: 22px;
  }
}

/* Margo layout final override */
.hero-section {
  padding: 72px 24px 58px;
}

.hero-content {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  max-width: 660px;
  text-align: left;
}

.hero-nav {
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.hero-nav a {
  font-size: 14px;
  font-weight: 600;
}

.hero-brand {
  width: 168px;
  height: 168px;
  margin: 0 0 18px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(245, 167, 13, 0.34));
}

.hero-brand img {
  object-fit: cover;
  border-radius: 8px;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  text-align: left;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-copy .hero-note {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  margin: 18px 0 0;
  padding: 8px 22px;
  border: 1px solid rgba(255, 200, 66, 0.42);
  border-radius: 8px;
  background: rgba(10, 28, 48, 0.58);
  font-size: clamp(18px, 3vw, 28px);
  text-align: left;
}

.hero-art {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-content {
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-art {
    position: absolute;
    right: 0;
    bottom: -44px;
    opacity: 0.35;
    pointer-events: none;
  }
}

@media (max-width: 620px) {
  .hero-section {
    padding: 32px 18px 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-nav {
    justify-content: center;
    gap: 10px;
  }

  .hero-brand {
    width: 126px;
    height: 126px;
    margin: 0 auto 18px;
  }

  .hero-copy h1,
  .hero-copy p {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy .hero-note {
    width: 100%;
    justify-content: center;
    font-size: 20px;
    text-align: center;
  }

  .hero-art {
    display: none;
  }
}
