/* ============================================
   Ragnar Portal · Ascends Tech
   Luxury dark · burgundy + gold · editorial
   ============================================ */

:root {
  --bg-0: #07070d;
  --bg-1: #0c0c14;
  --bg-2: #11111a;
  --bg-3: #161620;
  --line: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.12);

  --gold: #c9a96e;
  --gold-bright: #f5c97a;
  --gold-soft: rgba(201,169,110,0.18);
  --burgundy: #6b1b2e;
  --burgundy-bright: #a83247;
  --green: #1d9e75;
  --green-soft: rgba(29,158,117,0.18);
  --blue: #7dcfff;

  --text-0: #f5f0e8;
  --text-1: #d8d4cc;
  --text-2: #999592;
  --text-3: #6a6864;
  --text-4: #44423e;

  --display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.gold { color: var(--gold); }
.green { color: var(--green); }
.gold-gradient {
  background: linear-gradient(135deg, #f5d28a 0%, #c9a96e 40%, #a8814a 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========== TICKER =========== */
.ticker {
  background: var(--bg-1);
  border-bottom: .5px solid var(--gold-soft);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: tick 50s linear infinite;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}
.ticker-track span { flex-shrink: 0; }
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  transition: all .35s var(--ease);
}
.nav.scrolled {
  top: 0;
  background: rgba(7,7,13,0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: .5px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-logo {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: .5px solid var(--gold-soft);
  background: var(--bg-2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  color: var(--text-0);
  letter-spacing: -0.5px;
}
.brand-sub {
  font-size: 9.5px;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: all .25s var(--ease);
  position: relative;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bg-0);
  background: linear-gradient(135deg, #f5d28a, #c9a96e);
  padding: 11px 20px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 20px rgba(201,169,110,0.2);
  border: none;
  cursor: pointer;
  font-family: var(--body);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.35);
}
.nav-cta i { font-size: 16px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: all .25s var(--ease);
}

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease), transform 8s ease-out;
  transform: scale(1.08);
}
.hero-bg .slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,13,0.55) 0%, rgba(7,7,13,0.78) 60%, rgba(7,7,13,0.96) 100%),
    radial-gradient(ellipse at right top, rgba(107,27,46,0.35), transparent 60%),
    radial-gradient(ellipse at left bottom, rgba(201,169,110,0.12), transparent 50%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: .5px solid var(--gold-soft);
  border-radius: 30px;
  background: rgba(201,169,110,0.06);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease) .2s both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  color: var(--text-0);
  max-width: 900px;
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease) .4s both;
}
.hero-lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.7;
  animation: fadeUp 1s var(--ease) .6s both;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 1s var(--ease) .8s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn i { font-size: 18px; }
.btn-primary {
  background: linear-gradient(135deg, #f5d28a, #c9a96e);
  color: #1a1208;
  box-shadow: 0 6px 24px rgba(201,169,110,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,169,110,0.4);
}
.btn-ghost {
  border: .5px solid var(--line-strong);
  color: var(--text-1);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.05);
}

.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: .5px solid var(--line);
  animation: fadeUp 1s var(--ease) 1s both;
  flex-wrap: wrap;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
}
.hero-meta strong {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-meta span {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
  font-weight: 400;
}

.hero-dots {
  position: absolute;
  bottom: 60px; right: 32px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot-btn {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-soft);
  transition: all .3s var(--ease);
  cursor: pointer;
  padding: 0;
}
.dot-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 12px var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: bounce 2.5s infinite;
}
.hero-scroll i { font-size: 14px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========== MARQUEE =========== */
.marquee {
  background: var(--bg-1);
  border-top: .5px solid var(--gold-soft);
  border-bottom: .5px solid var(--gold-soft);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.5px;
  color: var(--text-0);
}
.marquee-track span.sep {
  color: var(--gold);
  font-style: normal;
}
.marquee-track > span:not(.sep):nth-child(4n+1) {
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}

/* =========== SECTION HEAD =========== */
.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.eye {
  font-size: 10.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 18px;
}
.eye.green { color: var(--green); }
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text-0);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 15px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =========== ABOUT =========== */
.about {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(107,27,46,0.06), transparent 60%),
    var(--bg-0);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.mv-card {
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  border: .5px solid var(--line);
  transition: all .4s var(--ease);
}
.mv-card.mission { border-color: var(--gold-soft); }
.mv-card.vision { border-color: var(--green-soft); }
.mv-card:hover { transform: translateY(-4px); }
.mv-card.mission:hover { border-color: rgba(201,169,110,0.4); box-shadow: 0 20px 60px rgba(201,169,110,0.08); }
.mv-card.vision:hover { border-color: rgba(29,158,117,0.4); box-shadow: 0 20px 60px rgba(29,158,117,0.08); }

.mv-deco {
  position: absolute;
  bottom: -30px; right: -10px;
  font-family: var(--display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}
.mv-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.mv-card.vision .mv-eyebrow { color: var(--green); }
.mv-eyebrow .line {
  width: 24px; height: 1px;
  background: var(--gold);
}
.mv-eyebrow .line.green { background: var(--green); }
.mv-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  color: var(--text-0);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.mv-body {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.85;
}
.mv-body strong { color: var(--text-1); font-weight: 500; }

.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.val {
  background: var(--bg-1);
  border: .5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  transition: all .3s var(--ease);
}
.val:hover {
  border-color: var(--gold-soft);
  background: rgba(201,169,110,0.03);
  transform: translateY(-3px);
}
.val i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.val h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 8px;
}
.val p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.55;
}

/* =========== SERVICES =========== */
.services {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: .5px solid var(--line);
  border-bottom: .5px solid var(--line);
}
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.serv-card {
  background: var(--bg-0);
  border: .5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: all .4s var(--ease);
  overflow: hidden;
}
.serv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.05), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.serv-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.serv-card:hover::before { opacity: 1; }
.serv-card.featured {
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(201,169,110,0.04), var(--bg-0));
}
.serv-num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.serv-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.serv-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 12px;
  line-height: 1.2;
}
.serv-card h3 .tag {
  display: inline-block;
  background: rgba(125,207,255,0.1);
  border: .5px solid rgba(125,207,255,0.3);
  color: var(--blue);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 6px;
  vertical-align: middle;
  font-family: var(--body);
}
.serv-card > p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.serv-card ul li {
  font-size: 12.5px;
  color: var(--text-3);
  padding: 8px 0;
  border-top: .5px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.serv-card ul li::before {
  content: '▸';
  color: var(--gold);
  font-size: 10px;
}

/* =========== PRICING =========== */
.pricing {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(107,27,46,0.08), transparent 50%),
    var(--bg-0);
}
.consult-banner {
  background: rgba(201,169,110,0.05);
  border: .5px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.cb-icon {
  font-size: 32px;
  color: var(--gold);
  margin-top: 4px;
}
.cb-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.consult-banner p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}
.consult-banner p strong { color: var(--gold); font-weight: 500; }
.cb-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cb-pill {
  background: rgba(201,169,110,0.1);
  border: .5px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}
.cb-pill.hi {
  background: rgba(245,180,80,0.1);
  border-color: rgba(245,180,80,0.35);
  color: var(--gold-bright);
}

.price-sec { margin-bottom: 50px; }
.price-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: .5px solid var(--gold-soft);
}
.pnum {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  flex-shrink: 0;
}
.price-head h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-0);
  line-height: 1.2;
}
.price-head h3 .tag-blue {
  display: inline-block;
  background: rgba(125,207,255,0.1);
  border: .5px solid rgba(125,207,255,0.3);
  color: var(--blue);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 2px 9px;
  border-radius: 12px;
  margin-left: 6px;
  vertical-align: middle;
  font-family: var(--body);
}
.price-head p {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 4px;
}

.price-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.price-tbl thead th {
  background: rgba(201,169,110,0.06);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: .5px solid var(--gold-soft);
}
.price-tbl thead th:last-child,
.price-tbl tbody td:last-child { text-align: right; }
.price-tbl tbody tr {
  border-bottom: .5px solid var(--line);
  transition: background .2s;
}
.price-tbl tbody tr:hover { background: rgba(201,169,110,0.03); }
.price-tbl tbody td {
  padding: 14px 16px;
  vertical-align: middle;
}
.price-tbl tbody td b {
  font-weight: 500;
  color: var(--text-0);
  font-size: 14px;
}
.price-tbl tbody td span {
  font-size: 11.5px;
  color: var(--text-3);
  display: block;
  margin-top: 2px;
}
.price-tbl .pe { color: #b8d4a8; font-weight: 500; }
.price-tbl .px { color: var(--gold-bright); font-weight: 500; }
.price-tbl .pn { color: var(--blue); font-weight: 500; }

.tag-go {
  display: inline-block;
  background: rgba(140,220,140,0.1);
  border: .5px solid rgba(140,220,140,0.3);
  color: #88cc88;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 12px;
  margin-left: 4px;
  vertical-align: middle;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tier {
  background: rgba(255,255,255,0.02);
  border: .5px solid rgba(125,207,255,0.12);
  border-radius: var(--radius-sm);
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.tier:hover {
  border-color: rgba(125,207,255,0.3);
  transform: translateY(-4px);
}
.tier.ult {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}
.tier-n {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 900;
  color: rgba(125,207,255,0.06);
  line-height: 1;
}
.tier.ult .tier-n { color: rgba(201,169,110,0.1); }
.tier-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 8px;
}
.tier.ult .tier-label { color: var(--gold); }
.tier-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 10px;
  line-height: 1.2;
}
.tier-price {
  font-size: 16px;
  font-weight: 500;
  color: #b8d4a8;
  margin-bottom: 10px;
}
.tier.ult .tier-price { color: var(--gold-bright); }
.tier p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}

.price-foot {
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--text-3);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(248,180,80,0.04);
  border-left: 2px solid rgba(248,180,80,0.3);
  border-radius: 0 8px 8px 0;
}
.price-foot i { color: var(--gold); font-size: 16px; }

/* =========== CARD SHOWCASE =========== */
.card-showcase {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(125,207,255,0.05), transparent 60%),
    var(--bg-1);
  border-top: .5px solid var(--line);
  border-bottom: .5px solid var(--line);
}
.card-show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.card-show-text h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text-0);
  margin: 20px 0 24px;
}
.card-show-text > p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
}
.card-benefits { margin-bottom: 32px; }
.card-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: .5px dashed var(--line);
  font-size: 14px;
  color: var(--text-1);
}
.card-benefits li i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.card-show-img {
  position: relative;
}
.card-show-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.card-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(125,207,255,0.2), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* =========== FOUNDER =========== */
.founder {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.05), transparent 60%),
    var(--bg-0);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.founder-img {
  position: relative;
}
.founder-img img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(0.15) contrast(1.05);
}
.founder-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: .5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}
.founder-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7,7,13,0.92);
  backdrop-filter: blur(20px);
  border: .5px solid var(--gold-soft);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 75%;
}
.founder-badge i {
  font-size: 26px;
  color: var(--gold);
}
.founder-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-0);
}
.founder-badge span {
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}

.founder-text {
  position: relative;
}
.founder-text .qmark {
  font-family: var(--display);
  font-size: 120px;
  color: rgba(201,169,110,0.15);
  line-height: 0.8;
  display: block;
  margin: 16px 0 -10px;
}
.founder-msg {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 20px;
}
.founder-msg strong {
  color: var(--text-0);
  font-weight: 500;
  font-style: normal;
}
.founder-sig {
  margin-top: 36px;
  padding-top: 24px;
  border-top: .5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sig-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.sig-title {
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}
.sig-est {
  font-size: 11.5px;
  color: var(--text-4);
  font-style: italic;
}

/* =========== GALLERY =========== */
.gallery {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: .5px solid var(--line);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: .5px solid var(--line);
}
.gal-item.gal-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: brightness(0.7) contrast(1.1);
}
.gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) contrast(1.1);
}
.gal-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(7,7,13,0.95), transparent);
  color: var(--text-0);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(20%);
  opacity: 0;
  transition: all .4s var(--ease);
}
.gal-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.gal-item figcaption span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: var(--body);
  font-weight: 500;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: .5px solid var(--line-strong);
  color: var(--text-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
}
.lb-close:hover { background: var(--gold); color: var(--bg-0); }

/* =========== CONTACT =========== */
.contact {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(107,27,46,0.08), transparent 50%),
    var(--bg-0);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { text-align: left; }
.contact-left > p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: .5px solid var(--line);
}
.contact-list .ci {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
  border: .5px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 13px;
  color: var(--text-0);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-list span {
  font-size: 13px;
  color: var(--text-2);
}

.contact-form {
  background: var(--bg-1);
  border: .5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-head { margin-bottom: 28px; }
.form-head h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 6px;
}
.form-head p {
  font-size: 13px;
  color: var(--text-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-2);
  border: .5px solid var(--line-strong);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text-0);
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field textarea { min-height: 120px; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(29,158,117,0.08);
  border: .5px solid var(--green-soft);
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 20px; }

/* =========== USERS MSG =========== */
.users-msg {
  padding: 100px 0;
  background: var(--bg-0);
}
.users-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(29,158,117,0.05), transparent);
  border: .5px solid var(--green-soft);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.users-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(29,158,117,0.1);
  border: .5px solid var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
}
.users-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-0);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.users-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.users-card p strong { color: var(--text-1); font-weight: 500; }
.users-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: .5px solid var(--line);
}
.users-sig strong {
  font-family: var(--display);
  font-size: 17px;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}
.users-sig span {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 1px;
  font-style: italic;
}

/* =========== FOOTER =========== */
.footer {
  background: var(--bg-1);
  border-top: .5px solid var(--gold-soft);
  padding: 72px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot-brand img {
  width: 56px; height: 56px;
  border-radius: 12px;
  border: .5px solid var(--gold-soft);
  margin-bottom: 16px;
}
.foot-brand h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-0);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.foot-brand p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: .5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 16px;
  transition: all .25s;
}
.socials a:hover {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.foot-col h5 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col a,
.foot-col span {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color .2s;
}
.foot-col a:hover { color: var(--gold); }
.foot-bot {
  padding-top: 24px;
  border-top: .5px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-4);
}

/* =========== BACK TO TOP =========== */
.to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease);
  z-index: 50;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }

  .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .values-row { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.gal-lg { grid-column: span 2; }

  .card-show-grid,
  .founder-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 140px 20px 80px; min-height: 90vh; }
  .hero-meta { gap: 28px; }
  .hero-meta strong { font-size: 26px; }

  .mv-grid { grid-template-columns: 1fr; }
  .serv-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: repeat(2, 1fr); }

  .about, .services, .pricing, .card-showcase, .founder, .gallery, .contact { padding: 80px 0; }

  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; align-items: flex-start; gap: 6px; }

  .consult-banner { grid-template-columns: 1fr; }
  .price-tbl thead { display: none; }
  .price-tbl tbody td { display: block; padding: 6px 12px; }
  .price-tbl tbody td:first-child { padding-top: 14px; }
  .price-tbl tbody td:last-child { padding-bottom: 14px; text-align: left; }
  .price-tbl tbody tr { display: block; margin-bottom: 8px; }

  .gal-grid { grid-template-columns: 1fr; }
  .gal-item.gal-lg { grid-column: span 1; grid-row: auto; }
  .gal-grid { grid-auto-rows: 220px; }

  .hero-dots { right: 20px; bottom: 80px; }
  .hero-title { letter-spacing: -1px; }

  .marquee-track { font-size: 22px; }
  .users-card { padding: 40px 24px; }
}

/* Mobile menu open */
body.menu-open .nav-links {
  display: flex;
  position: fixed;
  top: 75px; left: 0; right: 0;
  flex-direction: column;
  padding: 20px;
  background: var(--bg-1);
  border-bottom: .5px solid var(--line);
  gap: 4px;
  z-index: 99;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== CRYPTO PAYMENT CTA =========== */
.crypto-cta {
  background:
    linear-gradient(135deg, rgba(125,207,255,0.06), rgba(201,169,110,0.04)),
    var(--bg-1);
  border: .5px solid rgba(125,207,255,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.crypto-cta-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(125,207,255,0.1);
  border: .5px solid rgba(125,207,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue);
}
.crypto-cta-text h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.crypto-cta-text .badge-net {
  background: rgba(125,207,255,0.12);
  border: .5px solid rgba(125,207,255,0.35);
  color: var(--blue);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 14px;
  font-family: var(--body);
  text-transform: uppercase;
}
.crypto-cta-text p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.crypto-cta-text p strong { color: var(--gold); font-weight: 500; }

@media (max-width: 768px) {
  .crypto-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .crypto-cta-icon { margin: 0 auto; }
  .crypto-cta-text h4 { justify-content: center; }
}

/* =========== PAYMENT MODAL =========== */
.pay-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pay-modal.open { display: flex; animation: modalIn .35s var(--ease); }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }

.pay-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.pay-dialog {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,169,110,0.06), transparent 60%),
    var(--bg-1);
  border: .5px solid var(--gold-soft);
  border-radius: var(--radius);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6), 0 0 80px rgba(201,169,110,0.08);
  animation: dialogIn .4s var(--ease);
}
@keyframes dialogIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.pay-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: .5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 18px;
  transition: all .2s;
  cursor: pointer;
  z-index: 2;
}
.pay-close:hover { background: var(--gold); color: var(--bg-0); border-color: var(--gold); }

.pay-head { margin-bottom: 24px; }
.pay-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(125,207,255,0.08);
  border: .5px solid rgba(125,207,255,0.25);
  border-radius: 20px;
  color: var(--blue);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.pay-brand i { font-size: 14px; }
.pay-head h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  color: var(--text-0);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.pay-head p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}
.pay-head p strong { color: var(--gold); font-weight: 500; }

.pay-field { margin-bottom: 14px; }
.pay-field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 8px;
}
.pay-field input,
.pay-field select,
.pay-field textarea {
  width: 100%;
  background: var(--bg-2);
  border: .5px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-0);
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.pay-field input:focus,
.pay-field select:focus,
.pay-field textarea:focus { border-color: var(--gold); }
.pay-field textarea { resize: vertical; min-height: 60px; }

.pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .pay-row { grid-template-columns: 1fr; }
  .pay-dialog { padding: 28px 22px; }
  .pay-head h3 { font-size: 24px; }
}

.pay-summary {
  background: rgba(201,169,110,0.05);
  border: .5px solid var(--gold-soft);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.pay-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-2);
  border-bottom: .5px dashed var(--line);
}
.pay-summary-row:last-child { border-bottom: 0; }
.pay-summary-row strong {
  color: var(--text-0);
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
}
.pay-summary-row.deposit strong { color: var(--gold); font-size: 16px; }
.pay-summary-row.usd strong { color: var(--blue); }

.pay-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.pay-error {
  display: block;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255,90,90,0.08);
  border: .5px solid rgba(255,90,90,0.3);
  border-radius: 8px;
  color: #ff8888;
  font-size: 13px;
  line-height: 1.5;
}

.pay-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(201,169,110,0.05);
  border: .5px solid var(--gold-soft);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13px;
}
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(201,169,110,0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pay-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: .5px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}
.pay-foot i { color: var(--green); font-size: 14px; }

body.pay-open { overflow: hidden; }

/* Payment confirmation state */
.pay-confirm {
  text-align: center;
  padding: 12px 0 8px;
}
.pay-confirm-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  border: 1.5px solid rgba(74, 222, 128, 0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--green);
}
.pay-confirm h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  color: var(--text-0);
  margin-bottom: 14px;
}
.pay-confirm p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 10px;
}
.pay-confirm p strong { color: var(--gold); font-weight: 500; }
.pay-confirm-note {
  font-size: 11.5px !important;
  color: var(--text-3) !important;
  margin-bottom: 24px !important;
}
.pay-confirm-note code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255,255,255,0.06);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 11px;
}
