/* RoXinto.com — CSS matched to the uploaded HTML */

:root {
  --bg: #08090c;
  --panel: #101218;
  --text: #f7f7f8;
  --muted: #a5a9b2;
  --line: #272b34;
  --red: #ff3348;
  --blue: #40a9ff;
  --gold: #efba4a;
  --violet: #9d7aff;
  --green: #41d39b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  transition: 160ms ease;
}

.header-cta:hover {
  background: rgba(255, 51, 72, 0.10);
}

/* Sticky social share */
.social-share {
  position: fixed;
  z-index: 50;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0d0f14;
}

.share-label {
  margin: 5px 0 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #7f8490;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.social-share a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #2c3039;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
}

.social-share a:hover {
  border-color: var(--red);
}

/* HERO
   Important: image only. No ::before, no ::after, no overlay, no gradient.
*/
.hero {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 18px;
  opacity: 1;
  filter: none;
  transform: none;
}

/* Sales block below the image */
.sale-intro {
  margin-top: 22px;
  padding: 38px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .17em;
}

h1,
h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}

.lead,
.card p {
  color: var(--muted);
}

.lead {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
}

.price {
  min-width: 245px;
  display: grid;
  gap: 4px;
}

.price span {
  color: #8d929d;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.price strong {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.price a {
  width: max-content;
  margin-top: 12px;
  padding: 10px 15px;
  border: 1px solid var(--red);
  border-radius: 10px;
  font-weight: 800;
}

/* Unnumbered cards with thin colored strokes and colored tabs */
.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  --stroke: #3a3e49;
  --tab: #d7d9df;
  position: relative;
  padding: 44px 30px 28px;
  border: 1px solid var(--stroke);
  border-radius: 17px;
  background: var(--panel);
}

.card .tab {
  position: absolute;
  top: -1px;
  left: 26px;
  padding: 7px 13px 8px;
  border-radius: 0 0 8px 8px;
  background: var(--tab);
  color: #090a0d;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.card-red {
  --stroke: rgba(255, 51, 72, .62);
  --tab: var(--red);
}

.card-blue {
  --stroke: rgba(64, 169, 255, .62);
  --tab: var(--blue);
}

.card-gold {
  --stroke: rgba(239, 186, 74, .62);
  --tab: var(--gold);
}

.card-violet {
  --stroke: rgba(157, 122, 255, .62);
  --tab: var(--violet);
}

.card-green {
  --stroke: rgba(65, 211, 155, .62);
  --tab: var(--green);
}

.card p {
  margin-bottom: 0;
}

/* Contact card */
.contact {
  margin: 22px 0 70px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  padding: 14px 16px;
  display: grid;
  gap: 2px;
  border: 1px solid #2a2e38;
  border-radius: 11px;
}

.contact-links a:hover {
  border-color: var(--green);
}

.contact-links span {
  color: #858b96;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
}

footer {
  min-height: 100px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #232730;
  color: #777d88;
  font-size: .85rem;
}

@media (max-width: 920px) {
  .social-share {
    left: 50%;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    flex-direction: row;
  }

  .share-label {
    margin: 0 4px;
    writing-mode: initial;
    transform: none;
  }

  .sale-intro,
  .cards,
  .contact {
    grid-template-columns: 1fr;
  }

  footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 70px;
  }

  .sale-intro,
  .card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero img {
    border-radius: 12px;
  }

  .card .tab {
    left: 20px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
