:root {
  --bg: #090705;
  --bg-soft: #16110d;
  --surface: #111111;
  --surface-soft: #1b1814;
  --card: rgba(18, 15, 12, 0.9);
  --white: #f8f3ea;
  --muted: #b7afa4;
  --gold: #d1a33b;
  --gold-strong: #f0c96d;
  --gold-deep: #8e661f;
  --border: rgba(209, 163, 59, 0.26);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(240, 201, 109, 0.12), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(209, 163, 59, 0.1), transparent 24%),
    linear-gradient(180deg, #0b0907 0%, #050403 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent),
    #050505;
}

.topbar__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f2e8d8;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.topbar__link i {
  color: var(--gold);
  font-size: 1.05rem;
}

.topbar__link:hover {
  color: var(--gold-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(12, 9, 4, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 243, 0.98);
  box-shadow: 0 18px 40px rgba(12, 9, 4, 0.14);
}

.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: min(320px, 48vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #171410;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 34px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #171410;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 32px 0 28px;
  background:
    radial-gradient(circle at 18% 24%, rgba(240, 201, 109, 0.12), transparent 26%),
    radial-gradient(circle at 85% 70%, rgba(209, 163, 59, 0.18), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, #090705 0%, #0d0805 60%, #120b05 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  right: -140px;
  bottom: -90px;
  width: 420px;
  height: 280px;
  background:
    linear-gradient(135deg, rgba(255, 205, 112, 0.12), rgba(255, 205, 112, 0.02)),
    radial-gradient(circle at 30% 30%, rgba(255, 213, 138, 0.35), transparent 54%);
  transform: rotate(-12deg);
}

.hero::after {
  left: -120px;
  bottom: 54px;
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 205, 112, 0.08), transparent);
  transform: rotate(16deg);
}

.hero__glow {
  position: absolute;
  inset: auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 117, 0.18), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.hero__glow--left {
  left: -60px;
  top: 110px;
}

.hero__glow--right {
  right: -40px;
  top: 180px;
}

.hero-slider {
  position: relative;
}

.hero-slider__viewport {
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide {
  min-width: 100%;
}

.hero-slide__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 46px;
}

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

.hero-copy__kicker {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.92;
  color: var(--gold-strong);
}

.hero-copy__kicker--light {
  color: var(--white);
  margin-bottom: 18px;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero-copy h1 span,
.hero-copy h2 span {
  color: var(--gold);
}

.hero-copy__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: #f4ede4;
}

.hero-copy__subtitle::before,
.hero-copy__subtitle::after {
  content: "";
  display: inline-block;
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-points {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-point {
  flex: 1;
  min-width: 0;
  padding: 20px 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-point__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 201, 109, 0.65);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  background: radial-gradient(circle at 30% 30%, rgba(240, 201, 109, 0.18), transparent 70%);
}

.hero-point strong,
.hero-point span {
  display: block;
}

.hero-point strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-point span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.button--solid {
  color: #241607;
  background: linear-gradient(135deg, #e7bb59, #c78d25);
  border-color: rgba(255, 214, 128, 0.42);
}

.button--outline {
  color: var(--white);
  background: rgba(0, 0, 0, 0.14);
}

.button--ghost {
  color: var(--gold);
  background: rgba(209, 163, 59, 0.08);
}

.button--compact {
  min-height: 52px;
  padding: 0 24px;
}

.hero-list,
.hero-stats {
  margin: 0 0 34px;
}

.hero-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.hero-list li {
  position: relative;
  padding-left: 32px;
  color: #f0ebe0;
  font-size: 1.04rem;
}

.hero-list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 1px;
  font: var(--fa-font-regular);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero-stat {
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 1.5rem;
}

.hero-stat span {
  color: #e4dccf;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual--stacked {
  align-items: center;
}

.hero-frame {
  position: relative;
  width: min(100%, 560px);
  padding: 28px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, #4f2e08, #1d1207 22%, #d9a844 50%, #3f2508 76%, #180d05);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.44),
    inset 0 0 0 2px rgba(255, 215, 137, 0.16),
    inset 0 0 0 8px rgba(15, 9, 5, 0.32);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 210, 117, 0.85);
  pointer-events: none;
}

.hero-frame::after {
  inset: 18px;
  border-color: rgba(96, 56, 9, 0.7);
}

.hero-frame__inner {
  padding: 14px;
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.8), rgba(8, 6, 4, 0.6));
  border-radius: 4px;
  box-shadow: inset 0 0 0 2px rgba(255, 219, 150, 0.4);
}

.hero-frame__image {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-frame--tilted {
  transform: rotate(-2deg);
}

.hero-frame--wide {
  width: min(100%, 600px);
}

.hero-badge {
  position: absolute;
  right: 8%;
  top: 4%;
  z-index: 2;
  min-width: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(240, 201, 109, 0.42);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(19, 16, 11, 0.95), rgba(30, 22, 13, 0.8));
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-strong);
}

.hero-badge small {
  color: #e6dcc7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 201, 109, 0.45);
  border-radius: 50%;
  background: rgba(8, 5, 4, 0.4);
  color: var(--gold-strong);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider__arrow:hover {
  background: rgba(209, 163, 59, 0.14);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider__arrow--prev {
  left: 18px;
}

.hero-slider__arrow--next {
  right: 18px;
}

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-slider__dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dots button.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.coins-section {
  position: relative;
  padding: 84px 0 46px;
  color: #18120d;
  background:
    radial-gradient(circle at top, rgba(209, 163, 59, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf7f1 0%, #f5ede1 100%);
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 42px;
}

.section-heading__tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading__tag::before,
.section-heading__tag::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
}

.section-heading p {
  margin: 0;
  color: #5d5449;
  font-size: 1.1rem;
}

.coin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.coin-card {
  padding: 14px;
  border: 1px solid rgba(118, 92, 52, 0.2);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 236, 0.88));
  box-shadow:
    0 18px 44px rgba(26, 16, 2, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.coin-card__panel {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 30px;
  align-items: center;
  min-height: 330px;
  padding: 28px 32px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(209, 163, 59, 0.12), transparent 28%),
    linear-gradient(180deg, #111111 0%, #090705 100%);
}

.coin-card__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.coin-bar {
  position: relative;
  width: 118px;
  min-height: 222px;
  padding: 22px 14px;
  border-radius: 24px;
  border: 2px solid rgba(255, 236, 183, 0.72);
  background:
    linear-gradient(135deg, #8e6313 0%, #d8a72f 18%, #bf8f20 44%, #f0c965 70%, #9d6b12 100%);
  box-shadow:
    inset 0 0 0 2px rgba(122, 72, 8, 0.4),
    inset 0 0 0 8px rgba(255, 233, 178, 0.08),
    0 18px 30px rgba(0, 0, 0, 0.22);
  text-align: center;
  overflow: hidden;
}

.coin-bar::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 245, 212, 0.72);
}

.coin-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.22), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.12));
  mix-blend-mode: screen;
}

.coin-bar__line,
.coin-bar__brand {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff9eb;
  text-shadow: 0 1px 1px rgba(104, 66, 7, 0.32);
}

.coin-bar__line {
  font-size: 1.05rem;
  line-height: 1.25;
}

.coin-bar__line:first-child {
  margin-top: 6px;
}

.coin-bar__brand {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.coin-card__weight {
  margin: 0;
  color: #f8f0df;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.coin-card__content {
  padding: 4px 0;
  color: var(--white);
}

.coin-card__content h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.6vw, 2.55rem);
  line-height: 1.05;
  color: #fff8eb;
}

.coin-card__content ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.coin-card__content li {
  position: relative;
  padding-left: 34px;
  color: #f2eadf;
  font-size: 1rem;
}

.coin-card__content li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0;
  font: var(--fa-font-solid);
  color: var(--gold);
  font-size: 1rem;
}

.coin-card__cta {
  min-width: 210px;
  padding-left: 26px;
  padding-right: 26px;
  justify-content: center;
  color: #fff7ea;
  background: linear-gradient(135deg, #c6902a, #efc95d);
  border-color: rgba(255, 226, 160, 0.46);
}

.trust-band {
  padding: 18px 0 74px;
  background: linear-gradient(180deg, #f5ede1 0%, #f6f0e7 100%);
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 30px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, #111111, #0a0a0a 100%);
  box-shadow: 0 20px 46px rgba(26, 16, 2, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 2rem;
}

.details-section {
  padding: 0 0 86px;
  color: #1c1611;
  background: linear-gradient(180deg, #f6f0e7 0%, #f3ebe0 100%);
}

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

.detail-card {
  padding: 36px 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 40px rgba(26, 16, 2, 0.08);
}

.detail-card h3 {
  margin: 0 0 20px;
  color: var(--gold-deep);
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.detail-card p {
  margin: 0 0 24px;
  color: #473e34;
  line-height: 1.8;
}

.check-list,
.contact-list,
.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #3f372e;
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(209, 163, 59, 0.12);
  font: var(--fa-font-solid);
  color: var(--gold-deep);
  font-size: 0.72rem;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list li,
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #40372d;
  line-height: 1.6;
}

.contact-list i {
  margin-top: 5px;
  color: var(--gold-deep);
}

.site-footer {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 201, 109, 0.1), transparent 24%),
    linear-gradient(180deg, #0e0d0c 0%, #080706 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
  gap: 30px;
  padding: 54px 0 32px;
}

.footer-brand img {
  width: min(240px, 100%);
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0 0 24px;
  color: #d6c9b5;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 201, 109, 0.35);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  background: rgba(209, 163, 59, 0.12);
  transform: translateY(-2px);
}

.site-footer h4 {
  margin: 0 0 18px;
  color: var(--gold-strong);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #e1d8cc;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact i {
  margin-top: 5px;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  padding: 18px 0 24px;
  color: #c8baa6;
}

@media (max-width: 1160px) {
  .hero-slide__grid {
    gap: 30px;
    min-height: 640px;
  }

  .hero-slider__arrow--prev {
    left: 10px;
  }

  .hero-slider__arrow--next {
    right: 10px;
  }

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

@media (max-width: 980px) {
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.98);
    box-shadow: 0 24px 60px rgba(12, 9, 4, 0.16);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .site-nav a::after {
    left: 0;
    transform: none;
  }

  .hero-slide__grid,
  .coin-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide__grid {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 20px;
  }

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

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

  .hero-list {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-points,
  .hero-stats {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge {
    right: 4%;
  }

  .coin-card {
    padding: 12px;
  }

  .coin-card__panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
    min-height: auto;
    padding: 24px 20px 28px;
  }

  .coin-card__content {
    width: 100%;
  }

  .coin-card__content ul {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .trust-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .header__inner {
    min-height: 82px;
  }

  .brand img {
    width: min(250px, 60vw);
  }

  .hero {
    padding-top: 18px;
  }

  .hero-slider__arrow {
    display: none;
  }

  .hero-copy__subtitle::before,
  .hero-copy__subtitle::after {
    width: 38px;
  }

  .hero-points,
  .hero-stats {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-point,
  .hero-stat {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-frame {
    padding: 18px;
  }

  .trust-band {
    padding-bottom: 56px;
  }

  .trust-band__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding-top: 46px;
  }

  .trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .topbar__link {
    width: 100%;
    justify-content: center;
  }

  .hero-slide__grid {
    gap: 24px;
  }

  .hero-copy__subtitle {
    font-size: 1.3rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .section-heading h2 {
    font-size: 2.5rem;
  }

  .detail-card,
  .coin-card,
  .coin-card__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .coin-card__panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .coin-card__weight {
    font-size: 1.7rem;
  }

  .coin-card__content h3 {
    font-size: 1.8rem;
  }

  .coin-card__cta {
    min-width: 100%;
  }
}
