/* ============================================================
   smeup.email — styles.css
   Single stylesheet for the static HTML site.
   Violet brand (#7e22ce), Be Vietnam Pro font.
   ============================================================ */

[hidden] { display: none !important; }

/* 1. Google Font */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap');

/* 2. Design tokens */
:root {
  --primary:        #7e22ce;
  --primary-glow:   #a855f7;
  --primary-dark:   #6b21a8;
  --primary-alpha:  rgba(126,34,206,0.12);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --gradient-hero:  linear-gradient(160deg, #1a0533 0%, #2d1054 50%, #3b0764 100%);
  --white:          #ffffff;
  --gray-soft:      #f9f7ff;
  --gray-medium:    #a89bc2;
  --border-color:   #e9e3f5;
  --text:           #1a0533;
  --muted:          #6b5e8a;
  --bg:             #ffffff;
  --font-body:      'Be Vietnam Pro', system-ui, sans-serif;
  --container:      1280px;
  --gutter:         clamp(1.25rem, 4vw, 3rem);
  --radius:         0.875rem;
  --shadow-sm:      0 2px 8px rgba(126,34,206,0.07);
  --shadow-md:      0 8px 32px rgba(126,34,206,0.10);
  --shadow-lg:      0 24px 64px rgba(126,34,206,0.16);
  --transition:     0.3s cubic-bezier(0.2,0.8,0.2,1);
}

/* 3. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Smooth scroll only on pointer-fine devices (avoids mobile keyboard-induced freeze) */
@media (hover: hover) and (pointer: fine) {
  html { scroll-behavior: smooth; }
}
body { font-family: var(--font-body); font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* 4. Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(3rem,8vw,6rem) 0; }
.section--gray { background: var(--gray-soft); }

/* 5. Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,5,51,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.logo-icon svg { width: 16px; height: 16px; }
.logo-dot { color: var(--primary-glow); }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav a:hover, .nav a.is-active { color: #fff; background: rgba(255,255,255,0.08); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-btns { display: flex; align-items: center; gap: 0.25rem; }
.lang-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.lang-btn.is-active, .lang-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-login {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.btn-login:hover { color: #fff; background: rgba(255,255,255,0.08); }
.btn-cta-nav {
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.875rem; font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: opacity var(--transition), transform var(--transition);
}
.btn-cta-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  border-radius: 6px;
}
.nav-toggle:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(168,85,247,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem,8vw,6rem) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.3);
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 600; border: none; cursor: pointer; text-decoration: none; transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn--primary { background: var(--gradient-primary); color: #fff; padding: 0.75rem 1.75rem; border-radius: 100px; font-size: 0.9375rem; box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.3); padding: 0.75rem 1.75rem; border-radius: 100px; font-size: 0.9375rem; }
.btn--outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--full { width: 100%; justify-content: center; }
.hero-note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.35), transparent 70%);
  border-radius: calc(var(--radius) + 20px);
  pointer-events: none;
}

/* 7. Trust bar */
.trust-bar {
  background: var(--gray-soft);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
  text-align: center;
}
.trust-bar p { font-size: 0.875rem; color: var(--muted); font-weight: 500; }

/* 8. Section title */
.section-title { text-align: center; margin-bottom: clamp(2rem,5vw,3.5rem); }
.section-title h2 { font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1.2; }
.section-title p { margin-top: 0.75rem; font-size: 1.0625rem; color: var(--muted); max-width: 38rem; margin-left: auto; margin-right: auto; }

/* 9. Feature highlights (3-col) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-primary); display: grid; place-items: center; color: #fff; margin-bottom: 1.25rem; }
.feat-icon svg { width: 20px; height: 20px; }
.feat-title { font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.feat-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }

/* 10. Deep features (2-col alternating) */
.deep-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.deep-section--reverse { direction: rtl; }
.deep-section--reverse > * { direction: ltr; }
.deep-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 16/10; object-fit: cover; }
.deep-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 1rem; }
.deep-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.deep-bullets { display: flex; flex-direction: column; gap: 0.65rem; }
.deep-bullets li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--text); font-weight: 500;
}
.deep-bullets li::before { content: ''; display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--gradient-primary); flex-shrink: 0; margin-top: 3px; }

/* 11. Stats band */
.stats-section { background: var(--gradient-hero); padding: clamp(3rem,8vw,5rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item {}
.stat-value { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.stat-label { margin-top: 0.35rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* 12. FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 1.25rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -3px;
}
.faq-item.is-open .faq-q { color: var(--primary); }
.faq-item.is-open .faq-chevron { transform: rotate(-135deg); margin-top: 3px; }
.faq-a { padding: 0 1.25rem 1.1rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }

/* 13. CTA section */
.cta-section { background: var(--gradient-primary); padding: clamp(3.5rem,8vw,5rem) 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.875rem; }
.cta-section p { font-size: 1.0625rem; color: rgba(255,255,255,0.82); max-width: 32rem; margin: 0 auto 2rem; }
.btn--white { background: #fff; color: var(--primary); padding: 0.875rem 2rem; border-radius: 100px; font-size: 0.9375rem; font-weight: 700; box-shadow: var(--shadow-md); }
.btn--white:hover { opacity: 0.95; }

/* 14. Page hero (inner pages) */
.page-hero { background: var(--gradient-hero); padding: calc(64px + clamp(3rem,6vw,4rem)) 0 clamp(3rem,6vw,4rem); text-align: center; }
.page-hero h1 { font-size: clamp(2rem,4.5vw,3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.15; }
.page-hero p { margin-top: 1rem; font-size: 1.0625rem; color: rgba(255,255,255,0.75); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* 15. Features grid (3-col) */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-primary); display: grid; place-items: center; color: #fff; margin-bottom: 1.25rem; }
.feature-icon svg { width: 20px; height: 20px; }
.feature-title { font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }
.features-cta { text-align: center; margin-top: 3rem; }

/* 16. Pricing grid (3-col) */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border-color);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.pricing-card--popular { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-alpha), var(--shadow-md); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.875rem; border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan-name { font-size: 1.0625rem; font-weight: 700; color: var(--text); }
.pricing-plan-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.pricing-price { font-size: 2.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 0.2rem; flex-wrap: wrap; }
.pricing-period { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text); }
.pricing-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn--primary { margin-top: auto; }

/* 17. About cards (2-col) */
.about-body { max-width: 42rem; margin: 0 auto 3rem; }
.about-body p { font-size: 1.0625rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-card {
  background: var(--gray-soft); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 2rem;
  border-left: 4px solid var(--primary);
}
.about-card-title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 0.625rem; }
.about-card-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }

/* 18. Contact */
.contact-layout { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem,5vw,4rem); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; background: var(--gradient-primary);
  display: grid; place-items: center; color: #fff;
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.contact-info-value { font-size: 0.875rem; color: var(--muted); margin-top: 0.125rem; }
.contact-form-card {
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border-color);
  border-radius: calc(var(--radius) - 4px);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-alpha);
}
.form-textarea { resize: vertical; min-height: 130px; }
.contact-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem; text-align: center;
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%; background: var(--gradient-primary);
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-md);
}
.contact-success-icon svg { width: 24px; height: 24px; }
.contact-success-title { font-size: 1.125rem; font-weight: 700; color: var(--text); }
.contact-success-sub { font-size: 0.9375rem; color: var(--muted); max-width: 22rem; line-height: 1.65; }
.contact-success-again { font-size: 0.875rem; font-weight: 600; color: var(--primary); background: none; border: none; cursor: pointer; padding: 0; }
.contact-success-again:hover { text-decoration: underline; }

/* 19. Footer */
.site-footer { background: #1a0533; color: rgba(255,255,255,0.65); padding: clamp(3rem,6vw,4rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(2rem,4vw,3rem); margin-bottom: 2.5rem; }
.footer-brand .logo { margin-bottom: 0.875rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 20rem; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.875rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.35); }

/* 20. Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* 21. Language switching */
html[lang="en"] .lang-vi { display: none !important; }
html[lang="vi"] .lang-en { display: none !important; }

/* 22. 404 */
.not-found { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; padding-top: calc(64px + 2rem); }
.not-found h1 { font-size: 6rem; font-weight: 800; color: var(--primary); letter-spacing: -0.05em; }
.not-found h2 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-top: 0.5rem; }
.not-found p { color: var(--muted); margin-top: 0.5rem; font-size: 0.9375rem; max-width: 26rem; }
.not-found .btn--primary { margin-top: 1.75rem; font-size: 0.9375rem; padding: 0.75rem 1.75rem; }

/* 23. Responsive */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0; top: 64px;
    background: rgba(26,5,51,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.125rem; padding: 0.75rem 1.5rem; }
  .btn-login { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .deep-section { grid-template-columns: 1fr; }
  .deep-section--reverse { direction: ltr; }
  .feat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
