/* ══════════════════════════════════════════════════
   GOPANIUM — home.css
   Clean white · DM Sans + DM Serif · Gold accent only
   Inspired by: Shopify, Linear, Dropbox simplicity
══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --gray-50:    #f5f5f4;
  --gray-100:   #e8e8e5;
  --gray-200:   #d0d0cb;
  --gray-400:   #9a9a94;
  --gray-600:   #5c5c57;
  --gray-800:   #2a2a27;
  --black:      #111110;
  --gold:       #c9a84c;
  --gold-l:     #f0c040;
  --gold-d:     #9a6c1a;
  --red-soft:   #fef2f2;
  --red-border: #fecaca;
  --red-text:   #dc2626;
  --green:      #16a34a;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --max-w:      1100px;
  --radius:     10px;
  --radius-lg:  16px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.875em;
  color: var(--gray-800);
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── DISABLED STATE ── */
.disabled {
  opacity: 0.45;
  cursor: not-allowed !important;
  pointer-events: none;
  user-select: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.btn-primary:not(.disabled):hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-primary-lg:not(.disabled):hover { background: var(--gray-50); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.btn-ghost:hover { color: var(--black); }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  /* Match the logo's dark charcoal background exactly */
  background: #1f2125;
  border-bottom: none;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.nav-links a:hover { color: #ffffff; }
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-btn-ghost {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  opacity: 0.5;
  border-radius: 8px;
  font-family: var(--font-sans);
}
.nav-btn-primary {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  cursor: not-allowed;
  opacity: 0.45;
  font-family: var(--font-sans);
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  margin-left: auto;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #1f2125;
  padding: 0 24px;
}
.nav-mobile a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════════════
   LOGO BANNER — full width below nav
══════════════════════════════════════════════════ */
.logo-banner {
  position: relative;
  width: 100%;
  background: #1f2125;
  /* Use padding-top trick based on image aspect ratio 1200:630 = ~52.5%
     But we want it compact so cap with max-height */
  padding: 28px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-banner-img {
  /* Show full logo — no cropping, no covering */
  display: block;
  height: auto;
  object-fit: contain;
}
.logo-banner-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}
.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(22,163,74,0.2);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--black);
  max-width: 760px;
  margin: 0 auto 24px;
}
.hero-h1 em { font-style: italic; color: var(--gray-800); }
.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-600);
}
.hero-pills span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-pills i { color: var(--green); }

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 100px;
}
.stat strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-serif);
}
.stat span {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
}
.stat-div {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.section-gray {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.danger { color: var(--red-text); }
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--black);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   ZK COMPARE (security section)
══════════════════════════════════════════════════ */
.zk-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 64px;
}
.zk-col {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.zk-col.bad {
  background: var(--red-soft);
  border: 1px solid var(--red-border);
}
.zk-col.good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.zk-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.zk-col.bad .zk-col-label { color: var(--red-text); }
.zk-col.good .zk-col-label { color: var(--green); }
.zk-step-list { display: flex; flex-direction: column; gap: 18px; }
.zk-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.zk-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-800);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.zk-num.gold {
  background: var(--gold);
  color: var(--white);
}
.zk-step strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}
.zk-step p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.zk-vs {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gray-400);
  padding-top: 80px;
  text-align: center;
  align-self: center;
}

/* ZK points row */
.zk-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.zk-point {
  padding: 22px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.zk-point i {
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.zk-point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.zk-point p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--red-border);
  border-radius: 8px;
  background: var(--red-soft);
  padding: 10px 0;
  margin-bottom: 48px;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--red-soft), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--red-soft), transparent); }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  padding: 0 20px;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-track span {
  font-size: 13px;
  font-weight: 500;
  color: var(--red-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ticker-track i { font-size: 8px; }
.tdot { color: var(--red-border); font-size: 20px; }

/* ══════════════════════════════════════════════════
   BREACH CARDS
══════════════════════════════════════════════════ */
.breach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.breach-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.breach-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.breach-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breach-org {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--red-text);
}
.breach-when {
  font-size: 12px;
  color: var(--gray-400);
}
.breach-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}
.breach-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}
.breach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breach-tags span {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
}
.breach-fix {
  padding: 10px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-size: 12px;
  color: #15803d;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.breach-fix i { flex-shrink: 0; margin-top: 1px; }

/* Breach numbers */
.breach-numbers {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.bn-item strong {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--black);
  line-height: 1;
}
.bn-item span {
  font-size: 12px;
  color: var(--gray-400);
  max-width: 130px;
}
.bn-div {
  width: 1px;
  height: 48px;
  background: var(--gray-100);
}

/* ══════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.feat {
  background: var(--white);
  padding: 28px 24px;
  transition: background 0.18s;
}
.feat:hover { background: var(--gray-50); }
.feat-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
}
.feat h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.feat p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── CALLOUT ROWS ── */
.callout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
}
.callout-row.reverse .callout-visual { order: -1; }
.callout-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 14px;
}
.callout-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
}
.callout-copy p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}
.callout-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.callout-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-800);
}
.callout-list i { color: var(--green); font-size: 15px; flex-shrink: 0; }

/* Callout visual — file comparison */
.cv-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cv-label-row { margin-bottom: 10px; }
.cv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cv-badge.bad { background: var(--red-soft); color: var(--red-text); border: 1px solid var(--red-border); }
.cv-badge.good { background: #f0fdf4; color: var(--green); border: 1px solid #bbf7d0; }
.cv-file {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
}
.cv-file i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cv-file.bad-file { background: var(--red-soft); }
.cv-file.bad-file i { color: var(--red-text); }
.cv-file.good-file { background: #f0fdf4; }
.cv-file.good-file i { color: var(--green); }
.cv-file span { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.cv-file small { font-size: 12px; color: var(--gray-600); line-height: 1.4; }

/* India card */
.india-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.india-flag-row { font-size: 40px; text-align: center; }
.india-dc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
}
.india-dc i { font-size: 20px; color: var(--gold); }
.india-dc strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); }
.india-dc span { font-size: 12px; color: var(--gray-400); }
.india-badge {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  padding: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════ */
.cta-container {
  text-align: center;
  padding: 96px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-logo {
  width: min(280px, 60%);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  opacity: 0.9;
}
.cta-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.1;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  gap: 64px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { flex: 0 0 200px; }
.footer-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: var(--gray-400); line-height: 1.6; }
.footer-cols {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-col span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.footer-col a {
  font-size: 14px;
  color: var(--gray-600);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-400);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .zk-points { grid-template-columns: repeat(2,1fr); }
  .breach-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-burger { display: block; }
  .zk-compare { grid-template-columns: 1fr; }
  .zk-vs { padding: 0; align-self: auto; }
  .callout-row, .callout-row.reverse { grid-template-columns: 1fr; }
  .callout-row.reverse .callout-visual { order: initial; }
  .stats-inner { justify-content: center; gap: 24px; }
  .stat-div { display: none; }
  .bn-div { display: none; }
  .breach-numbers { justify-content: center; gap: 28px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 40px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .zk-points { grid-template-columns: 1fr; }
  .breach-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 32px; }
  .footer-cols { gap: 28px; }
  .hero-h1 { font-size: clamp(34px,10vw,52px); }
  .section-h2 { font-size: clamp(28px,8vw,40px); }
}