:root {
  --bg: #050507;
  --ink: #fff7e7;
  --muted: #a8a090;
  --soft: rgba(255, 255, 255, 0.06);
  --soft-2: rgba(255, 255, 255, 0.1);
  --line: rgba(245, 196, 91, 0.22);
  --gold: #f5c45b;
  --gold-2: #a96710;
  --green: #32d19c;
  --panel: rgba(12, 13, 18, 0.86);
  --panel-2: rgba(20, 19, 24, 0.94);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-size: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22rem),
    radial-gradient(circle at 72% 5%, rgba(245, 196, 91, 0.18), transparent 22rem),
    radial-gradient(circle at 14% 40%, rgba(50, 209, 156, 0.1), transparent 20rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button {
  cursor: pointer;
}

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

.app-shell {
  position: relative;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding-bottom: 34px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #211404;
  font-size: 1.15rem;
  font-weight: 950;
  background: linear-gradient(135deg, #fff0a6, #e8a927 55%, #8b4b07);
  border: 1px solid rgba(255, 237, 162, 0.8);
  clip-path: polygon(50% 0, 92% 26%, 78% 86%, 50% 100%, 22% 86%, 8% 26%);
}

.brand-symbol {
  position: relative;
  display: block;
  width: 34px;
  height: 28px;
  flex: 0 0 auto;
}

.brand-symbol span {
  position: absolute;
  top: 5px;
  width: 17px;
  height: 17px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(245, 196, 91, 0.18));
}

.brand-symbol span:nth-child(1) {
  left: 0;
}

.brand-symbol span:nth-child(2) {
  left: 8px;
}

.brand-symbol span:nth-child(3) {
  left: 16px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy,
.brand-copy strong,
.brand-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy strong {
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(245, 196, 91, 0.14);
}

.brand-copy small {
  max-width: 260px;
  color: rgba(245, 196, 91, 0.78);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.025em;
}

.nav-links a:hover,
.text-action,
.inline-link {
  color: var(--gold);
}

.nav-cta,
.btn,
.quick-panel a,
.quick-panel button,
.bottom-bar a,
.bottom-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 700;
}

.nav-cta,
.btn {
  min-height: 39px;
  padding: 0 13px;
  font-size: 0.86rem;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.primary {
  color: #201304;
  border-color: rgba(255, 236, 158, 0.84);
  background: linear-gradient(135deg, #fff0a6, #f3bd43 56%, #a65f0c);
  box-shadow: 0 14px 34px rgba(214, 146, 28, 0.26);
}

.soft {
  color: #dffcf1;
  border-color: rgba(50, 209, 156, 0.28);
  background: rgba(50, 209, 156, 0.11);
}

.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.055);
}

.hero {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px) clamp(28px, 5vw, 62px) clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.62) 46%, rgba(5, 5, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.1), rgba(5, 5, 7, 0.86)),
    url("../images/hero-diamond-main.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 34%, rgba(245, 196, 91, 0.16), transparent 24rem),
    radial-gradient(circle at 74% 62%, rgba(245, 196, 91, 0.12), transparent 18rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 7, 0.92));
}

.quick-panel,
.product-card,
.support-grid article,
.package-grid article,
.lead-form,
.form-copy {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin: 14px 0 14px;
  font-size: clamp(1.78rem, 4.35vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(1.32rem, 2.8vw, 2.18rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 6px;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-content p {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

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

.hero-mini span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
}

.hero-mini strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.support-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(320px, calc(100% - 44px));
  padding: 14px;
  border: 1px solid rgba(255, 236, 158, 0.28);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.8);
  backdrop-filter: blur(16px);
}

.support-card strong,
.support-card small {
  display: block;
}

.support-card small {
  color: var(--muted);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(50, 209, 156, 0.12), 0 0 22px rgba(50, 209, 156, 0.7);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0 26px;
  padding: 10px;
  background: rgba(10, 11, 15, 0.76);
}

.quick-panel a,
.quick-panel button {
  min-height: 72px;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
}

.quick-panel svg {
  color: var(--gold);
}

.hero-quick {
  width: min(640px, 100%);
  margin: 8px 0 0;
  padding: 8px;
  border-color: rgba(245, 196, 91, 0.18);
  background: rgba(8, 8, 11, 0.52);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero-quick a,
.hero-quick button {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.035);
}

.section {
  padding: 30px 0;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.text-action,
.code-pill {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(245, 196, 91, 0.08);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 8px;
  color: #1f1304;
  background: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
}

.product-visual {
  display: grid;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 52%, rgba(245, 196, 91, 0.3), transparent 42%),
    linear-gradient(145deg, rgba(245, 196, 91, 0.08), rgba(255, 255, 255, 0.03));
}

.product-visual img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.product-visual svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  filter: drop-shadow(0 0 18px rgba(245, 196, 91, 0.46));
}

.product-info {
  padding-top: 12px;
}

.product-info h3,
.package-grid h3 {
  font-size: 0.95rem;
}

.product-info p,
.support-grid p,
.package-grid p {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.product-info strong,
.package-grid strong {
  color: var(--gold);
}

.product-card > a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(50, 209, 156, 0.32);
  border-radius: 8px;
  color: #dffcf1;
  background: rgba(50, 209, 156, 0.11);
}

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

.support-grid article,
.package-grid article {
  padding: 18px;
  background: var(--panel);
}

.support-grid svg {
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  color: var(--gold);
}

.package-grid article {
  position: relative;
  min-height: 230px;
}

.package-grid .featured {
  border-color: rgba(245, 196, 91, 0.5);
  background:
    linear-gradient(180deg, rgba(245, 196, 91, 0.16), rgba(255, 255, 255, 0.035)),
    var(--panel-2);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #211404;
  background: var(--gold);
  font-size: 0.7rem;
  font-weight: 950;
}

ul {
  margin: 14px 0 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.form-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 14px;
  align-items: stretch;
}

.form-copy {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(245, 196, 91, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.inline-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  padding: 14px;
  background: var(--panel-2);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  padding: 10px 11px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 196, 91, 0.52);
  box-shadow: 0 0 0 3px rgba(245, 196, 91, 0.08);
}

textarea {
  resize: vertical;
}

option {
  background: #111217;
}

.full {
  grid-column: 1 / -1;
}

.notice {
  grid-column: 1 / -1;
  padding: 11px 12px;
  border-radius: 8px;
  line-height: 1.45;
  font-size: 0.9rem;
}

.notice.success {
  color: #c8ffef;
  border: 1px solid rgba(50, 209, 156, 0.32);
  background: rgba(50, 209, 156, 0.11);
}

.notice.error {
  color: #ffd7d3;
  border: 1px solid rgba(255, 95, 87, 0.35);
  background: rgba(255, 95, 87, 0.12);
}

.footer {
  margin-top: 28px;
  padding: 22px 0 84px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer a {
  color: var(--gold);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(130px, 0.8fr));
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 196, 91, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 11, 15, 0.78);
  box-shadow: var(--shadow);
}

.footer-lockup {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col button,
.footer-col span {
  width: fit-content;
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 0;
  font-size: 0.86rem;
  text-align: left;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--gold);
}

.footer-col button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-code {
  padding: 7px 10px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px;
  color: var(--gold) !important;
  background: rgba(245, 196, 91, 0.08) !important;
  font-weight: 700;
}

.footer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 0;
}

.footer-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: rgba(245, 196, 91, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-strip svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(168, 160, 144, 0.78);
  font-size: 0.76rem;
}

.bottom-bar {
  display: none;
}

@media (max-width: 940px) {
  .app-shell {
    width: min(100% - 22px, 720px);
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 5;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 8, 11, 0.98);
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 28px 28px 26px;
    background:
      linear-gradient(90deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.7) 58%, rgba(5, 5, 7, 0.34) 100%),
      linear-gradient(180deg, rgba(5, 5, 7, 0.1), rgba(5, 5, 7, 0.9)),
      url("../images/hero-diamond-main.jpg") center / cover no-repeat;
  }

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

  .support-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 18px, 460px);
  }

  .topbar {
    padding: 9px 0;
  }

  .brand small {
    max-width: 160px;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    width: 30px;
    height: 24px;
  }

  .brand-symbol span {
    top: 4px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .brand-symbol span:nth-child(2) {
    left: 7px;
  }

  .brand-symbol span:nth-child(3) {
    left: 14px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

  .brand-copy small {
    max-width: 180px;
    font-size: 0.46rem;
    letter-spacing: 0.22em;
  }

  .hero {
    gap: 10px;
    padding-top: 8px;
  }

  h1 {
    font-size: clamp(1.46rem, 7.2vw, 1.95rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.18rem, 6vw, 1.58rem);
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.64rem;
  }

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

  .hero-actions .primary {
    grid-column: 1 / -1;
  }

  .btn {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

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

  .hero-mini span {
    padding: 9px 8px;
    font-size: 0.68rem;
  }

  .hero-mini strong {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 0;
    padding: 22px 16px 24px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.36) 0%, rgba(5, 5, 7, 0.64) 42%, rgba(5, 5, 7, 0.96) 100%),
      url("../images/hero-diamond-main.jpg") center / cover no-repeat;
  }

  .support-card {
    right: 12px;
    bottom: 14px;
    left: 12px;
    width: auto;
    padding: 11px;
  }

  .quick-panel {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-bottom: 10px;
    padding: 7px;
  }

  .quick-panel a,
  .quick-panel button {
    min-height: 62px;
    gap: 5px;
    padding: 6px 4px;
    font-size: 0.72rem;
  }

  .hero-quick {
    margin-top: 2px;
    margin-bottom: 0;
  }

  .hero-quick a,
  .hero-quick button {
    min-height: 54px;
  }

  .section {
    padding: 24px 0;
  }

  .section-head-row {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .store-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 11px;
    min-height: 112px;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    font-size: 0.62rem;
  }

  .product-visual {
    height: 88px;
  }

  .product-visual svg {
    width: 34px;
    height: 34px;
  }

  .product-info {
    min-width: 0;
    padding-top: 0;
  }

  .product-info h3 {
    margin-bottom: 3px;
  }

  .product-info p {
    margin-bottom: 3px;
  }

  .product-card > a {
    position: static;
  }

  .support-grid article,
  .package-grid article,
  .form-copy {
    padding: 13px;
  }

  .package-grid article {
    min-height: 0;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .bottom-bar {
    position: fixed;
    right: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(245, 196, 91, 0.28);
    border-radius: 8px;
    background: rgba(8, 8, 11, 0.92);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(18px);
  }

  .bottom-bar a,
  .bottom-bar button {
    min-height: 42px;
    flex-direction: column;
    gap: 2px;
    border-color: transparent;
    background: transparent;
    color: var(--muted);
    font-size: 0.62rem;
    line-height: 1.05;
  }

  .bottom-bar svg {
    width: 15px;
    height: 15px;
  }

  .bottom-primary {
    color: #201304 !important;
    background: linear-gradient(135deg, #fff0a6, #f3bd43 56%, #a65f0c) !important;
  }

  .footer {
    padding-bottom: 78px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-col { display: none; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.hero-mini,
.support-card {
  display: none;
}

@media (max-width: 620px) {
  .hero {
    min-height: 0;
    padding: 22px 16px 22px;
  }

  .footer-main {
    gap: 10px;
    padding: 12px;
  }

  .footer-actions,
  .footer-strip {
    display: none;
  }

  .footer-brand p {
    margin-bottom: 0;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .footer-bottom {
    gap: 4px;
    padding-top: 10px;
    font-size: 0.68rem;
  }
}
