/* ==========================================================================
   vsfarooqkhan.github.io — "the wire"
   Duotone is semantic: teal = source system, amber = target system.
   The page spine is the wire between them.
   ========================================================================== */

:root {
  /* ground */
  --ink:        #14121C;
  --ink-deep:   #0F0D16;
  --panel:      #1B1826;
  --panel-2:    #232030;
  --rule:       #302B40;
  --rule-soft:  #262233;

  /* text */
  --text:       #EFECF7;
  --dim:        #9E96B6;
  --dim-2:      #837B9C;

  /* signal */
  --src:        #4FD1C5;   /* source system */
  --dst:        #FFAE57;   /* target system */
  --warn:       #FF7A6B;   /* retry / failure */

  /* type */
  --f-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --f-body:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* geometry */
  --maxw:  1120px;
  --gut:   24px;
  --r:     14px;
  --r-sm:  9px;
  --rail:  150px;

  /* the node colour for a section on the spine; overridden per section */
  --node: var(--src);
}

/* --------------------------------------------------------------- reset -- */

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--src);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--src); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--src);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: .8rem;
  border-radius: var(--r-sm);
}
.skip-link:focus { left: 16px; }

/* ---------------------------------------------------------- typography -- */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--dim);
  max-width: 60ch;
}

.mono { font-family: var(--f-mono); }

/* -------------------------------------------------------------- navbar -- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.is-stuck {
  background: rgba(20, 18, 28, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--rule-soft);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gut);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--src), var(--dst));
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: .78rem;
  color: var(--dim);
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--text); background: var(--panel-2); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { content: ""; position: absolute; top: -5px; }
.nav-toggle span::after  { content: ""; position: absolute; top:  5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-5px) rotate(-45deg); }

/* --------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  padding: 148px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -20%;
  height: 620px;
  background:
    radial-gradient(46% 60% at 18% 30%, rgba(79, 209, 197, .13), transparent 70%),
    radial-gradient(40% 55% at 82% 20%, rgba(255, 174, 87, .10), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  object-fit: cover;
  background: var(--panel-2);
}

h1 {
  font-size: clamp(2.05rem, 3.7vw, 3.1rem);
  letter-spacing: -0.032em;
  margin-bottom: 22px;
  text-wrap: balance;
}
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--src) 10%, var(--dst) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--panel);
  color: var(--text);
  font-family: var(--f-mono);
  font-size: .82rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--dim-2); }
.btn-primary {
  background: var(--src);
  border-color: var(--src);
  color: var(--ink-deep);
  font-weight: 500;
}
.btn-primary:hover { background: #62DBD0; border-color: #62DBD0; }

.hero-meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--dim-2);
}
.hero-meta b { color: var(--text); font-weight: 500; }

/* ------------------------------------------------- signature: the wire -- */

.wire-frame {
  border: 1px solid var(--rule);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(35, 32, 48, .55), rgba(20, 18, 28, .55));
  padding: 20px 20px 16px;
}

.wire-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim-2);
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--src);
  flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;  box-shadow: 0 0 0 0 rgba(79, 209, 197, .45); }
  50%      { opacity: .6; box-shadow: 0 0 0 6px rgba(79, 209, 197, 0); }
}

.wire-svg { width: 100%; height: auto; display: block; }

.wire-node   { fill: var(--panel); stroke: var(--rule); stroke-width: 1; }
.wire-node-a { stroke: rgba(79, 209, 197, .55); }
.wire-node-b { stroke: rgba(255, 174, 87, .55); }
.wire-hub    { fill: var(--panel-2); stroke: rgba(158, 150, 182, .35); stroke-width: 1; }

.wire-title {
  font-family: var(--f-display);
  font-size: 27px;
  font-weight: 600;
  fill: var(--text);
}
.wire-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  fill: var(--dim-2);
  letter-spacing: .08em;
}
.wire-hub-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  fill: var(--dim-2);
}
.wire-guarantee {
  font-family: var(--f-mono);
  font-size: 13px;
  fill: var(--text);
}
.wire-cap {
  font-family: var(--f-mono);
  font-size: 11px;
  fill: var(--dim-2);
  letter-spacing: .06em;
}
.wire-cap-warn { fill: var(--warn); }

.wire-line { stroke: url(#wireGrad); stroke-width: 2.25; }

.wire-pkt { animation: travel 3.4s linear infinite; }
.wire-pkt:nth-of-type(2) { animation-delay: 1.13s; }
.wire-pkt:nth-of-type(3) { animation-delay: 2.26s; }
@keyframes travel {
  from { transform: translateX(0);     opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  to   { transform: translateX(364px); opacity: 0; }
}

.wire-retry {
  fill: none;
  stroke: var(--warn);
  stroke-width: 1.25;
  stroke-dasharray: 5 7;
  opacity: .75;
  animation: retry 2.2s linear infinite;
}
@keyframes retry { to { stroke-dashoffset: -24; } }

.wire-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--f-mono);
  font-size: .7rem;
  line-height: 1.6;
  color: var(--dim-2);
}

/* ----------------------------------------------------- inner page head -- */

.page-head {
  position: relative;
  padding: 150px 0 8px;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -20%;
  height: 460px;
  background: radial-gradient(44% 60% at 22% 34%, rgba(79, 209, 197, .12), transparent 70%);
  pointer-events: none;
}
.page-head-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 18px 0 20px; }

@media (max-width: 780px) { .page-head { padding-top: 120px; } }

/* ------------------------------------------------------------ sections -- */

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.section-body { padding: 76px 0; }

.section-tag {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--node);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-lead { margin-bottom: 40px; }

/* The spine: one continuous wire down the page, teal at the top,
   amber at the bottom. Desktop only — on mobile it would just be noise. */
@media (min-width: 900px) {
  .section-inner {
    display: grid;
    grid-template-columns: var(--rail) minmax(0, 1fr);
  }
  .section-tag {
    position: sticky;
    top: 104px;
    align-self: start;
    padding-top: 78px;
    margin-bottom: 0;
  }
  .section-body {
    border-left: 1px solid var(--rule);
    padding-left: 44px;
    position: relative;
  }
  .section-body::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 84px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--node);
    box-shadow: 0 0 0 5px var(--ink);
  }
}

/* teal at the top of the page, amber at the bottom: the page is the wire */
.section:nth-of-type(1) { --node: #4FD1C5; }
.section:nth-of-type(2) { --node: #6CCBB3; }
.section:nth-of-type(3) { --node: #8AC5A0; }
.section:nth-of-type(4) { --node: #A7C08E; }
.section:nth-of-type(5) { --node: #C4BA7C; }
.section:nth-of-type(6) { --node: #E2B469; }
.section:nth-of-type(7) { --node: #FFAE57; }

/* --------------------------------------------------------------- cards -- */

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--dim-2); transform: translateY(-3px); }
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.card p { color: var(--dim); font-size: .93rem; }
.card-num {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--node);
  display: block;
  margin-bottom: 14px;
}

/* now-building callout */
.callout {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--rule);
  border-left: 2px solid var(--dst);
  border-radius: var(--r);
  background: linear-gradient(100deg, rgba(255, 174, 87, .07), transparent 60%);
}
.callout .eyebrow { color: var(--dst); margin-bottom: 8px; display: block; }
.callout p { color: var(--dim); }
.callout strong { color: var(--text); font-weight: 500; }

/* -------------------------------------------------------- guarantees ---- */

.guarantees { margin: 0; padding: 0; }
.guarantees > div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 12px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--rule-soft);
}
.guarantees > div:last-child { border-bottom: 1px solid var(--rule-soft); }
.guarantees dt {
  font-family: var(--f-mono);
  font-size: .84rem;
  color: var(--text);
}
.guarantees dd { margin: 0; color: var(--dim); font-size: .95rem; }

@media (max-width: 640px) {
  .guarantees > div { grid-template-columns: minmax(0, 1fr); gap: 6px; }
}

/* --------------------------------------------------------------- stack -- */

.stack-group { padding: 22px 0; border-top: 1px solid var(--rule-soft); }
.stack-group:first-child { border-top: 0; padding-top: 0; }

.stack-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}
.stack-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  flex: none;
  background: var(--node);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chip {
  padding: 6px 13px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--panel);
  font-family: var(--f-mono);
  font-size: .78rem;
  color: var(--dim);
  white-space: nowrap;
}
.chip-strong { color: var(--text); border-color: var(--dim-2); }

/* ------------------------------------------------------------ timeline -- */

.timeline { list-style: none; margin: 0 0 8px; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 6px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--rule-soft);
}
.timeline li:last-child { border-bottom: 1px solid var(--rule-soft); }
.tl-when {
  font-family: var(--f-mono);
  font-size: .78rem;
  color: var(--dim-2);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 3px;
}
.tl-role { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; }
.tl-org  { color: var(--dim); font-size: .92rem; }
.tl-org span { color: var(--dim-2); }
.tl-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--src);
  flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}

.sub-head {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin: 44px 0 6px;
}

@media (max-width: 640px) {
  .timeline li { grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------------------------------ feeds (api) ----- */

.post {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.post:hover { border-color: var(--dim-2); transform: translateY(-3px); }
.post-cover {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-bottom: 1px solid var(--rule);
  background: var(--panel-2);
}
.post-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-title { font-family: var(--f-display); font-size: 1.05rem; font-weight: 600; line-height: 1.25; }
.post-meta {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--dim-2);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.repo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.repo:hover { border-color: var(--dim-2); transform: translateY(-3px); }
.repo-name { font-family: var(--f-mono); font-size: .92rem; color: var(--text); }
.repo-desc { color: var(--dim); font-size: .89rem; flex: 1; }
.repo-meta {
  display: flex;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--dim-2);
}

.feed-state {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--dim-2);
  padding: 22px 0;
}
.feed-state a { color: var(--src); }

/* stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
}
.stat { background: var(--panel); padding: 20px 22px; }
.stat-value {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin-top: 6px;
}

/* --------------------------------------------------------------- quote -- */

.quote {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px var(--gut);
}
.quote blockquote {
  margin: 0;
  border-left: 1px solid var(--rule);
  padding-left: 44px;
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--dim);
}
.quote blockquote span { display: block; }
.quote blockquote span:first-child { color: var(--text); }

@media (min-width: 900px) {
  .quote { padding-left: calc(var(--gut) + var(--rail)); }
  .quote blockquote { border-left-color: var(--rule); }
}

/* ------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 44px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; } }

.mailto {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(.95rem, 2.6vw, 1.35rem);
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: border-color .2s ease, color .2s ease;
  word-break: break-all;
}
.mailto:hover { color: var(--src); border-bottom-color: var(--src); }

.links { list-style: none; margin: 0; padding: 0; }
.links li { border-top: 1px solid var(--rule-soft); }
.links li:last-child { border-bottom: 1px solid var(--rule-soft); }
.links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: .84rem;
  color: var(--dim);
  transition: color .18s ease, padding .18s ease;
}
.links a:hover { color: var(--text); padding-left: 6px; }
.links .link-handle { color: var(--dim-2); font-size: .76rem; }

/* -------------------------------------------------------------- footer -- */

.footer {
  border-top: 1px solid var(--rule-soft);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--gut);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--dim-2);
}
.footer-inner a { color: var(--dim); text-decoration: none; }
.footer-inner a:hover { color: var(--text); }

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 940px) {
  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: var(--gut);
    right: var(--gut);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--rule);
    border-radius: var(--r);
    background: var(--ink-deep);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 14px; font-size: .85rem; }
  .nav.is-stuck { background: rgba(20, 18, 28, .94); }
}

@media (max-width: 620px) {
  .wire-cap { display: none; }
  .wire-frame { padding: 16px 14px 14px; }
  .section-body { padding: 56px 0; }
  .quote { padding-top: 56px; padding-bottom: 56px; }
  .quote blockquote { padding-left: 22px; }
}

/* -------------------------------------------------- motion preference -- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* park the packets on the wire instead of hiding them at 100% */
  .wire-pkt { animation: none; opacity: 1; }
  .wire-pkt:nth-of-type(2) { transform: translateX(120px); }
  .wire-pkt:nth-of-type(3) { transform: translateX(240px); }
}
