/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black:         #000000;
  --bg-soft:       #080808;
  --surface:       #111111;
  --surface-hi:    #181818;
  --border:        rgba(255,255,255,0.08);
  --border-hi:     rgba(255,255,255,0.15);

  --white:         #F8F8F5;
  --dim:           #888888;
  --muted:         #404040;
  --very-muted:    #252525;

  --accent:        #C8FF57;
  --accent-dim:    rgba(200,255,87,0.10);
  --accent-glow:   rgba(200,255,87,0.35);

  --font:          Helvetica, 'Helvetica Neue', Arial, sans-serif;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE
   ============================================================ */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}
.label--accent { color: var(--accent); }

.display-xl {
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.025em;
}
.display-lg {
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-md {
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.display-sm {
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  font-weight: 300;
  color: var(--dim);
}
.body-md {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.65;
  font-weight: 300;
  color: var(--dim);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.6rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-smooth),
              border-color 0.5s var(--ease-smooth),
              padding 0.4s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
  z-index: 201;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dim);
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta-btn {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  transition: background 0.3s, transform 0.25s !important;
}
.nav-cta-btn:hover {
  background: var(--accent) !important;
  transform: scale(1.03) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 201;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--accent); }
.nav-drawer .nav-drawer-cta {
  margin-top: 1rem;
  background: var(--accent);
  color: var(--black);
  padding: 0.8rem 2.5rem;
  border-radius: 100px;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--white); color: var(--black); }
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hi);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.6rem;
}
.btn--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px var(--accent-glow);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.hr { height: 1px; background: var(--border); width: 100%; }

/* ============================================================
   HERO — 40/60 two-column split
   ============================================================ */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 40% 60%;   /* wider right col for video */
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3vw 5rem 6vw;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 18%;
  background: linear-gradient(to right, var(--black), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.hero-label {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-title {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}
.hero-sub {
  max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.section-head-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 120px;
}

/* ============================================================
   PROBLEM — 3-COLUMN COMPARISON GRID
   ============================================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.comparison-col {
  background: var(--black);
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.comparison-col--accent {
  background: var(--bg-soft);
  border-left: 2px solid var(--accent);
}
.col-num {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}
.col-name {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.col-desc {
  font-size: 0.9rem;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.ecosystem-section { background: var(--bg-soft); padding: 16vh 0; }

.pullquote {
  padding: 3rem 0 3rem 1.8rem;
  border-left: 2px solid var(--accent);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 4.5rem;
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 0.2rem;
  font-weight: 400;
}
.step-text {
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ============================================================
   TRACTION / STATS
   Numbers start grey; GSAP saturates them to accent on scroll.
   ============================================================ */
.traction-section { background: var(--bg-soft); padding: 16vh 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 4rem 0 0;
}
.stat-item {
  background: var(--black);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stat-number {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--muted);  /* starts grey — GSAP transitions to accent */
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  padding: 18vh 0;
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 10vh 0;
  border-top: 1px solid var(--border);
}
.contact-section .label { margin-bottom: 1.2rem; }
.contact-email-link {
  display: inline-block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--muted);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.contact-email-link:hover {
  color: var(--white);
  text-decoration-color: var(--border-hi);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 3.5rem 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-logo { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--dim); }
.footer-copy { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.05em; }

/* ============================================================
   CONTRIBUTOR — PAGE HEADER
   ============================================================ */
.contrib-page-header {
  padding: 14rem 6vw 6rem;
  border-bottom: 1px solid var(--border);
}
.contrib-page-header .label  { margin-bottom: 1.5rem; }
.contrib-page-header .display-xl { margin-bottom: 1.2rem; }

/* ============================================================
   CONTRIBUTOR — 60% SPLIT (left number / right description)
   ============================================================ */
.sea-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.sea-split-left {
  padding: 5rem 4vw 5rem 6vw;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sea-split-right {
  padding: 5rem 6vw 5rem 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.sea-split-right p { max-width: 440px; }

.sea-wage-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  line-height: 0.9;
}
.sea-wage-number {
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.sea-wage-suffix {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.sea-wage-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1;
  margin-top: 0.5rem;
}

/* ============================================================
   CONTRIBUTOR — HOW IT WORKS 2×3 GRID
   ============================================================ */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.hiw-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.hiw-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--very-muted);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hiw-title {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hiw-desc {
  font-size: 0.83rem;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.55;
}

/* ============================================================
   CONTRIBUTOR — ACTIVITIES 2 EQUAL ROWS
   ============================================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);   /* 12 items → 2 rows of 6 */
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.activity-item {
  background: var(--bg-soft);
  padding: 1.2rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--dim);
  transition: background 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.activity-item:hover { background: var(--surface); color: var(--white); }
.activity-item::before {
  content: '·';
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 0;
  flex-shrink: 0;
}

/* ============================================================
   CONTRIBUTOR — APPLICATION FORM
   ============================================================ */
.form-section { background: var(--bg-soft); padding: 14vh 6vw; }

.contrib-form {
  max-width: 720px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface-hi);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #ff6b6b;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: #111; }

.form-checkboxes { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.8rem; cursor: pointer; }
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 2px; accent-color: var(--accent); cursor: pointer;
}
.form-check span {
  font-size: 0.85rem; color: var(--dim); line-height: 1.5; font-weight: 300;
}
.form-submit { margin-top: 0.5rem; }

/* ---- required / optional markers ---- */
.required-star { color: var(--accent); font-weight: 700; }
.optional-label { color: var(--muted); font-weight: 300; font-size: 0.62rem; letter-spacing: 0.1em; }

/* ---- inline field errors ---- */
.field-error {
  font-size: 0.72rem;
  color: #ff6b6b;
  min-height: 1rem;
  letter-spacing: 0.01em;
}

/* ---- task tag selector ---- */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
/* div has zero UA styles — no browser resets to fight */
.tag-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: #252525;
  border: 1.5px solid #464646;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.1s ease, border-color 0.1s ease, color 0.1s ease;
  user-select: none;
  -webkit-user-select: none;
}
.tag-btn:hover {
  background: #313131;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.tag-btn.active {
  background: #C8FF57;
  border-color: #C8FF57;
  color: #000000;
  font-weight: 600;
}
.tag-btn.active:hover {
  background: #d6ff6e;
  border-color: #d6ff6e;
}

/* ---- form-level submit error ---- */
.form-submit-error {
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-top: 0.8rem;
  min-height: 1.2rem;
}

.form-success {
  display: none;
  padding: 2.5rem;
  border: 1px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.form-success.visible { display: flex; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.form-success p { color: var(--dim); font-size: 0.9rem; }

/* ============================================================
   GSAP UTILITY
   ============================================================ */
.gsap-fade-up { will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid          { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid   { grid-template-columns: 1fr; }
  .activities-grid   { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: 100vh;
  }
  .hero-left  { order: 2; padding: 3rem 6vw 5rem; }
  .hero-right { order: 1; height: 55vw; min-height: 260px; }
  .hero-right::before { display: none; }

  .sea-split { grid-template-columns: 1fr; }
  .sea-split-left { border-right: none; border-bottom: 1px solid var(--border); }

  .step        { grid-template-columns: 3.5rem 1fr; gap: 1rem; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid    { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }

  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
