:root {
  --g: #d3a844;
  --g2: #ffe69a;
  --bg: #070707;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: radial-gradient(circle at 50% 0, #3b2b0d, #080808 35%, #050505);
  color: #fff;
  font-family: Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.shell {
  max-width: 720px;
  margin: auto;
  min-height: 100vh;
  background: linear-gradient(#171717, #070707 45%);
  box-shadow: 0 0 70px #000;
  padding-bottom: 82px;
  overflow: hidden;
}
header {
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#252525, #111);
  border-top: 2px solid var(--g);
  border-bottom: 2px solid var(--g);
}
.logo {
  position: relative;
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  color: var(--g2);
  text-shadow: 0 2px #654500;
}
.logo b,
.foot-logo b {
  background: var(--g);
  color: #111;
  border-radius: 5px;
  padding: 2px 7px;
  margin-left: 2px;
}
.logo i {
  position: absolute;
  color: #e22;
  right: -10px;
  top: -13px;
}
header button {
  position: absolute;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 1px solid #f7d274;
  border-radius: 8px;
  background: linear-gradient(#ffde83, #bd8b2c);
  font-size: 27px;
  color: #2d2108;
}
header nav {
  position: absolute;
  right: 15px;
  top: 68px;
  width: 195px;
  padding: 8px;
  background: #111;
  border: 1px solid var(--g);
  border-radius: 12px;
  box-shadow: 0 18px 35px #000;
}
header nav a {
  display: block;
  padding: 12px;
  color: #f5d987;
  border-bottom: 1px solid #ffffff14;
  font-size: 13px;
  font-weight: 800;
}
.ticker {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: #181818;
  border-bottom: 1px solid var(--g);
  color: #f3d275;
}
.ticker > b {
  font-size: 25px;
}
.ticker div {
  overflow: hidden;
  flex: 1;
}
.ticker p {
  width: max-content;
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  animation: roll 18s linear infinite;
}
@keyframes roll {
  to {
    transform: translateX(-55%);
  }
}
.hero {
  min-height: 410px;
  margin: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--g);
  border-radius: 20px;
  padding: 32px 24px;
  background:
    radial-gradient(circle at 78% 42%, #67480a, #211500 25%, transparent 46%),
    radial-gradient(circle at 12% 10%, #562309, transparent 35%), #080604;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    #ffd76a18,
    transparent 70%
  );
  animation: shine 5s infinite;
}
@keyframes shine {
  from {
    transform: translateX(-100%);
  }
  70%,
  to {
    transform: translateX(100%);
  }
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 64%;
}
.hero-copy small,
article > small,
.title small {
  color: var(--g2);
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 900;
}
.hero h1 {
  font-size: 42px;
  line-height: 0.92;
  margin: 13px 0 18px;
  font-style: italic;
  letter-spacing: -2px;
}
.hero h1 span {
  background: linear-gradient(#fff4bf, #d5a53b, #805400);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy > p {
  font-size: 13px;
  line-height: 1.6;
  color: #d8cda9;
}
.badges {
  display: flex;
  gap: 6px;
  margin-top: 22px;
}
.badges b {
  padding: 6px 8px;
  border: 1px solid #c79b3b66;
  border-radius: 20px;
  background: #0008;
  color: #efd480;
  font-size: 8px;
}
.phone {
  position: absolute;
  right: 10px;
  bottom: -50px;
  width: 155px;
  height: 330px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 36px 11px;
  border: 5px solid #d4ad58;
  border-radius: 27px;
  background: #0c0a07;
  transform: rotate(7deg);
  box-shadow: 0 0 38px #dba93655;
}
.phone div {
  grid-column: 1/-1;
  color: #f8dc87;
  font-size: 13px;
  font-weight: 900;
}
.phone div b {
  background: var(--g);
  color: #111;
  padding: 2px;
}
.phone i {
  height: 62px;
  border: 1px solid var(--g);
  border-radius: 8px;
  background: radial-gradient(circle, #d6a234, #3a2504 45%, #0b0805 50%);
}
.actions {
  display: grid;
  gap: 12px;
  padding: 5px 20px 30px;
}
.cta {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--g);
  border-radius: 15px;
  background: linear-gradient(#211d13, #0e0d09);
  color: #f8e1a3;
  font-weight: 900;
}
.cta span {
  position: absolute;
  margin-left: 80%;
  font-size: 22px;
}
.cta.primary {
  background: linear-gradient(#fff0a8, #d9a743 60%, #976315);
  color: #171106;
  border-color: #ffea9c;
  box-shadow: 0 8px 25px #d5a02c3d;
}
.faq {
  padding: 38px 18px;
  background: #0d0d0d;
}
.title {
  text-align: center;
  margin-bottom: 22px;
}
.title h2 {
  margin: 8px 0;
  color: #ffedb7;
  font-size: 27px;
}
.title p {
  color: #9e947c;
  font-size: 13px;
}
.faq details {
  margin: 9px 0;
  border: 1px solid #d5a73f55;
  border-radius: 12px;
  background: #15130e;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  padding: 17px;
  display: flex;
  justify-content: space-between;
  color: #f2d995;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details p {
  margin: 0;
  padding: 0 17px 17px;
  border-top: 1px solid #ffffff0b;
  color: #c6bda6;
  font-size: 13px;
  line-height: 1.65;
}
.faq details[open] summary b {
  transform: rotate(45deg);
}
article {
  margin: 18px;
  padding: 28px 22px;
  border: 1px solid var(--g);
  border-radius: 18px;
  background: #111;
}
article h2 {
  color: #f7e1a0;
  font-size: 24px;
  line-height: 1.2;
}
article p {
  color: #c8c0ab;
  font-size: 13.5px;
  line-height: 1.75;
}
article p:last-child {
  padding: 10px 13px;
  border-left: 3px solid var(--g);
  background: #d2a33b0d;
  color: #f0d58a;
}
footer {
  text-align: center;
  padding: 42px 24px 36px;
  border-top: 1px solid #d3a84455;
  background: #080808;
}
.foot-logo {
  font-size: 23px;
  font-weight: 900;
  color: #f2d17a;
}
footer > p {
  max-width: 430px;
  margin: 14px auto;
  color: #a59b82;
  font-size: 12px;
  line-height: 1.6;
}
footer div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
  margin: 20px 0;
}
footer div:nth-of-type(2) a {
  color: #dfc374;
  font-size: 11px;
}
footer small {
  color: #706a5b;
  font-size: 10px;
  line-height: 1.8;
}
.bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(720px, 100%);
  height: 74px;
  padding-bottom: env(safe-area-inset-bottom);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #111;
  border-top: 2px solid var(--g);
  box-shadow: 0 -10px 30px #000;
}
.bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ddc06d;
  border-right: 1px solid #d7a93b33;
}
.bottom span {
  font-size: 21px;
}
.bottom b {
  font-size: 11px;
}
.bottom .hot {
  background: linear-gradient(#d5a335, #8e611a);
  color: #100d06;
}
@media (max-width: 480px) {
  .hero {
    min-height: 380px;
    padding: 27px 18px;
  }
  .hero h1 {
    font-size: 35px;
  }
  .hero-copy {
    max-width: 68%;
  }
  .phone {
    right: 0;
    width: 135px;
    height: 290px;
  }
  .phone i {
    height: 50px;
  }
  article h2 {
    font-size: 21px;
  }
}
