@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: #0f0e2a;
  background: #faf9ff;
  -webkit-font-smoothing: antialiased;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }

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

button, input, textarea, select {
  font: inherit;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --violet:   #7c3aed;
  --violet-lt:#ede9fe;
  --yellow:   #f5c518;
  --yellow-lt:#fffbeb;
  --coral:    #f4436c;
  --coral-lt: #fff0f3;
  --mint:     #34d399;
  --mint-lt:  #ecfdf5;
  --navy:     #0f0e2a;
  --navy-mid: #1e1b4b;
  --ink:      #1e1b4b;
  --ink-soft: #4b4880;
  --surface:  #faf9ff;
  --white:    #ffffff;
  --border:   #e4e1f5;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill:999px;

  --shadow-sm: 0 1px 4px rgba(15,14,42,.06), 0 2px 8px rgba(15,14,42,.04);
  --shadow-md: 0 4px 16px rgba(15,14,42,.09), 0 1px 4px rgba(15,14,42,.05);
  --shadow-lg: 0 8px 40px rgba(15,14,42,.13), 0 2px 8px rgba(15,14,42,.06);
  --shadow-violet: 0 8px 32px rgba(124,58,237,.25);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem);  letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p { max-width: 68ch; }

.txt-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

.txt-sm  { font-size: 0.85rem; }
.txt-xs  { font-size: 0.75rem; }
.txt-center { text-align: center; }
.txt-center p { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-lt);
  border-radius: var(--r-pill);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-4);
}

.eyebrow--coral  { color: var(--coral); background: var(--coral-lt); }
.eyebrow--yellow { color: #9a6c00; background: var(--yellow-lt); }
.eyebrow--mint   { color: #065f46; background: var(--mint-lt); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: var(--shadow-violet);
}
.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 12px 36px rgba(124,58,237,.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--violet);
  border-color: var(--violet);
}
.btn-secondary:hover {
  background: var(--violet-lt);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(245,197,24,.35);
}
.btn-yellow:hover {
  background: #e6b800;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.5rem 1.25rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,249,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-3);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav-right { justify-content: flex-end; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--violet);
  background: var(--violet-lt);
}

.nav-cta {
  font-size: 0.88rem;
  padding: 0.55rem 1.35rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--r-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) 0 var(--space-3);
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.nav-mobile .nav-link {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-md);
  font-size: 1rem;
}

.nav-mobile.is-open { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,.75);
  padding-block: var(--space-20) var(--space-10);
  margin-top: var(--space-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-16);
}

.footer-brand-col {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 26ch;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}

.footer-social-link:hover {
  background: var(--violet);
  color: var(--white);
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: rgba(255,255,255,.4);
  transition: color 0.15s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section--sm   { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--lg   { padding-block: clamp(5rem, 10vw, 8rem); }

.section--violet { background: var(--violet); color: var(--white); }
.section--navy   { background: var(--navy-mid); color: var(--white); }
.section--yellow { background: var(--yellow); color: var(--navy); }
.section--tinted { background: var(--violet-lt); }
.section--mint   { background: var(--mint-lt); }

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header h2 { margin-bottom: var(--space-4); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  padding-block: clamp(4rem, 10vw, 7rem) clamp(3rem, 8vw, 6rem);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(124,58,237,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(244,67,108,.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 5% 90%, rgba(52,211,153,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-content h1 {
  margin-bottom: var(--space-5);
  color: var(--ink);
}

.hero-content h1 .highlight {
  color: var(--violet);
  position: relative;
  display: inline-block;
}

.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-8);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: var(--violet-lt);
  overflow: hidden;
}

.hero-avatar:first-child { margin-left: 0; }

.hero-avatar-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--violet);
}

.hero-image-slot {
  position: relative;
  z-index: 1;
}

.hero-image-slot img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 5/4;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--violet-lt) 0%, #ddd6fe 50%, #ede9fe 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 60%;
  height: 60%;
  border-radius: var(--r-lg);
  background: rgba(124,58,237,.12);
  transform: rotate(-8deg);
}

.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 2;
}

.hero-float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--violet);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.hero-float-badge-sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
}

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.card-icon--violet { background: var(--violet-lt); }
.card-icon--coral  { background: var(--coral-lt); }
.card-icon--yellow { background: var(--yellow-lt); }
.card-icon--mint   { background: var(--mint-lt); }

.card h3 { font-size: 1.1rem; }
.card p   { color: var(--ink-soft); font-size: 0.92rem; margin: 0; max-width: 100%; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--violet);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.stat-num--yellow { color: var(--yellow); }
.stat-num--coral  { color: var(--coral); }
.stat-num--mint   { color: var(--mint); }

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 20ch;
  margin-inline: auto;
  line-height: 1.4;
}

.stat-label--light { color: rgba(255,255,255,.7); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--violet) 0%, #5b21b6 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-block: var(--space-8);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(244,67,108,.15);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: var(--space-8);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 780px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--ink);
}

.faq-q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--violet-lt);
  color: var(--violet);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  line-height: 1;
}

.faq-item.is-open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--violet);
  color: var(--white);
}

.faq-a {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-a { display: block; }

/* ============================================================
   CONTENT SECTION
   ============================================================ */
.prose-section .section-header { margin-bottom: var(--space-8); }
.prose-section .body-text p    { color: var(--ink-soft); margin-bottom: var(--space-4); }
.prose-section .body-text p:last-child { margin-bottom: 0; }

/* ============================================================
   LOGO BAR
   ============================================================ */
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
}

.logo-bar-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--border);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  user-select: none;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-inline {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.form-inline .form-input { flex: 1 1 220px; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: var(--space-8);
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.wrap-flex { flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle { margin-inline: auto; }
  .hero-actions  { justify-content: center; }
  .hero-proof    { justify-content: center; }

  .hero-image-slot { order: -1; max-width: 500px; margin-inline: auto; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }

  .cta-band-actions { flex-direction: column; align-items: center; }

  .hero-float-badge { display: none; }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }
} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} 