:root {
  --bg: #0b0d11;
  --bg-soft: #12161c;
  --bg-panel: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.10);
  --text: #f3efe7;
  --text-soft: #c8c3b9;
  --text-muted: #95908a;
  --gold: #e0b760;
  --gold-soft: #f4d89d;
  --teal: #23b6ab;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(35, 182, 171, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(224, 183, 96, 0.14), transparent 24%),
    linear-gradient(180deg, #090b0f 0%, #0e1117 46%, #0a0c10 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 84%);
  opacity: 0.35;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.top-strip {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 7, 10, 0.84);
  color: var(--text-soft);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 13, 17, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-logo {
  width: clamp(160px, 18vw, 230px);
  height: auto;
}

.brand-support {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: var(--text-soft);
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #121212;
  box-shadow: 0 18px 44px rgba(224, 183, 96, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button:hover,
.button-secondary:hover,
.tiny-button:hover,
.product-card:hover,
.finish-card:hover,
.showcase-card:hover,
.application-card:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: none;
  flex-direction: column;
  gap: 26px;
  padding: 92px 24px 28px;
  background: rgba(7, 10, 14, 0.97);
  backdrop-filter: blur(20px);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  color: var(--text);
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: rgba(8, 10, 13, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero {
  padding-top: 56px;
  padding-bottom: 26px;
}

.hero-grid,
.story-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-label,
.card-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 500;
}

.hero h1 strong,
.section-head h2 strong,
.proof-card strong,
.reason-card strong,
.story-note strong {
  color: var(--gold-soft);
}

.hero-copy p,
.section-head p,
.story-copy p,
.faq-intro {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.hero-copy p {
  margin: 22px 0 28px;
  max-width: 620px;
}

.hero-actions,
.contact-actions,
.showcase-actions,
.download-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chips,
.proof-grid,
.story-list,
.reason-grid,
.download-grid,
.category-grid,
.finish-grid,
.showcase-grid,
.application-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.hero-chips {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  gap: 14px;
}

.chip,
.proof-card,
.story-note,
.reason-card,
.faq-card,
.contact-card,
.download-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.chip {
  padding: 14px 16px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
}

.hero-stage {
  position: relative;
  min-height: 760px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at 28% 24%, rgba(35, 182, 171, 0.18), transparent 24%),
    radial-gradient(circle at 72% 24%, rgba(224, 183, 96, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(18, 22, 28, 0.96), rgba(7, 10, 14, 0.98));
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.hero-stage::before {
  inset: auto -20% 4% -20%;
  height: 180px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.66), transparent 70%);
  filter: blur(10px);
}

.hero-stage::after {
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: heroSweep 6.5s ease-in-out infinite;
}

.hero-badge,
.visual-badge,
.hero-caption strong,
.hero-stage-note,
.hero-handle figcaption {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 13, 17, 0.68);
  color: var(--text-soft);
}

.hero-outline {
  position: absolute;
  inset: 13% auto auto 50%;
  transform: translateX(-50%);
  width: 86%;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.10);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6.8vw, 92px);
  line-height: 0.96;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  inset: 20% auto auto 50%;
  width: 460px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(224, 183, 96, 0.16);
  box-shadow:
    0 0 0 26px rgba(224, 183, 96, 0.05),
    0 0 0 56px rgba(255, 255, 255, 0.02);
  z-index: 0;
}

.hero-stage-note {
  position: absolute;
  top: 74px;
  right: 22px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 13, 17, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-soft);
}

.hero-handle {
  position: absolute;
  z-index: 1;
  transition: transform 220ms ease;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.42));
}

.hero-handle::before,
.hero-handle::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-handle::before {
  inset: 8% -12%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 62%);
  filter: blur(18px);
  z-index: -1;
  opacity: 0.9;
  animation: haloPulse 4.8s ease-in-out infinite;
}

.hero-handle::after {
  left: 50%;
  bottom: -5%;
  width: 68%;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.60), transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.hero-handle img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.hero-handle.front {
  right: 8%;
  bottom: 6%;
  height: min(84%, 660px);
}

.hero-handle.back {
  left: 8%;
  bottom: 6%;
  height: min(84%, 660px);
  opacity: 1;
}

.hero-handle.back::before {
  background: radial-gradient(circle at center, rgba(50, 188, 255, 0.18), transparent 62%);
}

.hero-handle.front::before {
  background: radial-gradient(circle at center, rgba(224, 183, 96, 0.20), transparent 62%);
}

.hero-handle figcaption {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  white-space: nowrap;
  font-size: 10px;
}

.hero-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 13, 17, 0.66);
}

.hero-caption span,
.proof-card span,
.card-copy p,
.download-card p,
.reason-card p,
.contact-row strong,
.contact-row a {
  color: var(--text-soft);
}

.proof-grid,
.reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card,
.reason-card,
.download-card,
.contact-card {
  padding: 24px;
}

.proof-card strong,
.reason-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.proof-card span,
.reason-card p,
.download-card p,
.story-item,
.contact-row strong,
.contact-row a,
.field input,
.field textarea,
.form-status {
  font-size: 14px;
  line-height: 1.7;
}

.story-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 26px;
  align-items: stretch;
}

.story-copy,
.story-visual-stack {
  display: grid;
  gap: 18px;
}

.story-note strong,
.story-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
}

.story-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.story-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

.story-visual-stack {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: minmax(220px, auto) minmax(220px, auto);
}

.visual-card,
.product-card,
.finish-card,
.showcase-card,
.application-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 220ms ease, border-color 220ms ease;
}

.visual-card {
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.visual-card.large {
  grid-row: span 2;
}

.visual-card img,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 13, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

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

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

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

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

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

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

.media-frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.10));
}

.media-frame.tall {
  aspect-ratio: 3 / 4;
}

.product-card::after,
.finish-card::after,
.showcase-card::after,
.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 900ms ease;
  pointer-events: none;
}

.product-card:hover::after,
.finish-card:hover::after,
.showcase-card:hover::after,
.application-card:hover::after {
  transform: translateX(120%);
}

.product-card:hover .media-frame img,
.finish-card:hover .media-frame img,
.showcase-card:hover .media-frame img,
.application-card:hover .media-frame img {
  transform: scale(1.04);
}

.card-copy {
  padding: 22px;
}

.card-copy h3,
.download-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.card-copy h3 {
  font-size: 21px;
}

.download-card h3 {
  font-size: 18px;
}

.showcase-card .card-copy {
  display: grid;
  gap: 14px;
}

.tiny-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tiny-button.primary {
  border-color: transparent;
  background: rgba(35, 182, 171, 0.14);
  color: #c9fffb;
}

.faq-card {
  padding: 22px 24px;
}

details summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.contact-head {
  margin-bottom: 24px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-row {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-row span,
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions {
  margin-top: 24px;
}

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

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

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  resize: vertical;
}

.field textarea {
  min-height: 144px;
}

.botcheck {
  display: none;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-soft);
}

.form-status.success {
  display: block;
  color: #cbfff2;
  background: rgba(35, 182, 171, 0.10);
  border-color: rgba(35, 182, 171, 0.26);
}

.form-status.error {
  display: block;
  color: #ffd8d8;
  background: rgba(189, 65, 65, 0.16);
  border-color: rgba(189, 65, 65, 0.34);
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  line-height: 1.7;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(35, 182, 171, 0.24);
  background: linear-gradient(135deg, rgba(35, 182, 171, 0.26), rgba(35, 182, 171, 0.54));
  color: #f5fffe;
  box-shadow: 0 18px 34px rgba(35, 182, 171, 0.24);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroSweep {
  0%, 18% {
    transform: translateX(-120%);
  }
  46%, 100% {
    transform: translateX(120%);
  }
}

@keyframes haloPulse {
  0%, 100% {
    opacity: 0.68;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

  .category-grid,
  .showcase-grid,
  .application-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-stage {
    min-height: 680px;
  }
}

@media (max-width: 760px) {
  .top-strip {
    font-size: 11px;
    line-height: 1.6;
  }

  .desktop-nav,
  .header-actions .button-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: clamp(146px, 32vw, 188px);
  }

  .brand-support {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy p,
  .section-head p,
  .story-copy p {
    font-size: 14px;
  }

  .hero-chips,
  .proof-grid,
  .story-list,
  .category-grid,
  .finish-grid,
  .showcase-grid,
  .reason-grid,
  .download-grid,
  .application-grid,
  .faq-grid,
  .field-grid,
  .story-visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .showcase-actions,
  .download-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .tiny-button {
    width: 100%;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-outline {
    top: 20px;
    width: 92%;
    font-size: clamp(28px, 11vw, 58px);
  }

  .hero-ring {
    width: 280px;
    top: 21%;
  }

  .hero-handle.front {
    right: 2%;
    height: 72%;
  }

  .hero-handle.back {
    left: 2%;
    bottom: 6%;
    height: 72%;
  }

  .hero-handle figcaption {
    bottom: 8px;
    font-size: 9px;
    padding: 8px 10px;
  }

  .hero-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .hero-stage-note {
    top: 62px;
    left: 16px;
    right: 16px;
    text-align: center;
    font-size: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .contact-card,
  .proof-card,
  .reason-card,
  .download-card {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-float {
    min-width: 56px;
    width: 56px;
    padding: 0;
    font-size: 0;
  }

  .wa-float::before {
    content: "WA";
    font-size: 12px;
    letter-spacing: 0.10em;
  }
}
