:root {
  --red: #e8173f;
  --red-dark: #b20b2b;
  --gold-deep: #9a6712;
  --ruby-deep: #64101c;
  --gold: #d9a441;
  --gold-light: #fff1bd;
  --navy: #64101c;
  --ink: #64101c;
  --muted: rgba(100, 16, 28, 0.7);
  --line: rgba(217, 164, 65, 0.34);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(154, 103, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 16%, rgba(232, 23, 63, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(217, 164, 65, 0.28), transparent 30rem),
    radial-gradient(circle at 66% 76%, rgba(217, 164, 65, 0.2), transparent 26rem),
    linear-gradient(135deg, #ffffff 0%, #fff9eb 47%, #fff5f7 100%);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(217, 164, 65, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(232, 23, 63, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(116deg, transparent 0 44%, rgba(255, 255, 255, 0.72) 47%, transparent 52% 100%);
  animation: mirrorSweep 8s ease-in-out infinite;
}

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

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

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

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 118px;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  padding: 0 20px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(154, 103, 18, 0.16);
  backdrop-filter: blur(24px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 42%),
    linear-gradient(135deg, var(--red), var(--red-dark) 48%, var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56), 0 14px 34px rgba(217, 164, 65, 0.32);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark) 50%, var(--gold));
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ruby-deep);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: 100vh;
  padding: 146px clamp(20px, 6vw, 86px) 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9% 5% auto auto;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(232, 23, 63, 0.24), rgba(217, 164, 65, 0.28), rgba(255, 241, 189, 0.36), rgba(232, 23, 63, 0.24));
  filter: blur(18px);
  opacity: 0.72;
}

.orbital-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vector-object {
  position: absolute;
  display: grid;
  width: clamp(64px, 8vw, 118px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 22px 48px rgba(154, 103, 18, 0.16);
  backdrop-filter: blur(18px);
  animation: floatObject 7s ease-in-out infinite;
}

.vector-object svg {
  width: 70%;
  height: 70%;
  fill: rgba(217, 164, 65, 0.12);
  stroke: var(--ruby-deep);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pen {
  top: 17%;
  left: 6%;
  color: var(--red);
}

.paper {
  top: 21%;
  right: 8%;
  animation-delay: -1.2s;
}

.book {
  bottom: 13%;
  left: 10%;
  animation-delay: -2.4s;
}

.cap {
  bottom: 20%;
  right: 6%;
  animation-delay: -3.1s;
}

.ruler {
  top: 45%;
  left: 49%;
  animation-delay: -4s;
}

.calculator {
  top: 56%;
  right: 33%;
  animation-delay: -5s;
}

.hero-copy,
.domain-showcase {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-shadow: 0 18px 50px rgba(154, 103, 18, 0.16);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 460ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark) 54%, var(--gold));
  box-shadow: 0 20px 48px rgba(217, 164, 65, 0.28);
}

.button-secondary {
  color: var(--ruby-deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(145%);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(116deg, transparent 0 36%, rgba(255, 255, 255, 0.78) 42%, transparent 48% 100%);
  transform: translateX(-80%);
  animation: cardShine 5.4s ease-in-out infinite;
}

.mirror-card {
  padding: clamp(24px, 4vw, 44px);
}

.sale-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 15px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark) 54%, var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mirror-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.price-tag,
.purchase-price {
  display: inline-grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 189, 0.88), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 38px rgba(154, 103, 18, 0.14);
}

.price-tag small,
.purchase-price span {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-tag strong,
.purchase-price strong {
  color: var(--ruby-deep);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.domain-meter {
  height: 12px;
  margin: 30px 0 24px;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.16);
  overflow: hidden;
}

.domain-meter span {
  display: block;
  width: var(--size);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold-light), var(--gold));
  box-shadow: 0 0 22px rgba(217, 164, 65, 0.34);
}

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

.domain-stats span {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.domain-stats strong {
  color: var(--ruby-deep);
}

.value,
.use,
.purchase,
.contact {
  padding: 112px clamp(20px, 6vw, 86px) 82px;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

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

.value-grid article {
  min-height: 300px;
  padding: 28px;
}

.value-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 58px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark) 54%, var(--gold));
  font-weight: 900;
}

.use {
  background:
    radial-gradient(circle at 75% 28%, rgba(232, 23, 63, 0.13), transparent 24rem),
    linear-gradient(135deg, rgba(217, 164, 65, 0.12), rgba(255, 255, 255, 0.72));
}

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

.use-list span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 16px 36px rgba(154, 103, 18, 0.12);
  color: var(--ruby-deep);
  font-weight: 900;
  text-align: center;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(232, 23, 63, 0.16), rgba(217, 164, 65, 0.22), rgba(255, 241, 189, 0.24));
  box-shadow: var(--shadow);
}

.purchase-panel h2 {
  max-width: 720px;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  overflow-wrap: anywhere;
}

.purchase-price {
  margin: 0 0 20px;
}

.purchase-steps {
  display: grid;
  gap: 12px;
}

.purchase-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.purchase-steps strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark) 54%, var(--gold));
  color: white;
}

.purchase-steps span {
  font-weight: 900;
}

.contact-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  text-align: center;
}

.contact-panel p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-grid a {
  display: grid;
  gap: 8px;
  min-height: 108px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, background 180ms ease;
  overflow-wrap: anywhere;
}

.contact-grid a:hover {
  transform: translateY(-4px);
  color: white;
  background: linear-gradient(135deg, rgba(232, 23, 63, 0.94), rgba(154, 103, 18, 0.94));
}

.contact-grid small {
  color: var(--red-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid strong {
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 54px clamp(20px, 6vw, 86px) 90px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 235, 0.92)),
    linear-gradient(90deg, rgba(232, 23, 63, 0.1), rgba(217, 164, 65, 0.16));
}

.site-footer p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer > span {
  color: var(--muted);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: white;
  box-shadow: 0 18px 42px rgba(154, 103, 18, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 54px rgba(154, 103, 18, 0.32);
}

.bubble-call {
  background: linear-gradient(135deg, var(--red), #ff5b78);
}

.bubble-whatsapp {
  background: linear-gradient(135deg, #b20b2b, var(--gold));
}

.bubble-email {
  background: linear-gradient(135deg, var(--red-dark), var(--gold));
}

.floating-contact svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.bubble-email svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes floatObject {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(18px, -24px, 0) rotate(7deg);
  }
}

@keyframes mirrorSweep {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-18%);
  }
  50% {
    opacity: 0.68;
    transform: translateX(18%);
  }
}

@keyframes cardShine {
  0%,
  34% {
    transform: translateX(-90%);
  }
  70%,
  100% {
    transform: translateX(90%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .domain-showcase {
    max-width: 720px;
  }

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

@media (max-width: 720px) {
  .site-header {
    inset: 12px 0 auto;
    padding: 0 12px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: calc(100% + 10px) 12px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(154, 103, 18, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 16px;
  }

  .hero {
    min-height: auto;
    padding: 116px 18px 58px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .paper,
  .cap,
  .calculator {
    display: none;
  }

  .pen {
    top: 14%;
    left: auto;
    right: 10%;
  }

  .book {
    bottom: 10%;
    left: 4%;
  }

  .ruler {
    top: 58%;
    left: auto;
    right: 8%;
  }

  .domain-stats,
  .value-grid,
  .use-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .value,
  .use,
  .purchase,
  .contact {
    padding: 86px 18px 58px;
  }

  .value-grid article {
    min-height: auto;
  }

  .value-grid span {
    margin-bottom: 32px;
  }

  .purchase-steps article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .site-footer {
    padding: 46px 18px 92px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact a {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
