/* ==============================================
   TARDI.AI — Monologue.to Design System
   Editorial serif + monospace body
   Dark, premium, retro-hardware meets modern SaaS
   ============================================== */

:root {
  /* Palette */
  --bg:            #010101;
  --bg-alt:        #15140E;
  --bg-section:    #151922;
  --card:          #1A1A1A;
  --card-alt:      #282828;
  --accent:        #19d0e8;
  --accent-light:  #44CCFF;
  --accent-bg:     rgb(6, 47, 52);
  --light:         #FBF9F6;
  --white:         #FFFFFF;
  --glass:         rgba(255, 255, 255, 0.12);
  --dim:           rgba(0, 0, 0, 0.2);
  --border:        rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif:  'Instrument Serif', Georgia, serif;
  --mono:   'DM Mono', 'SF Mono', Menlo, monospace;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.4;
  background: var(--bg);
  color: rgba(255, 255, 255, 0.7);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
strong { color: var(--white); font-weight: 500; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- GRAIN OVERLAY ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ---- TYPOGRAPHY ---- */
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -2.88px;
  line-height: 0.95;
  color: var(--white);
  text-align: center;
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.1px;
  line-height: 1.1;
  color: var(--white);
}

/* ---- LABEL ---- */
.label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  padding: 14px 32px;
  border-radius: 900px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(25, 208, 232, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary:hover {
  box-shadow: 0 0 60px rgba(25, 208, 232, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn--glass {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--full { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(1, 1, 1, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.nav__logo-serif {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
}
.nav__logo-dot {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
  letter-spacing: 0.3px;
}
.nav__link:hover { color: var(--white); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 100px;
  text-align: center;
  overflow: hidden;
}

/* Giant background text */
.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--serif);
  font-size: clamp(200px, 30vw, 420px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  animation: fadeDown 0.6s var(--ease) both;
}
.hero__label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 80px);
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.hero__body {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  letter-spacing: 0.3px;
  animation: fadeUp 0.7s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.7s var(--ease) 0.3s both;
}

/* Terminal */
.hero__terminal {
  position: relative;
  margin-top: 72px;
  z-index: 2;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}
.hero__terminal-glow {
  position: absolute;
  width: 400px;
  height: 200px;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(25, 208, 232, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.terminal {
  width: 480px;
  max-width: 90vw;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(25, 208, 232, 0.05);
  background: var(--card);
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.terminal__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.terminal__dot--red { background: #FF5F57; }
.terminal__dot--amber { background: #FFBD2E; }
.terminal__dot--green { background: #28CA41; }
.terminal__title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}
.terminal__body {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
}
.terminal__line--empty { height: 10px; }
.t-prompt { color: var(--accent); font-weight: 500; }
.t-dim { color: rgba(255, 255, 255, 0.3); }
.t-ok { color: #28CA41; font-weight: 500; }
.terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(25, 208, 232, 0.4);
}

/* Hero ambient glow */
.hero__glow {
  position: absolute;
  width: 900px;
  height: 500px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(25, 208, 232, 0.08) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

/* ========================================
   SOCIAL PROOF STRIP
   ======================================== */
.strip {
  position: relative;
  z-index: 1;
  padding: 28px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}
.strip__link {
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.2s;
}
.strip__link:hover { opacity: 0.7; }

/* ========================================
   FEATURES
   ======================================== */
.features {
  position: relative;
  z-index: 1;
  padding: 140px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features__header {
  text-align: center;
  margin-bottom: 80px;
}
.features__sub {
  max-width: 520px;
  margin: 24px auto 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Feature Card */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 208, 232, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover {
  border-color: rgba(25, 208, 232, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(25, 208, 232, 0.04);
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  background: var(--accent-bg);
  border-radius: 12px;
}
.card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}
.card__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how {
  position: relative;
  z-index: 1;
  padding: 140px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.how__inner .h2 { margin-bottom: 72px; }

.steps {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 28px 0;
}
.step__num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  min-width: 80px;
  text-align: right;
  filter: drop-shadow(0 0 24px rgba(25, 208, 232, 0.15));
}
.step__num--done {
  opacity: 0.6;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.step__title {
  font-size: 22px;
  margin-bottom: 8px;
}
.step__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}
.step__line {
  width: 1px;
  height: 40px;
  margin-left: 71px;
  background: linear-gradient(180deg, rgba(25, 208, 232, 0.25) 0%, transparent 100%);
}

/* ========================================
   SECURITY
   ======================================== */
.security {
  position: relative;
  z-index: 1;
  padding: 140px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.security__inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.security__text {
  flex: 1;
}
.security__text .h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}
.security__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 32px;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.checklist__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.security__visual { flex-shrink: 0; }
.shield { position: relative; }
.shield__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(25, 208, 232, 0.1) 0%, transparent 60%);
  filter: blur(40px);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  position: relative;
  z-index: 1;
  padding: 140px 40px;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.pricing__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pricing__inner .h2 { margin-bottom: 16px; }
.pricing__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 56px;
}

/* Price card */
.price-card {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(25, 208, 232, 0.04);
  max-width: 420px;
  margin: 0 auto 80px;
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 900px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.price-card__amount {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--white);
  line-height: 1;
  margin: 28px 0 32px;
}
.price-card__dollar {
  font-size: 32px;
  opacity: 0.6;
  vertical-align: super;
}
.price-card__mo {
  font-family: var(--mono);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 4px;
}
.price-card__list {
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 28px;
  position: relative;
}
.price-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}
.price-card__note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Comparison */
.compare {
  max-width: 640px;
  margin: 0 auto;
}
.compare__title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
}
.compare__table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 130px 130px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.compare__row:last-child { border-bottom: none; }
.compare__row--head {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 500;
}
.compare__cell {
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.compare__cell--tardi {
  text-align: center;
  color: var(--accent);
}
.compare__cell--you {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}
.compare__sub {
  display: block;
  font-size: 10px;
  opacity: 0.5;
  font-weight: 400;
  margin-top: 2px;
}
.compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.compare__tag {
  display: inline-block;
  background: rgba(240, 160, 48, 0.12);
  color: #e8a830;
  padding: 3px 10px;
  border-radius: 900px;
  font-size: 11px;
  font-weight: 500;
}
.compare__help {
  color: var(--accent);
  font-weight: 500;
  font-size: 12px;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  position: relative;
  z-index: 1;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  width: 800px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(25, 208, 232, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta__box {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  box-shadow: 0 0 100px rgba(25, 208, 232, 0.05);
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  position: relative;
  z-index: 1;
  padding: 140px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.faq__inner .h2 { margin-bottom: 56px; }

.faq__list {
  text-align: left;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child {
  border-top: 1px solid var(--border);
}
.faq__q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s var(--ease), color 0.3s;
  flex-shrink: 0;
  margin-left: 24px;
}
details[open] .faq__q::after {
  content: '\2212';
  color: var(--accent);
}
.faq__q:hover { color: var(--accent); }
.faq__a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  padding-bottom: 24px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  align-items: baseline;
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }

  .hero { padding: 140px 20px 80px; }
  .hero__bg-text { font-size: clamp(120px, 25vw, 200px); }

  .features { padding: 100px 20px; }
  .features__grid { grid-template-columns: 1fr; gap: 16px; }

  .how { padding: 100px 20px; }
  .step { flex-direction: column; gap: 12px; }
  .step__num { text-align: left; min-width: unset; font-size: 40px; }
  .step__num--done { justify-content: flex-start; }
  .step__line { margin-left: 20px; }

  .security { padding: 100px 20px; }
  .security__inner { flex-direction: column; gap: 48px; }
  .security__text .h2 { text-align: center !important; }

  .pricing { padding: 100px 20px; }
  .compare__row { grid-template-columns: 1fr 90px 90px; }

  .cta { padding: 100px 20px; }
  .cta__box { padding: 40px 24px; }
  .cta__actions { flex-direction: column; align-items: center; }

  .faq { padding: 100px 20px; }

  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }

  .hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
