/* =========================================================
   CSS VARIABLES & RESET
   ========================================================= */
:root {
  --cream:       #FFF8EE;
  --cream-dark:  #F5EDDA;
  --cream-mid:   #FAEBD7;
  --orange:      #E8570A;
  --orange-light:#F47B35;
  --orange-pale: #FDDBB0;
  --orange-glow: #FF9A4A;
  --amber:       #F5A623;
  --yellow-vivid:#FFD166;
  --teal:        #0D9488;
  --red-vivid:   #E53E3E;
  --purple:      #6B21A8;
  --dark:        #1A0A00;
  --dark-mid:    #2D1600;
  --dark-text:   #3B1A00;
  --mid-text:    #7A4010;
  --light-text:  #B06020;
  --code-bg:     #161B22;
  --code-border: #30363D;
  --shadow-warm: 0 4px 24px rgba(232,87,10,0.15);
  --shadow-deep: 0 8px 48px rgba(26,10,0,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(232,87,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(245,166,35,0.07) 0%, transparent 60%);
}

/* =========================================================
   ANIMATED NOISE OVERLAY
   ========================================================= */
body::before {
  content:'';
  position:fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   HEADER / HERO
   ========================================================= */
header {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1.5rem 6rem;
}

.header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1A0A00 0%, #3B1200 40%, #7A2E00 75%, #E8570A 100%);
  z-index: 0;
}

/* Animated clock rings */
.clock-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,154,74,0.2);
  animation: pulse-ring 4s ease-in-out infinite;
}
.clock-ring:nth-child(1) { width:300px;height:300px; top:50%;left:50%; transform:translate(-50%,-50%); animation-delay:0s; }
.clock-ring:nth-child(2) { width:500px;height:500px; top:50%;left:50%; transform:translate(-50%,-50%); animation-delay:0.6s; }
.clock-ring:nth-child(3) { width:700px;height:700px; top:50%;left:50%; transform:translate(-50%,-50%); animation-delay:1.2s; }
.clock-ring:nth-child(4) { width:900px;height:900px; top:50%;left:50%; transform:translate(-50%,-50%); animation-delay:1.8s; }

@keyframes pulse-ring {
  0%,100% { opacity:0.15; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:0.4;  transform:translate(-50%,-50%) scale(1.04); }
}

/* Countdown ticker */
.header-ticker {
  position: relative; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem,1.5vw,0.9rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange-glow);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 0.4em 1.2em;
  border: 1px solid rgba(255,154,74,0.4);
  border-radius: 2px;
  background: rgba(255,154,74,0.08);
}

header h1 {
  position: relative; z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--cream);
  text-shadow: 0 0 80px rgba(232,87,10,0.6);
  max-width: 900px;
}

header h1 .highlight {
  color: var(--orange-glow);
  font-style: italic;
}

header h1 .year {
  display: block;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.9;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange-light);
  text-shadow: 0 0 100px rgba(232,87,10,0.8), 0 0 200px rgba(232,87,10,0.3);
}

.header-sub {
  position: relative; z-index: 2;
  font-size: clamp(1rem,2vw,1.25rem);
  color: rgba(255,248,238,0.75);
  margin-top: 1.5rem;
  max-width: 620px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,248,238,0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
.scroll-cue::after {
  content:'';
  display:block; width:1px; height:40px;
  background: linear-gradient(to bottom, rgba(255,154,74,0.6), transparent);
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: sticky; top:0; z-index: 100;
  background: rgba(26,10,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,87,10,0.3);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}

.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-glow);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4em 1em;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,248,238,0.6);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  border-left: 1px solid rgba(232,87,10,0.15);
}
.nav-links a:hover { color: var(--orange-glow); }

/* =========================================================
   MAIN LAYOUT
   ========================================================= */
main {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

/* =========================================================
   SECTION STYLES
   ========================================================= */
section {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,87,10,0.15);
}
section:first-of-type { border-top: none; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--dark-mid);
  margin: 2.5rem 0 0.8rem;
}

p { margin-bottom: 1.2rem; color: var(--dark-text); }

strong { color: var(--orange); font-weight: 600; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pull-quote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--orange);
  background: linear-gradient(105deg, var(--orange-pale) 0%, var(--cream-mid) 100%);
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '\201C';
  position: absolute; top:-0.3rem; left:1rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(232,87,10,0.15);
  pointer-events:none;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem,2vw,1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--dark-mid);
  margin:0;
  position: relative; z-index:1;
}

/* =========================================================
   INFO CARDS GRID
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.card {
  background: var(--cream-dark);
  border: 1px solid rgba(232,87,10,0.2);
  border-radius: 10px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.card p { font-size: 0.9rem; color: var(--mid-text); margin:0; line-height:1.6; }

/* =========================================================
   PIPELINE / BLOCK DIAGRAMS  (CSS-drawn, excalidraw-style)
   ========================================================= */
.diagram-wrap {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--cream-dark);
  border: 1px solid rgba(232,87,10,0.2);
  border-radius: 12px;
  overflow-x: auto;
}
.diagram-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 2rem;
  display: flex; align-items:center; gap:0.6rem;
}
.diagram-title::before { content:''; display:inline-block; width:16px; height:2px; background:var(--orange); }

/* Generic pipeline row */
.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: 600px;
}

.pipe-block {
  flex: 1;
  min-width: 120px;
  padding: 0.9em 1em;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  line-height: 1.4;
}
.pipe-block.orange  { background: var(--orange);   color: var(--cream); }
.pipe-block.amber   { background: var(--amber);    color: var(--dark);  }
.pipe-block.teal    { background: var(--teal);     color: var(--cream); }
.pipe-block.red     { background: var(--red-vivid);color: var(--cream); }
.pipe-block.purple  { background: var(--purple);   color: var(--cream); }
.pipe-block.cream   { background: var(--cream-mid);color: var(--dark);  border:1px solid rgba(232,87,10,0.3); }
.pipe-block.dark    { background: var(--dark-mid); color: var(--cream); }

.pipe-arrow {
  width: 32px; min-width:32px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink:0;
}

/* vertical pipeline */
.pipeline-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.pipe-arrow-v {
  font-size:1.2rem; color:var(--orange); line-height:1.5;
}

/* Two-column split diagram */
.split-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  min-width: 500px;
}
.split-col {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.split-divider {
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 700;
  padding: 0 0.5rem;
}
.split-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  border-radius: 4px 4px 0 0;
  text-align: center;
}
.split-header.bad  { background:var(--red-vivid);  color:var(--cream); }
.split-header.good { background:var(--teal);       color:var(--cream); }

.split-row {
  padding: 0.7em 1em;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  border-radius: 6px;
  line-height: 1.5;
}
.split-row.bad  { background: rgba(229,62,62,0.12); border:1px solid rgba(229,62,62,0.3); color:var(--dark-text); }
.split-row.good { background: rgba(13,148,136,0.12); border:1px solid rgba(13,148,136,0.3); color:var(--dark-text); }
.split-row .label { font-size:0.65rem; color:var(--light-text); text-transform:uppercase; letter-spacing:0.1em; display:block; margin-bottom:0.2em; }

/* Overflow diagram */
.overflow-diagram {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  min-width: 520px;
  padding: 1rem 0;
}
.bit-bar {
  flex:1;
}
.bit-bar-label {
  font-family:'JetBrains Mono',monospace; font-size:0.72rem; font-weight:700;
  color:var(--mid-text); margin-bottom:0.5rem; text-align:center;
}
.bit-bar-vis {
  display: flex; gap:2px; justify-content:center; flex-wrap:wrap;
}
.bit {
  width:18px; height:24px; border-radius:3px; display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono',monospace; font-size:0.55rem; font-weight:700;
}
.bit.one   { background:var(--orange); color:var(--cream); }
.bit.zero  { background:var(--cream-dark); border:1px solid rgba(232,87,10,0.3); color:var(--mid-text); }
.bit.sign  { background:var(--red-vivid); color:var(--cream); }
.bit.sign0 { background:var(--teal); color:var(--cream); }
.bit-caption { font-size:0.72rem; color:var(--mid-text); text-align:center; margin-top:0.5rem; font-style:italic; }

/* Timeline diagram */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: 1.5rem 0;
}
.timeline::before {
  content:''; position:absolute; left:1.1rem; top:0; bottom:0; width:2px;
  background: linear-gradient(to bottom, var(--orange), var(--amber));
}
.timeline-item {
  position: relative;
  margin-bottom: 1.8rem;
}
.timeline-item::before {
  content:''; position:absolute; left:-1.65rem; top:0.35rem;
  width:12px; height:12px; border-radius:50%;
  background:var(--orange); border:2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-item.danger::before { background:var(--red-vivid); box-shadow: 0 0 0 2px var(--red-vivid); }
.tl-year {
  font-family:'JetBrains Mono',monospace; font-size:0.75rem; font-weight:700;
  color:var(--orange); margin-bottom:0.2rem; letter-spacing:0.1em;
}
.tl-text { font-size:0.9rem; color:var(--dark-text); line-height:1.6; }

/* =========================================================
   CODE BLOCKS
   ========================================================= */
.code-section {
  margin: 2.5rem 0;
}
.code-header {
  display: flex; align-items:center; justify-content:space-between;
  background: #0D1117;
  padding: 0.6em 1.2em;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--code-border);
  border-bottom: 1px solid #21262D;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-pale);
  letter-spacing: 0.1em;
}
.code-header .lang-badge {
  padding: 0.15em 0.7em;
  border-radius: 3px;
  font-size:0.65rem;
  background:rgba(255,154,74,0.2);
  color:var(--orange-glow);
  border:1px solid rgba(255,154,74,0.3);
}
.code-header .file-badge {
  display: flex; align-items:center; gap:0.5rem;
}
.code-header .dot { width:10px;height:10px;border-radius:50%; }
.code-header .dot.r{background:#E53E3E;} .code-header .dot.y{background:#ECC94B;} .code-header .dot.g{background:#38A169;}

pre {
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin:0;
}
code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #1808a8;
}

/* Syntax highlighting */
.kw  { color: #FF9A4A; font-weight: 600; }   /* keywords */
.ty  { color: #7DD3FC; }                       /* types */
.fn  { color: #86EFAC; }                       /* functions */
.cm  { color: #6B7280; font-style: italic; }   /* comments */
.st  { color: #FDE68A; }                       /* strings */
.num { color: #C4B5FD; }                       /* numbers */
.pp  { color: #FB923C; }                       /* preprocessor */
.op  { color: #F9A8D4; }                       /* operators */
.bad { background:rgba(229,62,62,0.2); border-radius:2px; padding:0 2px; }
.good-code{ background:rgba(13,148,136,0.2); border-radius:2px; padding:0 2px; }

/* =========================================================
   WARNING / CALLOUT BOXES
   ========================================================= */
.callout {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout.warn { background: rgba(245,166,35,0.12); border:1px solid rgba(245,166,35,0.4); }
.callout.danger{ background: rgba(229,62,62,0.1); border:1px solid rgba(229,62,62,0.4); }
.callout.info  { background: rgba(13,148,136,0.1); border:1px solid rgba(13,148,136,0.4); }
.callout-icon { font-size:1.5rem; flex-shrink:0; margin-top:0.1rem; }
.callout-body  { }
.callout-body strong { display:block; margin-bottom:0.3rem; font-size:0.9rem; letter-spacing:0.04em; }
.callout.warn  .callout-body strong { color:var(--amber); }
.callout.danger .callout-body strong { color:var(--red-vivid); }
.callout.info  .callout-body strong { color:var(--teal); }
.callout-body p { font-size:0.9rem; margin:0; color:var(--dark-text); line-height:1.6; }

/* =========================================================
   AFFECTED SYSTEMS TABLE
   ========================================================= */
.sys-table {
  width:100%; border-collapse:collapse; margin:2rem 0;
  font-size:0.88rem;
}
.sys-table th {
  background: var(--dark);
  color: var(--cream);
  font-family:'JetBrains Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding:0.75em 1em;
  text-align:left;
}
.sys-table td {
  padding:0.75em 1em;
  border-bottom:1px solid rgba(232,87,10,0.1);
  vertical-align:top;
  color:var(--dark-text);
}
.sys-table tr:nth-child(even) td { background:rgba(232,87,10,0.04); }
.sys-table tr:hover td { background:rgba(232,87,10,0.08); }
.sev { display:inline-block; padding:0.15em 0.65em; border-radius:4px; font-size:0.72rem; font-weight:700; font-family:'JetBrains Mono',monospace; letter-spacing:0.05em; }
.sev.critical { background:rgba(229,62,62,0.2); color:var(--red-vivid); border:1px solid rgba(229,62,62,0.4); }
.sev.high     { background:rgba(232,87,10,0.15); color:var(--orange); border:1px solid rgba(232,87,10,0.4); }
.sev.medium   { background:rgba(245,166,35,0.15); color:#B45309; border:1px solid rgba(245,166,35,0.4); }

/* =========================================================
   DEPLOYMENT CHECKLIST
   ========================================================= */
.checklist {
  list-style:none;
  margin:1.5rem 0;
  display:flex; flex-direction:column; gap:0.5rem;
}
.checklist li {
  display: block; 
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: var(--cream-dark);
  border: 1px solid rgba(232,87,10,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark-text);
  line-height: 1.5;
  transition: background 0.2s;
}
.checklist li:hover { background:var(--orange-pale); }
.checklist li::before {
  content: '□';
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  font-size: 1rem;
  color: var(--orange);
  line-height: 1.5;
}
.checklist li code {
  word-break: break-all;
  white-space: normal;
}

/* =========================================================
   STAT COUNTER STRIP
   ========================================================= */
.stat-strip {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--orange);
  border-radius:10px;
  overflow:hidden;
  margin:3rem 0;
}
.stat-cell {
  background:var(--cream-dark);
  padding:1.5rem 0.75rem;
  text-align:center;
  min-width:0;
}
.stat-cell .num {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.1rem,2.2vw,2.2rem);
  font-weight:900;
  color:var(--orange);
  display:block;
  word-break:break-word;
  line-height:1.15;
}
.stat-cell .label-s {
  font-family:'JetBrains Mono',monospace;
  font-size:0.68rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--mid-text);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--dark);
  color:rgba(255,248,238,0.6);
  padding:3rem 1.5rem;
  text-align:center;
  position:relative;
  z-index:1;
}
footer .footer-logo {
  font-family:'JetBrains Mono',monospace;
  font-size:0.85rem;
  font-weight:700;
  color:var(--orange-glow);
  letter-spacing:0.15em;
  margin-bottom:1rem;
  display:block;
}
footer p { font-size:0.82rem; line-height:1.7; max-width:600px; margin:0.5rem auto; }

/* =========================================================
   MEDIA QUERIES
   ========================================================= */
@media (max-width:768px) {
  section { margin-top:4rem; }
  .nav-links { display:none; }
  .card-grid { grid-template-columns:1fr; }
  .pipeline { min-width:420px; }
  .split-diagram { min-width:420px; }
  .overflow-diagram { flex-direction:column; align-items:center; min-width:auto; }
  .bit { width:15px; height:20px; font-size:0.45rem; }
  .sys-table { font-size:0.8rem; }
  .sys-table th, .sys-table td { padding:0.6em 0.7em; }
  pre { font-size:0.75rem; }
  code { font-size:0.75rem; }
  .stat-strip { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:480px) {
  header { padding:3rem 1rem 5rem; }
  .pull-quote { padding:1.5rem; }
  .diagram-wrap { padding:1.2rem; }
  .code-header { flex-wrap:wrap; gap:0.4rem; }
  .stat-strip { grid-template-columns:1fr 1fr; }
  pre { padding:1rem; }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity:1;
  transform:translateY(0);
}