:root {
  --red: #e6261d;
  --red-light: #ff443a;
  --black: #08090b;
  --panel: #101114;
  --panel-soft: rgba(16, 17, 20, .82);
  --line: #2c2f35;
  --white: #f7f7f8;
  --muted: #a7abb2;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.page-shell { min-height: 100vh; overflow: hidden; background: radial-gradient(circle at 50% 15%, #202228 0, #0b0c0f 34%, #07080a 72%); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  max-width: var(--max);
  margin: auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 225px; height: auto; }
.corporate-link { text-decoration: none; color: #d5d7db; font-weight: 600; font-size: 14px; padding: 11px 16px; border: 1px solid #34373d; border-radius: 999px; transition: .25s ease; }
.corporate-link:hover { color: #fff; border-color: var(--red); background: rgba(230,38,29,.08); }

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px max(32px, calc((100vw - var(--max)) / 2)) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  align-items: center;
  gap: 80px;
  background-image: linear-gradient(90deg, rgba(7,8,10,.92) 0%, rgba(7,8,10,.56) 48%, rgba(7,8,10,.82) 100%), url('assets/retail-background.png');
  background-size: cover;
  background-position: center;
}
.hero::after { content: ''; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, var(--black)); pointer-events: none; }
.hero-glow { position: absolute; width: 650px; height: 650px; left: 15%; top: 12%; border-radius: 50%; background: rgba(230,38,29,.075); filter: blur(110px); }
.hero-content { position: relative; z-index: 2; max-width: 730px; }
.eyebrow { margin: 0 0 28px; display: flex; align-items: center; gap: 14px; color: #e6e7e9; font-size: 13px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow span { width: 38px; height: 2px; background: var(--red); }
h1 { margin: 0; font-size: clamp(74px, 8vw, 132px); line-height: .84; letter-spacing: -.07em; text-transform: uppercase; }
h1 strong { display: block; color: transparent; -webkit-text-stroke: 2px var(--white); font-weight: 800; }
.hero-copy { max-width: 630px; margin: 36px 0 28px; color: #c4c7cc; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.7; }
.domain { display: inline-flex; align-items: center; gap: 13px; padding: 15px 20px; border: 1px solid rgba(230,38,29,.8); border-radius: 14px; background: rgba(8,9,11,.72); font-size: 18px; font-weight: 700; letter-spacing: .02em; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(230,38,29,.13), 0 0 22px var(--red); }
.primary-button { display: inline-flex; align-items: center; gap: 18px; margin: 30px 0 0; padding: 16px 22px; color: #fff; background: var(--red); border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 700; transition: transform .25s ease, background .25s ease; }
.primary-button:hover { transform: translateY(-2px); background: var(--red-light); }

.story-preview { position: relative; z-index: 2; justify-self: end; width: min(330px, 100%); transform: rotate(2deg); }
.story-preview::before { content: ''; position: absolute; inset: -12px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: rgba(16,17,20,.62); box-shadow: 0 35px 80px rgba(0,0,0,.6), 0 0 60px rgba(230,38,29,.10); }
.story-preview img { position: relative; border-radius: 21px; }

.categories { max-width: var(--max); margin: auto; padding: 110px 32px 80px; }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-kicker { margin: 0 0 14px; color: var(--red-light); text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 800; }
h2 { margin: 0; font-size: clamp(35px, 5vw, 60px); letter-spacing: -.045em; line-height: 1.06; }
.section-heading > p:last-child, .closing > p:not(.section-kicker) { color: var(--muted); font-size: 17px; line-height: 1.7; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 150px; display: flex; align-items: center; gap: 24px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(20,22,26,.96), rgba(10,11,14,.92)); transition: transform .25s ease, border-color .25s ease; }
.category-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--red); }
.category-card:hover { transform: translateY(-4px); border-color: rgba(230,38,29,.6); }
.category-card--wide { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
.icon-wrap { flex: 0 0 68px; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 17px; background: rgba(230,38,29,.08); border: 1px solid rgba(230,38,29,.25); }
.icon-wrap img { width: 46px; height: 46px; }
.category-card h3 { margin: 0 0 8px; font-size: 19px; }
.category-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.trust { max-width: var(--max); margin: 25px auto 120px; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust div { padding: 25px 26px; border-left: 1px solid var(--line); }
.trust div:last-child { border-right: 1px solid var(--line); }
.trust strong, .trust span { display: block; }
.trust strong { margin-bottom: 7px; font-size: 15px; }
.trust span { color: var(--muted); font-size: 12px; }

.contact { max-width: var(--max); margin: 0 auto 120px; padding: 0 32px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card { position: relative; min-width: 0; display: grid; grid-template-columns: 54px minmax(0, 1fr) 20px; align-items: center; gap: 16px; padding: 24px; color: var(--white); text-decoration: none; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(20,22,26,.97), rgba(10,11,14,.95)); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(230,38,29,.65); background: linear-gradient(145deg, rgba(27,24,27,.98), rgba(11,11,14,.96)); }
.contact-card--whatsapp { border-color: rgba(230,38,29,.48); }
.contact-symbol { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: var(--red-light); background: rgba(230,38,29,.09); border: 1px solid rgba(230,38,29,.28); font-size: 14px; font-weight: 800; letter-spacing: .04em; }
.contact-content { min-width: 0; }
.contact-content small, .contact-content strong, .contact-content em { display: block; }
.contact-content small { margin-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-content strong { overflow-wrap: anywhere; font-size: 16px; }
.contact-content em { margin-top: 7px; color: #7f838a; font-size: 11px; font-style: normal; }
.contact-arrow { color: var(--red-light); font-size: 18px; }

.floating-whatsapp { position: fixed; z-index: 30; right: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 10px; padding: 13px 17px; color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: #1f9d55; box-shadow: 0 14px 35px rgba(0,0,0,.48); font-size: 13px; font-weight: 800; transition: transform .25s ease, background .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #24ad60; }
.floating-whatsapp span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #1f9d55; background: #fff; font-size: 9px; letter-spacing: -.02em; }

.closing { position: relative; max-width: 1120px; margin: 0 auto 110px; padding: 75px 40px; overflow: hidden; text-align: center; border: 1px solid rgba(230,38,29,.36); border-radius: 28px; background: radial-gradient(circle at 50% 130%, rgba(230,38,29,.22), transparent 48%), #0e0f12; }
.closing::before, .closing::after { content: ''; position: absolute; width: 160px; height: 2px; top: 0; background: linear-gradient(90deg, transparent, var(--red)); }
.closing::before { left: 15%; } .closing::after { right: 15%; transform: scaleX(-1); }
.closing h2 { max-width: 750px; margin: auto; }
.closing > p:not(.section-kicker) { max-width: 680px; margin: 24px auto 0; }

footer { max-width: var(--max); margin: auto; padding: 34px 32px 45px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid #24262b; color: #82868d; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
footer img { width: 155px; }
footer p { color: #d8dade; font-weight: 700; }
footer > span { justify-self: end; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 65px; text-align: center; padding-top: 150px; }
  .hero-content { margin: auto; }
  .eyebrow { justify-content: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }
  .story-preview { justify-self: center; width: 290px; transform: none; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust div:nth-child(3) { border-top: 1px solid var(--line); }
  .trust div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; max-width: 620px; margin: auto; }
}

@media (max-width: 640px) {
  .site-header { padding: 22px 20px; }
  .brand img { width: 175px; }
  .corporate-link { font-size: 0; padding: 10px 13px; }
  .corporate-link span { font-size: 18px; }
  .hero { min-height: auto; padding: 138px 20px 80px; background-position: center; }
  h1 { font-size: clamp(66px, 23vw, 92px); }
  .eyebrow { font-size: 10px; gap: 9px; }
  .eyebrow span { width: 20px; }
  .hero-copy { font-size: 16px; }
  .domain { padding: 13px 16px; font-size: 15px; }
  .story-preview { width: 235px; }
  .categories { padding: 80px 20px 60px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card--wide { grid-column: auto; width: 100%; }
  .category-card { min-height: 130px; padding: 22px; gap: 17px; }
  .icon-wrap { flex-basis: 58px; width: 58px; height: 58px; }
  .icon-wrap img { width: 40px; height: 40px; }
  .category-card h3 { font-size: 17px; }
  .trust { grid-template-columns: 1fr 1fr; padding: 0 20px; margin-bottom: 80px; }
  .trust div { padding: 19px 15px; }
  .contact { margin-bottom: 80px; padding: 0 20px; }
  .contact-card { grid-template-columns: 50px minmax(0, 1fr) 18px; padding: 19px; gap: 13px; }
  .contact-symbol { width: 50px; height: 50px; }
  .contact-content strong { font-size: 15px; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 11px 14px; font-size: 12px; }
  .closing { margin: 0 20px 70px; padding: 58px 22px; }
  footer { margin: 0 20px; padding: 32px 0 40px; grid-template-columns: 1fr; justify-items: center; gap: 16px; text-align: center; }
  footer > span { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
